/* =========================================
   SHAKUR DIGITAL HUB
   YEMOLY HEADER
   ========================================= */

.shakur-yemoly-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 2px solid #e5e5e5;
    position: relative;
    z-index: 9999;
    box-sizing: border-box;
}

.shakur-yemoly-header-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.shakur-yemoly-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    min-height: 52px;
}

.shakur-yemoly-navigation a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 17px 20px;

    color: #222222;
    background: transparent;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;
    line-height: 1;

    border-bottom: 3px solid transparent;

    transition:
        color .2s ease,
        background-color .2s ease,
        border-color .2s ease;
}

.shakur-yemoly-navigation a:hover {
    color: #168a3a;
    background: #f7f7f7;
    border-bottom-color: #168a3a;
}


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

@media (max-width: 767px) {

    .shakur-yemoly-header-inner {
        padding: 0;
    }

    .shakur-yemoly-navigation {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        min-height: 50px;

        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .shakur-yemoly-navigation::-webkit-scrollbar {
        display: none;
    }

    .shakur-yemoly-navigation a {
        flex: 0 0 auto;

        padding: 16px 17px;

        font-size: 13px;
        white-space: nowrap;
    }
}


/* =========================================
   SMALL MOBILE PHONES
   ========================================= */

@media (max-width: 480px) {

    .shakur-yemoly-navigation a {
        padding: 15px 14px;
        font-size: 12px;
    }

}