:root {
	--section-bg-light: #f5f5f5;
	--section-bg-dark: #333333;
	--white: #ffffff;
	--black: #333333;
	--primary: #2e3192;
	--secondary: #666666;
	--tertiary: #56c5d0;
	--gray: #d7dfe5;
	--font: 'Poppins', sans-serif;
	--font-roboto: 'Roboto', sans-serif;
}

* {
	margin: 0;
	padding: 0;
	list-style: none;
	box-sizing: border-box;
	outline: none !important;
	box-shadow: none !important;
}

html {
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--font);
	overflow-x: hidden;
}

a,
a:hover {
	text-decoration: none !important;
	color: inherit;
}

body {
	background-color: var(--white);
	position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font);
}

p {
	font-size: 16px;
	color: var(--secondary);
	margin-bottom: 20px !important;
	font-weight: 400;
	line-height: 24px;
	font-family: var(--font-roboto);
}

p.large {
	font-size: 22px;
	color: var(--secondary);
	margin-bottom: 30px !important;
	font-weight: 400;
	line-height: 32px;
	font-family: var(--font-roboto);
}

label {
	font-family: var(--font-roboto) !important;
}

.btn::before,
.btn::after {
	position: absolute;
	content: "";
}


.section {
	width: 100%;
	padding: 50px 0;
	display: block;
	position: relative;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.section_bg {
	background-color: var(--section-bg);
}

.section_primary {
	background-color: var(--primary);
}

.section_secondary {
	background-color: var(--secondary);
}

.section_tertiary {
	background-color: var(--tertiary);
}

.section_gray {
	background-color: var(--gray);
}

.section_dark {
	background-color: var(--black);
}

.form-control {
	width: 100%;
	min-height: 45px;
	border-radius: 0px;
	border: 1px solid #cccccc;
	font-family: var(--font-roboto) !important;
	font-weight: 400;
	z-index: 6;
	background: none;
	position: relative;
}

.form-control::placeholder {
	color: var(--secondary);
	font-weight: 400;
	opacity: 0;
}

select.form-control,
.form-control option {
	color: var(--black) !important;
	font-weight: 400 !important;
	line-height: 45px !important;
	padding: 0 15px;
}

.form-control:focus {
	border-color: var(--tertiary) !important;
}

.text-box {
	position: relative;
	width: 100%;
}

.text-box .label {
	width: auto;
	background-color: #fff;
	position: absolute;
	padding: 0 7px;
	font-size: 16px;
	top: 10px;
	left: 10px;
	display: block;
	transition-duration: 0.3s;
	z-index: 1;
}

.enq .text-box .label {
	width: auto;
	background-color: var(--gray);
	position: absolute;
	padding: 0 7px;
	font-size: 16px;
	top: 10px;
	left: 10px;
	display: block;
	transition-duration: 0.3s;
	z-index: 1;
}

.form-control:focus+.label {
	top: -12px;
	transition-duration: 0.3s;
	z-index: 10;
}

.form-control:not(:placeholder-shown)+.label {
	top: -12px;
	z-index: 10;
}


.form-control:focus::placeholder {
	opacity: 1;
}

.enq .form-control {
	border-color: #b0beca;
}

.enq .form-control:focus {
	background-color: var(--gray);
}

/* select arrow */
select {
	background-image: url("../img/select-down.png") !important;
	background-position: right 10px center !important;
	background-repeat: no-repeat !important;
	background-size: 11px !important;
	border-radius: 2px;
	border: none;
	padding: 10px 30px 10px 10px;
	outline: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
}



/* Header */
#header {
	position: relative;
	z-index: 1030;
	font-family: var(--font-roboto) !important;
}

#header .header-body {
	display: flex;
	flex-direction: column;
	background: var(--white);
	transition: min-height 0.3s ease;
	width: 100%;
	z-index: 1001;
}


.header-border {
	width: 100%;
	height: 10px;
	background: linear-gradient(180deg, rgba(86, 197, 208, 1) 50%, rgba(46, 49, 146, 1) 50%);
}

#header .header-container.header-container-height-xs {
	height: 80px;
}

#header .header-container.header-container-height-sm {
	height: 100px;
}

#header .header-container.header-container-height-md {
	height: 125px;
}

#header .header-container.header-container-height-lg {
	height: 145px;
}

#header .container {
	position: relative;
}

@media (max-width: 767px) {
	#header .container {
		width: 100%;
	}
}

#header .header-row {
	display: flex;
	flex-grow: 1;
	align-items: center;
	align-self: stretch;
	max-height: 100%;
}

#header .header-column {
	display: flex;
	align-self: stretch;
	align-items: center;
	flex-grow: 1;
	flex-direction: column;
}

#header .header-column.header-column-border-right {
	border-right: 1px solid rgba(0, 0, 0, 0.06);
}

#header .header-column.header-column-border-left {
	border-left: 1px solid rgba(0, 0, 0, 0.06);
}

#header .header-column .header-row {
	justify-content: inherit;
}



#header .header-top {
	display: flex;
	align-items: center;
	border-bottom: 2px solid rgba(0, 0, 0, 0.06);
	min-height: 47px;
}


#header .header-logo {
	margin: 16px 0;
	margin: 1rem 0;
	position: relative;
	z-index: 1;
}

#header .header-logo img {
	transition: all 0.3s ease;
	position: relative;
	top: 0;
	image-rendering: -webkit-optimize-contrast;
	transform: translateZ(0);
}

#header .header-nav {
	padding: 16px 0 0 0;
	min-height: 55px;
}

#header .header-nav-features.header-nav-features-start {
	padding-left: 0;
	margin-left: 0;
	padding-right: 20px;
	margin-right: 10px;
}

#header .header-nav-features.header-nav-features-start:not(.header-nav-features-no-border):before {
	left: auto;
	right: 0;
}

#header .header-nav-features.header-nav-features-center {
	padding-left: 20px;
	margin-left: 10px;
	padding-right: 20px;
	margin-right: 10px;
}

#header .header-nav-features.header-nav-features-center:after {
	display: block;
	left: auto;
	right: 0;
}

#header .header-nav-features .header-nav-top-icon,
#header .header-nav-features .header-nav-top-icon-img {
	font-size: 12.8px;
	font-size: 0.8rem;
	position: relative;
	top: -1px;
	color: #444;
}

#header .header-nav-features.header-nav-features-light .header-nav-top-icon,
#header .header-nav-features.header-nav-features-light .header-nav-top-icon-img {
	color: var(--white);
}

#header .header-nav-features .header-nav-top-icon-img {
	top: -2px;
}

#header .header-nav-features .header-nav-feature {
	position: relative;
}

#header .header-nav-features .header-nav-features-dropdown {
	opacity: 0;
	top: -10000px;
	position: absolute;
	box-shadow: 0 10px 30px 10px rgba(0, 0, 0, 0.05);
	background: var(--white);
	padding: 17px;
	min-width: 300px;
	z-index: 10000;
	right: 100%;
	margin-right: -25px;
	margin-top: 30px;
	transition: opacity .2s ease-out;
	pointer-events: none;
}

#header .header-nav-features .header-nav-features-dropdown:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 5px;
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 7px solid white;
	transform: translate3d(-7px, -6px, 0);
}

#header .header-nav-features .header-nav-features-dropdown.show {
	opacity: 1;
	top: auto;
	pointer-events: all;
}

@media (max-width: 991px) {
	#header .header-nav-features .header-nav-features-dropdown.show {
		top: -50px;
		box-shadow: none;
	}

	#header .header-nav-features .header-nav-features-dropdown.show:before {
		display: none;
	}
}

#header .header-nav-features .header-nav-features-dropdown.header-nav-features-dropdown-arrow-dark:before {
	border-bottom-color: #181b1e;
}

@media (min-width: 992px) {
	#header .header-nav-features .header-nav-features-dropdown.header-nav-features-dropdown-reverse {
		right: auto;
		margin-right: 0;
		left: 100%;
		margin-left: -25px;
	}

	#header .header-nav-features .header-nav-features-dropdown.header-nav-features-dropdown-reverse:before {
		right: auto;
		left: 5px;
		transform: translate3d(7px, -6px, 0);
	}
}

@media (max-width: 440px) {
	#header .header-nav-features .header-nav-features-dropdown.header-nav-features-dropdown-mobile-fixed {
		position: fixed;
		right: auto;
		left: 50%;
		transform: translate3d(-50%, 0, 0);
	}

	#header .header-nav-features .header-nav-features-dropdown.header-nav-features-dropdown-mobile-fixed:before {
		content: none;
	}
}

#header .header-nav-features .header-nav-features-dropdown.header-nav-features-dropdown-force-right {
	margin-right: 6px !important;
	right: 0;
}

#header .header-nav-features .header-nav-features-dropdown.header-nav-features-dropdown-dark {
	background: var(--dark);
}

#header .header-nav-features .header-nav-features-dropdown.header-nav-features-dropdown-dark:before {
	border-bottom-color: var(--dark);
}

#header .header-nav-features .header-nav-features-cart {
	z-index: 2;
}

#header .header-nav-features .header-nav-features-cart .header-nav-features-dropdown {
	padding: 20px;
}

#header .header-nav-features .header-nav-features-cart .cart-info {
	position: absolute;
	width: 100%;
	text-align: center;
	top: 50%;
	margin-top: -4px;
	left: 0;
	padding: 0;
	display: block;
	line-height: 1;
}


#header .header-nav-features .header-nav-features-cart .mini-products-list li .product-image img {
	max-width: 80px;
}

#header .header-nav-features .header-nav-features-cart .mini-products-list li .product-details {
	margin-left: 0;
	line-height: 1.4;
}

#header .header-nav-features .header-nav-features-cart .mini-products-list li .product-details a {
	letter-spacing: 0.005em;
	font-weight: 600;
	color: #696969;
}

#header .header-nav-features .header-nav-features-cart .mini-products-list li .product-details .product-name {
	margin: 15px 0 0;
	font-size: 0.9em;
	font-weight: 400;
}

#header .header-nav-features .header-nav-features-cart .mini-products-list li .product-details .qty-price {
	font-size: 0.8em;
}

#header .header-nav-features .header-nav-features-cart .mini-products-list li .product-details .qty-price .price {
	display: inline-block;
}

#header .header-nav-features .header-nav-features-cart .mini-products-list li .product-details .btn-remove {
	z-index: 3;
	top: 5px;
	right: -5px;
	width: 20px;
	height: 20px;
	background-color: var(--white);
	color: #474747;
	border-radius: 100%;
	position: absolute;
	text-align: center;
	box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
	line-height: 20px;
	font-size: 10px;
}

#header .header-nav-features .header-nav-features-cart .totals {
	padding: 15px 0 25px;
	overflow: hidden;
}

#header .header-nav-features .header-nav-features-cart .totals .label {
	float: left;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 700;
	color: #474747;
}

#header .header-nav-features .header-nav-features-cart .totals .price-total {
	float: right;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 700;
	color: #474747;
}

#header .header-nav-features .header-nav-features-cart .actions {
	padding: 0;
	margin: 0;
}

#header .header-nav-features .header-nav-features-cart .actions .btn {
	display: inline-block;
	min-width: 125px;
	text-align: center;
	margin: 5px 0;
	float: right;
	font-size: 11.2px;
	font-size: 0.7rem;
	padding: 11.2px 16px;
	padding: 0.7rem 1rem;
	text-transform: uppercase;
	font-weight: 600;
}

#header .header-nav-features .header-nav-features-cart .actions .btn:first-child {
	float: left;
}

#header .header-nav-features .header-nav-features-cart.header-nav-features-cart-big .cart-info {
	margin-top: -9px;
	left: -4px;
}

#header .header-nav-features .header-nav-features-cart.header-nav-features-cart-big .header-nav-features-dropdown {
	margin-right: -31px;
	top: 10px;
}

.header-nav-features-toggle {
	color: #999999 !important;
	font-size: 16px;
	font-weight: 400;

}

.header-nav-features-toggle span {
	color: #333;
}

.header-nav-features-toggle i {
	color: var(--tertiary);
}

.header-nav-features-toggle a:hover {
	color: #000;

}

#header .header-nav-features .header-nav-features-user .header-nav-features-toggle .far {
	font-size: 15.2px;
	font-size: 0.95rem;
	margin: 0px 2px 0 0;
	position: relative;
	top: 1px;
}

#header .header-nav-features .header-nav-features-user .header-nav-features-toggle:hover {
	text-decoration: none;
}

#header .header-nav-features .header-nav-features-user .header-nav-features-dropdown {
	margin-right: -27px;
	min-width: 420px;
	padding: 35px;
}

@media (max-width: 767px) {
	#header .header-nav-features .header-nav-features-user .header-nav-features-dropdown {
		min-width: 320px;
	}
}

#header .header-nav-features .header-nav-features-user .actions {
	padding: 0;
	margin: 0;
}

