/* ==========================================================
   HEADER
========================================================== */

.crusto-header{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:90px;

    z-index:1000;

    background:transparent;

}

.crusto-header-inner{

    height:90px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.crusto-logo{

    flex:0 0 auto;

}

.crusto-logo a{

    font-family:"Cormorant Garamond",serif;

    font-size:2rem;

    font-weight:700;

    color:#fff;

    letter-spacing:2px;

}

.crusto-navigation{

    flex:1;

    display:flex;

    justify-content:center;

}

.crusto-menu{

    display:flex;

    align-items:center;

    gap:40px;

}

.crusto-menu a{

    color:#fff;

    font-size:.95rem;

    font-weight:500;

    transition:.3s;

}

.crusto-menu a:hover{

    color:var(--accent);

}

.crusto-header-right{

    display:flex;

    align-items:center;

    gap:24px;

}

.crusto-language{

    display:flex;

    align-items:center;

    gap:8px;

}

.crusto-language a{

    color:#fff;

    font-size:.9rem;

    transition:.3s;

}

.crusto-language a:hover{

    color:var(--accent);

}

.crusto-language span{

    color:rgba(255,255,255,.5);

}

.crusto-header .crusto-button{

    padding:12px 28px;

    font-size:.9rem;
}