/* ===========================
   HEADER
=========================== */

.header{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:var(--header-height);

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 60px;

    z-index:100;

    background:rgba(0,0,0,.25);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);

    border-bottom:1px solid rgba(255,255,255,.05);

}

.logo{

    display:flex;
    align-items:center;

    cursor:pointer;

}

.logo img{

    height:58px;
    width:auto;

    transition:var(--transition);

}

.logo:hover img{

    transform:scale(1.03);

}

.navigation{

    display:flex;
    align-items:center;

    gap:42px;

}

.navigation a{

    position:relative;

    color:#fff;

    font-size:17px;
    font-weight:500;

    transition:var(--transition);

}

.navigation a:hover,
.navigation a.active{

    color:var(--primary-color);

}

.navigation a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:var(--primary-color);

    transition:var(--transition);

}

.navigation a:hover::after,
.navigation a.active::after{

    width:100%;

}

/* ===========================
   MOBILE MENU BUTTON
=========================== */

.menu-toggle{

    display:none;

    width:48px;

    height:48px;

    background:none;

    border:none;

    padding:0;

    cursor:pointer;

    z-index:101;

}

.menu-toggle span{

    display:block;

    width:28px;

    height:2px;

    margin:6px auto;

    background:#fff;

    transition:.35s ease;

}

.menu-toggle.active span:nth-child(1){

    transform:translateY(8px) rotate(45deg);

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:translateY(-8px) rotate(-45deg);

}