/* engage — menu.css | site header */

/*-- header start --*/
.site-header {
    background-color: var(--engage-white);
}

.site-header_main.follow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--engage-white);
    box-shadow: 0 2px 14px rgba(var(--engage-text-rgb), 0.08);
    animation-duration: 0.4s;
    animation-timing-function: var(--ease-out-quart);
    animation-fill-mode: both;
}

.site-header_main.follow.slideOutUp {
    animation-duration: 0.25s;
}


/*-- top bar --*/
.site-header_top {
    padding: 6px 20px;
    background-color: var(--engage-tan);
}

.site-header_top p {
    font-family: var(--ff-alt);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    color: var(--engage-black);
    text-align: center;
}

/*-- main row --*/
.site-header_main {
    padding: 12px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 56px;
}

.site-logo {
    flex-shrink: 0;
    width: 212px;
    margin-right: auto;
}

.site-logo img {
    width: 100%;
}

.site-header_contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-heading);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--engage-black);
}

.site-header_phone {
    color: inherit;
    white-space: nowrap;
}

.site-header_phone:hover,
.site-header_phone:focus {
    text-decoration: underline;
}

.header-mobile-btn{
    display: none;
}

/*-- responsive --*/
@media (max-width: 1200px) {
    .header-inner { gap: 26px; }
}

@media (max-width: 1024px) {
    .header-inner { gap: 35px; }
}

@media (max-width: 991px) {
    .header-inner { gap: 28px; }
    .site-header_contact-text { display: none; }
}

@media (max-width: 767px) {
    .site-header_main{
        padding: 0;
    }
    .header-inner { flex-wrap: wrap;         gap: 10px;
        padding: 11px 0;   }
    .site-logo { width: 162px; }
    .btn { flex-basis: 100%; }
    .site-header_top p { font-size: 14px; line-height: 1.4;          max-width: 280px;
        margin: 0 auto;}

    .site-header_contact{
        font-size: 18px;
    }
    .header-mobile-btn{
        display: block;
        padding: 5px 0;
        border-radius: 0;
    }
    .header-mobile-btn:hover , .header-mobile-btn:focus{
        border-radius: 0;
        outline: none !important;
        box-shadow: none !important;
    }
    .header-desktop-btn{
        display: none !important;
    }
}
/*-- header end --*/
