/* main */
header.header-hero {
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	width: 100%;
	height: 100vh;
	position: relative;
	z-index: 9999;
	overflow: hidden;
}
header.header-hero:after {
	content: '';
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, .5);
	position: absolute;
	top: 0;
	right: 0;
}
.top-header {
	display: flex;
	justify-content: space-between;
	height: 80px;
	align-items: center;
	position: relative;
	z-index: 999;
}
.pg-container-top-header {
	display: flex;
	justify-content: space-between;
}
.right-th {
	width: 90%;
	display: flex;
	gap: 32px;
	align-items: center;
}
.top-header .right-th .logo {
	max-width: 130px;
	max-height: 30px;
	overflow: hidden;
}
.top-header nav.navbar ul {
	margin-bottom: 0;
}
.top-header nav.navbar ul li.menu-item-has-children {
	position: relative;
	margin-left: var(--size-md);
}
.top-header nav.navbar ul li.menu-item-has-children:before {
	position: absolute;
	left: -14px;
	top: 4px;
	content: '\f107';
	font-family: "Font Awesome 5 Free";
	font-weight: 600;
	font-size: var(--size-xs);
}
.top-header .an-btn-menu-bar {
	font-size: var(--size-3xl);
	color: var(--color-n8);
	
}
nav.navbar > ul {
	display: flex;
	gap: 20px;
}
nav.navbar > ul > li.organic {
	margin-left: 20px;
	position: relative;
}
nav.navbar > ul > li > :before {
	content: '';
	width: 200px;
	position: absolute;
	top: 1var(--size-3xs);
	height: 20px;
}
nav.navbar > ul > li > a {
	color: var(--color-n8);
	font-weight: 500;
	font-size: 16px;
}
nav.navbar > ul > li.organic > a:after {
	content: "\f107";
	font-weight: 900;
	font-family: "Font Awesome 6 Free";
	font-size: 12px;
	position: absolute;
	top: 4px;
	left: -15px;
}
nav.navbar > ul > li > ul {
	min-width: 200px;
	position: absolute;
	display: flex;
	flex-direction: column;
	background: var(--color-n10);
	border-radius: var(--size-2xs);
	top: 40px;
	visibility: hidden;
	opacity: 0;
	transition: all .5s ease-in-out;
	overflow: hidden;
	padding-right: 0;
}
nav.navbar > ul > li:hover ul {
	visibility: visible;
	opacity: 1;
}
nav.navbar > ul > li > ul > li a {
	font-size: var(--size-sm);
	display: block;
	padding: var(--size-2xs);
	color: var(--color-n4);
}
nav.navbar > ul > li > ul > li a:hover {
	background-color: var(--color-n9);
}
.left-th {
	display: flex;
	gap: var(--size-2xs);
}
.left-th i.fa-solid.fa-user {
	color: var(--color-n8);
}
.left-th i.fa-solid.fa-user-check {
	color: var(--color-n8);
}
.left-th i.fa-solid.fa-basket-shopping {
	color: var(--color-n8);
}
.left-th .account {
	display: flex;
	justify-content: center;
	width: 50px;
	height: 50px;
}
.left-th .buy {
	padding: var(--size-xs);
	cursor: pointer;
	border-radius: var(--size-2xs);
}
.left-th .buy:hover,
.left-th .buy:hover button i.fa-basket-shopping {
	background-color: var(--color-n10)f;
	transition: all .4s ease-in-out;
	color: var(--color-n4);
}
.left-th .buy:hover .widget_shopping_cart_content {
	visibility: visible;
	opacity: 1;
}
.top-header .cart-count {
	position: absolute;
	left: 62px;
	top: 12px;
}
.left-th .buy span.cart-count:before {
	content: attr(data-count);
	width: 15px;
	height: 15px;
	background: var(--color-n10);
	position: absolute;
	top: var(--size-3xs);
	right: var(--size-3xs);
	border-radius: 50%;
	color: black;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 14px;
}
.main-header {
	margin: 80px auto 0;
	position: relative;
	z-index: 9;
}
.main-header .intro {
	color: var(--color-n10);
	text-align: center;
}
.main-header .intro h4 {
	font-size: 40px;
	margin-bottom: 12px;
}
.main-header .intro h5 {
	font-size: 20px;
	color: var(--color-n8);
}
.main-header .search {
	margin-top: 60px;
	display: flex;
	justify-content: center;
	position: relative;
}
.search input[type="text"] {
	width: 100%;
	height: 60px;
	border-radius: 30px;
	outline: 0;
	padding: 8px 12px;
	background: var(--color-n9);
	transition: ease-in-out .3s all;
	cursor: pointer;
}
.search input[type="text"]:focus {
	background: var(--color-n10);
}
.search form {
	width: 50%;
	position: relative;
	z-index: 99;
	
}
.search button {
	position: absolute;
	left: var(--size-2xs);
	top: var(--size-2xs);
	width: 45px;
	height: 45px;
	background: #263a4d;
	border-radius: 100%;
	color: var(--color-n10);
	padding: 8px;
}
.search button i.fa-solid.fa-magnifying-glass {
	font-size: 20px;
	text-align: center;
}
.bread-title {
	padding: var(--size-md) 0;
	position: relative;
	z-index: 99;
}
.bread-title .breadcrumb-single ul {
	gap: 4px;
}
.bread-title .breadcrumb-single ul i {
	color: var(--color-n9);
	font-size: 8px;
}
.bread-title .breadcrumb-single ul li a {
	color: var(--color-n9);
	font-size: var(--size-md);
}
.bread-title .title {
	margin-top: 8px;
}