#header .header-nav-features .header-nav-features-user .actions .btn {
	display: inline-block;
	min-width: 125px;
	margin: 5px 0;
	font-size: 11.2px;
	font-size: 0.7rem;
	padding: 11.2px 16px;
	padding: 0.7rem 1rem;
	text-transform: uppercase;
	font-weight: 600;
}

#header .header-nav-features .header-nav-features-user .extra-actions {
	clear: both;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	padding-top: 20px;
	margin-top: 20px;
	text-align: center;
}

#header .header-nav-features .header-nav-features-user .extra-actions p {
	font-size: 12px;
	font-size: 0.75rem;
	margin: 0;
	padding: 0;
}

#header .header-nav-features .header-nav-features-user.signin .signin-form {
	display: block;
}

#header .header-nav-features .header-nav-features-user.signin .signup-form,
#header .header-nav-features .header-nav-features-user.signin .recover-form {
	display: none;
}

#header .header-nav-features .header-nav-features-user.signup .signin-form {
	display: none;
}

#header .header-nav-features .header-nav-features-user.signup .signup-form {
	display: block;
}

#header .header-nav-features .header-nav-features-user.signup .recover-form {
	display: none;
}

#header .header-nav-features .header-nav-features-user.recover .signin-form,
#header .header-nav-features .header-nav-features-user.recover .signup-form {
	display: none;
}

#header .header-nav-features .header-nav-features-user.header-nav-features-user-logged .header-nav-features-dropdown {
	min-width: 320px;
}

#header .header-nav-features .header-nav-features-search-reveal-container {
	display: flex;
	align-items: center;
	min-height: 42px;
}

#header .header-nav-features .header-nav-features-search-reveal .simple-search {
	display: none;
}

#header .header-nav-features .header-nav-features-search-reveal .header-nav-features-search-hide-icon {
	display: none;
	text-decoration: none;
}

#header .header-nav-features .header-nav-features-search-reveal .header-nav-features-search-show-icon {
	display: inline-flex;
	text-decoration: none;
}

#header .header-nav-features .header-nav-features-search-reveal.show .header-nav-features-search-hide-icon {
	display: inline-flex;
	margin-left: 10px;
	align-items: center;
}

#header .header-nav-features .header-nav-features-search-reveal.show .header-nav-features-search-show-icon {
	display: none;
}

#header .header-nav-features .header-nav-features-search-reveal.show .simple-search {
	display: inline-flex;
}

#header .header-nav-features .header-nav-features-search-reveal-big-search {
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	background: var(--white);
	width: 100%;
	height: 100%;
	z-index: 1;
}

#header .header-nav-features .header-nav-features-search-reveal-big-search .big-search-header {
	align-items: center;
}

#header .header-nav-features .header-nav-features-search-reveal-big-search .big-search-header input[type="search"]::-webkit-search-decoration,
#header .header-nav-features .header-nav-features-search-reveal-big-search .big-search-header input[type="search"]::-webkit-search-cancel-button,
#header .header-nav-features .header-nav-features-search-reveal-big-search .big-search-header input[type="search"]::-webkit-search-results-button,
#header .header-nav-features .header-nav-features-search-reveal-big-search .big-search-header input[type="search"]::-webkit-search-results-decoration {
	-webkit-appearance: none;
}

#header .header-nav-features .header-nav-features-search-reveal-big-search .form-control {
	border: 0;
	background: transparent;
	font-size: 22px !important;
	line-height: 1;
	border-bottom: 2px solid var(--grey-500);
	border-radius: 0;
	box-shadow: none;
	position: relative;
	z-index: 1;
}

#header .header-nav-features .header-nav-features-search-reveal-big-search .header-nav-features-search-hide-icon {
	position: absolute;
	right: 0px;
	top: 50%;
	z-index: 2;
	display: block;
	margin-right: 10px;
	margin-top: -10px;
}

#header .header-nav-features .header-nav-features-search-reveal-big-search .header-nav-features-search-hide-icon i {
	font-size: 20px;
}

#header .header-nav-features .header-nav-features-search-reveal-big-search.header-nav-features-search-reveal-big-search-full {
	position: fixed;
	z-index: 100000;
	background: transparent;
}

#header .header-nav-features .header-nav-features-search-reveal-big-search.header-nav-features-search-reveal-big-search-full:before {
	content: "";
	display: block;
	background: rgba(23, 23, 23, 0.95);
	bottom: 0;
	height: 100%;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
}

#header .header-nav-features .header-nav-features-search-reveal-big-search.header-nav-features-search-reveal-big-search-full .form-control {
	color: var(--white);
}

#header .header-nav-features .header-nav-features-search-reveal-big-search.header-nav-features-search-reveal-big-search-full .header-nav-features-search-hide-icon {
	position: fixed;
	top: 25px;
	right: 20px;
	margin-top: 0;
}

#header .header-nav-features .header-nav-features-search-reveal-big-search.header-nav-features-search-reveal-big-search-full .header-nav-features-search-hide-icon i {
	color: var(--white);
}

#header.search-show .header-nav-features .header-nav-features-search-reveal-big-search {
	display: flex;
}

#header .header-search {
	margin-left: 16px;
	margin-left: 1rem;
}

#header .header-search .form-control {
	border-radius: 20px;
	font-size: 0.9em;
	height: 34px;
	margin: 0;
	padding: 6px 12px;
	transition: width 0.3s ease;
	perspective: 1000px;
	width: 170px;
}

#header .header-search .btn-light {
	background: transparent;
	border: 0 none;
	color: var(--grey-500);
	position: absolute;
	right: 0;
	top: 0;
	z-index: 3;
}

#header .header-search .btn-light:hover {
	color: #000;
}

@media (max-width: 991px) {
	#header.header-transparent .header-nav-features .header-nav-features-search .header-nav-features-dropdown.show {
		top: -50px !important;
		box-shadow: none !important;
	}

	#header.header-transparent .header-nav-features .header-nav-features-search .header-nav-features-dropdown.show:before {
		display: none;
	}
}

#header .header-social-icons {
	margin-left: 16px;
	margin-left: 1rem;
}

#header .header-border-left {
	border-left: 1px solid rgba(0, 0, 0, 0.08);
}

#header .header-border-right {
	border-right: 1px solid rgba(0, 0, 0, 0.08);
}

#header .header-border-top {
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

#header .header-border-bottom {
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 991px) {
	#header .header-mobile-border-top:before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	}
}

#header .header-btn-collapse-nav {
	background: var(--grey-500);
	color: var(--white);
	display: none;
	float: right;
	margin: 0 0 0 16px;
	margin: 0 0 0 1rem;
}

#header.header-narrow .header-body {
	min-height: 0;
}

#header.header-narrow .header-logo {
	margin-top: 0;
	margin-bottom: 0;
}

#header.header-narrow .header-nav {
	padding-top: 0;
	padding-bottom: 0;
}

#header.header-no-border-bottom .header-body {
	padding-bottom: 0 !important;
	border-bottom: 0 !important;
}

#header.header-no-border-bottom .header-nav.header-nav-links nav>ul>li>a,
#header.header-no-border-bottom .header-nav.header-nav-links nav>ul>li:hover>a,
#header.header-no-border-bottom .header-nav.header-nav-line nav>ul>li>a,
#header.header-no-border-bottom .header-nav.header-nav-line nav>ul>li:hover>a {
	margin: 0;
}

#header.header-effect-shrink {
	transition: ease height 300ms;
}

#header.header-effect-shrink .header-top {
	transition: ease height 300ms;
}

#header.header-effect-shrink .header-container {
	min-height: 100px;
}

#header.header-effect-shrink .header-logo {
	display: flex;
	align-items: center;
}

#header.header-dark .header-body {
	background: var(--dark);
}

#header.header-dark .header-body .header-nav.header-nav-links-side-header nav>ul>li>a {
	border-bottom-color: #2a2a2a;
}

@media (max-width: 991px) {
	html.mobile-menu-opened #header .header-body[class*="border-color-"] {
		border-bottom: 1px solid rgba(234, 234, 234, 0.5) !important;
	}
}

html:not(.boxed) #header.header-floating-bar {
	position: absolute;
	top: 45px;
	width: 100%;
}

html:not(.boxed) #header.header-floating-bar .header-body {
	border: medium none;
	margin: 0 auto;
	padding: 0;
	position: relative;
	width: auto;
}

html:not(.boxed) #header.header-floating-bar .header-nav-main nav>ul>li.dropdown-mega>.dropdown-menu {
	left: 0;
	right: 0;
}

.header-logo img {
	width: 110px;
}

.sticky-header-active .header-logo img {
	width: 82px;
}

@media (max-width: 991px) {
	html:not(.boxed) #header.header-floating-bar {
		top: 0;
	}
}

@media (max-width: 991px) {
	html:not(.boxed):not(.sticky-header-active) #header.header-floating-bar .header-body {
		margin: 10px;
	}

	html:not(.boxed):not(.sticky-header-active) #header.header-floating-bar .header-nav-main:before {
		display: none;
	}
}

@media (min-width: 1200px) {
	html:not(.sticky-header-active) #header.header-floating-bar .header-body {
		max-width: 1140px;
		right: 15px;
	}

	html:not(.sticky-header-active) #header.header-floating-bar .header-container {
		padding-right: 0px;
		padding-left: 30px;
	}
}

html:not(.boxed) #header.header-full-width .header-container {
	width: 100%;
	max-width: none;
}

html #header.header-bottom-slider {
	position: absolute;
	bottom: 0;
}

html #header.header-bottom-slider .header-body {
	border-top: 1px solid var(--light-rgba-40);
}

html #header.header-bottom-slider.header-transparent-light-top-border .header-body {
	border-top: 1px solid rgba(68, 68, 68, 0.4);
}

html #header.header-bottom-slider.header-transparent-light-top-border-1 .header-body {
	border-top: 1px solid rgba(68, 68, 68, 0.1);
}

html #header.header-bottom-slider.header-transparent-dark-top-border .header-body {
	border-top: 1px solid var(--light-rgba-40);
}

html #header.header-bottom-slider.header-transparent-dark-top-border-1 .header-body {
	border-top: 1px solid var(--light-rgba-10);
}

html.sticky-header-active #header.header-bottom-slider .header-body {
	border-top-color: transparent;
}

@media (max-width: 991px) {
	html #header.header-bottom-slider .header-nav-main {
		top: calc(100% + 15px);
	}

	html.sticky-header-active #header.header-bottom-slider .header-nav-main {
		top: 100%;
	}
}

html #header.header-transparent {
	min-height: 0 !important;
	width: 100%;
	position: absolute;
}

html #header.header-transparent .header-body:not(.header-border-bottom) {
	border-bottom: 0;
}

html:not(.sticky-header-active) #header.header-transparent:not(.header-semi-transparent) .header-body {
	background-color: transparent !important;
}

html:not(.sticky-header-active) #header.header-semi-transparent-light .header-body {
	background-color: rgba(255, 255, 255, 0.8) !important;
}

html:not(.sticky-header-active) #header.header-semi-transparent-dark .header-body {
	background-color: rgba(68, 68, 68, 0.4) !important;
}

html:not(.sticky-header-active) #header.header-transparent-light-bottom-border .header-body {
	border-bottom: 1px solid rgba(68, 68, 68, 0.4);
}

html:not(.sticky-header-active) #header.header-transparent-light-bottom-border-1 .header-body {
	border-bottom: 1px solid rgba(68, 68, 68, 0.1);
}

html:not(.sticky-header-active) #header.header-transparent-dark-bottom-border .header-body {
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

html:not(.sticky-header-active) #header.header-transparent-dark-bottom-border-1 .header-body {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
	html #header.header-transparent .header-body {
		overflow: hidden;
	}

	html #header.header-transparent .header-body.bg-dark .header-nav-main:before,
	html #header.header-transparent .header-body.bg-color-dark .header-nav-main:before {
		background-color: var(--dark);
	}

	html #header.header-transparent .header-nav-main:before {
		width: calc(100% - 30px);
	}

	html #header.header-transparent .header-nav-main nav {
		padding: 0 30px;
	}

	html.sticky-header-active #header.header-transparent .header-nav-main nav {
		padding: 0 15px;
	}
}

html.sticky-header-active #header .header-top.header-top-sticky-remove-bottom-border {
	border-bottom: 0;
}

html.sticky-header-active #header .header-body {
	position: fixed;
	border-bottom-color: rgba(234, 234, 234, 0.5);
	box-shadow: 0 0 3px rgba(234, 234, 234, 0.5);
}

html.sticky-header-active #header .header-body.header-body-bottom-border {
	border-bottom: 1px solid rgba(234, 234, 234, 0.5) !important;
}

html.sticky-header-active #header.header-effect-shrink .header-body {
	position: relative;
}

html.sticky-header-active .d-sticky-header-active-none {
	display: none !important;
}

