/* ==========================================================
   BARAKA HEALTHNET HEADER CSS
========================================================== */

/* Container */

.container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

/* ==========================================================
   HEADER
========================================================== */

.bhn-header{
    position:sticky;
    top:0;
    z-index:9999;
    width:100%;
}

/* ==========================================================
   TOP BAR
========================================================== */

.bhn-topbar{
    background:#056718 !important;
    color:#FFFFFF;
    font-size:14px;
    padding:10px 0;
}

.bhn-topbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-left,
.top-right{
    display:flex;
    align-items:center;
}

.top-left span{
    margin-right:25px;
}

.top-right a{
    color:#FFFFFF;
    margin-left:18px;
    text-decoration:none;
    transition:0.3s;
    font-weight:500;
}

.top-right a:hover{
    color:#F98B0A;
}

/* ==========================================================
   MAIN HEADER
========================================================== */

.bhn-main-header{
    background:#FFFFFF;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.header-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:90px;
}

/* ==========================================================
   LOGO
========================================================== */

.bhn-logo img{
    width:220px;
    height:auto;
    display:block;
}

/* ==========================================================
   NAVIGATION
========================================================== */

.bhn-navigation{
    display:flex;
    align-items:center;
}

.bhn-menu{
    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
    margin:0;
    padding:0;
}

.bhn-menu li{
    position:relative;
}

.bhn-menu li a{
    color:#056718;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.bhn-menu li a:hover{
    color:#F98B0A;
}

/* Active Menu */

.bhn-menu .current-menu-item>a,
.bhn-menu .current_page_item>a{
    color:#F98B0A;
}

.bhn-menu .current-menu-item>a::after,
.bhn-menu .current_page_item>a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:100%;
    height:3px;
    background:#F98B0A;
}

/* ==========================================================
   DONATE BUTTON
========================================================== */

.bhn-donate a{
    display:inline-block;
    background:#F98B0A;
    color:#FFFFFF;
    text-decoration:none;
    padding:14px 30px;
    border-radius:40px;
    font-weight:700;
    transition:.3s;
}

.bhn-donate a:hover{
    background:#F25D0B;
    color:#FFFFFF;
    transform:translateY(-2px);
}

/* ==========================================================
   MOBILE TOGGLE
========================================================== */

.mobile-toggle{
    display:none;
    background:none;
    border:none;
    font-size:30px;
    color:#056718;
    cursor:pointer;
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:900px){

    .bhn-topbar{
        display:none;
    }

    .header-flex{
        min-height:75px;
    }

    .bhn-navigation{
        display:none;
    }

    .bhn-donate{
        display:none;
    }

    .mobile-toggle{
        display:block;
    }

    .bhn-logo img{
        width:170px;
    }
}