:root {
    --main-color: #fcb853;
    --main-color-25: rgb(251 176 59 / 25%)
}
.header {
    background: #1f1f1f;
    padding: 15px 3rem;
    z-index: 9999;
    color: #fff;
}

.header .banner__mobile {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 1s, visibility 600ms;
    transition: opacity 1s, visibility 600ms;
}

.header.fixed {
    position: fixed;
    width: 100%;
}

.header.fixed .banner__mobile {
    opacity: 0;
    height: 0;
    visibility: hidden;
}

.header.fixed:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
    pointer-events: none;
    z-index: -1;
    -webkit-transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

.header-container {
    max-width: 100%;
}

@media (max-width: 991.98px) {
    .header {
        padding: 0;
    }
}

.header-logo {
    display: inline-block;
    max-width: 140px;
    z-index: 5;
}

@media (max-width: 991.98px) {
    .header-logo {
        max-width: 140px;
    }
}

@media (max-width: 720px) {
    .header-logo img {
        width: 140px;
        height: 53px;
    }

    .footer-logo img {
        width: 170px;
        height: 64px;
    }

    .footer__link.phone img {
        width: 21px;
        height: 21px;
    }

    .header__link.phone img {
        width: 24px;
        height: 24px;
    }

    .header-menu-mobile__link.phone img {
        width: 21px;
        height: 21px;
    }

    .header-mobile__close img {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 575.98px) {
    .header-logo {
        max-width: 140px;
    }
}

.header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (min-width: 992px) {
    .header-right {
        min-width: 600px;
        margin-left: 50px;
    }
}

.header .btn-enquire {
    padding: 20px 12px;
    gap: 10px;
    background: #FFFFFF;
    border: 1px solid var(--main-color);
    border-radius: 8px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 132%;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: var(--main-color);
    letter-spacing: 0.1em;
    justify-content: center;
}

@media (max-width: 575.98px) {
    .header .btn-enquire {
        letter-spacing: 0.1em;
        height: 27px;
        line-height: 27px;
        font-size: 12px;
        font-weight: 500;
    }
}
.header-menu__open img{
    width: 16px;
    height: 18px;
}

.header-menu__open span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    background: #0DD1E6;

}

.header-menu__open span:nth-child(1) {
    top: 0;
}

.header-menu__open span:nth-child(2), .header-menu__open span:nth-child(3) {
    top: 7px;
}

.header-menu__open span:nth-child(4) {
    top: 14px;
}

.header-menu__open.active {
    display: none;
}

.header .btn-login {
    border-radius: 3px;
    margin-left: 5px;
    width: 130px;
    height: 47px;
    max-width: 180px;
    line-height: 47px;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 300;
    text-align: center;
    cursor: pointer;
    margin-left: 1rem;
}

.header a {
    color: #fff;
    font-size: 1.6rem;
    line-height: 2.4rem;
}

.header__link.phone{
    margin-right: 10px;
}

@media (max-width: 767.98px) {
    .header a {
        font-size: 1.5rem;
        line-height: 2.1rem;
    }
}

@media (max-width: 575.98px) {
    .header a {
        font-size: 1.4rem;
    }
}

.header a:hover {
    text-decoration: none;
}

.header__link.phone {
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: "Open Sans Semibold";
    min-width: 139px;
}

@media (min-width: 800px) and (max-width: 991px) {
    .header__link.phone {
        min-width: 160px;
    }
}

.header__link.phone img {
    width: 24px;
    margin-right: 3px;
}

.header .separator {
    color: #1f1f1f;
    font-size: 2rem;
    margin: 0 1rem;
}

.header .order-container {
    max-width: 820px;
}