html.sticky-header-reveal.sticky-header-active #header .header-body {
	position: fixed;
	border-bottom: none;
	width: 100%;
	max-width: 100%;
}

html.sticky-header-enabled #header .header-logo-sticky-change {
	position: relative;
}

html.sticky-header-enabled #header .header-logo-sticky-change img {
	position: absolute;
	top: 0;
	left: 0;
}

html.sticky-header-enabled #header .header-logo-sticky-change .header-logo-non-sticky {
	opacity: 1 !important;
}

html.sticky-header-enabled #header .header-logo-sticky-change .header-logo-sticky {
	opacity: 0 !important;
}

html.sticky-header-enabled.sticky-header-active #header .header-logo-sticky-change .header-logo-non-sticky {
	opacity: 0 !important;
}

html.sticky-header-enabled.sticky-header-active #header .header-logo-sticky-change .header-logo-sticky {
	opacity: 1 !important;
}



/* Header Nav Main */
@media (min-width: 992px) {
	#header .header-nav-main {
		display: flex !important;
		height: auto !important;
	}

	#header .header-nav-main nav {
		display: flex !important;
	}

	#header .header-nav-main nav>ul>li {
		height: 100%;
		align-self: stretch;
		margin-left: 2px;
	}

	#header .header-nav-main nav>ul>li>a {
		display: inline-flex;
		align-items: center;
		white-space: normal;
		color: var(--secondary);
		font-family: var(--font-roboto);
		font-size: 18px;
		font-style: normal;
		font-weight: 500;
		padding: 0.5rem 1rem 2rem 1rem;
		text-transform: capitalize;
		text-decoration: none;
	}

	#header .header-nav-main nav>ul>li>a:after {
		display: none;
	}

	#header .header-nav-main nav>ul>li>a:active {
		background-color: transparent;
		text-decoration: none;
		color: var(--grey-500);
	}

	#header .header-nav-main nav>ul>li>a.dropdown-toggle .fa-chevron-down {
		display: none;
	}

	#header .header-nav-main nav>ul>li>a.active {
		background-color: var(--primary);
		color: var(--white);
	}

	/* #header .header-nav-main nav>ul>li.open>a,
	#header .header-nav-main nav>ul>li.accessibility-open>a,
	#header .header-nav-main nav>ul>li:hover>a {
		color: var(--white);
		background-color: var(--primary);
	} */

	.triangle {
		display: none;
		width: 0px;
		height: 0px;
		border-style: solid;
		border-width: 0 10px 15px 10px;
		border-color: transparent transparent #ccc transparent;
		transform: rotate(0deg);
		position: absolute;
		top: 52px;
		left: 49%;
		z-index: 1;
	}

	#header .header-nav-main nav>ul>li.dropdown:hover .triangle {
		display: block;
	}

	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu {
		top: -10000px;
		display: block;
		opacity: 0;
		left: auto;
		border-radius: 0;
		box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.07);
		margin: 0;
		min-width: 250px;
		background-color: #fff;
		text-align: left;
		/* width: 1000px !important;
		margin: 0 auto !important; */

	}

	.mega-menu-div {
		max-width: 1000px !important;
		margin: 0 auto !important;
		background-color: #f1f1f1 !important;
	}

	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li a {
		font-family: var(--font-roboto) !important;
		color: var(--default);
		font-size: 16px;
		font-weight: 400;
		padding: 12px 18px 12px 18px;
		position: relative;
		text-transform: none;
		text-decoration: none;
		letter-spacing: -0.5px;
	}

	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li a:hover,
	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li a:focus,
	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li a.active,
	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li a:active {
		background-color: transparent;
	}

	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li:hover>a,
	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li:focus>a,
	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li.active>a,
	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li:active>a,
	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li.open>a,
	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li.accessibility-open>a {
		background-color: #e1e1e1;
	}

	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li.dropdown-submenu {
		position: relative;
	}

	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li.dropdown-submenu>a .fa-chevron-down {
		display: none;
	}

	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li.dropdown-submenu>a:after {
		font-family: 'Font Awesome 6 Free';
		content: "\f054";
		font-weight: 900;
		position: absolute;
		top: 50%;
		font-size: 18px;

		right: 15px;
		transform: translateY(-50%);
		transition: all .2s ease-out;
	}

	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li.dropdown-submenu>.dropdown-menu {
		left: 100%;
		display: block;
		margin-top: -8px;
		margin-left: -1px;
		border-radius: var(--border-radius);
		opacity: 0;
		transform: translate3d(0, 0, 0);
	}

	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li.dropdown-submenu.open>a:after,
	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li.dropdown-submenu.accessibility-open>a:after,
	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li.dropdown-submenu:hover>a:after {
		opacity: 1;
		right: 15px;
	}

	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li.dropdown-submenu.open>.dropdown-menu,
	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li.dropdown-submenu.accessibility-open>.dropdown-menu,
	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li.dropdown-submenu:hover>.dropdown-menu {
		top: 0;
		opacity: 1;
	}

	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li.dropdown-submenu.dropdown-reverse:hover>a:after {
		right: 30px;
		transform: translateY(-50%) rotateY(180deg);
	}

	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li.dropdown-submenu.dropdown-reverse>.dropdown-menu {
		left: auto;
		right: 100%;
		transform: translate3d(0, 0, 0);
	}

	#header .header-nav-main nav>ul>li.dropdown .dropdown-menu li:last-child a {
		border-bottom: 0;
	}

	#header .header-nav-main nav>ul>li.dropdown.open>a,
	#header .header-nav-main nav>ul>li.dropdown.accessibility-open>a,
	#header .header-nav-main nav>ul>li.dropdown:hover>a {
		border-radius: var(--border-radius) var(--border-radius) 0 0;
		position: relative;
	}

	#header .header-nav-main nav>ul>li.dropdown.open>a:before,
	#header .header-nav-main nav>ul>li.dropdown.accessibility-open>a:before,
	#header .header-nav-main nav>ul>li.dropdown:hover>a:before {
		content: '';
		display: block;
		position: absolute;
		left: 0;
		right: 0;
		bottom: -3px;
		border-bottom: 5px solid var(--grey-500);
	}

	#header .header-nav-main nav>ul>li.dropdown.open>.dropdown-menu,
	#header .header-nav-main nav>ul>li.dropdown.accessibility-open>.dropdown-menu,
	#header .header-nav-main nav>ul>li.dropdown:hover>.dropdown-menu {
		top: auto;
		display: block;
		opacity: 1;
	}

	#header .header-nav-main nav>ul>li.dropdown.dropdown-reverse>.dropdown-menu {
		left: auto;
		right: 0;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega {
		position: static;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega>.dropdown-menu {
		border-radius: var(--border-radius);
		left: 12px;
		right: 12px;
		width: auto;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-content {
		padding: 1.6rem;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-title {
		color: var(--dark--200);
		display: block;
		font-size: 0.9em;
		font-weight: 600;
		margin-top: 20px;
		padding-bottom: 10px;
		text-transform: none;
		letter-spacing: -0.5px;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-title:first-child {
		margin-top: 0;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-nav {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	#header .header-nav-main nav>ul>li.dropdown-mega .dropdown-mega-sub-nav>li>a {
		border: 0 none;
		display: block;
		font-size: 16px;
		font-weight: normal;
		margin: 0 0 3px -8px;
		padding: 5px 8px;
		text-shadow: none;
		text-transform: none;
		text-decoration: none;
	}



	#header .header-nav-main nav>ul>li.dropdown-mega.dropdown-mega-shop>.dropdown-item {
		padding: 1rem 0.8rem;
	}

	#header .header-nav-main nav>ul>li .wrapper-items-cloned i {
		display: none;
	}

	#header .header-nav-main.header-nav-main-square nav>ul>li>a {
		border-radius: 0 !important;
	}

	#header .header-nav-main.header-nav-main-square nav>ul>li.dropdown .dropdown-menu {
		border-radius: 0 !important;
	}

	#header .header-nav-main.header-nav-main-square nav>ul>li.dropdown .dropdown-menu li.dropdown-submenu>.dropdown-menu {
		border-radius: 0 !important;
	}

	#header .header-nav-main.header-nav-main-square nav>ul>li.dropdown .thumb-info,
	#header .header-nav-main.header-nav-main-square nav>ul>li.dropdown .thumb-info-wrapper {
		border-radius: 0 !important;
	}

	#header .header-nav-main.header-nav-main-square nav>ul>li.dropdown-mega>.dropdown-menu {
		border-radius: 0 !important;
	}

	#header .header-nav-main.header-nav-main-square nav>ul>li.dropdown-mega .dropdown-mega-sub-nav>li>a {
		border-radius: 0 !important;
	}

	#header .header-nav-main.header-nav-main-dropdown-no-borders nav>ul>li.dropdown .dropdown-menu {
		border-radius: var(--border-radius);
	}

	#header .header-nav-main.header-nav-main-dropdown-no-borders nav>ul>li.dropdown .dropdown-menu:not(.border-top) {
		border: 0 !important;
	}

	#header .header-nav-main.header-nav-main-dropdown-no-borders nav>ul>li.dropdown .dropdown-menu li.dropdown-submenu>.dropdown-menu {
		margin-top: -5px;
	}

	#header .header-nav-main.header-nav-main-dropdown-no-borders nav>ul>li.dropdown.dropdown-mega .dropdown-menu.border-top {
		margin-top: -2px !important;
	}

	#header .header-nav-main.header-nav-main-dropdown-border-radius nav>ul>li.dropdown .dropdown-menu {
		border-radius: var(--border-radius) !important;
	}

	#header .header-nav-main.header-nav-main-dropdown-border-radius nav>ul>li.dropdown .dropdown-menu li.dropdown-submenu>.dropdown-menu {
		border-radius: var(--border-radius) !important;
	}

	#header .header-nav-main.header-nav-main-dropdown-borders-radius-0 nav>ul>li.dropdown .dropdown-menu {
		border-radius: 0 !important;
	}

	#header .header-nav-main.header-nav-main-dropdown-borders-radius-0 nav>ul>li.dropdown .dropdown-menu li.dropdown-submenu>.dropdown-menu {
		border-radius: 0 !important;
	}

	#header .header-nav-main.header-nav-main-font-sm nav>ul>li>a {
		font-size: 0.7rem;
	}

	#header .header-nav-main.header-nav-main-font-md nav>ul>li>a {
		font-size: 1rem;
		font-weight: 600;
		text-transform: none;
		letter-spacing: -1px;
	}

	#header .header-nav-main.header-nav-main-font-lg nav>ul>li>a {
		font-size: 1.1rem;
		font-weight: 400;
		text-transform: none;
		letter-spacing: -1px;
	}

	#header .header-nav-main.header-nav-main-font-lg-upper nav>ul>li>a {
		font-size: 0.95rem;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: -1px;
	}

	#header .header-nav-main.header-nav-main-font-lg-upper-2 nav>ul>li>a {
		font-size: 0.82rem;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0;
	}

	#header .header-nav-main.header-nav-main-font-alternative nav>ul>li>a {
		font-family: 'Open Sans', sans-serif;
		font-size: 0.85rem;
		font-weight: 600;
	}

	#header .header-nav-main.header-nav-main-dropdown-modern nav>ul>li.dropdown .dropdown-menu {
		border: 0 !important;
		padding: 15px 8px;
		margin-left: -10px;
	}

	#header .header-nav-main.header-nav-main-dropdown-modern nav>ul>li.dropdown .dropdown-menu li a {
		border-bottom: 0;
		background: transparent !important;
		font-size: 0.85em;
		transition: all .2s ease-out;
		left: 0;
	}

	#header .header-nav-main.header-nav-main-dropdown-modern nav>ul>li.dropdown .dropdown-menu li a:hover,
	#header .header-nav-main.header-nav-main-dropdown-modern nav>ul>li.dropdown .dropdown-menu li a:active {
		left: 5px;
	}

	#header .header-nav-main.header-nav-main-dropdown-modern nav>ul>li.dropdown .dropdown-menu li.dropdown-submenu>.dropdown-menu {
		margin-top: -15px;
	}

	#header .header-nav-main.header-nav-main-dropdown-center nav>ul>li.dropdown:not(.dropdown-mega)>.dropdown-menu {
		transform: translate3d(-50%, 10px, 0) !important;
	}

	#header .header-nav-main.header-nav-main-dropdown-center nav>ul>li.dropdown:not(.dropdown-mega):hover>.dropdown-menu {
		top: 100%;
		left: 50%;
		transform: translate3d(-50%, 0, 0) !important;
	}

	#header .header-nav-main.header-nav-main-dropdown-center.header-nav-main-dropdown-center-bottom nav>ul>li.dropdown:hover>.dropdown-menu {
		margin-top: -14px !important;
	}

	#header .header-nav-main.header-nav-main-dropdown-arrow nav>ul>li.dropdown>.dropdown-item {
		position: relative;
	}

	#header .header-nav-main.header-nav-main-dropdown-arrow nav>ul>li.dropdown>.dropdown-item:before {
		content: '';
		display: block;
		position: absolute;
		top: auto;
		left: 50%;
		width: 0;
		height: 0;
		border-left: 7px solid transparent;
		border-right: 7px solid transparent;
		border-bottom: 7px solid white;
		transform: translate3d(-7px, 10px, 0);
		bottom: 14px;
		margin-top: auto;
		z-index: 1001;
		opacity: 0;
		transition: ease transform 300ms;
	}

	#header .header-nav-main.header-nav-main-dropdown-arrow nav>ul>li.dropdown.open>.dropdown-menu,
	#header .header-nav-main.header-nav-main-dropdown-arrow nav>ul>li.dropdown.accessibility-open>.dropdown-menu,
	#header .header-nav-main.header-nav-main-dropdown-arrow nav>ul>li.dropdown:hover>.dropdown-menu {
		margin-top: -14px !important;
		box-shadow: 0 10px 30px 10px rgba(0, 0, 0, 0.1);
	}

	#header .header-nav-main.header-nav-main-dropdown-arrow nav>ul>li.dropdown.open>.dropdown-item:before,
	#header .header-nav-main.header-nav-main-dropdown-arrow nav>ul>li.dropdown.accessibility-open>.dropdown-item:before,
	#header .header-nav-main.header-nav-main-dropdown-arrow nav>ul>li.dropdown:hover>.dropdown-item:before {
		opacity: 1 !important;
		transform: translate3d(-7px, 0, 0);
	}

	#header .header-nav-main.header-nav-main-dark nav>ul>li>a {
		color: #444;
	}

	#header .header-nav-main.header-nav-main-slide nav>ul>li>a {
		background-color: transparent;
		color: var(--white);
		text-transform: none;
		font-size: 14px;
		font-weight: 500;
		padding: 18px 18px 22px !important;
		margin: 0 !important;
		transition: ease transform 300ms;
		text-decoration: none;
	}
}




