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

.top-header {
    background: #1f1f1f;
    border-bottom: 3px solid #f4a300;
    padding: 5px 0;
    font-size: 14px;
}

/* LEFT CONTACT */

.top-contact a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

.top-contact a:last-child {
    margin-right: 0;
}

.top-contact a i {
    color: #f4a300;
    margin-right: 8px;
    font-size: 14px;
}

.top-contact a:hover {
    color: #f4a300;
}

/* RIGHT SOCIAL */

.top-social a {
    width: 30px;
    height: 30px;
    background: #f4a300;
    color: #1f1f1f;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    margin-left: 5px;

    text-decoration: none;
    transition: all 0.3s ease;
}

.top-social a:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

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

@media (max-width: 767px) {

    .top-header {
        padding: 12px 0;
    }

    .top-contact {
        justify-content: center;
        text-align: center;
        margin-bottom: 10px;
    }

    .top-contact a {
        margin: 5px 10px;
        font-size: 13px;
    }

    .top-social {
        text-align: center !important;
    }

    .top-social a {
        margin: 0 5px;
    }

}

@media (max-width: 480px) {

    .top-contact {
        flex-direction: column;
    }

    .top-contact a {
        margin: 5px 0;
    }

}

/* CTA BUTTON MENU */

#menu-birdnest-main-menu .menu-btn > a,
#mobmenuright .menu-btn > a {
    background: #f4a300;
    color: #ffffff !important;
    padding: 10px 22px !important;
    border-radius: 50px;
    margin-left: 15px;
    transition: all 0.3s ease;
    font-weight: 600;
}

#menu-birdnest-main-menu .menu-btn > a:hover,
#mobmenuright .menu-btn > a:hover {
    background: #1f1f1f;
    color: #ffffff !important;
    text-decoration: none;
}

#menu-birdnest-main-menu .menu-btn > a:after,
#mobmenuright .menu-btn > a:after{
	display: none !important;
	content:none !important;
}

