/* @import url('https://fonts.googleapis.com/css?family=Cabin|Herr+Von+Muellerhoff|Source+Sans+Pro:400,900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500&family=Source+Code+Pro:wght@400;900&family=Source+Sans+Pro:wght@300;400;900&display=swap');
/*Global styles*/
*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --main-font: 'Source Sans Pro', sans-serif;
    --secondary-font: 'Herr Von Muellerhoff', cursive;
    --body-font: 'Cabin', sans-serif;
    --main-font-color-dark: #252525;
    --secondary-font-color: #e09c08;
    --body-font-color: #515151;
    --background-color: rgba(13, 110, 139, 0.75);
}

html {
    font-family: var(--body-font);
    font-size: 10px;
    color: var(--body-font-color);
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

section {
    padding: 3.9rem 0;
    overflow: hidden;
}

img {
    width: 100%;
    max-width: 100%;
}

a {
    text-decoration: none;
}

p {
    font-size: 1.6rem;
}

.container {
    width: 100%;
    max-width: 122.5rem;
    margin: 0 auto;
    padding: 0 2.4rem;
}

/* header */

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    background-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent);
}

.nav-1 {
    height: 7.2rem;
    display: flex;
    align-items: center;
    justify-content: right;
}

.menu-toggle {
    color: #fff;
    font-size: 2.2rem;
    position: fixed;
    top: 4rem;
    right: 4rem;
    cursor: pointer;
    z-index: 1500;
}


.fa-times {
    display: none;
}

.nav-list {
    list-style: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100vh;
    background-color: var(--main-font-color-dark);
    padding: 4.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    z-index: 1250;
    transform: translateX(-100%);
    transition: transform .5s;
}

.nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,.8);
    z-index: 1000;
    opacity: 0;
    transform: scale(0);
    transition: opacity .5s;
}

.open .fa-times {
    display: block;
}

.open .fa-bars {
    display: none;
}

.open .nav-list {
    transform: translateX(0);
}

.open .nav::before {
    opacity: 1;
    transform: scale(1);
}

.nav-item {
    border-bottom: 2px solid rgba(255,255,255, .3);
}

.nav-link {
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-right: -2px;
    transition: color .5s;
}

.nav-link:hover {
    color: var(--secondary-font-color)
}

.logo-header {
    width: 110 px;
    height: auto;
}

/* Hero */

.hero {
    background: var(--background-color);
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;

}

.hero::before {
    content: '';
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: url(images/Fresen_Hero.jpg) center no-repeat;
    background-size: cover;
    position: absolute;
    z-index: -1;
}

.sub-headline {
    font-size: 8.5rem;
    font-family: var(--secondary-font);
    color: var(--secondary-font-color);
    font-weight: 100;
    line-height: .9;
    letter-spacing: 3px;
    opacity: 0;
    animation: fadeUp .5s forwards;
    animation-delay: .5s;
}

.first-letter {
    text-transform: uppercase;
    font-size: 10.3rem;
}

.logo-first-letter {
    font-size: 6rem;
}

.headline {
    color: var(--main-font-color-dark);
    font-size: 4rem;
    font-family: var(--main-font);
    text-transform: uppercase;
    font-weight: 900;
    line-height: 3.5rem;
    /* letter-spacing: .1rem;
    margin-right: -.5rem; */
    animation: scale .5s forwards;
    /* animation-delay: .5s; */
}

.separator {
    display: flex;
    align-items: center;
    justify-content: center;

}

.line {
    width: 100%;
    max-width: 8.4rem;
    height: .25rem;
    background-color: var(--main-font-color-dark);
    position: relative;
    opacity: 0;
    animation: grow 2s forwards;
    animation-delay: .9s;
}

.line-right::before,
.line-left::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: .6rem solid transparent;
    opacity: 0;
    animation: grow .5s forwards;
    animation-delay: 1.2s;
}

.line-right::before {
    border-right-color: var(--main-font-color-dark);
    right: 0;
}

.line-left::before {
    border-left-color: var(--main-font-color-dark);
    left: 0;
}

.asterisk {
    font-size: 1.2rem;
    color: var(--secondary-font-color);
    margin: 1.2rem 1.6rem;
    opacity: 0;
    animation: spin .7s forwards;
    animation-delay: 2s;

}

.single-animation {
    opacity: 0;
    animation: fadeDown .5s forwards;
    animation-delay: 1.5s;
}



.headline-description h3 {
    font-size: 2.4;
}

.headline-description h5 {
    color: var(--main-font-color-dark);
    font-size: 2.4rem;
    font-weight: 100;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    letter-spacing: 3px;
    margin-right: -3px;
}

.btn {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: -2px;
}

.cta-btn {
    font-size: 1.1rem;
    background-color: var(--body-font-color);
    padding: .9rem 1.8rem;
    color: #fff;
    border-radius: .4rem;
    transition: background-color .5s;
}

.cta-btn:hover,
.cta-btn:focus {
    color: var(--main-font-color-dark);
    background-color: var(--secondary-font-color);
}

/* About Us */
.global-headline {
    text-align: center;
    margin-top: 3.9rem;
}

.about-us .global-headline {
    margin-top: 6.9rem;
}

.global-headline .asterisk {
    color: var(--body-font-color);
    margin: 2.4rem 0;
}

.headline-dark {
    color: var(--main-font-color-dark);
    letter-spacing: .4rem;
    margin-right: -.4rem;
}

.global-headline .sub-headline {
    letter-spacing: -1px;
    line-height: .42;
}