/* Header Arrows */
@media (min-width: 992px) {
	#header .header-nav-main-arrows nav>ul>li>a.dropdown-toggle:after {
		display: inline-block;
		font-family: 'Font Awesome 6 Free';
		content: "\f078";
		font-weight: 900;
		border: 0;
		width: auto;
		height: auto;
		margin: 0;
		padding: 0 0 0 6px;
		font-size: 16px;
		color: var(--tertiary);
	}
}



/* Header Nav Main Mobile */
@media (max-width: 991px) {
	#header .header-nav-main {
		position: absolute;
		background: transparent;
		width: 100%;
		top: 100%;
		left: 50%;
		transform: translate3d(-50%, 0, 0);
	}

	#header .header-nav-main:before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 50%;
		width: 100vw;
		height: 100%;
		background: var(--white);
		z-index: -1;
		transform: translateX(-50%);
	}

	#header .header-nav-main nav {
		max-height: 100vh;
		overflow: hidden;
		overflow-y: auto;
		padding: 0 15px;
		transition: ease all 500ms;
	}

	#header .header-nav-main nav.collapsing {
		overflow-y: hidden;
	}

	#header .header-nav-main nav::-webkit-scrollbar {
		width: 5px;
	}

	#header .header-nav-main nav::-webkit-scrollbar-thumb {
		border-radius: 0px;
		background: rgba(var(--grey-500), 0.5);
	}

	#header .header-nav-main nav>ul {
		padding-top: 15px;
		padding-bottom: 15px;
		flex-direction: column;
	}

	#header .header-nav-main nav>ul li {

		clear: both;
		display: block;
		float: none;
		margin: 0;
		padding: 0;
		position: relative;

	}

	#header .header-nav-main nav>ul li a {

		font-style: normal;
		line-height: 20px;
		padding: 7px 15px;
		margin: 1px 0;
		border-radius: var(--border-radius);
		text-align: left;
		font-size: 16px;
		color: #666 !important;
		line-height: 30px;
	}

	#header .header-nav-main nav>ul li a .fa-caret-down {
		line-height: 35px;
		min-height: 38px;
		min-width: 30px;
		position: absolute;
		right: 5px;
		text-align: center;
		top: 0;
	}

	#header .header-nav-main nav>ul li a.dropdown-toggle {
		position: relative;

	}

	#header .header-nav-main nav>ul li a.dropdown-toggle:after {
		content: none;
	}

	#header .header-nav-main nav>ul li a.dropdown-toggle .fa-chevron-down {
		position: absolute;
		top: 0;
		right: 12px;
		width: 30px;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 16px;
		color: var(--tertiary);
	}

	#header .header-nav-main nav>ul li a:active {
		background-color: #f8f9fa;
		color: inherit;
	}

	#header .header-nav-main nav>ul li.dropdown>a.active {
		margin-top: -1px;
		margin-bottom: -1px;
	}

	#header .header-nav-main nav>ul li.dropdown .dropdown-menu {
		background: transparent;
		padding: 0;
		margin: 0;
		font-size: 13px;
		box-shadow: none;
		border-radius: 0;
		border: 0;
		clear: both;
		display: none;
		float: none;
		position: static;
	}

	#header .header-nav-main nav>ul li.dropdown .dropdown-menu li.dropdown-submenu>a {
		position: relative;
	}

	#header .header-nav-main nav>ul li.dropdown .dropdown-menu li.dropdown-submenu>a:after {
		content: none;
	}

	#header .header-nav-main nav>ul li.dropdown .dropdown-menu li.dropdown-submenu>a .fa-chevron-down {
		position: absolute;
		top: 0;
		right: 0;
		width: 30px;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 0.6rem;
	}

	#header .header-nav-main nav>ul li.dropdown .dropdown-menu li.dropdown-submenu.open>.dropdown-menu {
		display: block;
		margin-left: 20px;
	}

	#header .header-nav-main nav>ul li.dropdown.open>.dropdown-menu {
		display: block;
		margin-left: 20px;
	}

	#header .header-nav-main nav>ul li.dropdown-mega .dropdown-mega-sub-title {
		margin-top: 10px;
		display: block;
		text-align: left;
	}

	#header .header-nav-main nav>ul li.dropdown-mega .dropdown-mega-sub-nav {
		margin: 0 0 0 20px;
		padding: 0;
		list-style: none;
	}

	#header .header-nav-main nav>ul li.dropdown-mega .dropdown-mega-sub-nav>li>a {
		display: block;
		text-decoration: none;
	}

	#header .header-nav-main nav>ul li:last-child {
		border-bottom: 0;
	}

	#header .header-nav-main nav>ul>li>a {
		text-transform: capitalize;
		font-weight: 500;
		margin-top: 1px;
		margin-bottom: 1px;
		color: var(--grey-500);
	}

	#header .header-nav-main nav>ul>li>a:active {
		color: var(--grey-500);
	}

	#header .header-nav-main nav>ul>li>a.active {
		color: var(--white) !important;
		background: var(--grey-500);
	}

	#header .header-nav-main nav>ul>li>a.active:focus,
	#header .header-nav-main nav>ul>li>a.active:hover {
		color: var(--white);
		background: var(--grey-500);
	}

	#header .header-nav-main nav .not-included {
		margin: 0;
	}

	#header .header-nav-main a>.thumb-info-preview {
		display: none !important;
	}

	#header .header-nav-main.header-nav-main-square nav>ul>li a {
		border-radius: 0 !important;
	}

	#header .header-nav-main.header-nav-main-slide .wrapper-items-cloned {
		display: none;
	}

	#header .header-nav-bar .header-container {
		min-height: 0;
		height: auto !important;
	}

	#header .header-nav-bar .header-nav {
		min-height: 60px !important;
		padding: 0;
	}

	#header .header-btn-collapse-nav {
		outline: 0;
		display: block;
		position: relative;
		z-index: 1;
	}

	#header .header-nav.header-nav-stripe {
		min-height: 90px;
	}

	#header .header-nav.header-nav-links,
	#header .header-nav.header-nav-line {
		min-height: 70px;
	}

	#header .header-nav.header-nav-dropdowns-dark {
		min-height: 70px;
	}

	#header .header-nav.header-nav-sub-title .header-nav-main nav>ul>li>a>span,
	#header .header-nav.header-nav-sub-title-animated .header-nav-main nav>ul>li>a>span {
		display: block;
		text-transform: none;
		font-weight: normal;
	}
}

/* Header Button Collapse - Skin */
#header .header-btn-collapse-nav {
	background: var(--white);
	color: var(--primary);
	font-size: 25px;
	border: none;
}

.header-nav-features-toggle+.inquiry-div {
	display: none;
}

.header-nav-features-toggle:hover+.inquiry-div {
	/* .inquiry-div { */
	display: block;
	min-width: 360px;
	height: 100px;
	background-color: var(--tertiary);
	position: absolute;
	z-index: 10000;
	top: 30px;
	right: 0;
}

.header-nav-features-toggle {
	cursor: pointer;
}

.inquiry-div {
	display: none;
	width: 360px;
	height: auto;
	background-color: var(--tertiary);
	position: absolute;
	z-index: 1000;
	right: 0;
	top: 45px;
	border-radius: 0px;
	cursor: default;
	padding: 10px !important;
}

.header-nav-features-toggle:hover .inquiry-div {
	display: block;

}

.menu-top-btn {
	/* background-color: #3b3fbc; */
	background-color: #1e2061;
	width: 100%;
	color: #fff;
	font-weight: 400;
	font-size: 400;
	font-size: 15px;
	padding: 10px 0;
	border-radius: 10px;
	position: relative;
}

.menu-top-btn p {
	right: 0px;
	top: -7px;
	position: absolute;
	z-index: 100;
	background-color: var(--tertiary);
	line-height: 14px;
	font-size: 14px;
	padding: 2px 5px;
	margin: 0;
	border-radius: 15px;
	color: #000;
	font-weight: 500;
}

.menu-top-btn img {
	filter: brightness(0) invert(1);
}

.menu-top-btn:hover {
	background-color: #3b3fbc;
	color: #fff;
}

.inquiry-div p {
	color: #fff;
	line-height: 24px;
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 5px !important;
}

.inquiry-div a {
	color: #fff;
	line-height: 24px;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px !important;
	text-decoration: underline !important;
}

.inquiry-detail {
	background-color: #fff;
	padding: 12px;
	width: 100%;
	height: auto;
	margin-top: 10px;
}

.inquiry-detail .color-div {
	width: 100px;
	height: 100px;
	border-radius: 10px;
	margin: 1px;
}

.inquiry-detail .product-name {
	color: #333;
	font-weight: 600;
	font-size: 18px;
	text-transform: uppercase;
	margin-top: 10px;
	margin-bottom: 0px !important;
}

.color-div-content {
	display: flex;
	flex-wrap: wrap;
}

.cart-info {
	background-color: var(--primary);
	min-width: 17px;
	width: auto;
	padding: 0 3px;
	height: 17px;
	position: absolute;
	right: 5px;
	top: 5px;
	border-radius: 50%;
}

.cart-qty {
	font-size: 13px;
	text-align: center;
	color: #fff;
	line-height: 17px;
}


/* Container */
@media (min-width: 1330px) {
	.container:not(.container-bs):not(.container-xl-custom):not(.container-xxl-custom) {
		max-width: 1330px;
	}
}

@media (min-width: 1440px) {
	.container-xl-custom {
		max-width: 1440px;
	}

	.container-xxl-custom {
		max-width: 1630px;
	}
}

/* .header-nav-main ul li:last-child{
	display: none;
} */

.sticky-header-active .header-nav-main ul li:last-child {
	display: block !important;
}

.header-mobile {
	display: none;
	position: fixed;
	width: 100%;
	max-width: 500px;
	height: 100vh;
	background-color: var(--primary);
	z-index: 99999;
	top: 0;
	right: 0;
	box-shadow: -5px 0px 10px -2px rgba(0, 0, 0, 0.3) !important;
	overflow-y: scroll;
}

.logo-div {
	width: 100%;
	background-color: var(--primary);
	padding: 15px;
	position: relative;
	height: 50px;
}

.logo-div img {
	width: 80px;
}

.logo-div i {
	text-align: right;
	float: right;
	font-size: 25px;
	color: var(--black);
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--section-bg-light);
}

.logo-div i:hover {
	color: var(--tertiary);
}


.mobile-menu {
	margin-bottom: 30px;
	width: 100%;
}

.mdn-accordion,
.mdn-accordion * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

.mdn-accordion {
	width: 100%;
	max-width: 740px;
	font-weight: 400;
	/* background: #fff; */
}

.mdn-accordion,
.mdn-accordion ul,
.mdn-accordion ul li {
	list-style: none;
}

.mdn-accordion ul {
	display: none;
}


