header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 25;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: rgb(255, 255, 255);
    height: 8rem;
    margin: auto;
    margin-bottom: 1rem;
    transition: all 0.3s ease-in-out;
}

aside.logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5rem;
    top: 6px;
}
.logoDesktop {
    display: initial;
}
.logoMobile {
    display: none;
}


.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
}

.nav-bar ul {
    display: flex;
    align-items: center;
}

.nav-bar ul li a {
    font-size: 1.35rem;
    font-family: var(--nunito);
    text-decoration: none;
    color: black;
    font-weight: 600;
    line-height: 1.3em;
    letter-spacing: 0.27em;
    text-transform: uppercase;
}
.nav-bar ul li  {
    transition: all 0.2s ease-in-out;
    margin-right: 6rem;
}
.close-navbar-icon {
    cursor: pointer;
    display: none;
    .cls-1 {
        fill: var(--blue);
      }
}
.hamburger-icon {
    .cls-1 {
        fill: var(--blue);
      }
}
.openMenu {
    display: none;
}
.nav-list::after  {
    z-index: 10;
    display: block;
    width: 0;
    height: 0.5px;
    position: relative;
    border-radius: 1rem;
    content: "";
    background-color: black;
    right: 15px;
    bottom: 10px;
    transition: width 0.4s ease-out;

}

.nav-list:hover::after  {
    width: 1rem;
}
.nav-bar ul li button {
    letter-spacing: 2px;
    font-size: clamp(1rem, 1vw,1.5rem);
    padding: clamp(1.5rem, 1vw,2rem);
}
.nav-button {
    margin-right: 0 !important; 
}




/* header mobile */

@media only screen and (max-width: 1500px) {
    
    header {
        margin-bottom: 0;
        height: 8rem;
        justify-content: space-between;
    }
    .openMenu {
        display: flex;
        align-items: center;
        cursor: pointer;
    }
    
    .body-wrapper.active {
        padding: 0;
    }
   

    .logo-title h1 {
        font-size: clamp(7px,1.1vw,10px);

    }
    .logo-title h1 a {
        letter-spacing: 2px;
        font-size: 2.2em;

    }
    .logo-title h2 {
        font-size: 1.2em;

    }
    .nav-bar {
        position: absolute;
        background-color: white;
        width: 100%;
        height: 100dvh;
        top: 0;
        left: 0;
        z-index: 25;
        flex-direction: column;
        visibility: hidden;
        opacity: 0;
        justify-content: flex-start;
        padding: 6.5rem 0;
    }
    .nav-bar.active {
        visibility: visible;
        transition: opacity 0.3s ease-in-out;

        opacity: 1;
    }
   
    .close-navbar-icon {
        display: block;
        position: absolute;
        top: 30px;
        right: 15px;
    }
    .nav-bar ul {
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        width: 100%;
        flex: 1;
    }
    .nav-bar ul li {
        margin-right: 0;
    }
    .nav-bar ul li a {
        font-family: var(--cormorant);
        color: black;
    }

    .nav-list::after {
        display: none;
    }
    .nav-bar ul li a {
        font-size: 2.8rem;
    }
    
    
    
    
}

@media only screen and (max-width: 600px) {
    .logoDesktop {
        display: initial;
    }
    
    aside.logo a img {
        width: 18rem;
    }
}