header.site-header {
	height: 70px;
	height: var(--headerHeight, 70px);
	background-color: #383232;
	display: flex !important;
	justify-content: center;
	flex-direction: column;
	padding: 0;
}
header.site-header.sticky {
	/* background: rgba(0,0,0,0.3); */
	background-color: #383232;
}
header.site-header > .wrapper {
	width: 95%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 1rem;
	position: relative;
}
header.site-header .logo-img {
  max-width: 320px;
}
header.site-header .logo-img img {
  width: 100%;
}
/* nav */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}
.header-nav {
    flex: 4;
}
.header-search {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
	gap: 1rem;
	align-items: center;
}
.header-search .search-box {
    width: 100%;
    max-width: 250px;
    height: 35px;
    /* background-color: #e9e9e9; */
	background: none;
	border: 1px solid #FFF;
	border-radius: 13px;
}
.header-search .search-box #searchInput {
	font-size: 0.8rem;
	color: #FFF;
}
.header-search .search-box #searchInput::placeholder {
	color: #FFF;
}
.search-box form {
    display: flex;
    justify-content: space-between;
    height: 100%;
}
.search-box input {
    height: 100%;
    background: none;
    border: none;
    outline: none;
    padding-left: 10px;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    min-width: 0;
    flex: 1;
}
.search-box .search-btn {
    height: 100%;
    padding: 0 8px;
	width: auto;
	background: none;
	border: none;
}
.search-box button i {
    font-size: 1rem;
	color: #FFF;
}
.lang-btns {
	margin: 0;
}
.lang-btns .wrapper {
    display: flex;
    justify-content: flex-end;
    gap: 7px;
}
.lang-btn {
    width: 30px;
    height: 20px;
	border: none;
	background: none;
	padding: 0;
	cursor: pointer;
}
.lang-btn img {
    display: block;
    width: 100%;
    height: 100%;
}
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
	margin-left: 2rem;
    gap: 0.5rem;
}
.nav-menu.lang {
	margin-left: 5rem;
}
.nav-item {
    cursor: pointer;
    position: relative;
	line-height: normal;
}
.nav-item.categories-drop {
	position: static;
}
.nav-item > a {
    font-size: 1.1rem;
    padding: 8px;
    color: #fff;
	text-decoration: none;
}
.nav-item.lang > a {
	font-size: 1rem;
}
.nav-item.active::after {
    opacity: 1;
    visibility: visible;
    bottom: -6px;
}
.nav-item:hover > a {
    color: rgba(255, 255, 255, 0.8);
}
.nav-item:hover::after {
    bottom: -6px;
    opacity: 1;
    visibility: visible;
    background-color: rgba(255, 255, 255, 0.5);
}
.nav-item.nav-drop:hover::after {
    opacity: 0;
    visibility: hidden;
}
.nav-drop a i {
    font-size: 0.7rem;
}
.nav-drop .drop-btn {
    display: none;
    padding: 0 10px;
    color: var(--darkBlue);
}
.nav-drop .drop-btn i {
    font-size: 1.2rem;
    color: #fff;
}
.nav-drop .drop-menu {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s all;
    background-color: #FFF;
	padding: 0.25rem;
	max-height: 80vh;
	overflow-y: auto;
    z-index: 9;
    min-width: 150px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
header.sticky .nav-drop .drop-menu,
header.sticky .nav-drop .sub-drop-menu {
	/* background: rgba(0,0,0,0.7); */
}
.nav-item:hover > .drop-menu {
    opacity: 1;
    visibility: visible;
}
.drop-menu .drop-item {
    cursor: pointer;
    padding: 4px 6px;
	position: relative;
}
.drop-item > a {
    display: block;
    font-size: 1rem;
    color: #222;
    padding: 4px;
	text-align: left;
}
.categories.drop-menu .drop-item a { padding: 2px 4px; }
.drop-item:hover > a {
    color: #0073e6 !important;
	text-decoration: none;
}
.drop-item:hover > a span {
	text-decoration: underline;
}
.hidden-check {
    display: none;
}
.nav-btn {
    cursor: pointer;
    padding: 6px;
	width: auto !important;
}
.nav-btn i {
    font-size: 1.5rem;
    color: #fff;
}
.nav-btn.close-nav {
    display: none;
    width: 30px;
    height: 30px;
    padding: 4px;
	margin-right: 10px;
}
.nav-btn.close-nav i {
	font-size: 1.7rem;
}
.nav-btn.open-nav i {
    font-size: 1.8rem;
}
.header-btns {
    display: none;
}

.mobile-menu-header {
	display: none;
}
.site-header .mobile-menu-header .logo-img {
	max-width: 250px;
	padding: 5px;
}
.categories .drop-item.new-cat a {
	color: red;
}
/* end nav */



/* nav responsive */
@media only screen and (max-width: 1400px) {
	.nav-menu {
		margin-left: 1rem;
	}
}
@media only screen and (max-width: 1250px) {
    .header-search .search-box {
        max-width: 160px !important;
    }
    .nav-item > a {
        font-size: 1rem !important;
    }
	.nav-item.lang > a {
		font-size: 0.9rem !important;
	}
	.nav-menu {
		margin-left: 0;
	}
	header.site-header > .wrapper {
        gap: 0.5rem;
    }
	header.site-header .logo-img {
		max-width: 240px;
	}
}
@media only screen and (max-width: 1000px) {
	.header-search .search-box {
        max-width: 140px !important;
    }
}
@media only screen and (max-width: 970px) {
	header.site-header.sticky {
		background: #383232;
	}
    .header-content {
        z-index: 9;
        position: fixed;
        width: 100%;
        top: 0;
		gap: 1rem;
        right: 0;
        min-height: 100vh;
        transform: translateY(-100%);
        display: flex;
        flex-direction: column-reverse;
        justify-content: flex-start;
        transition: 0.3s all;
        background-color: #544f4f;
    }
	.mobile-menu-header {
		display: flex;
		justify-content: space-between;
		width: 100%;
		padding: 0.9rem;
		background: #383232;
		box-sizing: border-box;
	}
    .header-search {
        min-height: 10vh;
        flex: 0;
        flex-direction: column-reverse;
        justify-content: space-between;
        width: 100%;
        gap: 0.5rem;
    }
    .lang-btns {
        position: static;
        display: flex;
        justify-content: center;
    }
    .lang-btns .wrapper {
        gap: 10px;
    }
    .header-search .search-box {
        margin: 0 auto;
        max-width: none !important;
        width: 80%;
    }
    .search-box .search-btn {
        padding: 0 10px;
    }
    .header-nav {
        width: 100%;
    }
    .header-nav nav {
        margin-top: 3vh;
        max-height: 70vh;
        overflow-y: auto;
    }
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        background: none;
		width: 80%;
		margin: 0 auto;
    }
    .nav-menu .nav-item {
        display: block;
        width: 100%;
        text-align: left;
    }
    .nav-item > a,
	.nav-item.lang > a {
        padding: 4px;
        font-size: 1.1rem !important;
    }
    .nav-item::after {
        content: none;
    }
    .nav-item > .drop-menu {
        display: none;
        position: static;
        opacity: 1;
        visibility: visible;
        width: 95%;
        margin-left: auto;
		background: none;
		box-shadow: none;
    }
    .nav-drop a {
        display: flex;
        gap: 0.25rem;
        justify-content: flex-start;
        align-items: center;
    }
    .nav-drop .fa-chevron-down {
        display: none;
    }
    .nav-drop .drop-btn {
        display: flex;
    }
	.drop-menu a {
		font-size: 1rem;
	}
    #dropBtn1:checked ~ .drop-menu {
        display: block;
    }
	#dropBtn1:checked ~ .categories-dropdown {
        display: flex;
    }
	#dropBtn2:checked ~ .drop-menu {
        display: block;
    }
    #navOpen:checked ~ .header-content {
        transform: translateY(0);
    }
	.drop-item:hover > a {
		background: none;
		color: #FFF;
	}
    .nav-btn.close-nav {
        display: inline-block;
    }
    .header-btns {
        display: flex;
        gap: 0.5rem;
        align-items: center;
    }
    .header-btns .open-search i {
        transform: translateY(-1px);
    }
	header.site-header > .wrapper {
        justify-content: space-between;
    }
	header.site-header .logo-img {
		max-width: 250px;
	}
	.menu-item.main-item {
		font-size: 1rem;
		font-weight: normal;
	}
	.categories-section {
		padding-left: 1.5rem;
	}
	.nav-drop a {
		color: #FFF !important;
		font-weight: normal;
	}
}

@media only screen and (max-width: 500px) {
	.header-btns .open-search i {
		font-size: 1.3rem;
	}
	.nav-btn.open-nav i {
		font-size: 1.6rem;
	}
	.nav-item > a,
	.nav-item.lang > a {
		font-size: 1.1rem !important;
	}
	.nav-btn.open-search { display: none; }
	.site-header .mobile-menu-header .logo-img { max-width: 200px; }
}