/* @checkbox or radio 
----------------------------------------------------- */
.mdn-accordion .accordion-toggle {
	position: absolute;
	opacity: 0;
}

/* @first level panels
----------------------------------------------------- */
.mdn-accordion a,
.mdn-accordion .accordion-title {
	color: #788B94;
	display: block;
	background: #ffffff;
	position: relative;
	-webkit-box-shadow: inset 0 -1px #EDF1F2;
	-moz-box-shadow: inset 0 -1px #EDF1F2;
	box-shadow: inset 0 -1px #EDF1F2;
	text-decoration: none;
	font-size: 16px;
	padding: 18px;
}

/* @panels with long text
----------------------------------------------------- */
.mdn-accordion a,
.mdn-accordion .accordion-title {
	cursor: pointer;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}



/* .sub-level .m-down-arrow:hover{
	background-color: rgba(0,0,0,0.3);
} */


/* @show panel content
----------------------------------------------------- */
.mdn-accordion .accordion-toggle:checked+.accordion-title+ul,
.mdn-accordion .accordion-toggle:checked+.accordion-title:nth-of-type(n)+ul {
	display: block;
}

.mdn-accordion li a i,
.mdn-accordion .accordion-title i {
	font-size: 1.1em;
	margin-right: 5px;
}


/* @second level + 
----------------------------------------------------- */
.mdn-accordion ul a,
.mdn-accordion ul .accordion-title {
	padding-left: 40px;
	background-color: #3b3fbc !important;
	color: #fff !important;
}

.mdn-accordion ul ul a,
.mdn-accordion ul ul .accordion-title {
	padding-left: 65px;
	/* background-color: #4348d6; */
	background-color: #1e2061 !important;
	border: 0px !important;
}

.mdn-accordion ul ul ul a,
.mdn-accordion ul ul ul .accordion-title {
	padding-left: 110px;
	background-color: #3b3fbc;
}



/* @second level + :hover
----------------------------------------------------- */
.mdn-accordion ul a:hover,
.mdn-accordion ul .accordion-title:hover {
	background: #FDFDFD;
}


/* @accordion arrow  
------------------------------------------------------- */
.mdn-accordion .accordion-title::before {

	font-size: 1em;
	content: "\f107";
	position: absolute;
	display: inline-block;
	font-family: FontAwesome;
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
	right: 25px;
}

.mdn-accordion .sub-level .sub-level .accordion-title::before {
	font-size: 1em;
	content: "\2b";
}

.sub-level .sub-level .accordion-toggle:checked+.accordion-title::before {
	font-size: 1em;
	content: "\f068" !important;
}


.mdn-accordion .accordion-toggle:checked+.accordion-title::before {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}



.indigo-accordion-theme a,
.indigo-accordion-theme .accordion-title {
	color: #fff;
	background: var(--primary);
	font-weight: 400;
}

.indigo-accordion-theme ul a,
.indigo-accordion-theme ul .accordion-title {
	font-weight: 400;
}

.indigo-accordion-theme a:hover,
.indigo-accordion-theme ul a:hover,
.indigo-accordion-theme .accordion-title:hover,
.indigo-accordion-theme ul .accordion-title:hover {
	background: var(--tertiary);
	color: var(--primary);
}

.indigo-accordion-theme .accordion-toggle:checked+.accordion-title {

	background: var(--tertiary);
	color: var(--primary);
}

.indigo-accordion-theme ul .accordion-toggle:checked+.accordion-title {
	background: #3b3fbc !important;
	color: var(--white) !important;
}

.indigo-accordion-theme ul ul .accordion-toggle:checked+.accordion-title {
	background: var(--primary);
	color: var(--tertiary);
}

.mobile-footer {
	background-color: var(--primary);
	padding: 15px;
	min-height: 50px;
	bottom: 0;
	position: relative;
	width: 100%;
}

.mobile-footer p {
	text-align: center;
	color: var(--white);
}

.mobile-footer p i {
	color: var(--tertiary);
}

.mobile-footer p a:hover {
	color: var(--secondary);
}


/* footer */
.footer {
	padding: 60px 0;
	background-color: #f5f5f5;
	border-top: 5px solid #56c5d0;
	position: relative;
}

.footer-menu {}

.footer-menu-title {
	font-size: 20px;
	font-weight: 500;
	color: var(--primary);
	margin-bottom: 15px;
	font-family: var(--font-roboto);
}

.footer-menu ul {
	padding: 0;
}

.footer-menu ul li a {
	padding: 0;
	font-size: 18px;
	line-height: 36px;
	color: var(--black);
	font-family: var(--font-roboto);
}

.footer-menu ul li a:hover {
	color: var(--primary);
}

.copyright {
	width: 100%;
	height: auto;
	position: absolute;
	bottom: 0px;
	left: 0;
	padding: 0 10px;
}

.copyright h4 {
	font-size: 28px;
	line-height: 36px;
	font-weight: 500;
	color: var(--primary);
	text-align: center;
	font-family: var(--font-roboto);
}

.copyright .form-control {
	z-index: none;
}

.newsletter-form {
	margin: 0 auto;
	max-width: 350px;
	position: relative;
	background-color: #fff;

}

.newsletter-form .form-control {
	background: #fff;
	z-index: none;
	padding-right: 40px;
}

.newsletter-form .form-control::placeholder {
	opacity: 1;
}

.newsletter-form button {
	position: absolute;
	right: 0;
	top: 0;
	height: 45px;
	width: 45px;
	border-radius: 0px;
	color: var(--black);
	z-index: 100;
}

.newsletter-form button:hover {
	color: var(--primary);
}

.copyright p {
	text-align: center;
	color: #999999;
	margin: 0 25px;
}

.copyright p a {
	color: var(--black);
}

.copyright p a:hover {
	color: var(--primary);
}

/* breadcrumb */
.breadcrumb {
	padding: 25px 0;
	font-family: var(--font-roboto) !important;
}

.breadcrumb li a {
	color: #999;
	font-weight: 500;
	font-weight: 400 !important;
}

.breadcrumb li.active {
	color: var(--black);
	font-weight: 400 !important;
}

.breadcrumb a i {
	color: var(--tertiary);
}



/* Social Icons */
.social-icons {
	margin: 0;
	padding: 0;
	width: auto;
}

.social-icons li {
	display: inline-block;
	margin: 0px 7px;
	padding: 0;
	border-radius: 100%;
	overflow: visible;
	background-color: #999999;
	color: #fff;
}

.social-icons li a {
	transition: all 0.2s ease;
	border-radius: 100%;
	display: block;
	height: 28px;
	line-height: 28px;
	width: 28px;
	text-align: center;
	color: var(--white) !important;
	text-decoration: none;
	font-size: 12.8px;
	font-size: 0.8rem;
}

.social-icons li:hover a {
	background: #151719;
	color: var(--white) !important;
}

.social-icons li:hover.social-icons-twitter a {
	background: #1aa9e1 !important;
}

.social-icons li:hover.social-icons-facebook a {
	background: #3b5a9a !important;
}

.social-icons li:hover.social-icons-linkedin a {
	background: #0073b2 !important;
}

.social-icons li:hover.social-icons-rss a {
	background: #ff8201 !important;
}

.social-icons li:hover.social-icons-googleplus a {
	background: #dd4b39 !important;
}

.social-icons li:hover.social-icons-pinterest a {
	background: #cc2127 !important;
}

.social-icons li:hover.social-icons-youtube a {
	background: #c3191e !important;
}

.social-icons li:hover.social-icons-instagram a {
	background: #7c4a3a !important;
}

.social-icons li:hover.social-icons-skype a {
	background: #00b0f6 !important;
}

.social-icons li:hover.social-icons-email a {
	background: #dd4b39 !important;
}

.social-icons li:hover.social-icons-vk a {
	background: #6383a8 !important;
}

.social-icons li:hover.social-icons-xing a {
	background: #1a7576 !important;
}

.social-icons li:hover.social-icons-tumblr a {
	background: #304e6c !important;
}

.social-icons li:hover.social-icons-reddit a {
	background: #ff4107 !important;
}

.social-icons li:hover.social-icons-whatsapp a {
	background: #25d366 !important;
}

.social-icons.social-icons-dark li a {
	background: #181818;
}

.social-icons.social-icons-dark li a i {
	color: var(--white);
}

.social-icons.social-icons-dark-2 li a {
	background: #272a2e;
}

.social-icons.social-icons-dark-2 li a i {
	color: var(--white);
}

.social-icons.social-icons-transparent li {
	box-shadow: none;
}

.social-icons.social-icons-transparent li a {
	background: transparent;
}

.social-icons.social-icons-icon-gray li a {
	color: var(--default) !important;
}

.social-icons.social-icons-icon-gray li:hover a {
	color: var(--white) !important;
}

.social-icons.social-icons-icon-light li a i {
	color: var(--white);
}

.social-icons.social-icons-icon-light.social-icons-clean li a i {
	color: var(--white) !important;
}

.social-icons.social-icons-medium li a,
.social-icons.social-icons-md li a {
	height: 33px;
	line-height: 33px;
	width: 33px;
	font-size: 14.4px;
	font-size: 0.9rem;
}

.social-icons.social-icons-big li a,
.social-icons.social-icons-lg li a {
	height: 48px;
	line-height: 50px;
	width: 48px;
}

@media (max-width: 400px) {

	.social-icons.social-icons-big li a,
	.social-icons.social-icons-lg li a {
		height: 38px;
		line-height: 40px;
		width: 38px;
	}
}

.social-icons.social-icons-opacity-light li a {
	background: rgba(255, 255, 255, 0.04);
}

.social-icons.social-icons-clean-with-border li a {
	background: transparent;
	color: var(--white) !important;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons.social-icons-clean-with-border.social-icons-clean-with-border-border-grey li a {
	border: 1px solid #e7e7e7;
}

.social-icons.social-icons-clean-with-border.social-icons-clean-with-border-icon-dark li a {
	color: #212121 !important;
}

.social-icons.social-icons-clean-with-border.social-icons-clean-with-border-icon-dark li:hover a {
	color: var(--white) !important;
}

.social-icons:not(.social-icons-opacity-light):not(.social-icons-transparent):not(.social-icons-clean):not(.social-icons-clean-with-border):not(.social-icons-dark):not(.social-icons-dark-2):not(.custom-social-icons) li {
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
}

.social-icons:not(.social-icons-opacity-light):not(.social-icons-transparent):not(.social-icons-clean):not(.social-icons-clean-with-border):not(.social-icons-dark):not(.social-icons-dark-2):not(.custom-social-icons) li a {
	color: #fff !important;
	background-color: #0000;
}

.social-icons-dark.social-icons-clean li a,
.social-icons-dark-2.social-icons-clean li a {
	background-color: #999999 !important;
	color: var(--white) !important;
}

.btn {
	font-family: var(--font-roboto);
}

/* Button */
.btn-primary {
	background-color: var(--primary);
	color: #fff;
	border-radius: 50px;
	border: none;
	padding: 5px 40px;
	font-size: 18px;
	line-height: 36px;
	font-weight: 500;
}

.btn-primary:hover {
	background-color: var(--tertiary);
	color: var(--primary);
}

.btn-secondary {
	background-color: var(--secondary);
	color: #fff;
	border-radius: 50px;
	border: none;
	padding: 5px 40px;
	font-size: 18px;
	line-height: 36px;
	font-weight: 500;
}

.btn-secondary:hover {
	background-color: var(--tertiary);
	color: var(--primary);
}

.btn-tertiary {
	background-color: var(--tertiary);
	color: var(--primary);
	border-radius: 50px;
	border: none;
	padding: 5px 40px;
	font-size: 18px;
	line-height: 36px;
	font-weight: 500;
}

.btn-tertiary:hover {
	background-color: var(--white);
	color: var(--primary);
}

.btn-light {
	background-color: var(--white);
	color: var(--primary);
	font-size: 16px;
	font-weight: 600;
	border-radius: 50px;
	border: 0;
}

.btn-light i {
	color: var(--tertiary);
}

.btn-light:hover {
	background-color: var(--tertiary);
	color: var(--primary);
}

.btn-light:hover i {
	color: var(--primary);
}

.section-title {
	font-size: 48px;
	line-height: 60px;
	margin-bottom: 20px;
	color: var(--black);
	font-weight: 700;
	text-transform: capitalize;
}

.main {
	background-color: #fff;
	background-image: url(../img/page-bg.png);
	background-repeat: no-repeat;
	background-position: top center;
	width: 100%;
	background-size: auto;
}

.main-bg {
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: top center;
	width: 100%;
	background-size: cover;
}


/* Main Home Slider */
.main-slider {
	width: 100%;
	height: 668px;
	position: relative;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.overlay {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
	position: absolute;
	top: 0;
	left: 0;
}

.main-slider-content {
	width: 50% !important;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	height: auto;
}

.main-slider-content h2 {
	font-size: 52px;
	font-weight: 700;
	color: var(--white);
	line-height: 65px;
	margin-bottom: 25px;
	text-align: left;
	letter-spacing: 1px;
}

.main-slider-content h4 {
	font-size: 28px;
	font-weight: 400;
	color: var(--white);
	line-height: 36px;
	margin-bottom: 25px;
	text-align: left;
	font-family: var(--font-roboto) !important;
}

.main-banner .swiper-pagination-bullet {
	background-color: rgba(0, 0, 0, 0);
	width: 16px;
	height: 16px;
	margin: 5px !important;
	opacity: 0.6;
}

.main-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
	opacity: 1 !important;
}

.main-banner .swiper-horizontal>.swiper-pagination-bullets,
.main-banner .swiper-pagination-bullets.swiper-pagination-horizontal,
.main-banner .swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 40px;
}

