.header {
    width: 100%;
    top: 40px;
    z-index: 9;
    background: #fff;
}

.header .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.header-topbar {
    width: 100%;
    min-height: 40px;
    background-color: #EEB400;
}

.header-topbar ul {
    display: flex;
    flex-wrap: wrap;
}

.header-topbar ul li {
    color: #0A0700;
    font-size: 14px;
    font-weight: 700;
}

.header-topbar ul li {
    position: relative;
    line-height: 18px;
    padding: 0px 25px;

}

.header-topbar ul li::after {
    content: "";
    height: 18px;
    width: 1px;
    position: absolute;
    background: #0A0700;
    right: 0;
    top: 0;
}

.header-topbar ul li:last-child::after {
    display: none;
}

.header-topbar ul li:last-child {
    padding-right: 0;
}

.header-topbar ul {
    margin-left: auto;
}

.header-topbar .flex {
    align-items: center;
    min-height: 40px;
}

.header-topbar ul li a {
    color: #0A0700;
}

.header-topbar ul li a:hover {
    color: #fff;
}

/* ------------------------------------------------------------ */

.menu-ul {
    display: flex;
    flex-wrap: wrap;
}

.menu-ul li {
    position: relative;
}

.menu-ul a {
    text-transform: capitalize;
    font-weight: 400;
    font-size: 16px;
    line-height: 110px;
    color: #000;
}



.menu-ul li+li {
    margin-left: 35px;
}

.menu-ul a:hover,
.current_page_item>a,
.current-menu-item>a,
.current-menu-parent>a {
    color: #eeb400;
}

.mob-menu-icn {
    width: 14px;
    height: 8px;
    background: url(../images/menu-arrow-down.png) no-repeat;
    background-size: 13px;
    margin-left: 5px;
    transition: transform .35s ease-in-out;
}

.sub-menu ul li {
    position: relative;
}

.sub-menu li::after {
    content: "";
    width: 12px;
    height: 12px;
    background-image: url(../images/sub-arrow.png);
    background-repeat: no-repeat;
    position: absolute;
    right: 0px;
    top: 0;
    bottom: 0;
    margin: auto;
}

/* ------------------------------------------------------------ */

.sub-menu {
    width: 400px;
    background: #303030;
    padding: 15px 27px 25px;
    transform: translateY(20px);
    transition: opacity .35s ease-out, visibility .35s ease-out, top .35s ease-out, transform .35s ease-in-out;
}

.sub-menu li {
    border-bottom: 1px solid #fff;
    position: relative;
}

.sub-menu li::after {
    content: "";
    width: 12px;
    height: 12px;
    background-image: url(../images/sub-arrow.png);
    background-repeat: no-repeat;
    background-position: center;
}

.sub-menu li+li {
    margin: 10px 0 0 0;

}

.sub-menu li a {
    width: 100%;
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 40px;
    white-space: nowrap;
    color: #fff;
}

.sub-menu li a:hover {
    color: #eeb400;
}



.header li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.header-options {
    margin-left: 55px;
}

.contact-btn {
    padding: 0px 28px;
    height: 48px;
    font-size: 13px;
    display: inline-block;
    align-content: center;
    text-transform: uppercase;
    color: #000;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-btn span {
    position: relative;
    z-index: 2;
}

.contact-btn::after {
    content: "";
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    position: absolute;
    background-color: #191C40;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.contact-btn:hover::after {
    width: 100%;
}

/* ------------------------------------------------------------ */

.menu-icon {
    width: 40px;
    height: 24px;
    z-index: 9;
    position: relative;
    top: 0px;
    cursor: pointer;
    display: none;
    margin-left: auto;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: all var(--transition-time) ease-in-out;
    transition: all var(--transition-time) ease-in-out;
}

.menu-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #292D32;
    border-radius: 4px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: all var(--transition-time) ease-in-out;
    transition: all var(--transition-time) ease-in-out;
}

.menu-icon span:nth-child(1) {
    top: 0;
}

.menu-icon span:nth-child(2),
.menu-icon span:nth-child(3) {
    top: 10px;
}

.menu-icon span:nth-child(4) {
    top: 20px;
}

.menu-icon.open span:nth-child(1) {
    top: 10px;
    width: 0;
    left: 50%;
}

.menu-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.menu-icon.open span:nth-child(4) {
    top: 10px;
    width: 0;
    left: 50%;
}

.menu-icon.open span {
    background: #fff;
}

.search-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    background-color: #292D32;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
    color: #fff;
}

