/* ==========================================
   Top Bar
========================================== */

.top-bar{
    background:#111;
    color:#fff;
    text-align:center;
    padding:10px 0;
    font-size:14px;
    letter-spacing:.5px;
}

/* ==========================================
   Header
========================================== */

.site-header{
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    border-bottom:1px solid #eee;
}

.site-header .container{

    display:flex;
    justify-content:space-between;
    align-items:center;
    height:85px;

}

.logo a{

    font-size:34px;
    font-weight:800;
    letter-spacing:5px;
    color:#111;

}

.main-menu ul{

    display:flex;
    gap:40px;
    list-style:none;
    margin:0;
    padding:0;

}

.main-menu a{

    color:#111;
    font-size:15px;
    font-weight:600;
    transition:.3s;

}

.main-menu a:hover{

    color:#888;

}

.header-icons{

display:flex;
gap:25px;

}

.header-icons a{

font-size:20px;

color:#111;

transition:.3s;

}

.header-icons a:hover{

transform:translateY(-3px);

}