.swiper-pagination-bullet-active .path {
	display: inline-block !important;
	stroke-dasharray: 1000;
	stroke-dashoffset: 0;
	animation: dash linear 120s;
	animation-iteration-count: unset;
}

.path {
	display: none !important;
}

@keyframes dash {
	from {
		stroke-dashoffset: 1000;
	}

	to {
		stroke-dashoffset: 0;
	}
}

/* Home About */

.about-main-text {
	padding-right: 100px !important;
	font-size: 48px;
	line-height: 60px;
	font-weight: 500;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	height: auto;
	color: var(--black) !important;
}

.about-img-1 {
	width: 100%;
	height: 500px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-top-left-radius: 45%;
}

.about-img-2 {
	width: 100%;
	height: 530px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	/*border-top-right-radius: 200px; 
	overflow-x: hidden !important;*/
	position: absolute;
	top: -200px;
	left: 0;
}

.about-sub {
	font-size: 28px;
	line-height: 40px;
	color: var(--black);
}

.trust-img-div {
	background-color: var(--white);
	background-color: #fff;
	border: 2px solid #dbdbdb;
	width: 100% !important;
	height: 120px;
	position: relative;
	padding: 5px;
}

.trust-img {
	max-width: 190px;
	max-height: 120px !important;
	width: auto !important;
	vertical-align: middle !important;
	margin: auto !important;
	top: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	right: 0 !important;
	position: absolute !important;
}

.trust-list h4 {
	color: var(--black);
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 10px;
}

.trust-list ul {
	padding: 0;
}

.trust-list ul li {
	padding-left: 25px;
	font-family: var(--font-roboto);
	color: var(--secondary);
	font-size: 16px;
	line-height: 28px;
	font-weight: 4 00;
	background-image: url(../img/trust-list.png);
	background-repeat: no-repeat;
	background-position: top 10px left;
}

.reach-btn {
	position: absolute;
	bottom: 0;
	left: 0;
	width: auto;
}

/* .product-list-tab{
	display: block !important;
	position: relative !important;
	overflow: none !important;
	width: 100% !important;
	background-color: #fff !important;
	padding: 0 !important;
} */

.explore-pigment {
	position: absolute !important;
	width: 50%;
	height: auto;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.tabbed-content {
	background: #fff;
	box-shadow: 1px 1px 6px #ccc;
	max-width: 100%;
}

.tabs ul {
	margin: 0;
	padding: 0 0 1em 0;
	font-weight: bold;
	width: 100%;
}

.tabs ul li {
	background: #fff;
	height: auto !important;
	margin-left: 0 !important;
	display: block !important;
}

.tabs ul li a {
	padding: 1em 1em;
	display: block;
	width: 100%;
	color: var(--black);
	font-size: 16px;
	font-weight: 500;
	/* line-height: 35px; */
}

.tabs ul li a:hover,
.tabs ul li a.active {
	background: #56c5d0 !important;
	color: var(--black);
	font-size: 16px;
	font-weight: 500;
}

.item {
	margin-bottom: 0px;
}

.item::before {
	cursor: pointer;
	font-weight: bold;
	background: #fff;
	padding: 0.7em 1em !important;
	display: block;
	color: var(--black);
	font-size: 16px;
	font-weight: 500;
}

.item.active::before {
	background: #56c5d0;
	color: var(--black);
	font-size: 16px;
	font-weight: 500;
}

.item.active .item-content {
	padding: 15px;
	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	-o-transition: opacity 0.3s ease-in-out;
	-ms-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

@media all and (min-width: 800px) {

	.tabs-side .tabs li {
		margin-bottom: 0px;
	}
}

/* The project specific CSS starts here This is the minimum CSS that you will need in order for this to work */
.tabbed-content .tabs {
	display: none;
}

.tabbed-content .item {
	min-height: 2em;
}

.tabbed-content .item::before {
	content: attr(data-title);
}

.tabbed-content .item .item-content {
	opacity: 0;
	visibility: hidden;
	height: 0;
}

.tabbed-content .item.active .item-content {
	opacity: 1;
	visibility: visible;
	height: auto;
}

@media all and (min-width: 992px) {
	.tabbed-content .tabs {
		display: block;
	}

	.tabbed-content .tabs li {
		display: inline-block;
	}

	.tabbed-content .tabs li a {
		display: block;
	}

	.tabbed-content .item {
		min-height: 0;
	}

	.tabbed-content .item::before {
		display: none;
	}


	.tabbed-content.tabs-side .tabs {
		width: 33%;
		float: left;
		background-color: #fff;
		height: 100%;

	}

	.tabbed-content.tabs-side .tabs li {
		display: block;
	}

	.tabbed-content.tabs-side .item {
		margin-left: 33%;

	}

}

.mega-menu-item {
	background-color: #f1f1f1;
}

.mega-menu-item ul {
	padding: 0;
}

.mega-menu-item ul li a {
	font-size: 16px !;
	line-height: 48px !important;
	color: #666666;
	font-weight: 500;
	border-bottom: 2px solid #e2e2e2 !important;
	display: block;
	padding: 0 10px !important;
}

.mega-menu-item ul li a:hover {
	color: var(--primary) !important;
	background-color: #fff !important;
}

.mega-menu-item ul li:last-child a {
	color: var(--primary) !important;
	text-transform: uppercase !important;
}

.product_slider {
	width: 100%;
	padding-top: 0px;
	padding-bottom: 50px;
}

.product_slider .swiper-slide {
	background-position: center;
	background-size: cover;
	width: 300px;
	height: 300px;

}

.product_slider .swiper-slide img {
	display: block;
	width: 100%;
}

.product-color-div {
	width: 300px;
	height: auto;
	padding: 10px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.1) !important;
}

.product-color-div p {
	border-bottom: 2px solid #e9e9e9;
}

.product-color-div a {
	color: var(--primary);
	font-weight: 600;
}

.product-color-div a i {
	color: var(--tertiary);
	margin-left: 15px;
}

.product-color-div a:hover {
	color: var(--tertiary) !important;
}

.product-color-div a:hover i {
	color: var(--primary) !important;
}

.color-tile-div {
	display: flex;
	flex-wrap: wrap;
}

.color-tile {
	width: 50%;
	height: 130px;
	border: 1px solid #fff;
	border-radius: 10px;
	padding: 10px;
	position: relative;
}

.reach-registered {
	background-color: var(--primary);
	border: 1px solid var(--tertiary);
	padding: 5px;
	border-radius: 7px;
	text-align: center;
	display: inline;
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	position: absolute;
	bottom: 10px;
	left: 10px;
}

.reach-registered img {
	margin-right: 5px;
}

.product-color-div h4 {
	color: #000;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 18px;
	line-height: 32px;
}

.product-color-div h4 {
	font-size: 16px;
	columns: var(--secondary);
}

.order-first {
	order: 0 !important;
}

.order-0 {
	order: 0 !important;
}

.order-1 {
	order: 0 !important;
}

.main-blog-img {
	width: 100%;
	height: auto;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-top-right-radius: 200px;
}

.blog-tag {
	background-color: var(--secondary);
	color: var(--white);
	width: auto;
	line-height: 28px;
	max-width: 100%;
	padding: 4px 15px;
}

.blog-big-title {
	font-size: 36px;
	line-height: 45px;
	color: #fff;
	font-weight: 400;
	margin-top: 25px;
}

.blog-big-title:hover {
	color: var(--tertiary);
}

.blog-big-date {
	margin-top: 25px;
	color: #fff;
	font-size: 16px;
	line-height: 30px;
}

.blog-big-date i {
	color: var(--tertiary);
	font-size: 20px;
}

.home-blog {
	background-color: #fff;
	border-radius: 5px;
	padding: 10px;
	position: relative;
}

.home-blog .blog-tag {
	background-color: var(--secondary);
	color: var(--white);
	width: auto;
	line-height: 20px;
	max-width: 100%;
	padding: 4px 10px;
	position: absolute;
	right: 15px;
	top: 15px
}

.home-blog img {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}

.home-blog h4 {
	font-size: 24px;
	font-weight: 500;
	color: var(--black);
	margin-bottom: 15px;
	height: 60px;
	overflow-y: hidden;
}

.home-blog a h4:hover {
	color: var(--primary);
}

.home-blog .date-time i {
	color: var(--tertiary);
	font-size: 20px;
}

/* filter */
.filter-div {
	background-color: #d7dfe5;
	position: relative;
}

.filter-div .accordion-body,
.filter-div .accordion-button {
	background-color: #d7dfe5;
}

.filter-div .accordion-body {
	padding-left: 60px;
}

/* .accordion-collapse.collapse{
	display: block;
} */

.filter-div .title {
	color: #333;
	font-weight: 500;
	font-size: 22px;
	margin: 0;
}

.filter-div .title-icon {
	position: relative;

}

.filter-div .form-control {
	background: #fff;
	z-index: none;
}

.filter-div .form-control::placeholder {
	opacity: 1;
}

.search-input {
	position: relative;
}

.search-input input {
	padding-left: 50px;
}

.search-input i {
	color: var(--tertiary);
	position: absolute;
	top: 13px;
	left: 15px;
	font-size: 20px;
	z-index: 10;
}

.page-title {
	font-size: 48px;
	margin-bottom: 25px;
	color: var(--black);
	font-weight: 500;
}

.category-main-img {
	width: 100%;
	background-position: top;
	background-repeat: no-repeat;
	background-size: 100% 450px;
	position: relative;
	padding: 60px;
}

.category-detail {
	background-color: var(--white);
	width: 50%;
	padding: 15px;
	margin-bottom: 50px;
}

.category-detail h4 {
	color: var(--black);
	font-size: 28px;
	margin-bottom: 20px;
}

.category-detail p {
	text-align: left;
	font-size: 16px;
	color: var(--secondary);
}

.sub-category {
	background-color: #f1f1f1;
	margin-bottom: 20px;
}

.sub-category .sub-category-name {
	font-size: 22px;
	color: var(--primary);
	font-weight: 500;
	line-height: 70px;
	padding: 0 15px;
	position: relative;
	display: block;
	background-color: #f1f1f1;
	transition: background-color 0.2s ease-in;
}

.sub-category .sub-category-name i {
	color: var(--tertiary);
	float: right;
	margin-top: 25px;
}

.sub-category:hover .sub-category-name {
	background-color: var(--primary);
	color: var(--tertiary);
	transition: background-color 0.2s ease-in;
}

.featured-product-title {
	color: var(--black);
	font-size: 28px;
	font-weight: 400;
	margin-bottom: 50px;
}

.featured-product {}

.featured-product-next,
.featured-product-prev {
	position: absolute;
	top: 35%;
	z-index: 1000;
}


.featured-product-next i,
.featured-product-prev i {
	color: #fff !important;
	background-color: var(--tertiary);
	font-size: 20px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50px;
}

.featured-product-next {
	right: 0px;
}

.featured-product-prev {
	left: 0
}

.featured-product-next i:hover,
.featured-product-prev i:hover {
	color: #fff !important;
	background-color: var(--primary);
}

.contact-link {
	width: 100%;
	min-height: 150px;
	background-color: var(--primary);
	padding-top: 40px;
}

.contact-link .container {
	display: flex;
}

.contact-link h4 {
	font-size: 28px;
	line-height: 36px;
	color: #fff;
	font-weight: 400;
	margin-right: 25px;
}

.contact-link img {
	width: 67px;
	height: 67px;
	margin-right: 25px;
}

.contact-link .btn-primary {
	height: 67px;
	line-height: 67px;
	padding: 0 25px;
	background-color: var(--tertiary);
	color: var(--primary);
}

.contact-link .btn-primary:hover {
	background-color: var(--white);
}


.contact-link .btn-primary1 {
	height: 67px;
	line-height: 67px;
	padding: 0 25px;
	background-color: var(--primary);
	color: var(--white);
	border-radius: 50px;
	font-size: 18px;
	font-weight: 500 !important;
}

.contact-link .btn-primary1:hover {
	background-color: var(--white);
	color: var(--primary);
}


.sub-category-main-img {
	width: 100%;
	background-position: top;
	background-repeat: no-repeat;
	background-size: 100% 450px;
	position: relative;
	padding: 60px 60px 0 60px;
}

.sub-category-detail {
	background-color: rgba(255, 255, 255, 0.85);
	width: 100%;
	padding: 40px 15px 15px 15px;
	margin-bottom: 50px;
	margin-top: 300px;
	position: relative;
}

.category-detail-back {
	background-color: var(--tertiary);
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	padding: 5px 15px;
	position: absolute;
	top: -17px
}

.category-detail-back:hover {
	background-color: var(--primary);
	color: var(--tertiary);
}

.sub-category-detail h1 {
	color: var(--black);
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 30px;
}

.sub-category-detail h4 {
	color: var(--black);
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 30px;
}

.sub-category-detail p {
	text-align: left;
	font-size: 16px;
	color: var(--secondary);
}

.technical-detail {}

.technical-detail h3 {
	color: var(--black);
	text-decoration-style: 24px;
	font-weight: 500;
	margin-bottom: 30px;
}

.technical-detail h4 {
	color: var(--black);
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 10px;
}

.technical-detail h4:hover {
	color: var(--primary);
}

.product-detail {
	padding: 40px 60px;
	color: #fff !important;
}

.product-detail h1 {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 36px;
	margin-bottom: 20px;
	color: #fff;
}

.product-detail p {
	color: #fff;
	font-size: 18px;
	text-align: left;
	margin-bottom: 20px;
}

.product-detail .btn-primary:hover {
	background-color: var(--white);
	color: var(--primary);
}

.product-detail .form-check-input {
	width: 25px;
	height: 25px;
	margin-top: 0px;
	margin-right: 10px;
	margin-left: 0px;
}

.product-detail .form-check-input:checked {
	background-color: var(--tertiary);
	border-color: var(--tertiary);
}

.product-detail-color-div {
	background-color: #fff;
	padding: 10px;
	border-radius: 10px;
	display: flex;
}

.product-detail-color-div .color-tile-div {
	min-height: 200px;
	width: 50%;
	border: 1px solid #fff;
}

.product-detail .product-detail-color-div {
	box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.2) !important;
}

