*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

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

#ha-header{
    width:100%;
    background:#000;
    border-bottom:none;
    position:sticky;
    top:0;
    z-index:9999;
}

/* =================================
WORDPRESS ADMIN BAR FIX
================================= */

#wpadminbar{
    z-index:999999 !important;
}

body.admin-bar #ha-header{
    top:32px;
}

@media screen and (max-width:782px){

    body.admin-bar #ha-header{
        top:46px;
    }

}

/* =================================
TOP BAR
================================= */

.ha-topbar{
    height:40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 40px;
    border-bottom:1px solid rgba(255,255,255,.15);
    font-size:12px;
    background:#000;
    color:#fff;
}

.ha-socials{
    display:flex;
    gap:15px;
}

.ha-socials a{
    color:#fff;
    text-decoration:none;
}

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

.ha-main-header{
    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 40px;
    background:#000;
}

/* =================================
LOGO
================================= */

.ha-logo a{
    font-size:32px;
    letter-spacing:6px;
    text-decoration:none;
    color:#fff;
}

/* =================================
NAVIGATION
================================= */

.ha-navigation{
    flex:1;
    display:flex;
    justify-content:center;
}

.ha-menu{
    display:flex;
    list-style:none;
    gap:40px;
}

.ha-menu li{
    position:relative;
}

.ha-menu li a{
    text-decoration:none;
    color:#fff;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:2px;
}

/* =================================
DROPDOWNS
================================= */

.dropdown{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    width:220px;
    background:#111;
    border:1px solid #333;
    list-style:none;
    z-index:999999;
}

.dropdown li a{
    display:block;
    padding:12px 15px;
    color:#fff;
}

.dropdown li a:hover{
    background:#222;
}

.has-dropdown:hover .dropdown{
    display:block;
}

/* =================================
ICONS
================================= */

.ha-icons{
    display:flex;
    gap:20px;
    font-size:20px;
    color:#fff;
}

/* =================================
MOBILE
================================= */

@media(max-width:768px){

    .ha-main-header{
        flex-direction:column;
        height:auto;
        padding:20px;
    }

    .ha-menu{
        flex-direction:column;
        gap:15px;
        margin-top:20px;
    }

    .ha-topbar{
        padding:0 15px;
        text-align:center;
        flex-wrap:wrap;
        height:auto;
        min-height:40px;
    }

}

/* Hide Top Bar */

.ha-topbar{
    transition:all .3s ease;
    overflow:hidden;
}

.ha-topbar.hidden{
    height:0;
    padding-top:0;
    padding-bottom:0;
    border:none;
    opacity:0;
}