@import url('https://fonts.googleapis.com/css2?family=Ibarra+Real+Nova:wght@400;700&family=Public+Sans&display=swap');

*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

h1{
    font-family: 'Ibarra Real Nova', sans-serif;
    font-size: 50px;
    font-weight: 700;
    letter-spacing: -0.45px;
    line-height: 50px;
}

h2{
    font-family: 'Ibarra Real Nova', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 42px;
}

h3{
    font-family: 'Ibarra Real Nova', sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 36px;
}

p.body1{
    font-family: 'Public Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: #33323D;
}

p.body2{
    font-family: 'Public Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    color: #33323D;
}

.primary-btn, .secondary-btn{
    padding: 17px 35px 17px 32px;
    height: 48px;
    cursor: pointer;
}

.primary-btn{
    background-color: #203A4C;
    color: white;
    border-style: none;
    text-align: center;
}


.primary-btn.icon-btn{
    position: relative;
    padding-left: 5.2rem;
}

.down-arrow{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #1D3444;
    padding: 17px 16px;
}


.secondary-btn{
    border-style: none;
    border: 1px solid #33323D;
    background: white;
    padding: 17px 35px 17px 32px;
    text-transform: uppercase;
    width: fit-content;
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

.nav-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 85%;
    margin-top: 64px;
    margin-bottom: 94px;
}

.nav-links{
    list-style: none;
    width: 306px;
    display: flex;
    justify-content: space-between;
}

.nav-links a{
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    color: #33323D;
    text-transform: uppercase;
}

.nav-links .active{
    color: #5FB4A2;
}

.nav-hamburger{
    display: none;
}

.intro-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 85%;
}

.banner{
    position: relative;
    width: 100%;
}

.banner-info{
    width: 445px;
    height: 357px;
    background: #FAFAFA;
    z-index: 2;
    position: absolute;
    bottom: 0;
    left: 0;
}

.banner-info h1{
    margin: 56px 55px 53px 0px;
}

.banner-img{
    width: 100%;
    z-index: 1;
}

.about-container{
    width: 85%;
    display: flex;
    margin: 150px 0px;
}

.about-container picture{
    width: 50%;
}

.about-img{
    width: 100%;
}

.about-info{
    display: flex;
    flex-direction: column;
    width: 30%;
    margin: 0px auto;
    border-top: 1px solid rgba(51, 50, 61, 0.15);
    border-bottom: 1px solid rgba(51, 50, 61, 0.15);
    
}

.about-info h2{
    margin-top: 50px;
}

.about-info .body1{
    margin: 28px 0px;
}

.contact-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 85%;
    margin-bottom: 150px;
}

.contact-container h2{
    width: 27%;
}

.contact-container .separator{
    height: 1px;
    background: rgba(51, 50, 61, 0.15);
    width: 55%;
}

footer{
    width: 100%;
    display: flex;
    justify-content: center;
    background: #33323D;
}

.footer-container{
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0px;
}

.footer-container .nav-links{
    margin-left: 48px;
}

.footer-container a{
    color: white;
}

.footer-medias{
    margin-left: auto;
}

.footer-medias img{
    padding-left: 16px;
    filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(296deg) brightness(107%) contrast(101%);
}

.nav-logo, .footer-logo{
    cursor: pointer;
}

@media screen and (max-width: 1110px) {
    .nav-container, .intro-container, .about-container, .contact-container, .footer-container{
        width: 90%;
    }

    .banner-info{
        width: 514px;
        height: 278px;
    }

    .banner-info h1{
        font-size: 40px;
        line-height: 42px;
        letter-spacing: -0.36 px;
    }

    .about-container picture{
        width: 40%;
    }

    .about-info{
        width: 50%;
        margin: 0;
        margin-left: auto;
    }

    .contact-container h2{
        width: 50%;
    }

    .contact-container .separator{
        width: 20%;
    }

    

    
}

@media screen and (max-width: 768px) {
    .nav-container, .intro-container, .about-container, .contact-container, .footer-container{
        width: 83%;
    }

    .nav-container .nav-links{
        display: none;
    }

    .nav-hamburger{
        display: block;
        cursor: pointer;
    }

    .hamburger{
        display: block;
    }

    .close{
        display: none;
    }

    .menu{
        display: none;
        list-style: none;
        text-align: center;
        padding: 40px 65px;
        position: absolute;
        right: 8%;
        top: 120px;
        background: #33323D;
        z-index: 2;
    }

    .menu li{
        margin-bottom: 32px;
    }

    .menu li:nth-of-type(3){
        margin-bottom: 0;
    }

    .menu a{
        text-decoration: none;
        margin-bottom: 32px;
        color: white;
        text-transform: uppercase;
        font-size: 12px;
        font-family: 'Public Sans', sans-serif;
        line-height: 14px;
        letter-spacing: 2px;
    }

    .banner-info{
        width: 100%;
        height: 248px;
        background: white;
        position: unset;
        margin-top: 24px;
    }

    .banner-info h1{
        margin: 0;
        margin-bottom: 32px;
    }

    .about-container{
        flex-direction: column;
        margin: 96px 0px 115px 0px;
    }

    .about-container picture{
        width: 100%;
        margin-bottom: 32px;
    }

    .about-info{
        width: 100%;
        margin-left: 0;
    }

    .about-info .secondary-btn{
        margin-bottom: 51px;
    }

    .contact-container h2{
        width: 100%;
        margin-bottom: 40px;
    }

    .contact-container .separator{
        display: none;
    }

    .contact-container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-bottom: 80px;
    }

    
    .footer-container{
        flex-direction: column;
        padding: 56px 0px;
    }
    
    .footer-container .nav-links{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: 0px;
        margin: 40px 0px;
    }

    .footer-container li{
        margin-bottom: 32px;
    }

    .footer-container li:nth-of-type(3){
        margin-bottom: 0px;
    }
    
    .footer-medias{
        margin-left: 0;
    }

    .footer-medias img:nth-of-type(1){
        padding-left: 0px;
    }

    
}