.color-tile-div p {
	color: var(--secondary);
	margin-bottom: 5px !important;
	font-size: 14px !important;
	line-height: 16px !important;
}

.product-detail-color-div .color-tile-div .color-tile {
	width: 100%;
	height: 225px;
}

.product-detail-title {
	color: var(--black);
	font-size: 24px;
	margin-bottom: 15px;
	font-weight: 500;
}

.product-table {
	padding: 0 12px;
}

.product-table .w-100,
.product-table .w-50 {
	padding: 0;
}

/* .pd-row{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	min-height: 40px;
	border-bottom: 1px solid #ccc;
	font-size: 16px;
	font-weight: 400;
	font-family: var(--font-roboto);
}

.pd-row div{
	padding: 0;
	line-height: 40px;
	margin: 0;
} */

/* .product-table div:nth-child(odd){
	padding-right: 0 !important;
}

.product-table div:nth-child(even){
	padding: 0 !important;
} */

.product-table p {
	border-bottom: 1px solid #ccc;
	color: var(--black);
	padding: 12px 0 !important;
	margin: 0 !important;
}

.product-table strong {
	font-weight: 600;
	width: 50%;
}

/* .table-th-1{
	width: 18%;
}

.table-th-2{
	width: 21%;
}

.table-td-1{
	width: 32%;
}

.table-td-2{
	width: 29%;
} */


.trust-list-check ul {
	padding: 0;
}

.trust-list-check ul li {
	padding-left: 40px;
	color: var(--black);
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
	background-image: url(../img/check-list.png);
	background-repeat: no-repeat;
	background-position: top 7px left;
	font-family: var(--font-roboto);
	margin-bottom: 7px;
}

.btn-application {
	border: 1px solid #ccc;
	width: 100%;
	min-height: 40px;
	text-align: center;
	color: var(--black);
	border-radius: 0px;
	font-weight: 400;
	color: var(--black);
	background-color: #fff;
	padding: 5px 10px;
	font-size: 16px;
	line-height: 24px;
	font-family: var(--font-roboto);
}



.download-list ul {
	padding: 0;
}

.download-list ul li {
	color: var(--black) !important;
	font-size: 18px;
	font-weight: 500;
	border-bottom: 2px solid #e8e8e8;
	line-height: 75px;
	position: relative;
	font-family: var(--font-roboto);
}

.btn-download {
	position: absolute;
	background-color: var(--tertiary);
	color: #fff;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.btn-download:hover {
	background-color: var(--primary);
}

.product-back {
	text-align: center;
	margin-top: 30px;
	font-weight: 600;
	color: var(--primary);

}

.product-back a i {
	color: var(--tertiary);
	font-size: 20px;
}

.technical-detail .nav button {
	border: none;
	color: #666666 !important;
	font-weight: 500;
	font-size: 18px;
}

.technical-detail .nav-tabs {
	border-bottom: 3px solid #ededed;

}

.technical-detail .nav-tabs .nav-link {
	margin-bottom: calc(-3 * var(--bs-nav-tabs-border-width));
	padding: 15px 40px;
}

.technical-detail .nav button.active {
	border-bottom: 3px solid #56c5d0;
	color: var(--primary) !important;
}

.technical-detail .product-color-div {
	background-color: #f7f7f7;
	box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.1) !important;

}

.technical-detail .product-color-div p {
	border-bottom: 2px solid #e9e9e9;
}

.technical-detail .product-color-div a {
	color: var(--primary);
	font-weight: 600;
}

.technical-detail .product-color-div a i {
	color: var(--tertiary);
	margin-left: 15px;
}

.technical-detail .product-detail-color-div {
	padding: 0;
	background-color: #f7f7f7;
	border: none !important;
}

.technical-detail .product-detail-color-div .color-tile-div {
	min-height: 150px;
	border: none !important;
}

.technical-detail .product-detail-color-div .color-tile-div p {
	border: none;
}

.technical-detail .product-detail-color-div .color-tile-div .color-tile {
	height: 150px;
	border: 1px solid #f7f7f7 !important;
}


.inquiry-title {
	font-size: 36px;
	font-weight: 500;
	color: var(--black);
	margin-bottom: 20px;
}

.inquiry-page-div {
	width: 100%;
	border: 2px solid #e5e5e5;
	height: 120px;
	background-color: rgba(255, 255, 255, 0.6);
	padding: 10px;
	position: relative;
	border-radius: 10px;
	margin-top: 10px;
	display: flex;

}

.inquiry-page-div .prod-name-div {
	position: relative;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	height: auto;
	width: auto;
}

.inquiry-page-div .prod-name-div h4 {
	font-size: 24px;
	margin-bottom: 10px;
	color: var(--black);
	font-weight: 500;
}

.inquiry-page-div .prod-name-div h4:hover {
	color: var(--primary);
}

.prod-name-div .label {
	color: var(--tertiary) !important;
	font-weight: 500;
}

.prod-name-div .form-check-input {
	width: 25px;
	height: 25px;
	margin-top: 0px;
	margin-right: 10px;
	margin-left: 0px;
	background-color: #f1f1f1;
}

.prod-name-div .form-check-input:checked {
	background-color: var(--primary);
	border-color: var(--primary);
}

.inquiry-page-div .product-detail-color-div {
	height: 100%;
	padding: 0;
	border: 0px;
	margin-right: 50px;
}

.inquiry-page-div .product-detail-color-div .color-tile-div {
	min-height: 100% !important;
	padding: 0;
	border: 0px;
}

.inquiry-page-div .product-detail-color-div .color-tile-div .color-tile {
	height: 100%;
	width: 100px;
	border: 0px;
	margin-right: 2px;
	font-family: var(--font-roboto);
}

.enquiry-check label {
	font-family: var(--font-roboto);
	font-size: 15px;
}

.enquiry-check .form-check-input {
	width: 25px;
	height: 25px;
	margin-top: 0px;
	margin-right: 10px;
	margin-left: 0px;
	background-color: #fff;
	border: 1px solid #ccc;
}

.enquiry-check .form-check-input:checked {
	background-color: var(--primary);
	border-color: var(--primary);
}

.inquiry-del {
	height: auto;
	position: absolute;
	border: none;
	background: none;
	right: 15px;
	color: var(--black);
	font-weight: 500;
}

.inquiry-del i {
	color: var(--tertiary);
}

.inquiry-del:hover {
	height: auto;
	position: absolute;
	border: none;
	background: none;
	right: 15px;
	color: var(--tertiary)
}



.thank-you {
	width: 100%;
	text-align: center;
}

.thank-you h1 {
	font-size: 36px;
	color: var(--black);
	font-weight: 500;
	margin-bottom: 25px;
}

.thank-you p {
	text-align: center;
	color: var(--secondary);
	margin-bottom: 25px;
}

.thank-you a {
	color: var(--secondary);
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 25px !important;

	line-height: 35px !important;
}

.thank-you a:hover {
	color: var(--primary);
}

.thank-you h5 {
	color: var(--secondary);
	font-size: 20px;
	font-weight: 400;
	margin: 25px 0;
}

.thank-you .btn-primary {
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	margin: 0;

}

.product_slider .swiper-pagination-bullet {
	background: var(--primary);
	opacity: 1;
	width: 10px;
	height: 10px;
}

.product_slider .swiper-pagination-bullet-active {
	background-color: var(--tertiary);
	opacity: 1;
}

.blog_slider .swiper-pagination-bullet {
	background: #fff;
	opacity: 1;
	width: 10px;
	height: 10px;
}

.blog_slider .swiper-pagination-bullet-active {
	background-color: var(--tertiary);
	opacity: 1;
}

.fix-inq-btn {
	width: 100%;
	text-align: center;
	background-color: var(--primary);
	color: #fff;
	border-radius: 0px;
	border: none;
	padding: 5px 40px;
	font-size: 18px;
	line-height: 36px;
	font-weight: 500;
	position: fixed;
	z-index: 1;
	bottom: 0;
	display: none;
}

.fix-inq-btn:hover {
	background-color: var(--tertiary);
}

.fix-inq-btn:hover img {
	filter: brightness(0);
}

.inq-hide {
	display: none;
}

.inq-show {
	display: block;
}

.download {}

.download .form-check-input {
	width: 25px;
	height: 25px;
	margin-top: 0px;
	margin-right: 10px;
	margin-left: 0px;
	background-color: #ccc;
}

.download .form-check-input:checked {
	background-color: var(--primary);
	border-color: var(--primary);
}

.page-head {
	width: 100%;
	min-height: 270px;
	height: auto;
	background-color: var(--primary);
	padding: 50px 0;
}

.page-head h1 {
	color: var(--white);
	font-size: 48px;
	font-family: var(--font);
	font-weight: 500;
	margin-bottom: 20px;
}

.page-head p {
	color: var(--white);
	font-size: 20px;
	line-height: 30px;
}

.about-page-img {
	position: absolute;
	top: -320px;
	width: 100%;
	border-top-right-radius: 200px;
	margin-bottom: 30px;
}

.vision-mission {
	width: 100%;
	position: relative;
	padding-left: 200px;
	margin-bottom: 80px;
}

.vision-mission img {
	position: absolute;
	left: 0;
}

.vision-mission h3 {
	font-size: 48px;
	margin-bottom: 15px;
	font-family: var(--font);
	color: var(--black);
}

.main-blog .blog-big-title {
	color: var(--black);
}

.main-blog .blog-big-date {
	color: var(--black);
}

.main-blog {
	margin-bottom: 50px;
}

.blog-detail-btn {
	color: var(--primary);
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 500;
	font-family: var(--font-roboto);
	transition-duration: 0.5;
}

.blog-detail-btn i {
	color: var(--tertiary);
	margin-left: 10px;
	transition-duration: 0.5;
}

.blog-detail-btn:hover {
	color: var(--tertiary);
	transition-duration: 0.5;
}

.blog-detail-btn:hover i {
	color: var(--primary);
	margin-left: 15px;
	transition-duration: 0.5;
}

.blog-page {
	margin-bottom: 40px;
}

.blog-img {
	width: 100%;
	max-height: 215px;
	border-top-right-radius: 75px;
}

.blog-link {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	padding-left: 15px;
}

.blog-link h4 {
	color: var(--secondary);
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 0px !important;
}

.blog-link .blog-big-date {
	color: var(--secondary);
	margin: 10px 0 !important;
}

.back-btn {
	color: var(--primary);
	font-size: 16px;
	font-weight: 600;
}

.back-btn i {
	color: var(--tertiary);
	margin-right: 10px;
}

.back-btn:hover {
	color: var(--tertiary);
}

.back-btn:hover i {
	color: var(--primary);
	margin-right: 15px;
}

