.navbar{
    position:fixed;
    top:0;
    width:100%;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 6%;
    background:#F4F6F8;
    z-index:1000;
}

/* LOGO */

.logo-container{
    height:100%;
    display:flex;
    align-items:center;
}

.logo-container img{
    max-height:60px;
}

/* MENU */

.nav-links{
    display:flex;
    list-style:none;
    align-items:center;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    font-weight:bold;
    font-size:14px;
    color:#1e2e4f;
}

.nav-links a:hover{
    color:#1c824f;
}

/* HAMBURGER */
.nav-links a{
    display:block;
    width:100%;
}
.hamburger{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
    background:none;
    border:none;
}

.hamburger span{
    width:28px;
    height:3px;
    background:#041219;
    transition:0.3s;
}

.hamburger.active span:nth-child(1){
    transform:rotate(45deg) translate(5px,5px);
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:rotate(-45deg) translate(6px,-6px);
}

/* MOBILE */

@media (max-width:1024px){

.nav-links{
    position:fixed;
    top:70px;
    left:0;
    width:100vw;
    height:calc(100vh - 70px);
    background:#1c824f;

    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:35px;

    transform:translateX(100%);
    transition:transform 0.35s ease;
}

.nav-links.active{
    transform:translateX(0);
}

.hamburger{
    display:flex;
}

}