.search-btn:hover {
    background-color: #EEB400;
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .nav-bar {
        position: fixed;
        width: 100%;
        z-index: 8;
        background: #fff;
        top: 0;
        height: 0;
        left: 0;
        right: 0;
        overflow: hidden;
        align-items: baseline;
        display: flex;
        flex-wrap: wrap;
        -webkit-transition: all var(--transition-time) ease-in-out;
        transition: all var(--transition-time) ease-in-out;
    }

    .menu-icon.open span {
        background: #404040;
    }

    .menu-ul li+li {
        margin-left: 0 !important;
    }

    .sub-menu {
        width: 100%;
        padding: 15px 15px;
    }

    .menu-ul .sub-menu a {
        padding-left: 0;
    }

    .header .slow {
        height: 100%;
    }

    .menu-ul {
        display: block;
        flex-wrap: wrap;
        width: 100%;
        margin: 0;
        height: auto;
        overflow: auto;
        flex-direction: initial;
    }

    .nav-bar {
        overflow: scroll;
    }

    .menu-ul li {
        width: 100%;
        --space: 0;
        padding: 0;
        margin: 0;
    }



    .menu-ul li+li {
        margin-top: 20px;
        margin-left: var(--space);
    }


    .menu-ul a {
        font-size: 20px;
        line-height: 25px;
        color: #0e0e0e;
        font-weight: 500;
        padding-left: 5%;
    }

    .header {
        padding: 10px 0;
    }

    .sub-menu {
        width: 100%;
        padding: 0;
        display: none;
        border: none;
        margin-bottom: 0px;
    }

    .sub-menu li {
        margin: 0;
    }

    .sub-menu li a {
        font-size: 14px;
    }

    .sub-menu li+li {
        margin: 10px 0 0 0;
    }

    .mob-menu-icn {
        position: absolute;
        right: 5%;
        top: 2px;
        width: 30px;
        height: 20px;
        background-size: 13px;
        background-position: center;
        z-index: 99;
    }

    body.open .site-logo {
        position: fixed;
        z-index: 99;
        top: 20px;
    }

    .header li .mob-menu-icn.active {
        transform: scaleY(-1);
    }


    .contact-btn {
        display: none;
    }



}





#search-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    top: -20em;
    left: 0;
    right: 0;
    white-space: nowrap;
    z-index: 9999;
    background: rgb(0, 0, 0);
    /* background: linear-gradient(82deg, rgba(0, 0, 0, 0.9108018207282913) 0%, rgba(0, 0, 0, 0.9220063025210083) 100%); */
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 500ms ease all;
    -moz-transition: 500ms ease all;
    transition: 500ms ease all;
}

#search-menu.toggled {
    top: 0;
    opacity: 1;
    visibility: visible;
}

#search-menu .wrapper {
    position: relative;
}

#search-menu .wrapper input {
    width: 100%;
    height: 60px;
    line-height: 60px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 0px 90px 0 70px;
    background: transparent;
    border: none;
    background-color: #fff;
    font-size: 15px;
    color: #333;
    background-image: url(../images/search.png);
    background-repeat: no-repeat;
    background-position: left 30px center;

}

#search-menu .wrapper input:focus {
    outline: none;
}

#search-menu .wrapper button {
    position: absolute;
    display: block;
    width: 80px;
    height: 60px;
    background-position: center;
    background-color: transparent;
    background-image: url(../images/search-arrow.svg);
    background-repeat: no-repeat;
    background-size: 32px;
    right: 0;
    top: 0;
    border: none;
    color: #bfbfbf;
    font-size: 4em;
    -webkit-transition: 500ms ease all;
    -moz-transition: 500ms ease all;
    transition: 500ms ease all;
}

#search-menu .wrapper button:hover {
    color: #fff;
}

#search-menu .wrapper button:focus {
    outline: none;
}

.search-close {
    width: 30px;
    height: 30px;
    background-position: center;
    background-color: transparent;
    background-image: url(../images/close-icon.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 78px;
    right: 9%;
    cursor: pointer;
}

body.toggled {
    overflow: hidden;
}

.search-inner {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
}

.sub-banner.search-container .container {
    justify-content: left;
}

.sub-banner.search-container h1 {
    text-transform: uppercase;
    margin-bottom: 0px;
}

.search-content {
    padding: 100px 0 70px;
}

.search-result {
    width: 100%;
    padding: 15px 70px 15px 30px;
    font-size: 30px;
    line-height: 40px;
    min-height: 70px;
    border: 1px solid #42ACC7;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    position: relative;
}

.search-page-close {
    height: 70px;
    width: 60px;
    position: absolute;
    top: 0;
    right: 15px;
    background-image: url(../images/search-close.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px;
}

.search-rusult-count {
    width: 100%;
    margin-top: 20px;
}

.search-rusult-count p {
    font-size: 20px;
    font-weight: 500;
}

.search-rusult-count p b {
    font-weight: 500;
}

.search-page-section {
    padding: 20px 0 110px;
}

.search-page-section ul {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    margin-left: -0.5%;
    margin-right: -0.5%;
}

.search-page-section ul li {
    width: 24%;
    margin-left: 0.5%;
    margin-right: 0.5%;
}

.header {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header.header-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #ECECEC;
}