.blog-detail-title {
	color: #333;
	font-size: 48px;
	margin: 25px 0;
}

.main-blog-title .blog-big-date {
	color: var(--black);
}

.blog-share {
	margin: 30px 0;
}

.blog-share ul {
	padding: 0;
	margin: 0;
	display: inline;
}

.blog-share ul li {
	display: inline-block;
	margin: 0 3px;
}

.blog-share ul li .social {
	background-color: var(--secondary);
	width: 24px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	font-size: 12px;
	color: #fff;
	border-radius: 20px;
	display: block;
}

.blog-share ul li .social:hover {
	background-color: var(--primary);
}

.blog-detail-sub-text {
	font-size: 24px;
	color: var(--secondary);
	line-height: 36px;
	margin: 30px 0;
}

.blog-detail-img {
	width: 100%;
	border-top-right-radius: 200px;
	margin-bottom: 30px;
}

.blog-detail-sub-img {
	width: 100%;
	border-top-right-radius: 0px;
	margin-bottom: 30px;
}

.blog-sub-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--black);
}

.blog-sidebar h3 {
	color: var(--black);
	font-size: 24px;
	font-weight: 600;
	font-family: var(--font);
	margin-bottom: 15px !important;
}

.blog-side-div {
	width: 100%;
	border-bottom: 1px solid #ccc;
	padding: 15px 0;
}

.blog-side-div h5 {
	color: var(--black);
	font-size: 18px;
}

.blog-side-div .blog-big-date {
	color: var(--black);
	margin: 15px 0 !important;
}

.certificate {
	width: 100%;
	height: auto;
	background-color: var(--white);
	padding: 15px;
	text-align: center;
	box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.1) !important;
	margin-bottom: 20px;
}

.certi-img-div {
	background-color: var(--white);
	background-color: #fff;
	width: 100% !important;
	height: 150px;
	position: relative;
	padding: 5px;
}

.certi-img {
	max-width: 250px;
	max-height: 120px !important;
	width: auto !important;
	vertical-align: middle !important;
	margin: auto !important;
	top: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	right: 0 !important;
	position: absolute !important;
}

.certi-download i {
	color: var(--tertiary);
	margin-left: 15px;
}

.certi-download:hover i {
	color: var(--primary);
}

.address-title {
	color: var(--secondary);
	font-size: 24px;
	line-height: 36px;
	font-family: var(--font);
	margin-top: 20px;
	margin-bottom: 20px;
}

.company-name {
	font-size: 18px;
	font-weight: 600;
	color: var(--black);
	margin: 20px 0;
	font-family: var(--font);
}

.contact-detail {
	width: 100%;
	padding: 0px 0px 0px 70px;
	position: relative;
	margin-bottom: 50px;
}

.contact-detail i {
	color: var(--tertiary);
	position: absolute;
	left: 0;
	font-size: 40px;
	top: 0
}

.production-unit {
	background-color: #fff;
	box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.1) !important;
	padding: 25px;
	height: 100%;
	width: 100%;
	margin: 0 !important;
}

.contact-title {
	font-size: 48px;
	font-weight: 500;
	color: var(--black);
	margin-bottom: 20px;
}

.contact-sub-text {
	color: #666;
	text-align: center;
	font-size: 24px;
	line-height: 36px;
	font-family: var(--font-roboto);
}

.management-img {
	width: 100%;
	border-top-right-radius: 100px;
	margin-bottom: 20px;
}

.management-name {
	font-size: 24px;
	margin-bottom: 5px;
	color: var(--primary);

}

.designation {
	font-size: 18px;
	margin-bottom: 20px;
	color: var(--secondary);
}

.quality-title {
	font-size: 24px;
	line-height: 30px;
	margin-bottom: 20px;
	color: var(--secondary);
}

.quality-page-img {
	width: 100%;
	border-top-right-radius: 200px;
	margin-bottom: 30px;

}

.quality-slider{
	position: absolute;
	top: -275px;
	z-index: 1000;
	width: 100%;
}

.quality-slider .swiper-pagination{
	bottom : 40px
	
}

.quality-slider .swiper-pagination-bullet{
	background: #fff;
	opacity: 0.4;	
	width: 10px;
	height: 10px;
}

.quality-slider .swiper-pagination-bullet-active{
	background: #fff;
	opacity: 1;
}


.regulatory-div {
	background-color: var(--primary);
	width: 100%;
	padding: 20px;
	border-radius: 15px;
	margin-bottom: 20px;
}

.regulatory-div h4 {
	font-size: 24px;
	color: #fff;
	font-weight: 500;
}

.regulatory-div li {
	color: #fff !important;
}

.sustainability-img {
	width: 100%;
	border-top-left-radius: 200px;
	margin-bottom: 30px;
}


.news-event {
	background-color: #fff;
	border-radius: 5px;
	padding: 10px;
	position: relative;
	margin: 0 auto 50px auto;
	box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.1) !important;
	max-width: 370px;
}

.news-event .blog-tag {
	background-color: var(--secondary);
	color: var(--white);
	width: auto;
	line-height: 20px;
	max-width: 100%;
	padding: 4px 10px;
	position: absolute;
	right: 15px;
	top: 15px
}

.news-event img {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}

.news-event h4 {
	font-size: 24px;
	font-weight: 500;
	color: var(--black);
	margin-bottom: 15px;
	height: 60px;
	overflow-y: hidden;
}

.news-event a h4:hover {
	color: var(--primary);
}

.news-event .date-time i {
	color: var(--tertiary);
	font-size: 20px;
}

.news-detail-prev,
.news-detail-next {
	position: absolute;
	top: 50%;
	z-index: 100;
	background-color: rgba(0, 0, 0, 0.6);
	color: #fff;
	width: 40px;
	height: 40px;
	border: 1px solid var(--tertiary);
	line-height: 40px;
	text-align: center;
	font-size: 20px;
	color: var(--tertiary);
	border-radius: 5px;
}

.news-detail-prev:hover,
.news-detail-next:hover {
	background-color: rgba(0, 0, 0, 0.9);
}

.news-detail-next {
	right: 20px;
}

.news-detail-prev {
	left: 20px;
}

.facility-title {
	font-size: 36px;
	color: #333;
	font-weight: 400;
}

ul.tabs-facility {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	height: 50px;
	width: 100%;
	display: flex;
}

ul.tabs-facility li {
	float: left;
	cursor: pointer;
	padding: 0px 15px;
	height: 50px;
	line-height: 50px;
	background-color: var(--tertiary);
	color: #fff;
	overflow: hidden;
	position: relative;
	width: 100%;
	text-align: center;
	margin: 0 2px;
	font-family: var(--font-roboto);
	font-weight: 500;
	border-bottom: 1px solid var(--primary);
}

ul.tabs-facility li:hover {
	background-color: var(--primary);
	color: #fff;
	border-bottom: 1px solid var(--primary);
}

ul.tabs-facility li.active {
	background-color: var(--primary);
	color: #fff;
	display: block;
}

.tab_container {
	border-top: none;
	clear: both;
	width: 100%;
	background: #fff;
}

.tab_content {
	padding: 20px 0;
	display: none;
}

.tab_drawer_heading {
	display: none;
}

.facility-tab-img {
	width: 100%;
	border-radius: 10px;
}

.facility-slider .swiper-pagination-bullet{
	background: #fff;
	opacity: 0.4;	
	width: 10px;
	height: 10px;
}

.facility-slider .swiper-pagination-bullet-active{
	background: #fff;
	opacity: 1;
}


.facility-tab-div {
	background-color: var(--primary);
	width: auto !important;
	padding: 20px;
	border-radius: 15px;
	margin-bottom: 20px;
	display: inline-block;
}

.facility-tab-div h4 {
	font-size: 18px;
	color: #fff;
	font-weight: 500;
	margin-bottom: 10px !important;
}

.facility-tab-div p {
	font-size: 16px;
	color: #fff;
	margin: 0 !important;
}

.career-list .accordion-item {
	border: none !important;
	border-top: 1px solid #ccc !important;
	border-radius: 0px;
}

.career-list .accordion-item:first-child {
	border: none !important;
	border-top: 0px solid #ccc !important;
}

.career-list .accordion-item:last-child {
	border: none !important;
	border-top: 1px solid #ccc !important;
	border-bottom: 1px solid #ccc !important;
}

.career-list .accordion-button {
	background-color: #fff;
	padding: 0;
	font-size: 20px;
	color: var(--secondary);
	border: none !important;
	line-height: 70px;
	font-weight: 400;
	font-family: var(--font-roboto);
}

.career-list .accordion-button:hover,
.career-list .accordion-button:not(.collapsed) {
	color: var(--tertiary);
	font-weight: 500;
}

.career-list .accordion-button::after {
	background-image: url(../img/plus.png);
}

.career-list .accordion-button:not(.collapsed)::after {
	background-image: url(../img/minus.png);
}

.career-list .accordion-body {
	padding: 0 0 20px 0;
}

p.career {
	line-height: 30px;
	font-size: 16px;
	margin-bottom: 0 !important;
}

/* Hide / Show tab's content  */
.tab-content-reach {
	display: none;
	width: 100%;
	max-height: 100%;
	background: #fff;
	background: #d7dfe5;
	padding: 25px;
}

.tab.active+.tab-content-reach {
	display: block;
}


.tab a{
	line-height: 65px;
	padding: 0 15px;
	color: #fff;
	font-family: var(--font-roboto);
	font-size: 18px;
	font-weight: 500;
	display: block;
	margin-bottom: 2px ;
	position: relative;
}

.tab {
	background: #fff;
}

.triangle-tab {
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 0 8px 10px 8px;
	transform: rotate(90deg);
	position: absolute;
	top : 40%;
	right : -13px;
	z-index: 100;
	display: none;
}

.tab.active a .triangle-tab {
	display: block;
}

.tab:hover a .triangle-tab {
	display: block;
}

@media (min-width: 992px) {
	.tab {
		width: 30%
	}
	.tab-content-reach {
		position: absolute;
		top: 0;
		right: 0;
		width: 70%;
		height: 100%;
		overflow-y: auto;
	}
	.tabs-container {
		min-height: auto;
		background: #fff;
	}	
}

.one {
	background: #e32026;
}
.one a .triangle-tab{
	border-color: transparent transparent #e32026 transparent;
}

.two {
	background: #56c5d0;
}
.two a .triangle-tab{
	border-color: transparent transparent #56c5d0 transparent;
}

.three {
	background: #2e3192;
}
.three a .triangle-tab{
	border-color: transparent transparent #2e3192 transparent;
}

.four {
	background: #57b947;
}
.four a .triangle-tab{
	border-color: transparent transparent #57b947 transparent;
}

.five {
	background: #8e5ca6;
}
.five a .triangle-tab{
	border-color: transparent transparent #8e5ca6 transparent;
}




.country-flag{
	width: 20%;
	padding: 5px;
}

.country-flag-div{
	background-color: #fff;
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 7px;
	position: relative;
}

.country-flag-div img{
	/* width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid #ccc; */
	margin: 0 auto;
	display: block;
	margin-top:10px ;
}

.country-flag-div p{
	text-align: center;
	margin-top: 5px;
	margin-bottom: 10px !important;
}

.country-div{
	display: flex;
	flex-wrap: wrap;
}

.career-form-p{
	font-size: 18px;
	text-align: center;
}

.career-form-p a{
	color: var(--primary);
}

.form-control::file-selector-button{
	background-color: var(--tertiary);
	height: 38px;
	float: right;
	color: #fff;
	border: none;
	border-radius: 50px;
	position: absolute;
	right: -5px;
	top : 65%;
	transform: translateY(-50%);
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button{
	background-color: var(--primary);
}

.modal .form-check{
	padding: 0;
}

p a{
	color: var(--primary) !important;
}

p a:hover{
	color: var(--black) !important;
}

.packaging-title {
	font-size: 36px;
	line-height: 50px;
	margin-bottom: 30px;
	color: var(--secondary);
	font-family: var(--font);
}

.packaging-sub-title{
	font-size: 24px;
	font-family: var(--font);
	line-height: 24px;
	margin-bottom: 15px;
	color: var(--secondary);
	font-weight: 500;
}

.pack-img-div {
	background-color: var(--white);
	background-color: #fff;
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2) !important; 
	width: 100% !important;
	height: 250px;
	position: relative;
	padding: 5px;
	margin-bottom: 15px;
	border-radius: 10px;
}

.pack-img {
	max-width: 250px;
	max-height: 230px !important;
	width: auto !important;
	vertical-align: middle !important;
	margin: auto !important;
	top: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	right: 0 !important;
	position: absolute !important;
}


.gender-drop label.label {
    top: -12px !important;
    background-color: #d7dfe5 !important;
    padding: 0 7px !important;
    z-index: 9 !important;
    position: absolute !important;
}