.remodel-info {
    text-align: center;
}

.remodel-description {
    margin-bottom: 3rem;
}

.remodel-description p {
    line-height: 1.6;
    margin-bottom: 2.4rem;
}

.body-btn {
    font-size: 1.5rem;
    color: var(--secondary-font-color);
    position: relative;
    transition: color .5s;
}

.body-btn::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-font-color);
    transition: background-color .5s;
}

.body-btn:hover,
.body-btn:focus {
    color: var(--main-font-color-dark);
}

.body-btn:hover::before,
.body-btn:focus::before {
    background-color: var(--main-font-color-dark);
}


/* Services */

.image-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
}

.services {
    padding-top: 8rem;
    margin-bottom: 0;
}


/* Beautiful Solutions and Gallery */

.beautiful-solutions {
    padding: 12rem 2rem;
    margin: 1rem;
}




/* Footer */
footer {
    padding: 7.9rem 0;
    background-color: var(--background-color);
    color: #fff;
    text-align: center;
    position: relative;
}

.back-to-top {
    width: 7rem;
    height: 7rem;
    background-color: var(--background-color);
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
}

.back-to-top i {
    display: block;
    color: #fff;
    font-size: 2rem;
    padding: 2rem;
    animation: up 2s infinite;
}

.footer-content {
    overflow: hidden;
}

.footer-content h4 {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 100;
    letter-spacing: 3px;
    margin-top: 3.2rem;
    margin-bottom: .5rem;
}

.footer-content h5 {
    font-size: 1.7rem;
    text-transform: uppercase;
    font-weight: 100;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.footer-content .asterisk {
    margin: 2.4rem 0;
}

.footer-content-about {
    margin-bottom: 5.4rem;
}

.footer-content-about p{
   line-height: 2;
}

.social-icons {
    list-style: none;
    margin-bottom: 5.4rem; 
    display: flex;
    justify-content: center;
}

.social-icons i {
    font-size: 2rem;
    color: #fff;
    padding: .8rem 2rem;
    transition: color .5s;
}

.social-icons i:hover,
.social-icons i:focus {
    color: var(--secondary-font-color);
}

.phone {
    font-size: 2rem;
    text-decoration: none;
    color: #fff;
}

.footer-copywrite {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    /* letter-spacing: initial; */
    font-size: 1.1rem;
    width: 100%;
    height: 7.2rem;
    background-color: rgba(255,255,255, .1);
    position: absolute;
    bottom: 0;
}

.footer-copywrite a {
    text-decoration: none;
    color: #fff;
    transition: color .5s;
}

.footer-copywrite a:hover,
.footer-copywrite a:focus {
    color: var(--secondary-font-color);
    cursor: pointer;
}

.Phone-number-container {
    padding-bottom: .9rem;
}

/* Media queries */
@media screen and (min-width: 900px) {
    section {
        padding: 7.9rem;
    }

    .menu-toggle {
        display: none;
    }

    .menu-landing-page {
        color: #fff;
        font-size: 2.2rem;
        position: fixed;
        top: 4rem;
        right: 4rem;
        cursor: pointer;
        z-index: 1500;
    }

    .nav-1 {
        justify-content: space-between;
       
    }

    .nav-list {
        position: initial;
        width: initial;
        height: initial;
        background-color: transparent;
        padding: 0;
        justify-content: initial;
        flex-direction: row;
        transform: initial;
        transition: initial;
    }

    .nav-item {
        margin: 0 2.4rem;
        border: none;
    }

    .nav-item:last-child {
        margin-right: 0;
    }

    .nav-link {
        font-size: 1.3rem;
    }

    .active {
        position: relative;
    }

    .active::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #fff;
        left: 0;
        bottom: -3px;
    }

    .sub-headline {
        font-size: 10rem;
    }

    .first-letter {
        font-size: 12.2rem;
    }

    .headline {
        font-size: 4.7rem;
        letter-spacing: .8rem;
    }

    .line {
        max-width: 11.4rem;
    }

    .remodel-info {
        display: flex;
        align-items: center;
    }

    .remodel-info > div {
        flex: 1;
    }

    .padding-right {
        padding-right: 7rem;
    }

    .footer-content {
        max-width: 77.5rem;
        margin: auto;
    }

    .footer-content-about {
        max-width: 51.3rem;
        margin: 0 auto 5.4rem;
    }

    .footer-content-divider {
        display: flex;
        justify-content: space-between;
    }

    .social-media,
    .newsletter-form {
        width: 100%;
        max-width: 27.3rem;
        margin: 0 1rem;
    }

    .social-icons i {
        opacity: 1;
    }

    .footer-copywrite {
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
        font-size: 1.5rem;
        width: 100%;
        height: 7.2rem;
        background-color: rgba(255,255,255, .1);
        position: absolute;
        bottom: 0;
    }
}

@media screen and (max-width: 900px) {
    .logo-header {
        display: none;
    }
} 

/* Animations */
@keyframes fadeUp {
    0% {
        transform: translateY(4rem);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale {
    0% {
        transform: scale(2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes grow {
    0% {
        width: 0;
    }
    100% {
        opacity: 1;
        width: 100%;
    }
}

@keyframes spin {
    0% {
       transform: rotate(0);
    }
    100% {
        opacity: 1;
        transform: rotate(-360deg);
    }
}

@keyframes fadeDown {
    0% {
        transform: translateY(-1rem);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes up {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-1rem);
    }
}


