*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    font-family: 'Noto Serif', serif;
}
.wrapper{
    max-width: 600px;
    margin: 0 auto;
}
header .logo a{
    color: white;
    align-items: center;
}
header .logo a p{
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-family: Noto Serif;
    font-weight: 600;
    text-transform: uppercase;
}
.logo{
    text-align: center;
    width: 120px;
    transition: .4s;
}
.logo:hover{
    transform: scale(1.3);
    cursor: pointer;
}

header{
    background-image: url("assets/pexels-charlotte-may-5947008\ 1.png");
    background-size: cover;
    background-repeat: no-repeat;
    height: 109.9475vh;
}
.hamburger{
    display: none;
}
.nav-bar ul{
    display: flex;
}
.nav-bar ul li a{
    display: block;
    color: white;
    font-size: 20px;
    padding: 10px 25px;
    /* border-radius: 50px; */
    transition: 0.2s;
    margin: 0 5px;
}
.nav-bar ul li a:hover{
    color: white;
    background: rgba(138, 182, 226, 0.605);
}
.nav-bar ul li a.active{
    color: white;
    background: rgba(138, 182, 226, 0.605);
}
@media only screen and (max-width: 600px) {
    .hamburger{
        display: block;
        cursor: pointer;
    }
    .hamburger .line {
        width: 30px;
        height: 3px;
        background: white;
        margin: 6px 0;
    }
    .nav-bar {
        height: 0;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        width: 100vw;
        background: rgba(34, 40, 46, 0.21);
        transition: 0.2s;
        overflow: hidden;
    }
    .nav-bar.active{
        height: 450px;
    }
    .nav-bar ul{
        display: block;
        width: fit-content;
        margin: 80px auto 0 auto;
        text-align: center;
        transition: 0.5s;
        opacity: 0;
    }
    .nav-bar.active ul{
        opacity: 1;
    }
    .nav-bar ul li a{
        margin-bottom: 12px;
    }
}
.container{
    padding: 0px 20px;
}
.navigation{
    display: flex;
    justify-content: space-between;
    padding: 28px 20px;

}
.heading{
    color: #FFF;
    margin-top: 190px;
}
.heading h1{

    font-size: 15px;
    font-style: normal;
    font-weight: 600;
}
.heading h2{
    font-size: 84px;
    font-style: normal;
    width: 349.373px;
    font-weight: 600;
    line-height: 104.5%;
}
.heading p{
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 138.5%;
    letter-spacing: 0.34px;
    width: 255.33px;
    color: #ffffff8f;
}
.transparentBtn{
    display: flex;
    justify-content: center;
    border: 1px solid #FFF;
    display: inline-flex;
    height: 44px;
    padding: 0px 48px;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    transition: .4s;
}
.transparentBtn a{
    color: #FFF;
}
.transparentBtn:hover{
    transform: scale(1.3);
    cursor: pointer;
}
.btn{
    display: flex;
    justify-content: center;
    margin-top: 65.63px;
}
section .intro h1{
    width: 318.08px;
    font-size: 28.8px;
    font-style: normal;
    font-weight: 500;
    line-height: 138.5%;
    letter-spacing: 0.576px;
}
section .intro p{
    width: 296.708px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.32px;
}
section{
    background: #181818;
    color: #FFF;
    padding-top: 267.9px;
    height: 100vh;
}
.img-container{
    display: grid;
    background: #181818;
}
.img-container :nth-child(1){
    width: 100%;
}