header {
    position: relative;
    z-index: 1000;
}

.header-top {
    color: #fff;
    font-size: 14px;
    padding: 5px 0;
    font-weight: 400;
    background: linear-gradient(135deg, #e96f1c, #d65700);
}

.clm.header-top__right {
    text-align: right;
}

/* header.is-scroll .header-bottom {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.129);
	z-index: 99;
} */

header.is-scroll {
    width: 100%;
    top: 0;
    box-shadow: 1px 2px 7px rgba(0, 0, 0, 0.15);
    animation: slide-down .5s linear forwards;
    z-index: 99;
    position: fixed;
}

header.is-scroll .header-top {
    display: none;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-top a {
    color: inherit;
}

.header-lang {
    gap: 5px;
}

.header-lang .active {
    color: #e24b2b;
}

.icon-arrow svg {
    width: 18px;
    height: 18px;
}

.header-action button {
    padding: 0;
}

.header-action svg {
    width: 24px;
    height: 24px;
}

.header-action svg path {
    stroke: #333;
}


/* logo header */
.header-logo {
    line-height: 0;
}

.header-logo img {
    max-width: 85px;
    width: 100%;
}

/* header menu */
.header-bottom {
    padding: 10px 0 10px 0;
    box-shadow: 0 2px 10px 0 rgba(106, 106, 106, 0.25);
    transition: .2s all;
    background: #fff;
}

.header-nav__list {
    gap: 10px 30px;
}

.nav-item {
    position: relative;
    display: flex;
}

.nav-item .icon-arrow {
    padding-top: 6px;
}

.nav-item .icon-arrow svg path {
    stroke: #333;
}

.nav-item>a {
    font-weight: 700;
    font-size: 15px;
    line-height: 2.0;
    color: #333;
    text-transform: uppercase;
}

.nav-item>a svg {
    height: 20px;
    margin-top: 5px;
}

.nav-item>a svg {
    fill: #FFF;
}

.nav-item>a:hover {
    color: #d55600;
}

.nav-item:hover .nav-item__sub {
    height: max-content;
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
}



.nav-item__sub li {
    padding: 5px 20px;
}

.nav-item__sub a {
    color: #333;
    font-size: 15px;
    font-weight: 400;
}

/* header-action */
.header-action {
    gap: 10px;
    margin-top: 5px;
}

.header-action a {
    line-height: 1;
}

/* header-search-mobile */
.header-search {
    position: absolute;
    top: calc(100% + 30px);
    left: 50%;
    width: 100%;
    max-width: 1230px;
    transform: translateX(-50%);
    z-index: 1001;
    border-radius: 0 0 5px 5px;
    overflow: hidden;
    box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.2);
    background: #fff;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: .3s all;
}

.header-search.show {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.header-search__box .ctnr {
    max-width: 850px;
}

.header-search__box .search-input {
    height: 42px;
    width: 100%;
    padding: 10px 65px 10px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
}

.header-search__form {
    position: relative;
}

.header-search__form .search-btn {
    position: absolute;
    background: transparent;
    padding: 0;
    border: none;
    height: 42px;
    width: 50px;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header-search__form .search-btn svg {
    width: 25px;
    height: 25px;
}

.header-search__form .search-btn svg path {
    stroke: #d55600;
}

.header-search__close {
    background: transparent;
    margin-left: auto;
    display: block;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-search__close svg {
    width: 35px;
    height: 35px;
    stroke: white;
}

.navbar-collapse__heading {
    position: relative;
    border-bottom: 1px solid #eee;
    padding: 10px 10px 5px;
    margin-bottom: 10px;
}

.navbar-collapse__logo {
    max-width: 75px;
}

.navbar-collapse__close {
    position: absolute;
    padding: 0;
    right: 10px;
    top: 15px;
}

.navbar-collapse__close svg {
    width: 20px;
    height: 20px;
}

.navbar-collapse__close svg path {
    fill: #333;
}

.gtranslate_wrapper a {
    margin: 0 5px;
}

.header-main__social {}

.header-main__social ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    justify-content: right;
}

.header-main__social ul li a {
    display: flex;
}

.header-main__social ul li a img {
    width: 25px !important;
    height: 25px !important;
}

.btn-cart {
    position: relative;
}

.btn-cart::before {
    content: attr(data-cart);
    position: absolute;
    background: var(--color-main2);
    color: white;
    font-size: 10px;
    border-radius: 5px;
    padding: 2px;
    line-height: 1;
    top: -5px;
    right: -2px;
    padding: 2px 3px;
}

@media (min-width: 1023px) {
    .nav-item__sub a:hover {
        color: #000000;
    }

    .nav-item__sub {
        position: absolute;
        left: 0;
        top: 100%;
        background: white;
        width: max-content;
        border-radius: 10px;
        padding: 10px 0;
        height: 0;
        transform: translateY(-100px) scale(0);
        visibility: hidden;
        opacity: 0;
        transition: all .3s ease-in-out;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

    .nav-item__sub li {
        position: unset;
        display: flex;
        justify-content: space-between;
        position: relative;
    }

    .nav-item__sub li:hover .nav-item__sub-child {
        display: block;
    }

    .nav-item__sub-child {
        position: absolute;
        left: 100%;
        background: white;
        top: 0;
        padding: 10px 0;
        border-radius: 10px;
        display: none;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        /* width: 230px; */
        width: max-content;
    }

    .nav-item__sub .icon-arrow {
        transform: rotate(-90deg);
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .header-nav__list {
        gap: 10px 11px;
    }



    .nav-item>a {
        font-size: 15px;
    }
}

.header-bottom__row {
    align-items: center;
}

@media (max-width: 1023px) {
    .header-bottom__row {
        justify-content: space-between;
    }

    .navbar-collapse {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 100;
        background: #fff;
        width: 310px;
        height: 100%;
        opacity: 0;
        transform: translateX(-100%);
        transition: all .5s;
        height: calc(100vh + 10px);
    }

    .navbar-collapse .nav-item__sub a {
        color: #333;
    }

    .navbar-collapse.is-open {
        transform: translateX(0);
        opacity: 1;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }


    .header-nav__list {
        flex-direction: column;
        gap: 0;
        max-height: calc(100vh - 100px);
        overflow: auto;
    }

    .header-nav__list li>.icon-arrow svg {
        transition: all .3s ease-in;
    }

    .header-nav__list li.is-open>.icon-arrow svg {
        transform: rotate(180deg);
    }

    .nav-item {
        flex-wrap: wrap;
        padding: 5px 0 5px 10px;
    }

    .nav-item .icon-arrow {
        position: absolute;
        top: 5px;
        right: 10px;
        transition: .3s;
    }

    .nav-item .icon-arrow.active {
        transform: rotate(180deg);
    }

    .nav-item__sub {
        width: 100%;
        display: none;
    }

    .nav-item ul {
        display: none;
    }

    .nav-item__sub li {
        list-style: disc;
        padding: 5px 30px 5px 0;
        margin-left: 15px;
        color: #000;
        position: relative;
    }
}

@media(max-width:990px) {
    .header-top {
        display: none;
    }
}

@media (max-width: 640px) {
    .header-logo img {
        max-width: 75px;
    }

    .header-logo {
        padding-top: 0;
    }

    .home-about .c-ttl__01 {
        font-size: 2.3rem;
    }

    .header-top__left {
        display: none;
    }

    .header-search {
        padding: 12px;
    }

    .header-main__social ul {
        justify-content: center;
    }
}

.header-top__left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.qodef-lang-separator {
    margin: 0 5px;
}