/****************************************/
/*** 	   01. Global Variables 	  ***/
/****************************************/

:root {
	--primary-color: #000000;
	--secondary-color: #F8F8F8;
	--bg-color: #FFFFFF;
	--text-color: #666666;
	--accent-color: #C48D35;
	--white-color: #FFFFFF;
	--black-color: #000000;
	--divider-color: #0000001A;
	--dark-divider-color: #FFFFFF1A;
	--error-color: rgb(230, 87, 87);
	--default-font: 'Overused Grotesk';
}

/****************************************/
/*** 	     02. General css		  ***/
/****************************************/

html,
body {
	width: 100%;
	overflow-x: clip;
}

body {
	font-family: var(--default-font);
	font-size: 18px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background-color: var(--bg-color);
}

::-webkit-scrollbar-track {
	background-color: var(--primary-color);
	border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar {
	width: 7px;
	background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb {
	background: var(--accent-color);
}

::selection {
	color: var(--white-color);
	background-color: var(--accent-color);
	filter: invert(1);
}

p {
	line-height: 1.6em;
	margin-bottom: 1.33em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
	margin: 0;
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

	a:hover {
		text-decoration: none;
		outline: 0;
	}

	a:focus {
		text-decoration: none;
		outline: 0;
	}

.container {
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

.image-anime {
	position: relative;
	overflow: hidden;
}

	.image-anime:after {
		content: "";
		position: absolute;
		width: 200%;
		height: 0%;
		left: 50%;
		top: 50%;
		background-color: rgba(255,255,255,.3);
		transform: translate(-50%,-50%) rotate(-45deg);
		z-index: 1;
	}

	.image-anime:hover:after {
		height: 250%;
		transition: all 600ms linear;
		background-color: transparent;
	}

.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

	.reveal img {
		height: 100%;
		width: 100%;
		-o-object-fit: cover;
		object-fit: cover;
		-webkit-transform-origin: left;
		transform-origin: left;
	}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

	.row > * {
		padding-right: 15px;
		padding-left: 15px;
	}

	.row.no-gutters {
		margin-right: 0px;
		margin-left: 0px;
	}

		.row.no-gutters > * {
			padding-right: 0px;
			padding-left: 0px;
		}

.btn-default {
	position: relative;
	display: inline-block;
	font-size: 18px;
	font-weight: 600;
	line-height: 1em;
	text-transform: capitalize;
	background: transparent;
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
	border-radius: 0;
	padding: 15px 60px 15px 30px;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

	.btn-default:hover {
		color: var(--white-color);
	}

	.btn-default::before {
		content: '';
		position: absolute;
		top: 50%;
		right: 30px;
		width: 16px;
		height: 16px;
		background-image: url('../images/arrow-primary.svg');
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
		transform: translateY(-50%);
		transition: all 0.4s ease-in-out;
	}

	.btn-default:hover::before {
		filter: brightness(0) invert(1);
		transform: translateY(-50%) rotate(45deg);
	}

	.btn-default::after {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		left: 50%;
		right: 50%;
		opacity: 0;
		background-color: var(--primary-color);
		border-radius: 0;
		transition: all 0.4s ease-in-out;
		z-index: -1;
	}

	.btn-default:hover::after {
		left: 0;
		right: 0;
		opacity: 1;
	}

	.btn-default.btn-highlighted {
		color: var(--white-color);
		border-color: var(--white-color);
	}

		.btn-default.btn-highlighted:hover {
			color: var(--primary-color);
		}

		.btn-default.btn-highlighted::before {
			background-image: url('../images/arrow-white.svg');
		}

		.btn-default.btn-highlighted:hover::before {
			filter: brightness(0) invert(0);
		}

		.btn-default.btn-highlighted::after {
			background: var(--white-color);
		}

.readmore-btn {
	position: relative;
	display: inline-block;
	line-height: 1.45em;
	text-transform: capitalize;
	font-weight: 600;
	color: var(--white-color);
	padding-right: 36px;
	transition: all 0.4s ease-in-out;
}

	.readmore-btn::before {
		content: '';
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0px;
		width: 26px;
		height: 26px;
		background-color: var(--accent-color);
		background-image: url('../images/arrow-white.svg');
		background-repeat: no-repeat;
		background-position: center center;
		background-size: 12px auto;
		border-radius: 50%;
		transition: all 0.4s ease-in-out;
	}

	.readmore-btn:hover::before {
		transform: translateY(-50%) rotate(45deg);
	}

.cb-cursor:before {
	background: var(--accent-color);
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading {
	height: 120px;
	position: relative;
	width: 120px;
	border-radius: 100%;
}

.loading-container {
	margin: 40px auto;
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 0.5s ease-in-out;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	max-width: 80px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.light-section {
	background-color: var(--secondary-color);
}

.dark-section {
	background-color: var(--primary-color);
}

.section-row {
	margin-bottom: 80px;
}

	.section-row .section-title {
		margin-bottom: 0;
	}

		.section-row .section-title.section-title-center {
			width: 100%;
			max-width: 700px;
			margin: 0 auto;
			text-align: center;
		}

.section-btn {
	text-align: right;
}

.section-content-btn .section-btn {
	margin-top: 30px;
	text-align: left;
}

.section-title-content p {
	margin-bottom: 20px;
}

	.section-title-content p:last-child {
		margin-bottom: 0;
	}

.section-title {
	margin-bottom: 40px;
}

	.section-title .section-sub-title {
		position: relative;
		display: inline-block;
		font-size: 16px;
		font-weight: 500;
		text-transform: capitalize;
		line-height: 1.25em;
		color: var(--primary-color);
		background-color: var(--secondary-color);
		border-radius: 40px;
		padding: 7px 16px 7px 32px;
		margin-bottom: 15px;
	}

.light-section .section-title .section-sub-title {
	background-color: var(--white-color);
}

.section-title .section-sub-title::before {
	content: '';
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--accent-color);
	border-radius: 50%;
	width: 6px;
	height: 6px;
}

.section-title.section-sub-heading,
.section-title.section-sub-heading .section-sub-title {
	margin-bottom: 0;
}

.section-title h1 {
	font-size: 74px;
	letter-spacing: -0.01em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2 {
	font-size: 54px;
	letter-spacing: -0.01em;
	line-height: 1.1em;
	margin-bottom: 0;
	cursor: none;
}

.section-title p {
	margin-top: 15px;
	margin-bottom: 0;
}

.dark-section .section-title .section-sub-title {
	background: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	color: var(--white-color);
}

.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p {
	color: var(--white-color);
}

.help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

	.help-block.with-errors ul li {
		color: var(--error-color);
		font-weight: 500;
		font-size: 14px;
	}

.h3.hidden {
	margin: 0;
}

/****************************************/
/**** 	      03. Header css		 ****/
/****************************************/

.topbar {
	background: var(--primary-color);
	padding: 15px 0;
}

.topbar-content-info {
	text-align: center;
}

	.topbar-content-info p {
		color: var(--white-color);
		font-weight: 500;
		line-height: 1.111em;
		margin: 0;
	}

	.topbar-content-info i {
		font-size: 16px;
		color: var(--white-color);
		margin-right: 5px;
	}

header.main-header {
	position: relative;
	background: var(--bg-color);
	z-index: 100;
}

	header.main-header .header-sticky {
		position: relative;
		top: 0;
		z-index: 100;
	}

		header.main-header .header-sticky.hide {
			transform: translateY(-100%);
			transition: transform 0.3s ease-in-out;
		}

		header.main-header .header-sticky.active {
			position: fixed;
			top: 0;
			left: 0;
			right: 0;
			transform: translateY(0);
			background: var(--bg-color);
			border-bottom: 1px solid var(--divider-color);
		}

	header.main-header .container {
		flex-wrap: wrap;
	}

.navbar {
	padding: 0;
	align-items: center;
	flex-wrap: wrap;
}

.header-action-box {
	width: 100%;
	max-width: 1300px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 25px 15px;
	margin: 0 auto;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

	.navbar-brand img {
		max-width: 120px;
	}

.header-search-form-box {
	width: 100%;
	border: 1px solid var(--divider-color);
	border-radius: 2px;
	max-width: 650px;
	padding: 0 20px;
}

.header-search-form {
	display: flex;
	align-items: center;
	gap: 40px;
}

	.header-search-form .form-select {
		position: relative;
		max-width: 190px;
		display: block;
		font-size: 16px;
		font-weight: 500;
		line-height: 1.2em;
		color: var(--primary-color);
		background-color: transparent;
		border: none;
		border-radius: 0;
		outline: none;
		box-shadow: none;
		background-position: right center;
		padding: 14px 15px 14px 0;
	}

		.header-search-form .form-select option {
			font-size: 18px;
			font-weight: 500;
			color: var(--primary-color);
		}

	.header-search-form .form-group {
		display: flex;
		width: calc(100% - 160px);
	}

		.header-search-form .form-group .form-control {
			width: calc(100% - 25px);
			flex: 1;
			font-size: 16px;
			font-weight: 400;
			line-height: 1.25em;
			color: var(--primary-color);
			background: transparent;
			border: none;
			border-radius: 0;
			outline: none;
			box-shadow: none;
			padding: 14px 10px;
		}

			.header-search-form .form-group .form-control::placeholder {
				color: var(--primary-color);
				opacity: 20%;
			}

		.header-search-form .form-group .header-search-btn {
			background: transparent;
			border: none;
			box-shadow: none;
			padding: 0;
		}

			.header-search-form .form-group .header-search-btn i {
				font-size: 20px;
				color: var(--primary-color);
			}

			.header-search-form .form-group .header-search-btn:hover {
				color: var(--accent-color);
			}

.header-action-details ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	list-style: none;
	padding: 0;
	margin: 0;
}

	.header-action-details ul li a {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 5px;
		font-size: 16px;
		font-weight: 500;
		text-transform: capitalize;
		color: var(--primary-color);
	}

		.header-action-details ul li a img {
			width: 100%;
			max-width: 24px;
		}

.main-menu {
	width: 100%;
	background: var(--secondary-color);
}

	.main-menu .navbar-collapse {
		width: 100%;
		max-width: 1300px;
		margin: 0 auto;
		padding: 0 15px;
		gap: 20px;
	}

	.main-menu .nav-menu-wrapper {
		flex: 1;
		text-align: left;
		margin: 0;
	}

		.main-menu .nav-menu-wrapper > ul {
			align-items: center;
			display: inline-flex;
		}

	.main-menu ul .nav-item {
		position: relative;
		margin: 0 25px;
		padding: 8px 0;
	}

		.main-menu ul .nav-item .nav-link {
			font-size: 18px;
			font-weight: 500;
			line-height: 1.2em;
			padding: 8px 0px !important;
			color: var(--primary-color);
			background: transparent;
			border-radius: 0px;
			text-transform: capitalize;
			transition: all 0.3s ease-in-out;
		}

		.main-menu ul .nav-item.submenu > a:after {
			content: '\f107';
			font-family: 'FontAwesome';
			font-weight: 900;
			font-size: 16px;
			vertical-align: middle;
			margin-left: 8px;
		}

		.main-menu ul .nav-item .nav-link:hover,
		.main-menu ul .nav-item .nav-link:focus {
			color: var(--accent-color);
		}

		.main-menu ul .nav-item:first-child {
			margin-left: 0;
		}

	.main-menu ul ul {
		visibility: hidden;
		opacity: 0;
		transform: scale(1,0.8);
		transform-origin: top;
		padding: 0;
		margin: 0;
		list-style: none;
		width: 235px;
		border-radius: 0 0 2px 2px;
		position: absolute;
		left: 0;
		top: 100%;
		background: var(--primary-color);
		transition: all 0.3s ease-in-out;
		text-align: left;
	}

	.main-menu ul li.submenu:first-child ul {
		width: 235px;
	}

	.main-menu ul ul ul {
		left: 100%;
		top: 0;
		text-align: left;
	}

	.main-menu ul li > ul {
		padding: 5px 0;
	}

	.main-menu ul li:hover > ul {
		visibility: visible;
		opacity: 1;
		transform: scale(1,1);
	}

	.main-menu ul .nav-item.submenu ul li.submenu > a:after {
		content: '\f105';
		float: right;
	}

	.main-menu ul ul .nav-item {
		margin: 0;
		padding: 0;
	}

		.main-menu ul ul .nav-item .nav-link {
			font-size: 16px;
			color: var(--white-color);
			padding: 9px 20px !important;
			transition: all 0.3s ease-in-out;
		}

			.main-menu ul ul .nav-item .nav-link:hover,
			.main-menu ul ul .nav-item .nav-link:focus {
				color: var(--accent-color);
				background-color: transparent;
				padding: 9px 20px 9px 23px !important;
			}

	.main-menu ul .nav-item.highlighted-menu {
		display: none;
	}

.header-contact-info {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

	.header-contact-info .icon-box img {
		width: 100%;
		max-width: 30px;
	}

.header-contact-info-content {
	width: calc(100% - 40px);
}

	.header-contact-info-content p {
		font-size: 14px;
		font-weight: 500;
		line-height: normal;
		margin-bottom: 2px;
	}

	.header-contact-info-content span {
		font-size: 18px;
		font-weight: 600;
		line-height: 1em;
		color: var(--primary-color);
	}

		.header-contact-info-content span a {
			color: inherit;
			transition: all 0.3s ease-in-out;
		}

			.header-contact-info-content span a:hover {
				color: var(--accent-color);
			}

.desktop-hide {
	display: none;
}

.main-menu .dropdown-menu {
	width: 100%;
	left: 0;
	right: 0;
	display: block;
	top: 100%;
	transform: scale(1,0);
	border-radius: 0;
	background: var(--white-color);
	padding: 60px;
	opacity: 0;
	border: none;
	border-bottom: 1px solid var(--divider-color);
	visibility: hidden;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
}

.main-menu .mega-menu:hover > .dropdown-menu {
	transform: scale(1,1);
}

.dropdown-menu[data-bs-popper] {
	margin-top: 0;
}

.main-menu .mega-menu-box {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 50px;
	padding: 0 15px;
}

.mega-menu-links-box {
	width: calc(40% - 25px);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px 50px;
}

.mega-menu-link {
	width: calc(50% - 25px);
}

	.mega-menu-link h2 {
		border-bottom: 1px solid var(--divider-color);
		margin-bottom: 20px;
		padding-bottom: 20px;
		font-size: 22px;
	}

.main-menu .mega-menu-link ul {
	position: initial;
	visibility: visible;
	opacity: 1;
	transform: scale(1, 1);
	transform-origin: initial;
	width: 100%;
	border-radius: 0;
	background: transparent;
}

	.main-menu .mega-menu-link ul li {
		margin-bottom: 10px;
	}

		.main-menu .mega-menu-link ul li:last-child {
			margin-bottom: 0px;
		}

		.main-menu .mega-menu-link ul li a {
			font-size: 16px;
			font-weight: 500;
			line-height: 1.4em;
			color: var(--text-color);
			text-transform: capitalize;
			transition: all 0.3s ease-in-out;
		}

			.main-menu .mega-menu-link ul li a:hover {
				color: var(--primary-color);
			}

.mega-menu-items-list {
	width: calc(60% - 25px);
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.mega-menu-item {
	width: calc(33.33% - 20px);
}

.mega-menu-item-image {
	margin-bottom: 15px;
}

.main-menu .mega-menu-item-image a {
	display: block;
	border-radius: 2px;
	overflow: hidden;
}

.mega-menu-item-image figure {
	display: block;
}

	.mega-menu-item-image figure img {
		width: 100%;
		aspect-ratio: 1 / 0.781;
		object-fit: cover;
	}

.mega-menu-item-content h2 {
	font-size: 22px;
}

.main-menu .mega-menu-item-content h2 a {
	color: inherit;
}

.mega-menu-item-content p {
	margin: 5px 0 0 0;
}

.mega-menu-item.big-offer-box {
	position: relative;
	align-content: end;
	border-radius: 2px;
	padding: 30px;
	overflow: hidden;
}

	.mega-menu-item.big-offer-box .mega-menu-item-image {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		height: 100%;
		margin: 0;
	}

		.mega-menu-item.big-offer-box .mega-menu-item-image::before {
			content: '';
			position: absolute;
			top: 0;
			bottom: 0;
			left: 0;
			right: 0;
			background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 50%, rgba(0, 0, 0, 0.20) 100%);
			width: 100%;
			height: 100%;
		}

		.mega-menu-item.big-offer-box .mega-menu-item-image figure,
		.mega-menu-item.big-offer-box .mega-menu-item-image figure img {
			height: 100%;
		}

	.mega-menu-item.big-offer-box .mega-menu-item-content {
		position: relative;
		z-index: 2;
	}

		.mega-menu-item.big-offer-box .mega-menu-item-content span {
			display: inline-block;
			font-size: 16px;
			font-weight: 400;
			line-height: 1.2em;
			color: var(--white-color);
			margin-bottom: 5px;
		}

		.mega-menu-item.big-offer-box .mega-menu-item-content h2 {
			font-size: 30px;
			text-transform: uppercase;
			color: var(--white-color);
		}

		.mega-menu-item.big-offer-box .mega-menu-item-content h3 {
			font-size: 20px;
			color: var(--white-color);
			margin-top: 5px;
		}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	position: relative;
	top: 0;
}

.slicknav_btn {
	background: var(--primary-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 2px;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

	.slicknav_icon .slicknav_icon-bar:first-child {
		margin-top: 0 !important;
	}

	.slicknav_icon .slicknav_icon-bar:last-child {
		margin-bottom: 0 !important;
	}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: var(--primary-color);
}

	.slicknav_menu ul.slicknav_nav {
		padding: 5px 0;
		border-bottom: 1px solid var(--dark-divider-color);
	}

	.slicknav_menu ul ul {
		margin: 0;
	}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	position: relative;
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 6px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

	.slicknav_nav a:hover,
	.slicknav_nav a:focus,
	.slicknav_nav .slicknav_row:hover {
		background-color: transparent;
		color: var(--accent-color);
	}

.slicknav_menu ul ul li a {
	padding: 6px 20px 6px 30px;
}

.slicknav_arrow {
	font-size: 0 !important;
}

	.slicknav_arrow:after {
		content: '\f107';
		position: absolute;
		font-family: 'FontAwesome';
		font-weight: 900;
		font-size: 14px;
		margin-left: 8px;
		color: var(--white-color);
		right: 15px;
		top: 50%;
		transform: translateY(-50%);
		transition: all 0.3s ease-out;
	}

.slicknav_open > a .slicknav_arrow:after {
	transform: translateY(-50%) rotate(-180deg);
	color: var(--accent-color);
}

/****************************************/
/*** 	       04. Hero css 	      ***/
/****************************************/

.hero {
	min-height: 830px;
	background: url('../images/hero-bg-image.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	align-content: end;
	padding: 120px 0;
}

	.hero .section-row {
		margin-bottom: 0;
	}

	.hero .section-title .section-sub-title {
		padding-left: 40px;
	}

		.hero .section-title .section-sub-title::before {
			background: url('../images/icon-asterisk.svg') no-repeat;
			background-position: center center;
			background-size: cover;
			width: 16px;
			height: 16px;
		}

	.hero .section-btn {
		margin-bottom: 15px;
	}

/****************************************/
/*** 	     05. About Us css	      ***/
/****************************************/

.about-us {
	background-image: url('../images/about-us-bg-shape.png');
	background-repeat: no-repeat;
	background-position: bottom -10px center;
	background-size: 100% auto;
	padding: 120px 0;
}

	.about-us .section-row {
		margin-bottom: 120px;
	}

	.about-us .section-title-content p {
		font-size: 22px;
		color: var(--primary-color);
	}

.about-us-items-list {
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
}

.about-us-item {
	position: relative;
	width: calc(33.33% - 53.33px);
}

	.about-us-item::before {
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		right: -40px;
		background: var(--divider-color);
		width: 1px;
		height: 100%;
	}

	.about-us-item:nth-child(3n + 3):before,
	.about-us-item:last-child:before {
		display: none;
	}

	.about-us-item h2 {
		font-size: 60px;
		line-height: 1em;
	}

	.about-us-item h3 {
		font-size: 22px;
		margin-top: 20px;
	}

	.about-us-item p {
		margin: 10px 0 0 0;
	}

.about-category-items-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 120px;
}

.about-category-item {
	position: relative;
	width: calc(50% - 15px);
	min-height: 380px;
	align-content: end;
	border-radius: 2px;
	overflow: hidden;
	padding: 40px;
}

.about-category-item-image {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

	.about-category-item-image figure {
		display: block;
		height: 100%;
	}

		.about-category-item-image figure img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

.about-category-item-body {
	position: relative;
	max-width: 365px;
	z-index: 1;
}

.about-category-item-content span {
	display: inline-block;
	font-size: 20px;
	font-weight: 500;
	text-transform: capitalize;
	line-height: normal;
	color: var(--white-color);
	margin-bottom: 10px;
}

.about-category-item-content h2 {
	font-size: 54px;
	line-height: 1em;
	margin-bottom: 20px;
	color: var(--white-color);
}

.about-category-item-content p {
	color: var(--white-color);
	margin: 0;
}

.about-category-item-btn {
	margin-top: 30px;
}

/****************************************/
/*** 	  06. Our Collection css	  ***/
/****************************************/

.our-collection {
	padding: 120px 0;
}

.collection-item {
	position: relative;
	border-radius: 2px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.collection-item-image a {
	display: block;
	border-radius: 2px;
	cursor: none;
}

.collection-item-image figure {
	position: relative;
	display: block;
}

	.collection-item-image figure::before {
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 41.15%, rgba(0, 0, 0, 0.90) 100%);
		border-radius: 2px;
		width: 100%;
		height: 100%;
		z-index: 1;
	}

	.collection-item-image figure img {
		width: 100%;
		aspect-ratio: 1 / 1.162;
		object-fit: cover;
		transition: all 0.6s ease-in-out;
	}

.collection-item:hover .collection-item-image figure img {
	transform: scale(1.06);
}

.collection-item-body {
	position: absolute;
	bottom: 40px;
	left: 40px;
	right: 40px;
	transform: translateY(68px);
	transition: all 0.4s ease-in-out;
	z-index: 2;
}

.collection-item:hover .collection-item-body {
	transform: translateY(0);
}

.collection-item-content h2 {
	font-size: 22px;
	color: var(--white-color);
}

	.collection-item-content h2 a {
		color: inherit;
	}

.collection-item-content p {
	color: var(--white-color);
	margin: 15px 0 0 0;
}

.collection-item-btn {
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 20px;
	padding-top: 20px;
	transition: all 0.4s ease-in-out;
	opacity: 0;
}

.collection-item:hover .collection-item-body .collection-item-btn {
	opacity: 1;
}

.section-footer-text {
	margin: 0 auto;
	margin-top: 30px;
	text-align: center;
}

	.section-footer-text p {
		color: var(--primary-color);
		margin-bottom: 0;
	}

		.section-footer-text p span {
			display: inline-block;
			font-size: 14px;
			font-weight: 500;
			background: var(--primary-color);
			color: var(--white-color);
			line-height: 1em;
			padding: 4px 10px;
			border-radius: 20px;
			margin-right: 10px;
		}

		.section-footer-text p a {
			display: inline-block;
			font-weight: 600;
			text-transform: capitalize;
			text-decoration: underline;
			text-underline-offset: 3px;
			color: var(--primary-color);
			transition: all 0.3s ease-in-out;
		}

			.section-footer-text p a:hover {
				color: var(--accent-color);
			}

	.section-footer-text ul {
		width: 100%;
		padding: 0;
		margin: 10px 0 0;
		list-style: none;
	}

		.section-footer-text ul li {
			display: inline-block;
			font-size: 20px;
			font-weight: 600;
			line-height: normal;
			color: var(--primary-color);
			margin-right: 10px;
		}

			.section-footer-text ul li:last-child {
				margin: 0;
			}

			.section-footer-text ul li i {
				font-size: 18px;
				color: var(--accent-color);
			}

	.section-footer-text.section-footer-contact p {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		gap: 10px;
	}

	.section-footer-text.section-footer-contact span {
		width: 30px;
		height: 30px;
		padding: 0;
		display: inline-flex;
		justify-content: center;
		align-items: center;
		margin-right: 0;
	}

		.section-footer-text.section-footer-contact span img {
			width: 100%;
			max-width: 16px;
		}

	.section-footer-text.section-satisfy-img {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		gap: 10px;
	}

		.section-footer-text.section-satisfy-img .satisfy-client-image figure img {
			max-width: 30px;
		}

		.section-footer-text.section-satisfy-img .satisfy-client-image.add-more {
			width: 32px;
			height: 32px;
			margin-left: -10px;
		}

			.section-footer-text.section-satisfy-img .satisfy-client-image.add-more img {
				width: 100%;
				max-width: 14px;
			}

		.section-footer-text.section-satisfy-img ul {
			margin: 5px 0 0;
		}

.dark-section .section-footer-text p span {
	background: var(--accent-color);
}

.dark-section .section-footer-text p,
.dark-section .section-footer-text ul li {
	color: var(--white-color);
}

	.dark-section .section-footer-text p a {
		color: var(--white-color);
	}

		.dark-section .section-footer-text p a:hover {
			color: var(--accent-color);
		}

.satisfy-client-images {
	display: flex;
	align-items: center;
}

.satisfy-client-image {
	position: relative;
	display: inline-block;
	margin-left: -14px;
	border: 1px solid var(--bg-color);
	border-radius: 50%;
	overflow: hidden;
	z-index: 1;
}

	.satisfy-client-image:first-child {
		margin: 0;
	}

	.satisfy-client-image figure {
		display: block;
	}

		.satisfy-client-image figure img {
			width: 100%;
			max-width: 40px;
			aspect-ratio: 1 / 1;
			object-fit: cover;
			border-radius: 50%;
		}

	.satisfy-client-image.add-more {
		width: 42px;
		height: 42px;
		background-color: var(--primary-color);
		display: flex;
		justify-content: center;
		align-items: center;
		transition: all 0.3s ease-in-out;
	}

		.satisfy-client-image.add-more img {
			width: 100%;
			max-width: 16px;
		}

		.satisfy-client-image.add-more i {
			font-size: 14px;
			color: var(--white-color);
		}

		.satisfy-client-image.add-more h3 {
			font-size: 14px;
			color: var(--white-color);
		}

.section-footer-text.section-satisfy-img ul {
	margin: 5px 0 0;
}

.light-section .section-footer-text.section-satisfy-img .satisfy-client-image {
	border-color: var(--secondary-color);
}

.dark-section .section-footer-text.section-satisfy-img .satisfy-client-image {
	border-color: var(--primary-color);
}

	.dark-section .section-footer-text.section-satisfy-img .satisfy-client-image.add-more {
		background: var(--accent-color);
	}

/****************************************/
/*** 	   07. Our Products css 	  ***/
/****************************************/

.our-products {
	padding: 120px 0;
}

	.our-products .container {
		max-width: 1500px;
	}

.product-item {
	background: var(--bg-color);
	border-radius: 2px;
	text-align: center;
	padding: 40px;
}

.product-item-header {
	position: relative;
	margin-bottom: 20px;
}

.product-item-image {
	max-width: 230px;
	margin: 0 auto;
}

	.product-item-image figure {
		display: block;
		border-radius: 2px;
	}

		.product-item-image figure img {
			width: 100%;
			aspect-ratio: 1 / 1;
			object-fit: cover;
			border-radius: 2px;
		}

.product-item-action {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	transform: translateY(10px);
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
}

.product-item:hover .product-item-action {
	transform: translateY(-10px);
	opacity: 1;
	visibility: visible;
}

.product-item-action ul {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	list-style: none;
	background: var(--primary-color);
	border-radius: 2px;
	padding: 13px;
	margin: 0;
}

	.product-item-action ul li a img {
		width: 100%;
		max-width: 24px;
		transition: all 0.5s ease-in-out;
	}

	.product-item-action ul li a:hover img {
		transform: scale(1.08);
	}

.product-item-content .product-item-category {
	font-size: 16px;
	text-transform: capitalize;
	line-height: normal;
	margin-bottom: 15px;
}

.product-item-content .product-item-title {
	font-size: 18px;
}

	.product-item-content .product-item-title a {
		color: inherit;
	}

.product-item-content .product-item-rating {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3px;
	margin-top: 15px;
}

	.product-item-content .product-item-rating i {
		font-size: 16px;
		color: var(--accent-color);
	}

	.product-item-content .product-item-rating b {
		font-size: 16px;
		font-weight: 400;
		line-height: normal;
		margin: 0;
	}

.product-item-price {
	margin-top: 15px;
}

	.product-item-price h2 {
		font-size: 26px;
	}

.product-slider .product-pagination {
	margin-top: 40px;
	text-align: center;
}

	.product-slider .product-pagination .swiper-pagination-bullet {
		position: relative;
		height: 10px;
		width: 10px;
		background: var(--divider-color);
		opacity: 1;
		margin: 0 5px;
		border-radius: 10px;
		transition: all 0.4s ease-in-out;
	}

	.product-slider .product-pagination .swiper-pagination-bullet-active {
		background: var(--primary-color);
		width: 34px;
	}

/****************************************/
/***       08. Intro Video css        ***/
/****************************************/

.intro-video .container-fluid {
	padding: 0;
}

.intro-video-content-box {
	position: relative;
}

.intro-video-bg-video {
	height: 850px;
}

	.intro-video-bg-video::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: var(--primary-color);
		opacity: 10%;
		width: 100%;
		height: 100%;
		z-index: 1;
	}

	.intro-video-bg-video video {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

.video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline-flex;
	align-items: center;
	z-index: 1;
}

	.video-play-button a {
		position: relative;
		display: inline-flex;
		align-items: center;
		cursor: none;
		gap: 10px;
	}

		.video-play-button a span {
			position: relative;
			width: 100px;
			height: 100px;
			background: var(--primary-color);
			border-radius: 50%;
			display: flex;
			justify-content: center;
			align-items: center;
		}

			.video-play-button a span.bg-effect:before,
			.video-play-button a span.bg-effect:after {
				content: '';
				position: absolute;
				width: 160%;
				height: 160%;
				border: 40px solid var(--white-color);
				opacity: 50%;
				border-radius: 50%;
				transform: scale(0.6);
				z-index: -1;
				animation: border-zooming 1.2s infinite linear;
			}

			.video-play-button a span.bg-effect:after {
				animation-delay: .3s;
			}

@keyframes border-zooming {
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button a span i {
	font-size: 30px;
	color: var(--white-color);
	margin-left: 2px;
}

/****************************************/
/***        09. Our Brands css        ***/
/****************************************/

.our-brands {
	padding: 120px 0;
}

	.our-brands .container {
		max-width: 1510px;
	}

.brand-item-slider .swiper-wrapper {
	cursor: none;
}

.brand-item {
	position: relative;
}

.brand-item-image a {
	display: block;
	cursor: none;
	border-radius: 2px;
	overflow: hidden;
}

.brand-item-image figure {
	position: relative;
	display: block;
}

	.brand-item-image figure::before {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.90) 100%);
		width: 100%;
		height: 100%;
		z-index: 1;
	}

.brand-item-image img {
	width: 100%;
	border-radius: 2px;
	aspect-ratio: 1 / 1.243;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

.brand-item:hover .brand-item-image img {
	transform: scale(1.05);
}

.brand-item-logo {
	position: absolute;
	bottom: 40px;
	left: 40px;
	right: 40px;
	text-align: center;
	z-index: 1;
}

	.brand-item-logo img {
		max-height: 60px;
		max-width: 261px;
	}

.brand-item-slider .brand-pagination {
	text-align: center;
	margin-top: 40px;
}

	.brand-item-slider .brand-pagination .swiper-pagination-bullet {
		position: relative;
		height: 10px;
		width: 10px;
		background: var(--divider-color);
		opacity: 1;
		margin: 0 5px;
		border-radius: 10px;
		transition: all 0.4s ease-in-out;
	}

	.brand-item-slider .brand-pagination .swiper-pagination-bullet-active {
		background: var(--primary-color);
		width: 34px;
	}

/****************************************/
/***       10. New Arrival css        ***/
/****************************************/

.new-arrivals {
	padding: 120px 0;
}

.new-arrival-slider .swiper-wrapper {
	cursor: none;
}

.new-arrival-item {
	position: relative;
}

.new-arrival-item-image {
	border-radius: 2px;
	overflow: hidden;
}

	.new-arrival-item-image a {
		display: block;
		cursor: none;
		border-radius: 2px;
		overflow: hidden;
	}

	.new-arrival-item-image figure {
		position: relative;
		display: block;
	}

		.new-arrival-item-image figure::before {
			content: '';
			position: absolute;
			top: 0;
			right: 0;
			bottom: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 63.44%, rgba(0, 0, 0, 0.80) 100%);
			z-index: 1;
		}

	.new-arrival-item-image img {
		width: 100%;
		aspect-ratio: 1 / 1.081;
		object-fit: cover;
		transition: all 0.6s ease-in-out;
	}

.new-arrival-item:hover .new-arrival-item-image img {
	transform: scale(1.05);
}

.new-arrival-item-content {
	position: absolute;
	bottom: 40px;
	right: 40px;
	left: 40px;
	z-index: 1;
}

	.new-arrival-item-content ul {
		display: flex;
		flex-wrap: wrap;
		gap: 15px 30px;
		list-style: disc;
		padding: 0 0 0 20px;
		margin: 0 0 15px;
	}

		.new-arrival-item-content ul li {
			font-size: 16px;
			line-height: 1.5em;
			color: var(--white-color);
		}

			.new-arrival-item-content ul li::marker {
				color: var(--accent-color);
			}

	.new-arrival-item-content h2 {
		font-size: 22px;
		color: var(--white-color);
	}

		.new-arrival-item-content h2 a {
			color: inherit;
		}

.new-arrival-slider .new-arrival-pagination {
	text-align: center;
	margin-top: 40px;
}

	.new-arrival-slider .new-arrival-pagination .swiper-pagination-bullet {
		position: relative;
		height: 10px;
		width: 10px;
		background: var(--divider-color);
		opacity: 1;
		margin: 0 5px;
		border-radius: 10px;
		transition: all 0.4s ease-in-out;
	}

	.new-arrival-slider .new-arrival-pagination .swiper-pagination-bullet-active {
		background: var(--primary-color);
		width: 34px;
	}

/****************************************/
/***       11. Latest Updates css     ***/
/****************************************/

.latest-updates {
	padding: 120px 0;
}

	.latest-updates .container {
		max-width: 1510px;
	}

.latest-update-video-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.latest-update-video {
	position: relative;
	width: calc(25% - 7.5px);
	height: 450px;
	border-radius: 2px;
	overflow: hidden;
}

	.latest-update-video a {
		display: block;
		height: 100%;
		cursor: none;
	}

	.latest-update-video video {
		width: 100%;
		height: 100%;
		display: block;
		border-radius: 2px;
		object-fit: cover;
	}

.latest-update-video-title {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 40px;
	text-align: center;
}

	.latest-update-video-title::before {
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 10%, rgba(0, 0, 0, 0.90) 100%);
		width: 100%;
		height: 100%;
		z-index: 1;
	}

	.latest-update-video-title h3 {
		position: relative;
		font-size: 22px;
		color: var(--white-color);
		z-index: 2;
	}

/****************************************/
/***       12. Why Choose Us css      ***/
/****************************************/

.why-choose-us .container-fluid {
	padding: 0;
}

.why-choose-item-slider {
	position: relative;
	height: 100%;
}

.why-choose-img-slider .swiper-wrapper {
	cursor: none;
	height: 100%;
}

.why-choose-img-slider,
.why-choose-img-slider .swiper-slide {
	height: 100%;
}

	.why-choose-img-slider .swiper-slide figure {
		display: block;
		height: 100%;
	}

	.why-choose-img-slider .swiper-slide img {
		width: 100%;
		height: 100%;
		aspect-ratio: 1 / 0.62;
		object-fit: cover;
	}

.why-choose-img-item {
	position: absolute;
	bottom: 40px;
	right: 40px;
	max-width: 220px;
	z-index: 2;
}

	.why-choose-img-item .swiper-slide {
		cursor: none;
	}

		.why-choose-img-item .swiper-slide figure {
			display: block;
			border: 2px solid var(--dark-divider-color);
			transition: all 0.4s ease-in-out;
		}

		.why-choose-img-item .swiper-slide.swiper-slide-thumb-active figure {
			border-color: var(--text-color);
		}

		.why-choose-img-item .swiper-slide img {
			width: 100%;
			aspect-ratio: 1 / 1;
			object-fit: cover;
		}

.why-choose-content-box {
	height: 100%;
	align-content: center;
	padding: 100px 5.208vw;
}

.why-choose-accordion .accordion-item {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

	.why-choose-accordion .accordion-item:last-child {
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 0;
	}

.why-choose-accordion .accordion-header .accordion-button {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--primary-color);
	padding: 0 40px 0 0;
}

.why-choose-accordion .accordion-item .accordion-button::after,
.why-choose-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\f055';
	font-family: 'FontAwesome';
	position: absolute;
	right: 0px;
	top: 50%;
	font-size: 30px;
	color: var(--primary-color);
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
}

.why-choose-accordion .accordion-button:not(.collapsed)::after {
	content: '\f056';
}

.why-choose-accordion .accordion-item .accordion-body {
	padding: 15px 40px 0 0;
}

	.why-choose-accordion .accordion-item .accordion-body p {
		margin: 0;
	}

/****************************************/
/***         13. Our FAQ's css        ***/
/****************************************/

.our-faqs {
	padding: 120px 0;
}

.faqs-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	padding-bottom: 20px;
}

.faq-info-list {
	padding-top: 40px;
	border-top: 1px solid var(--divider-color);
}

	.faq-info-list ul {
		display: flex;
		flex-wrap: wrap;
		gap: 15px 40px;
		list-style: none;
		margin: 0;
		padding: 0;
	}

		.faq-info-list ul li {
			position: relative;
			padding-left: 16px;
			font-weight: 500;
			color: var(--primary-color);
			line-height: 1.5em;
		}

			.faq-info-list ul li::before {
				content: '';
				position: absolute;
				top: 50%;
				left: 0;
				transform: translateY(-50%);
				width: 6px;
				height: 6px;
				background: var(--accent-color);
				border-radius: 50%;
			}

			.faq-info-list ul li a {
				color: inherit;
				transition: all 0.3s ease-in-out;
			}

				.faq-info-list ul li a:hover {
					color: var(--accent-color);
				}

.faq-accordion {
	background: var(--white-color);
	border-radius: 2px;
	padding: 50px;
	margin-left: 15px;
}

	.faq-accordion .accordion-item {
		border-bottom: 1px solid var(--divider-color);
		margin-bottom: 30px;
		padding-bottom: 30px;
		transition: all 0.3s ease-in-out;
	}

		.faq-accordion .accordion-item:last-child {
			border-bottom: none;
			padding-bottom: 0;
			margin-bottom: 0;
		}

	.faq-accordion .accordion-header .accordion-button {
		font-size: 20px;
		font-weight: 500;
		line-height: normal;
		color: var(--primary-color);
		padding: 2px 40px 2px 0;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		content: '\f055';
		font-family: 'FontAwesome';
		position: absolute;
		right: 0px;
		top: 50%;
		font-size: 30px;
		color: var(--primary-color);
		transform: translateY(-50%);
		transition: all 0.3s ease-in-out;
	}

	.faq-accordion .accordion-button:not(.collapsed)::after {
		content: '\f056';
	}

	.faq-accordion .accordion-item .accordion-body {
		padding: 15px 40px 0 0;
	}

		.faq-accordion .accordion-item .accordion-body p {
			margin: 0;
		}

/****************************************/
/***     14. Our Testimonials css     ***/
/****************************************/

.our-testimonials {
	background-image: url('../images/testimonial-bg-image.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto;
	padding: 120px 0;
}

.testimonial-slider,
.testimonial-slider .swiper,
.testimonial-item {
	height: 100%;
}

	.testimonial-slider .swiper {
		cursor: none;
	}

.testimonial-item {
	position: relative;
	min-height: 480px;
	align-content: end;
	padding: 40px;
	border-radius: 2px;
	overflow: hidden;
}

.testimonial-item-image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

	.testimonial-item-image::before {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: linear-gradient(180deg, transparent 37.29%, rgba(0, 0, 0, 0.64) 57.23%, rgba(0, 0, 0, 0.80) 100%);
		border-radius: 2px;
		height: 100%;
		width: 100%;
		z-index: 1;
	}

	.testimonial-item-image figure {
		display: block;
		width: 100%;
		height: 100%;
	}

		.testimonial-item-image figure img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			transition: all 0.6s ease-in-out;
		}

.testimonial-item:hover .testimonial-item-image figure img {
	transform: scale(1.04);
}

.testimonial-item-body {
	position: relative;
	z-index: 1;
}

.testimonial-item-rating {
	margin-bottom: 15px;
}

	.testimonial-item-rating i {
		color: var(--accent-color);
	}

.testimonial-item-content p {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.45em;
	color: var(--white-color);
}

	.testimonial-item-content p:last-child {
		margin-bottom: 0;
	}

.testimonial-author-content {
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

	.testimonial-author-content h2 {
		font-size: 22px;
		color: var(--white-color);
	}

	.testimonial-author-content p {
		color: var(--white-color);
		margin: 5px 0 0;
	}

.testimonial-footer-box {
	margin-top: 60px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 20px 25px;
}

.google-rating-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border-left: 1px solid var(--divider-color);
	padding-left: 25px;
}

.google-rating-logo img {
	width: 100%;
	max-width: 50px;
}

.google-rating-info-content {
	width: calc(100% - 65px);
}

.google-rating-star {
	display: block;
	line-height: normal;
	margin-bottom: 5px;
}

	.google-rating-star i {
		font-size: 16px;
		color: var(--primary-color);
	}

.google-rating-info-content h2 {
	font-size: 22px;
	line-height: 1em;
	display: flex;
}

	.google-rating-info-content h2 span {
		min-width: 30px;
	}

/****************************************/
/***         15. Our Blog css         ***/
/****************************************/

.our-blog {
	padding: 120px 0 90px;
}

.post-item {
	position: relative;
	border-radius: 2px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

	.post-item .post-featured-image a,
	.post-item .post-featured-image figure {
		position: relative;
		display: block;
		overflow: hidden;
		cursor: none;
	}

		.post-item .post-featured-image figure::before {
			content: '';
			position: absolute;
			top: 0;
			right: 0;
			bottom: 0;
			left: 0;
			background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.90) 100%);
			height: 100%;
			width: 100%;
			z-index: 1;
		}

		.post-item .post-featured-image figure img {
			width: 100%;
			aspect-ratio: 1 / 1.163;
			object-fit: cover;
			transition: all 0.6s ease-in-out;
		}

	.post-item:hover .post-featured-image img {
		transform: scale(1.06);
	}

	.post-item .post-item-body {
		position: absolute;
		bottom: 30px;
		right: 30px;
		left: 30px;
		z-index: 1;
	}

	.post-item .post-item-content h2 {
		font-size: 22px;
		color: var(--white-color);
		line-height: 1.4em;
	}

		.post-item .post-item-content h2 a {
			color: inherit;
		}

	.post-item .post-item-btn {
		border-top: 1px solid var(--dark-divider-color);
		padding-top: 25px;
		margin-top: 25px;
	}

/****************************************/
/***          16. Footer css          ***/
/****************************************/

.footer-benefits {
	background-color: var(--white-color);
	border-top: 2px solid var(--secondary-color);
	padding: 30px 0;
}

.footer-benefit-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 80px;
}

.footer-benefit-item {
	position: relative;
	width: calc(25% - 60px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

	.footer-benefit-item::before {
		content: '';
		position: absolute;
		top: 50%;
		bottom: 0;
		right: -40px;
		background: var(--divider-color);
		width: 1px;
		height: 70%;
		transform: translateY(-50%);
	}

	.footer-benefit-item:nth-child(4n + 4)::before,
	.footer-benefit-item:last-child::before {
		display: none;
	}

	.footer-benefit-item .icon-box img {
		width: 100%;
		max-width: 50px;
	}

.footer-benefit-item-content {
	width: calc(100% - 65px);
}

	.footer-benefit-item-content h2 {
		font-size: 20px;
		font-weight: 500;
		line-height: normal;
	}

.main-footer {
	padding: 100px 0 0;
}

.footer-logo img {
	width: 100%;
	max-width: 144px;
}

.footer-about-content {
	max-width: 340px;
	margin-top: 20px;
}

	.footer-about-content p {
		color: var(--white-color);
	}

		.footer-about-content p:last-child {
			margin: 0;
		}

.footer-download-app-box {
	margin-top: 60px;
}

	.footer-download-app-box h2 {
		font-size: 22px;
		color: var(--white-color);
		margin-bottom: 25px;
	}

.app-download-buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
}

.app-download-btn a {
	display: block;
	border-radius: 6px;
}

	.app-download-btn a img {
		width: 100%;
		max-width: 180px;
		border-radius: 6px;
	}

.footer-links-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 70px;
	margin-left: 40px;
}

.footer-links {
	position: relative;
	max-width: 30%;
	flex-grow: 1;
}

	.footer-links::before {
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		right: -35px;
		width: 1px;
		height: 100%;
		background: var(--dark-divider-color);
	}

	.footer-links:nth-child(3n + 3)::before,
	.footer-links:last-child::before {
		display: none;
	}

	.footer-links h2 {
		font-size: 22px;
		color: var(--white-color);
		margin-bottom: 30px;
	}

	.footer-links ul {
		list-style: disc;
		padding: 0 0 0 20px;
		margin: 0;
	}

		.footer-links ul li {
			line-height: 1.4em;
			color: var(--white-color);
			margin-bottom: 15px;
		}

			.footer-links ul li:last-child {
				margin-bottom: 0;
			}

			.footer-links ul li::marker {
				color: var(--accent-color);
			}

			.footer-links ul li a {
				color: inherit;
				transition: all 0.3s ease-in-out;
			}

				.footer-links ul li a:hover {
					color: var(--accent-color);
				}

.footer-copyright {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 80px;
	padding: 60px 0;
}

.footer-copyright-text p {
	color: var(--white-color);
	margin: 0;
}

.footer-privacy-policy ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 40px;
	margin: 0;
	padding: 0;
	list-style: none;
}

	.footer-privacy-policy ul li {
		position: relative;
		line-height: 1.5em;
		color: var(--white-color);
	}

		.footer-privacy-policy ul li::before {
			content: '';
			position: absolute;
			top: 50%;
			right: -24px;
			background: var(--accent-color);
			border-radius: 100px;
			transform: translateY(-50%);
			width: 6px;
			height: 6px;
		}

		.footer-privacy-policy ul li:last-child::before {
			display: none;
		}

		.footer-privacy-policy ul li a {
			color: inherit;
			transition: all 0.4s ease-in-out;
		}

			.footer-privacy-policy ul li a:hover {
				color: var(--accent-color);
			}

/****************************************/
/***       17. About Us Page css      ***/
/****************************************/

.page-header {
	background-image: url('../images/page-header-bg-image.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 135px 0;
}

.page-header-box h1 {
	display: inline-block;
	font-size: 54px;
	color: var(--white-color);
	margin-bottom: 10px;
	cursor: none;
}

.page-header-box ol {
	margin: 0;
	padding: 0;
}

	.page-header-box ol li.breadcrumb-item {
		font-size: 18px;
		line-height: normal;
		text-transform: capitalize;
		color: var(--white-color);
	}

		.page-header-box ol li.breadcrumb-item a {
			color: inherit;
		}

	.page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
		color: var(--white-color);
	}

.page-about-us {
	background: linear-gradient(180deg, var(--secondary-color) 74%, var(--bg-color) 26%);
	padding: 120px 0 60px;
}

.page-about-content-box .intro-video-content-box {
	position: relative;
	margin-top: 80px;
	border-radius: 2px;
	overflow: hidden;
}

.page-about-content-box .intro-video-bg-video {
	height: 550px;
}

.page-about-content-box .video-play-button a span {
	width: 85px;
	height: 85px;
}

	.page-about-content-box .video-play-button a span i {
		font-size: 26px;
	}

.what-we-do {
	padding: 60px 0 120px;
}

.what-we-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 80px;
}

.what-we-item {
	position: relative;
	width: calc(25% - 60px)
}

	.what-we-item::before {
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		right: -40px;
		background: var(--divider-color);
		width: 1px;
		height: 100%;
	}

	.what-we-item:nth-child(4n + 4):before,
	.what-we-item:last-child:before {
		display: none;
	}

	.what-we-item .icon-box {
		margin-bottom: 60px;
	}

		.what-we-item .icon-box img {
			width: 100%;
			max-width: 60px;
		}

.what-we-item-content h3 {
	font-size: 22px;
}

.what-we-item-content p {
	margin: 15px 0 0;
}

.what-we-do .section-footer-text {
	margin-top: 60px;
}

.our-approach {
	padding: 120px 0;
}

.our-approach-content {
	height: 100%;
	align-content: center;
}

.our-approach-accordion .accordion-item {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

	.our-approach-accordion .accordion-item:last-child {
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 0;
	}

.our-approach-accordion .accordion-header .accordion-button {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--primary-color);
	padding: 0 40px 0 0;
}

.our-approach-accordion .accordion-item .accordion-button::after,
.our-approach-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\f055';
	font-family: 'FontAwesome';
	position: absolute;
	right: 0px;
	top: 50%;
	font-size: 30px;
	color: var(--primary-color);
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
}

.our-approach-accordion .accordion-button:not(.collapsed)::after {
	content: '\f056';
}

.our-approach-accordion .accordion-item .accordion-body {
	padding: 15px 40px 0 0;
}

	.our-approach-accordion .accordion-item .accordion-body p {
		margin: 0;
	}

.approach-video-content-box {
	position: relative;
	height: 100%;
	min-height: 630px;
	border-radius: 2px;
	overflow: hidden;
	margin: 0 0 0 15px;
}

.approach-video-box {
	position: relative;
	height: 100%;
}

	.approach-video-box::before {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: linear-gradient(180deg, transparent 45.57%, rgba(0, 0, 0, 0.80) 100%);
		height: 100%;
		width: 100%;
		z-index: 1;
	}

	.approach-video-box video {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

.approach-cta-box {
	position: absolute;
	left: 50px;
	bottom: 50px;
	max-width: 420px;
	z-index: 2;
}

.approach-cta-title h2 {
	font-size: 36px;
	color: var(--white-color);
}

.approach-cta-btn {
	margin-top: 30px;
}

.our-history {
	padding: 120px 0;
}

.history-image-slider {
	position: relative;
	margin: 0 15px 0 0;
}

	.history-image-slider,
	.history-image-slider .swiper,
	.history-image-slider .swiper-slide figure,
	.history-image-slider .swiper-slide figure img {
		height: 100%;
	}

		.history-image-slider .swiper-slide figure {
			display: block;
			border-radius: 2px;
		}

			.history-image-slider .swiper-slide figure img {
				width: 100%;
				aspect-ratio: 1 / 0.908;
				object-fit: cover;
				border-radius: 2px;
			}

.history-slider-btn {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
	top: 50%;
	transform: translateY(-50%);
	left: 50px;
	z-index: 1;
}

.history-image-slider .history-button-next,
.history-image-slider .history-button-prev {
	position: relative;
	width: 50px;
	height: 50px;
	border: 1px solid var(--dark-divider-color);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	transition: all 0.4s ease-in-out;
}

	.history-image-slider .history-button-next:hover,
	.history-image-slider .history-button-prev:hover {
		background: var(--accent-color);
	}

	.history-image-slider .history-button-next::before,
	.history-image-slider .history-button-prev::before {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: url('../images/arrow-white.svg') no-repeat;
		background-position: center center;
		background-size: 18px auto;
		transform: rotate(225deg);
		transition: all 0.4s ease-in-out;
	}

	.history-image-slider .history-button-prev::before {
		transform: rotate(45deg);
	}

.our-history-content {
	height: 100%;
	align-content: center;
}

.our-history-list ul {
	list-style: disc;
	margin: 0;
	padding: 0 0 0 20px;
}

	.our-history-list ul li {
		position: relative;
		line-height: 1.5em;
		margin-bottom: 10px;
	}

		.our-history-list ul li:last-child {
			margin-bottom: 0;
		}

		.our-history-list ul li::marker {
			color: var(--accent-color);
		}

.author-signature-box {
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.author-signature-image figure img {
	width: 100%;
	max-width: 165px;
	min-height: 23px;
}

.author-title {
	margin: 5px 0 0;
}

	.author-title p {
		margin: 0;
	}

.our-dealer {
	padding: 120px 0;
}

.our-dealer-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	overflow: hidden;
}

	.our-dealer-list ul {
		display: flex;
		flex-wrap: wrap;
		border: 1px solid var(--divider-color);
		border-right: none;
		border-bottom: none;
		list-style: none;
		margin: 0;
		padding: 0;
	}

		.our-dealer-list ul li {
			width: 25%;
			border-right: 1px solid var(--divider-color);
			border-bottom: 1px solid var(--divider-color);
			padding: 60px 30px;
			text-align: center;
		}

			.our-dealer-list ul li img {
				width: 100%;
				max-width: 200px;
				height: 60px;
			}

.our-dealer .section-footer-text {
	margin-top: 60px;
}

.our-team {
	padding: 120px 0;
}

.team-item {
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	border-radius: 2px;
	overflow: hidden;
}

.team-item-image a {
	cursor: none;
}

.team-item-image figure {
	position: relative;
	display: block;
}

	.team-item-image figure::before {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		top: 0;
		background: linear-gradient(180deg, transparent 59.79%, rgba(0, 0, 0, 0.80) 90.21%);
		width: 100%;
		height: 100%;
		z-index: 1;
	}

	.team-item-image figure img {
		width: 100%;
		aspect-ratio: 1 / 1.191;
		object-fit: cover;
		transition: all 0.6s ease-in-out;
	}

.team-item:hover .team-item-image figure img {
	transform: scale(1.06);
}

.team-item-body {
	position: absolute;
	left: 40px;
	right: 40px;
	bottom: 40px;
	transform: translateY(77px);
	transition: all 0.5s ease-in-out;
	z-index: 2;
}

.team-item:hover .team-item-body {
	transform: none;
}

.team-item-content h2 {
	font-size: 22px;
	color: var(--white-color);
}

	.team-item-content h2 a {
		color: inherit;
	}

.team-item-content p {
	color: var(--white-color);
	margin: 10px 0 0;
}

.team-item-social-list {
	opacity: 0;
	visibility: hidden;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 20px;
	margin-top: 20px;
	transition: all 0.5s ease-in-out;
}

.team-item:hover .team-item-social-list {
	opacity: 1;
	visibility: visible;
}

.team-item-social-list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	list-style: none;
	padding: 0;
	margin: 0;
}

	.team-item-social-list ul li a {
		width: 36px;
		height: 36px;
		color: var(--white-color);
		border: 1px solid var(--white-color);
		border-radius: 50%;
		display: flex;
		justify-content: center;
		align-items: center;
		transition: all 0.4s ease-in-out;
	}

		.team-item-social-list ul li a:hover {
			background: var(--accent-color);
			border-color: var(--accent-color);
		}

		.team-item-social-list ul li a i {
			font-size: 18px;
			color: var(--white-color);
			transition: all 0.4s ease-in-out;
		}

.our-excellence {
	padding: 120px 0 90px;
}

.our-excellence-item {
	position: relative;
	border-radius: 2px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

	.our-excellence-item figure {
		position: relative;
		display: block;
	}

		.our-excellence-item figure::before {
			content: '';
			position: absolute;
			top: 0;
			right: 0;
			bottom: 0;
			left: 0;
			background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 50%, rgba(0, 0, 0, 0.90) 79.8%);
			height: 100%;
			width: 100%;
			z-index: 1;
		}

		.our-excellence-item figure img {
			width: 100%;
			aspect-ratio: 1 / 1.106;
			object-fit: cover;
			transition: all 0.6s ease-in-out;
		}

	.our-excellence-item:hover figure img {
		transform: scale(1.06);
	}

.our-excellence-item-body {
	position: absolute;
	bottom: 40px;
	left: 40px;
	right: 40px;
	z-index: 1;
}

	.our-excellence-item-body h3 {
		font-size: 24px;
		color: var(--white-color);
		border-bottom: 1px solid var(--dark-divider-color);
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.our-excellence-item-body p {
		color: var(--white-color);
		margin: 0;
	}

/****************************************/
/***      	18. Blog Archive css      ***/
/****************************************/

.page-blog {
	padding: 120px 0;
}

.page-pagination {
	margin-top: 30px;
	text-align: center;
}

	.page-pagination ul {
		justify-content: center;
		padding: 0;
		margin: 0;
	}

		.page-pagination ul li a,
		.page-pagination ul li span {
			display: flex;
			text-decoration: none;
			justify-content: center;
			align-items: center;
			border: 1px solid var(--divider-color);
			color: var(--primary-color);
			border-radius: 2px;
			width: 40px;
			height: 40px;
			margin: 0 5px;
			font-weight: 600;
			line-height: 1em;
			transition: all 0.3s ease-in-out;
		}

			.page-pagination ul li.active a,
			.page-pagination ul li.active span,
			.page-pagination ul li a:hover {
				background: var(--primary-color);
				color: var(--white-color);
			}

/****************************************/
/***        19. Blog Single css       ***/
/****************************************/

.page-single-post {
	padding: 120px 0;
}

.post-single-meta ol li {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

	.post-single-meta ol li:last-child {
		margin-right: 0;
	}

	.post-single-meta ol li i {
		font-size: 18px;
		color: var(--white-color);
		margin-right: 5px;
	}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

	.post-image figure {
		display: block;
		border-radius: 2px;
		overflow: hidden;
	}

	.post-image img {
		width: 100%;
		aspect-ratio: 1 / 0.50;
		object-fit: cover;
		border-radius: 2px;
	}

.post-content {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

	.post-entry:after {
		content: '';
		display: block;
		clear: both;
	}

	.post-entry a {
		color: var(--accent-color);
	}

	.post-entry h1,
	.post-entry h2,
	.post-entry h3,
	.post-entry h4,
	.post-entry h5,
	.post-entry h6 {
		font-weight: 600;
		line-height: 1.2em;
		margin: 0 0 0.42em;
	}

	.post-entry h1 {
		font-size: 74px;
		letter-spacing: -0.01em;
	}

	.post-entry h2 {
		font-size: 54px;
		letter-spacing: -0.01em;
		line-height: 1.1em;
	}

	.post-entry h3 {
		font-size: 40px;
	}

	.post-entry h4 {
		font-size: 30px;
	}

	.post-entry h5 {
		font-size: 24px;
	}

	.post-entry h6 {
		font-size: 20px;
	}

	.post-entry p {
		margin-bottom: 20px;
	}

		.post-entry p:last-child {
			margin-bottom: 0;
		}

		.post-entry p strong {
			color: var(--primary-color);
			font-size: 18px;
			font-weight: 600;
		}

	.post-entry ol {
		margin: 0 0 30px;
	}

	.post-entry ul {
		padding: 0;
		margin: 20px 0 20px;
		padding-left: 20px;
	}

		.post-entry ol:last-child,
		.post-entry ul:last-child {
			margin-bottom: 0;
		}

		.post-entry ol li,
		.post-entry ul li {
			position: relative;
			font-size: 20px;
			line-height: 1.5em;
			color: var(--text-color);
			margin-bottom: 15px;
		}

			.post-entry ul li:last-child {
				margin-bottom: 0;
			}

		.post-entry ul ul,
		.post-entry ul ol,
		.post-entry ol ol,
		.post-entry ol ul {
			margin-top: 20px;
			margin-bottom: 0;
		}

			.post-entry ul ul li:last-child,
			.post-entry ul ol li:last-child,
			.post-entry ol ol li:last-child,
			.post-entry ol ul li:last-child {
				margin-bottom: 0;
			}

	.post-entry blockquote {
		border: 1px solid var(--divider-color);
		background: url('../images/icon-blockquote.svg');
		background-repeat: no-repeat;
		background-position: 30px 30px;
		background-size: 45px;
		border-radius: 2px;
		padding: 30px 30px 30px 90px;
		margin-bottom: 30px;
	}

		.post-entry blockquote p {
			font-size: 20px;
			font-weight: 600;
			line-height: 1.4em;
			color: var(--primary-color);
		}

			.post-entry blockquote p:last-child {
				margin-bottom: 0;
			}

.tag-links {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a {
	display: inline-block;
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1em;
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
	border-radius: 0;
	padding: 10px 20px;
	transition: all 0.4s ease-in-out;
}

	.post-tags .tag-links a:hover {
		background: var(--primary-color);
		color: var(--white-color);
	}

.post-social-sharing {
	text-align: right;
}

	.post-social-sharing ul {
		list-style: none;
		padding: 0;
		margin: 0;
	}

		.post-social-sharing ul li {
			display: inline-block;
			margin-right: 10px;
		}

			.post-social-sharing ul li:last-child {
				margin-right: 0;
			}

			.post-social-sharing ul li a {
				display: flex;
				align-items: center;
				justify-content: center;
				text-align: center;
				border: 1px solid var(--primary-color);
				color: var(--primary-color);
				border-radius: 0;
				width: 40px;
				height: 40px;
				transition: all 0.4s ease-in-out;
			}

			.post-social-sharing ul li:hover a {
				background: var(--primary-color);
				color: var(--white-color);
			}

			.post-social-sharing ul li a i {
				font-size: 18px;
				color: inherit;
			}

/****************************************/
/***      20. Products Page css       ***/
/****************************************/

.page-products {
	padding: 120px 0;
}

.page-single-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 20px;
}

.product-category-item {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

	.product-category-item:last-child {
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
	}

.product-category-filter-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px 15px;
}

.page-single-sidebar .product-category-filter-header {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 20px;
}

.product-category-filter-title {
	max-width: 50%;
	display: flex;
	align-items: center;
	gap: 10px;
}

	.product-category-filter-title img {
		width: 100%;
		max-width: 24px;
	}

	.product-category-filter-title h2 {
		font-size: 18px;
	}

.product-category-filter-clear-btn a {
	font-size: 16px;
	color: var(--text-color);
	transition: all 0.4s ease-in-out;
}

	.product-category-filter-clear-btn a:hover {
		color: var(--accent-color);
	}

.product-category-item-title {
	position: relative;
	font-size: 22px;
	margin-bottom: 20px;
}

	.product-category-item-title::before {
		content: '\f077';
		font-family: 'Font Awesome 7 Free';
		position: absolute;
		top: 0;
		right: 0;
		font-size: 16px;
		font-weight: 600;
		color: var(--primary-color);
		transition: all 0.3s ease-in-out;
	}

.product-category-item ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

	.product-category-item ul li {
		line-height: normal;
		color: var(--primary-color);
		display: flex;
		align-items: center;
		gap: 5px 10px;
		margin-bottom: 20px;
	}

		.product-category-item ul li:last-child {
			margin-bottom: 0;
		}

		.product-category-item ul li input[type=checkbox] {
			width: 20px;
			height: 20px;
			accent-color: var(--primary-color);
		}

		.product-category-item ul li label {
			flex: 1;
			cursor: pointer;
		}

.product-item-list-box .product-category-filter-header {
	margin-bottom: 20px;
}

.product-category-result-info {
	display: flex;
	align-items: center;
	gap: 15px;
}

.product-category-result-pagination ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

	.product-category-result-pagination ul li {
		position: relative;
		line-height: 1.4em;
	}

		.product-category-result-pagination ul li::before {
			content: '/';
			position: absolute;
			top: 0;
			bottom: 0;
			right: -12px;
		}

		.product-category-result-pagination ul li:last-child::before {
			display: none;
		}

		.product-category-result-pagination ul li a {
			color: inherit;
			transition: all 0.4s ease-in-out;
		}

			.product-category-result-pagination ul li a:hover {
				color: var(--primary-color);
			}

.product-category-sorting-list .form-select {
	min-width: 190px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.25em;
	color: var(--primary-color);
	background-color: transparent;
	border: 1px solid var(--primary-color);
	border-radius: 0;
	padding: 9px 35px 9px 15px;
	outline: none;
	box-shadow: none;
}

.product-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

	.product-item-list .product-item {
		width: calc(33.33% - 10px);
		border: 1px solid var(--divider-color);
		padding: 10px;
	}

		.product-item-list .product-item .product-item-body {
			padding: 0 15px 20px;
		}

.product-learn-more-btn {
	text-align: center;
	margin-top: 60px;
}

/****************************************/
/***      21. Product Single css      ***/
/****************************************/

.page-product-single {
	padding: 60px 0 120px;
}

.product-single-breadcrumb-list {
	margin-bottom: 40px;
}

	.product-single-breadcrumb-list ol {
		margin: 0;
		gap: 15px 55px;
	}

		.product-single-breadcrumb-list ol li {
			position: relative;
			color: var(--text-color);
			padding: 0;
		}

	.product-single-breadcrumb-list .breadcrumb li::before {
		content: '';
		position: absolute;
		right: -34px;
		top: 50%;
		transform: translateY(-50%);
		background: url('../images/arrow-right-long.svg') no-repeat;
		background-position: center center;
		background-size: cover;
		width: 14px;
		height: 14px;
		padding: 0;
	}

	.product-single-breadcrumb-list .breadcrumb li:last-child:before {
		display: none;
	}

	.product-single-breadcrumb-list .breadcrumb-item + .breadcrumb-item {
		padding: 0;
	}

		.product-single-breadcrumb-list .breadcrumb-item + .breadcrumb-item::before {
			content: '';
		}

	.product-single-breadcrumb-list .breadcrumb li a {
		color: inherit;
	}

.product-single-info-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 50px;
}

.product-single-image-box {
	width: calc(50% - 25px);
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.product-single-image-slider {
	width: 140px;
}

	.product-single-image-slider .swiper-wrapper {
		height: auto;
		flex-direction: column;
		gap: 10px;
	}

	.product-single-image-slider .swiper-slide {
		width: 100% !important;
		background: var(--secondary-color);
		cursor: pointer;
		padding: 10px;
	}

		.product-single-image-slider .swiper-slide figure img {
			width: 100%;
			aspect-ratio: 1 / 1.4;
			object-fit: cover;
		}

.product-single-image-item {
	width: calc(100% - 150px);
	background-color: var(--secondary-color);
	padding: 30px 20px;
}

	.product-single-image-item .swiper-slide {
		align-content: center;
	}

		.product-single-image-item .swiper-slide figure {
			text-align: center;
		}

			.product-single-image-item .swiper-slide figure img {
				width: 100%;
				max-width: 460px;
				aspect-ratio: 1 / 1.13;
				object-fit: cover;
			}

.product-single-info-content {
	width: calc(50% - 25px);
}

.product-single-price h2,
.product-single-title h2 {
	font-size: 30px;
}

.product-single-price span,
.product-single-title span {
	display: inline-block;
	font-size: 16px;
	line-height: normal;
	margin-top: 10px;
}

.product-single-price {
	margin-top: 30px;
}

	.product-single-price h2 sub {
		font-size: 24px;
		font-weight: 400;
		color: var(--text-color);
		text-decoration: line-through;
		bottom: 0;
	}

.product-single-description {
	border-top: 1px solid var(--divider-color);
	margin-top: 20px;
	padding-top: 20px;
}

	.product-single-description p {
		font-size: 16px;
		margin-bottom: 20px;
	}

		.product-single-description p:last-child {
			margin-bottom: 0;
		}

.product-single-content-body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	margin-top: 30px;
}

.qty-box {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--divider-color);
	padding: 11px 12px;
	border-radius: 2px;
	gap: 20px;
}

.qty-btn {
	background: none;
	border: none;
	padding: 0;
	color: var(--primary-color);
}

	.qty-btn span {
		font-size: 26px;
		line-height: 0;
	}

.qty-input {
	width: 35px;
	text-align: center;
	border: none;
	font-size: 18px;
	font-weight: 500;
	background: transparent;
}

.product-single-content-btn .btn-default {
	background: var(--primary-color);
	color: var(--white-color);
	padding-right: 30px;
}

	.product-single-content-btn .btn-default:hover {
		color: var(--primary-color);
	}

	.product-single-content-btn .btn-default::before {
		display: none;
	}

	.product-single-content-btn .btn-default::after {
		background: var(--white-color);
	}

.product-single-action ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
}

	.product-single-action ul li a {
		display: inline-block;
		border: 1px solid var(--divider-color);
		padding: 13px 20px;
		transition: all 0.4s ease-in-out;
	}

		.product-single-action ul li a:hover {
			background: var(--primary-color);
		}

		.product-single-action ul li a img {
			width: 100%;
			max-width: 24px;
			transition: all 0.4s ease-in-out;
		}

		.product-single-action ul li a:hover img {
			filter: brightness(0) invert(1);
		}

.product-single-content-footer {
	border-top: 1px solid var(--divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

.product-single-details-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

	.product-single-details-list ul li {
		font-size: 16px;
		line-height: 1.4em;
		margin-bottom: 10px;
	}

		.product-single-details-list ul li span {
			font-weight: 600;
			color: var(--primary-color);
		}

		.product-single-details-list ul li:last-child {
			margin-bottom: 0;
		}

.product-shipping-box {
	border: 1px solid var(--divider-color);
	border-radius: 2px;
	padding: 16px;
	margin-top: 30px;
}

	.product-shipping-box p {
		font-size: 16px;
		margin: 0;
	}

		.product-shipping-box p span {
			color: var(--primary-color);
			font-weight: 600;
			border-right: 1px solid var(--divider-color);
			margin-right: 20px;
			padding-right: 20px;
		}

			.product-shipping-box p span img {
				width: 100%;
				max-width: 24px;
				margin-right: 10px;
			}

.product-single-review-box {
	margin-top: 100px;
}

.product-step-nav {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

	.product-step-nav .nav-tabs {
		padding: 0;
		margin: 0;
		list-style: none;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 30px;
		border: none;
	}

	.product-step-nav ul li {
		width: auto;
	}

		.product-step-nav ul li .nav-link {
			position: relative;
			width: 100%;
			background: transparent;
			border: none;
			color: var(--primary-color);
			font-size: 20px;
			font-weight: 600;
			line-height: 1em;
			padding: 0;
			border-radius: 0;
			margin: 0;
			text-transform: capitalize;
			transition: all 0.3s ease-in-out;
		}

			.product-step-nav ul li .nav-link.active,
			.product-step-nav ul li .nav-link:hover {
				background: transparent;
				color: var(--accent-color);
			}

			.product-step-nav ul li .nav-link::before {
				content: '';
				display: block;
				position: absolute;
				top: auto;
				left: auto;
				bottom: -32px;
				right: 0;
				background: var(--accent-color);
				width: 0;
				height: 2px;
				transition: all 0.4s ease-in-out;
			}

			.product-step-nav ul li .nav-link.active::before,
			.product-step-nav ul li .nav-link:hover:before {
				width: 100%;
				right: auto;
				left: 0;
			}

.product-tab-item-box h3 {
	font-size: 20px;
	margin-top: 20px;
}

.product-tab-item-box h2 {
	font-size: 30px;
	margin-bottom: 20px;
}

.product-tab-item-box p {
	margin-bottom: 20px;
}

.product-tab-item-box ul {
	list-style: disc;
	padding: 0 0 0 20px;
	margin: 20px 0 0 0;
}

	.product-tab-item-box ul li {
		line-height: 1.4em;
		margin-bottom: 12px;
	}

		.product-tab-item-box ul:first-child,
		.product-tab-item-box p:last-child,
		.product-tab-item-box ul li:last-child {
			margin: 0;
		}

.product-review-from-content {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
}

.review-form,
.customer-review-list {
	width: calc(50% - 30px);
}

.customer-review-item {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

	.customer-review-item:last-child {
		margin-bottom: 0;
	}

	.customer-review-item .icon-box {
		margin-right: 20px;
	}

		.customer-review-item .icon-box img {
			width: 100%;
			max-width: 60px;
			aspect-ratio: 1 / 1;
			object-fit: cover;
			border-radius: 50%;
		}

.customer-review-item-body {
	width: calc(100% - 80px);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
}

.customer-review-item-content p {
	margin: 0 0 5px 0;
}

	.customer-review-item-content p:last-child {
		margin-bottom: 0;
	}

	.customer-review-item-content p span {
		color: var(--primary-color);
		font-weight: 600;
	}

.customer-review-item-rating i {
	color: var(--accent-color);
	font-size: 16px;
}

.review-form-content {
	margin-bottom: 30px;
}

	.review-form-content h3 {
		font-size: 20px;
		margin: 0 0 5px 0;
	}

	.review-form-content p {
		margin: 15px 0 0 0;
	}

.review-form .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--primary-color);
	border: 1px solid var(--divider-color);
	background-color: transparent;
	border-radius: 2px;
	padding: 12px 20px;
	box-shadow: none;
	outline: none;
}

	.review-form .form-control::placeholder {
		color: var(--text-color);
		opacity: 50%;
	}

.review-form-note {
	display: flex;
	align-items: start;
	gap: 5px;
}

	.review-form-note input {
		margin-top: 4px;
	}

	.review-form-note .form-label {
		margin: 0;
	}

.review-form .btn-default {
	width: 100%;
	padding: 15px 30px;
	margin: 20px 0 0 0;
}

	.review-form .btn-default::before {
		display: none;
	}

.product-additional-content-title {
	margin-bottom: 30px;
}

.product-additional-info-table {
	overflow-x: auto;
	overflow-y: hidden;
	cursor: grab;
}

	.product-additional-info-table table {
		width: auto;
		white-space: nowrap;
		border: 1px solid var(--divider-color);
	}

	.product-additional-info-table::-webkit-scrollbar {
		height: 7px;
	}

	.product-additional-info-table::-webkit-scrollbar-track {
		background-color: var(--accent-secondary-color);
	}

	.product-additional-info-table::-webkit-scrollbar-thumb {
		background: var(--accent-color);
	}

	.product-additional-info-table table tr b {
		font-weight: 600;
		color: var(--primary-color);
	}

	.product-additional-info-table table tr td {
		min-width: 200px;
		border-top: 1px solid var(--divider-color);
		color: var(--primary-color);
		padding: 20px 30px;
	}

.related-products {
	padding: 120px 0;
}

.related-product-items-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

	.related-product-items-list .product-item {
		width: calc(25% - 22.5px);
		padding: 30px;
	}

		.related-product-items-list .product-item .product-item-action ul {
			gap: 15px;
		}



/****************************************/
/***      	41. FAQs Page css	      ***/
/****************************************/

.page-faqs {
	padding: 120px 0;
}

.page-category-list {
	border: 1px solid var(--divider-color);
	margin-bottom: 30px;
}

	.page-category-list ul {
		list-style: none;
		margin: 0;
		padding: 30px;
	}

		.page-category-list ul li {
			line-height: 1.5em;
			border-bottom: 1px solid var(--divider-color);
			padding-bottom: 20px;
			margin-bottom: 20px;
		}

			.page-category-list ul li:last-child {
				border-bottom: none;
				margin: 0;
				padding: 0;
			}

			.page-category-list ul li a {
				position: relative;
				display: block;
				text-transform: capitalize;
				color: inherit;
				padding-right: 25px;
				transition: all 0.3s ease-in-out;
			}

				.page-category-list ul li a:hover {
					color: var(--primary-color);
				}

				.page-category-list ul li a::before {
					content: '';
					position: absolute;
					top: 50%;
					right: 0;
					background: url('../images/arrow-primary.svg') no-repeat;
					background-position: center center;
					background-size: cover;
					width: 16px;
					height: 16px;
					transform: translateY(-50%);
					transition: all 0.4s ease-in-out;
				}

				.page-category-list ul li a:hover::before {
					transform: translateY(-50%) rotate(45deg);
				}

.sidebar-cta-box {
	border: 1px solid var(--divider-color);
	padding: 30px;
}

.sidebar-cta-title {
	max-width: 242px;
}

.sidebar-cta-box h2 {
	font-size: 22px;
	line-height: 1.4em;
}

.sidebar-cta-box ul {
	border-top: 1px solid var(--divider-color);
	margin: 40px 0 0 0;
	padding: 30px 0 0 0;
	list-style: none;
}

	.sidebar-cta-box ul li {
		color: var(--text-color);
		line-height: 1.5em;
		margin-bottom: 15px;
	}

		.sidebar-cta-box ul li:last-child {
			margin-bottom: 0;
		}

		.sidebar-cta-box ul li a {
			color: inherit;
			transition: all 0.4s ease-in-out;
		}

			.sidebar-cta-box ul li a:hover {
				color: var(--primary-color);
			}

			.sidebar-cta-box ul li a img {
				width: 100%;
				max-width: 20px;
				margin-right: 10px;
			}

.page-faq-accordion .faq-accordion {
	padding: 0;
}

.page-faq-accordion {
	margin-bottom: 60px;
}

	.page-faq-accordion:last-child {
		margin-bottom: 0px;
	}

	.page-faq-accordion .faq-accordion {
		background: transparent;
		margin: 0;
	}

/****************************************/
/***       42. Contact Page css       ***/
/****************************************/

.page-contact-us {
	padding: 120px 0 60px;
}

.contact-us-content-box {
	position: sticky;
	top: 30px;
	margin-right: 25px;
}

.contact-info-list {
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
}

.contact-info-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

	.contact-info-item:last-child {
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 0;
	}

	.contact-info-item .icon-box {
		position: relative;
		width: 50px;
		height: 50px;
		border: 1px solid var(--divider-color);
		display: flex;
		justify-content: center;
		align-items: center;
		overflow: hidden;
		transition: all 0.4s ease-in-out;
	}

		.contact-info-item .icon-box::before {
			content: "";
			position: absolute;
			top: 0;
			right: 0;
			bottom: 0;
			left: 0;
			background-color: var(--primary-color);
			width: 100%;
			height: 100%;
			transition: all 0.4s ease-in-out;
			transform: scale(0);
			z-index: 0;
		}

	.contact-info-item:hover .icon-box::before {
		transform: scale(1) rotate(90deg);
	}

	.contact-info-item .icon-box img {
		width: 100%;
		max-width: 24px;
		transition: all 0.4s ease-in-out;
	}

	.contact-info-item:hover .icon-box img {
		filter: brightness(0) invert(1);
	}

.contact-info-item-content {
	width: calc(100% - 65px);
}

	.contact-info-item-content h3 {
		font-size: 18px;
	}

	.contact-info-item-content p {
		margin: 5px 0 0;
	}

		.contact-info-item-content p a {
			color: inherit;
			transition: all 0.3s ease-in-out;
		}

			.contact-info-item-content p a:hover {
				color: var(--accent-color);
			}

.contact-us-form {
	border: 1px solid var(--divider-color);
	padding: 50px;
}

.contact-form-title {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
	margin-bottom: 40px;
}

	.contact-form-title h2 {
		font-size: 22px;
	}

.contact-form label {
	font-size: 16px;
	font-weight: 500;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.contact-form .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--primary-color);
	background: transparent;
	border-radius: 0;
	padding: 12px 20px;
	border: 1px solid var(--divider-color);
	box-shadow: none;
	outline: none;
}

	.contact-form .form-control::placeholder {
		color: var(--text-color);
		opacity: 50%;
	}

.google-map {
	padding: 60px 0 120px;
}

.google-map-iframe,
.google-map-iframe iframe {
	width: 100%;
	height: 600px;
	border-radius: 2px;
	overflow: hidden;
}

	.google-map-iframe iframe {
		filter: grayscale(1);
		transition: all 0.5s ease-in-out;
	}

		.google-map-iframe iframe:hover {
			filter: grayscale(0);
		}

/****************************************/
/***      43. 404 Error Page css      ***/
/****************************************/

.error-page {
	padding: 120px 0;
}

.error-page-image {
	text-align: center;
	margin-bottom: 40px;
}

	.error-page-image img {
		width: 100%;
		max-width: 520px;
	}

.error-page-content {
	text-align: center;
}

	.error-page-content .section-title {
		margin-bottom: 15px;
	}

/****************************************/
/***       44. Responsive css         ***/
/****************************************/

@media only screen and (min-width: 769px) {

	.dropdown:hover > .dropdown-menu {
		display: block;
	}
}

@media only screen and (max-width: 1440px) {

	.intro-video-bg-video {
		height: 700px;
	}

	.why-choose-content-box {
		padding: 100px 30px;
	}
}

@media only screen and (max-width: 1366px) {

	.dropdown-menu {
		padding: 40px 15px;
	}

	.mega-menu-box {
		padding: 0;
	}
}

@media only screen and (max-width: 1280px) {

	.main-menu ul .nav-item {
		margin: 0 20px;
	}
}

@media only screen and (max-width: 1024px) {

	.topbar {
		padding: 12px 0;
	}

	.topbar-content-info p {
		font-size: 16px;
	}

	.navbar {
		gap: 30px;
		padding: 20px 15px;
	}

	.header-action-box {
		width: calc(100% - 68px);
		padding: 0;
	}

	.header-search-form-box {
		max-width: 500px;
		padding: 0 10px;
	}

	.header-search-form {
		gap: 20px;
	}

		.header-search-form .form-group {
			width: calc(100% - 140px);
		}

			.header-search-form .form-group .form-control {
				padding: 12px 10px;
			}

	.header-action-details ul {
		gap: 20px;
	}

		.header-action-details ul li a {
			gap: 2px;
		}

			.header-action-details ul li a img {
				max-width: 20px;
			}

	.main-menu {
		width: auto;
		background: transparent;
		padding: 0;
	}

		.main-menu .navbar-collapse {
			display: none !important;
		}

	.slicknav_menu ul.dropdown-menu {
		position: initial !important;
		transform: none !important;
		display: none;
		border-radius: 0;
		opacity: 1;
		visibility: visible;
		padding: 30px 15px;
		margin: 0;
		border: none;
		transition: inherit;
	}

	.slicknav_nav .mega-menu-box {
		display: flex;
		flex-wrap: wrap;
		gap: 30px;
	}

	.mega-menu-links-box {
		width: 100%;
		gap: 30px;
	}

	.mega-menu-link {
		width: calc(50% - 15px);
	}

		.mega-menu-link h2 {
			font-size: 18px;
			margin-bottom: 15px;
			padding-bottom: 15px;
		}

	.slicknav_menu .mega-menu-link ul {
		padding: 0;
	}

		.slicknav_menu .mega-menu-link ul li {
			margin-bottom: 10px;
		}

			.slicknav_menu .mega-menu-link ul li:last-child {
				margin-bottom: 0;
			}

			.slicknav_menu .mega-menu-link ul li a {
				font-size: 16px;
				color: var(--primary-color);
				padding: 0;
			}

	.mega-menu-items-list {
		width: 100%;
	}

	.mega-menu-item.big-offer-box {
		padding: 20px;
	}

	.slicknav_menu .mega-menu-item-image a {
		padding: 0;
	}

	.slicknav_menu .mega-menu-item-content h2 a,
	.mega-menu-item-content h2 {
		font-size: 20px;
		color: var(--primary-color);
		padding: 0;
	}

	.mega-menu-item.big-offer-box .mega-menu-item-content h2 {
		font-size: 26px;
	}

	.mega-menu-item.big-offer-box .mega-menu-item-content h3 {
		font-size: 18px;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.header-btn {
		display: none;
	}

	.section-content-btn .section-btn {
		margin-top: 20px;
	}

	.section-title-content {
		margin-top: 10px;
	}

		.section-title-content p {
			margin-bottom: 10px;
		}

	.section-btn {
		text-align: left;
		margin-top: 15px;
	}

	.section-title.section-sub-heading,
	.section-title .section-sub-title {
		margin-bottom: 10px;
	}

	.hero {
		min-height: 730px;
	}

		.hero .section-btn {
			margin-bottom: 0px;
		}

	.about-us .section-row {
		margin-bottom: 60px;
	}

	.about-us-items-list {
		gap: 30px;
	}

	.about-us-item {
		width: calc(33.33% - 20px);
	}

		.about-us-item::before {
			right: -15px;
		}

	.about-category-items-list {
		margin-top: 60px;
	}

	.collection-item-image figure img {
		aspect-ratio: 1 / 1.05;
	}

	.product-item {
		padding: 30px;
	}

	.brand-item-image img {
		aspect-ratio: 1 / 1.1;
	}

	.new-arrival-item-image img {
		aspect-ratio: 1 / 0.99;
	}

	.latest-update-video {
		height: 380px;
	}

	.latest-update-video-title {
		padding: 20px;
	}

		.latest-update-video-title h3 {
			font-size: 20px;
		}

	.why-choose-content-box {
		padding: 60px 15px;
	}

	.faqs-content {
		height: auto;
		padding: 0;
		margin-bottom: 30px;
	}

	.faq-accordion {
		margin: 0;
	}

	.post-item .post-featured-image figure img {
		aspect-ratio: 1 / 1.05;
	}

	.footer-benefit-item-list {
		gap: 30px 40px;
	}

	.footer-benefit-item {
		width: calc(25% - 30px);
	}

		.footer-benefit-item::before {
			right: -20px;
		}

	.footer-header {
		margin-bottom: 40px;
	}

	.footer-about-content {
		max-width: 100%;
	}

	.footer-download-app-box h2 {
		margin-bottom: 20px;
	}

	.footer-download-app-box {
		margin-top: 30px;
	}

	.footer-links-box {
		margin-left: 0;
	}

	.footer-copyright {
		margin-top: 40px;
		padding: 30px 0;
	}

	.page-about-content-box .intro-video-content-box {
		margin-top: 40px;
	}

	.what-we-item-list {
		gap: 30px;
	}

	.what-we-item {
		width: calc(25% - 22.5px);
	}

		.what-we-item::before {
			right: -15px;
		}

		.what-we-item .icon-box {
			margin-bottom: 30px;
		}

	.our-approach-content {
		height: auto;
		margin-bottom: 30px;
	}

	.approach-video-content-box {
		margin: 0;
	}

	.history-image-slider {
		max-width: 740px;
		margin: 0 auto 30px;
	}

		.history-image-slider,
		.history-image-slider .swiper,
		.history-image-slider .swiper-slide figure,
		.history-image-slider .swiper-slide figure img {
			height: auto;
		}

			.history-image-slider .swiper-slide figure img {
				aspect-ratio: 1 / 0.85;
			}

	.our-dealer-list ul li {
		padding: 30px 20px;
	}

		.our-dealer-list ul li img {
			max-width: 140px;
			height: 40px;
		}

	.page-single-sidebar {
		position: initial;
		margin: 0 0 30px;
	}

	.product-item-list .product-item {
		width: calc(50% - 7.5px);
	}

	.page-single-sidebar .product-category-filter-header {
		margin-bottom: 20px;
	}

	.product-category-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.product-category-item-title {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.product-category-item ul li {
		margin-bottom: 10px;
	}

	.product-single-info-content,
	.product-single-image-box {
		width: 100%;
	}

	.related-product-items-list .product-item {
		width: calc(50% - 15px);
	}

	.page-single-sidebar.right-side-sidebar {
		margin: 30px 0 0;
	}

	.order-summary-box-title,
	.order-summary-promocode-box,
	.order-summary-shipment-info {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.order-detail-sidebar-item {
		margin-bottom: 30px;
	}

	h2.order-sidebar-item-title {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.order-detail-sidebar-item ul li {
		margin-bottom: 15px;
	}

	.order-detail-title-box {
		margin-bottom: 30px;
	}

	.my-account-sidebar-item {
		padding: 30px;
	}


	.login-content-box {
		gap: 40px;
	}

	.login-content-form-item {
		width: calc(50% - 20px);
	}

	.testimonial-item-box {
		min-height: auto;
	}

	.page-category-list ul {
		padding: 20px;
	}

		.page-category-list ul li {
			padding-bottom: 15px;
			margin-bottom: 15px;
		}

			.page-category-list ul li a::before {
				width: 14px;
				height: 14px;
			}

	.sidebar-cta-box {
		padding: 20px;
	}

		.sidebar-cta-box ul {
			margin: 30px 0 0 0;
		}

	.contact-us-content-box {
		position: initial;
		margin: 0 0 30px 0;
	}

	.contact-us-form {
		padding: 30px;
	}
}

@media only screen and (max-width: 991px) {

	.btn-default {
		font-size: 16px;
		padding: 14px 40px 14px 16px;
	}

		.btn-default::before {
			right: 16px;
			width: 14px;
			height: 14px;
		}

	header.main-header {
		top: 0px;
		right: 0px;
		left: 0px;
	}

		header.main-header .header-sticky {
			width: 100%;
			border-top: none;
			border-right: none;
			border-left: none;
			border-radius: 0;
		}

			header.main-header .header-sticky.active {
				width: 100%;
				border-radius: 0;
				top: 0;
				left: 0;
				right: 0;
			}

	.desktop-hide {
		display: block;
	}

	.mobile-hide {
		display: none;
	}

	.header-search-form-box {
		max-width: 350px;
	}

	.header-search-form {
		gap: 10px;
	}

		.header-search-form .form-select {
			max-width: 105px;
			font-size: 14px;
		}

		.header-search-form .form-group {
			width: calc(100% - 115px);
		}

			.header-search-form .form-group .form-control {
				font-size: 14px;
			}

			.header-search-form .form-group .header-search-btn i {
				font-size: 16px;
			}

	.section-row {
		margin-bottom: 40px;
	}

	.section-title {
		margin-bottom: 30px;
	}

		.section-title .section-sub-title {
			padding: 6px 12px 6px 26px;
		}

			.section-title .section-sub-title::before {
				left: 12px;
			}

		.section-title h1 {
			font-size: 52px;
		}

		.section-title h2 {
			font-size: 40px;
		}

		.section-title p {
			margin-top: 10px;
		}

	.hero {
		padding: 60px 0;
	}

		.hero .section-title .section-sub-title {
			padding-left: 36px;
		}

	.about-us {
		padding: 60px 0;
	}

		.about-us .section-title-content p {
			font-size: 18px;
		}

	.about-us-item h2 {
		font-size: 44px;
	}

	.about-us-item h3 {
		font-size: 20px;
		margin-top: 10px;
	}

	.about-category-item {
		padding: 30px;
	}

	.about-category-item-content span {
		font-size: 18px;
	}

	.about-category-item-content h2 {
		font-size: 40px;
		margin-bottom: 15px;
	}

	.our-collection {
		padding: 60px 0;
	}

	.collection-item-body {
		bottom: 30px;
		left: 30px;
		right: 30px;
	}

	.collection-item-content p {
		margin-top: 10px;
	}

	.section-footer-text {
		margin-top: 10px;
	}

		.section-footer-text p span {
			margin-right: 5px;
		}

		.section-footer-text ul li {
			font-size: 18px;
			margin-right: 5px;
		}

			.section-footer-text ul li i {
				font-size: 16px;
			}

	.our-products {
		padding: 60px 0;
	}

	.product-item-content .product-item-category {
		margin-bottom: 10px;
	}

	.product-item-price h2 {
		font-size: 24px;
	}

	.product-slider .product-pagination {
		margin-top: 30px;
	}

	.our-products .section-footer-text {
		margin-top: 20px;
	}

	.intro-video-bg-video {
		height: 520px;
	}

	.video-play-button a span {
		width: 70px;
		height: 70px;
	}

		.video-play-button a span i {
			font-size: 24px;
		}

	.our-brands {
		padding: 60px 0;
	}

	.brand-item-logo {
		bottom: 30px;
		left: 30px;
		right: 30px;
	}

	.brand-item-slider .brand-pagination {
		margin-top: 30px;
	}

	.our-brands .section-footer-text {
		margin-top: 20px;
	}

	.new-arrivals {
		padding: 60px 0;
	}

	.new-arrival-item-content {
		bottom: 30px;
		right: 30px;
		left: 30px;
	}

		.new-arrival-item-content ul {
			margin-bottom: 10px;
		}

		.new-arrival-item-content h2 {
			font-size: 20px;
		}

	.new-arrival-slider .new-arrival-pagination {
		margin-top: 30px;
	}

	.new-arrivals .section-footer-text {
		margin-top: 20px;
	}

	.latest-updates {
		padding: 60px 0;
	}

	.latest-update-video {
		width: calc(50% - 5px);
	}

	.why-choose-img-slider .swiper-slide img {
		aspect-ratio: 1 / 0.76;
	}

	.why-choose-img-item {
		bottom: 30px;
		right: 30px;
	}

	.why-choose-accordion .accordion-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.why-choose-accordion .accordion-header .accordion-button {
		font-size: 20px;
		padding-right: 34px;
	}

	.why-choose-accordion .accordion-item .accordion-button::after,
	.why-choose-accordion .accordion-item .accordion-button.collapsed::after {
		font-size: 26px;
	}

	.why-choose-accordion .accordion-item .accordion-body {
		padding: 10px 34px 0 0;
	}

	.our-faqs {
		padding: 60px 0;
	}

	.faq-info-list {
		padding-top: 30px;
	}

	.faq-accordion {
		padding: 30px;
	}

		.faq-accordion .accordion-item {
			margin-bottom: 20px;
			padding-bottom: 20px;
		}

		.faq-accordion .accordion-header .accordion-button {
			font-size: 18px;
			padding: 1px 34px 1px 0;
		}

		.faq-accordion .accordion-item .accordion-button::after,
		.faq-accordion .accordion-item .accordion-button.collapsed::after {
			font-size: 26px;
		}

		.faq-accordion .accordion-item .accordion-body {
			padding: 10px 34px 0 0;
		}

	.our-testimonials {
		padding: 60px 0;
	}

	.testimonial-item {
		min-height: 420px;
		padding: 30px;
	}

	.testimonial-item-content p,
	.testimonial-author-content h2 {
		font-size: 20px;
	}

	.testimonial-author-content {
		margin-top: 20px;
		padding-top: 20px;
	}

	.testimonial-footer-box {
		margin-top: 40px;
	}

	.google-rating-info-content h2 {
		font-size: 20px;
	}

		.google-rating-info-content h2 span {
			min-width: 27px;
		}

	.our-blog {
		padding: 60px 0 30px;
	}

	.post-item .post-item-body {
		bottom: 20px;
		right: 20px;
		left: 20px;
	}

	.post-item .post-item-content h2 {
		font-size: 20px;
	}

	.post-item .post-item-btn {
		margin-top: 15px;
		padding-top: 15px;
	}

	.footer-benefits {
		padding: 20px 0;
	}

	.footer-benefit-item {
		flex-direction: column;
		gap: 10px;
		text-align: center;
	}

		.footer-benefit-item .icon-box img {
			max-width: 40px;
		}

	.footer-benefit-item-content {
		width: 100%;
	}

		.footer-benefit-item-content h2 {
			font-size: 18px;
		}

	.main-footer {
		padding: 50px 0 0;
	}

	.footer-download-app-box h2 {
		font-size: 20px;
	}

	.app-download-btn a img {
		max-width: 160px;
	}

	.footer-links h2 {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.footer-links ul li {
		margin-bottom: 10px;
	}

	.page-header {
		padding: 90px 0;
	}

	.page-header-box h1 {
		font-size: 42px;
	}

	.page-about-us {
		padding: 60px 0 30px;
	}

	.page-about-content-box .intro-video-bg-video {
		height: 420px;
	}

	.page-about-content-box .video-play-button a span {
		width: 65px;
		height: 65px;
	}

		.page-about-content-box .video-play-button a span i {
			font-size: 20px;
		}

	.what-we-do {
		padding: 30px 0 60px;
	}

	.what-we-item .icon-box img {
		max-width: 50px;
	}

	.what-we-item {
		width: calc(50% - 15px);
	}

		.what-we-item:nth-child(2n + 2):before {
			display: none;
		}

	.what-we-item-content h3 {
		font-size: 20px;
	}

	.what-we-item-content p {
		margin-top: 10px;
	}

	.what-we-do .section-footer-text {
		margin-top: 40px;
	}

	.our-approach {
		padding: 60px 0;
	}

	.our-approach-accordion .accordion-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.our-approach-accordion .accordion-header .accordion-button {
		font-size: 20px;
		padding-right: 34px;
	}

	.our-approach-accordion .accordion-item .accordion-button::after,
	.our-approach-accordion .accordion-item .accordion-button.collapsed::after {
		font-size: 26px;
	}

	.our-approach-accordion .accordion-item .accordion-body {
		padding: 10px 34px 0 0;
	}

	.approach-video-content-box {
		min-height: 530px;
	}

	.approach-cta-box {
		left: 30px;
		bottom: 30px;
	}

	.approach-cta-title h2 {
		font-size: 30px;
	}

	.our-history {
		padding: 60px 0;
	}

	.author-signature-box {
		padding-top: 30px;
		margin-top: 30px;
	}

	.history-slider-btn {
		left: 20px;
	}

	.history-image-slider .history-button-next,
	.history-image-slider .history-button-prev {
		width: 40px;
		height: 40px;
	}

		.history-image-slider .history-button-next::before,
		.history-image-slider .history-button-prev::before {
			background-size: 14px auto;
		}

	.our-dealer {
		padding: 60px 0;
	}

		.our-dealer .section-footer-text {
			margin-top: 40px;
		}

	.our-team {
		padding: 60px 0;
	}

	.team-item-body {
		left: 30px;
		right: 30px;
		bottom: 30px;
	}

	.team-item-content h2 {
		font-size: 20px;
	}

	.our-excellence {
		padding: 60px 0 30px;
	}

	.our-excellence-item-body {
		bottom: 30px;
		left: 30px;
		right: 30px;
	}

		.our-excellence-item-body h3 {
			font-size: 22px;
		}

	.page-blog {
		padding: 60px 0;
	}

	.page-pagination {
		margin-top: 10px;
	}

	.page-single-post {
		padding: 60px 0;
	}

	.post-image {
		margin-bottom: 20px;
	}

	.post-entry h2 {
		font-size: 40px;
	}

	.post-entry p {
		margin-bottom: 15px;
	}

	.post-entry ol li,
	.post-entry ul li {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.post-entry blockquote {
		background-position: 20px 20px;
		background-size: 40px;
		padding: 20px 20px 20px 70px;
		margin-bottom: 20px;
	}

		.post-entry blockquote p {
			font-size: 18px;
		}

	.post-tags {
		margin-bottom: 20px;
	}

		.post-tags .tag-links a {
			padding: 10px 15px;
		}

	.post-social-sharing ul {
		text-align: left;
	}

	.page-products {
		padding: 60px 0;
	}

	.product-category-sorting-list .form-select {
		padding: 8px 35px 8px 12px;
	}

	.product-learn-more-btn {
		margin-top: 30px;
	}

	.page-product-single {
		padding: 30px 0 60px;
	}

	.product-single-price h2,
	.product-single-title h2 {
		font-size: 26px;
	}

		.product-single-price h2 sub {
			font-size: 22px;
		}

	.qty-box {
		gap: 10px;
		padding: 9px 12px;
	}

	.product-single-content-btn .btn-default {
		padding-right: 16px;
	}

	.product-single-action ul li a {
		padding: 10px 15px;
	}

	.product-shipping-box {
		padding: 12px;
	}

	.product-single-review-box {
		margin-top: 60px;
	}

	.product-step-nav {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

		.product-step-nav ul li .nav-link {
			font-size: 18px;
		}

			.product-step-nav ul li .nav-link::before {
				bottom: -21px;
			}

	.product-tab-item-box h2 {
		font-size: 26px;
		margin-bottom: 10px;
	}

	.product-tab-item-box p {
		margin: 10px 0 0 0;
	}

	.review-form,
	.customer-review-list {
		width: 100%;
	}

	.customer-review-item {
		margin-bottom: 30px;
	}

	.customer-review-item-content p {
		margin: 0 0 5px 0;
	}

	.review-form .form-control {
		padding: 10px 15px;
	}

	.review-form .btn-default {
		padding: 14px 16px;
	}

	.related-products {
		padding: 60px 0;
	}

	.page-cart {
		padding: 60px 0;
	}

	.cart-item-image-content {
		gap: 15px;
	}

	.cart-item-info-content {
		width: calc(100% - 115px);
	}

	.cart-item-buttons {
		gap: 15px 30px;
		margin-top: 30px;
	}

		.cart-item-buttons .btn-default {
			padding: 14px 16px 14px 40px;
		}

			.cart-item-buttons .btn-default.btn-update::before,
			.cart-item-buttons .btn-default.btn-clear::before {
				left: 14px;
				font-size: 16px;
			}

	.interested-products-box {
		margin-top: 60px;
	}

	.interested-products-box-title {
		margin-bottom: 20px;
	}

		.interested-products-box-title h2 {
			font-size: 28px;
		}

	.order-summary-box-title h2 {
		font-size: 20px;
	}

	.order-summary-promocode-form {
		margin-bottom: 20px;
	}

		.order-summary-promocode-form .form-group button.promocode-btn {
			padding: 8px 14px;
			min-width: 80px;
		}

	.order-checkout-button .btn-default {
		padding-right: 16px;
	}

	.page-order-detail {
		padding: 60px 0;
	}

	h2.order-sidebar-item-title {
		font-size: 20px;
	}

	.order-detail-title-box h2 {
		font-size: 34px;
	}

	.page-checkout {
		padding: 60px 0;
	}

	.checkout-login-box {
		margin-bottom: 30px;
	}

	.checkout-accordion-header .checkout-accordion-button {
		padding: 12px 35px 12px 15px;
	}

		.checkout-accordion-header .checkout-accordion-button::after,
		.checkout-accordion-header .checkout-accordion-button.collapsed::after {
			right: 15px;
		}

	.checkout-accordion-body {
		margin-top: 20px;
	}

	.checkout-accordion-body-content {
		margin-bottom: 20px;
	}

	.checkout-bill-address-title h2 {
		font-size: 20px;
	}

	.checkout-login-btn .btn-default {
		padding-right: 16px;
	}

	.checkout-bill-address-title {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.checkout-bill-address-form .form-group,
	.checkout-login-form .form-group {
		margin-bottom: 20px;
	}

		.checkout-bill-address-form .form-group label,
		.checkout-login-form .form-group label {
			margin-bottom: 10px;
		}

	.checkout-bill-address-form .form-control,
	.checkout-login-form .form-control {
		padding: 10px 15px;
	}

	.checkout-bill-address-form select.form-control {
		padding: 10px 35px 10px 15px;
	}

	.checkout-form-checkbox.different-address-note {
		margin-top: 15px;
	}

		.checkout-form-checkbox.different-address-note label {
			margin-bottom: 0;
		}

	.checkout-coupeon-accordion {
		margin-bottom: 20px;
	}

	.coupeon-accordion-header .coupeon-accordion-button {
		padding: 12px 35px 12px 15px;
	}

		.coupeon-accordion-header .coupeon-accordion-button::after,
		.coupeon-accordion-header .coupeon-accordion-button.collapsed::after {
			right: 15px;
		}

	.coupeon-accordion-body {
		margin-top: 20px;
	}

	.coupeon-accordion-body-content {
		margin-bottom: 15px;
	}

	.coupeon-apply-form .form-control {
		padding: 7px 18px 7px 35px;
	}

	.product-total-order-title {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

		.product-total-order-title h3 {
			font-size: 20px;
		}

	.all-product-total,
	.product-total-item {
		margin-top: 15px;
		padding-top: 15px;
	}

	.place-order-button .btn-default {
		padding-right: 16px;
	}

	.page-my-account {
		padding: 60px 0;
	}

	.my-account-sidebar-item ul li {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.account-dashboard-detail-box p {
		margin-bottom: 15px;
	}

	.page-account-order {
		padding: 60px 0;
	}

	.account-order-button {
		margin-top: 30px;
	}

	.page-account-view-order {
		padding: 60px 0;
	}

	ul.view-order-product-info-list li {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.view-order-address-item-list {
		margin-top: 40px;
		gap: 30px 50px;
	}

	.view-order-address-item {
		width: calc(50% - 25px);
	}

		.view-order-address-item h2 {
			font-size: 20px;
		}

		.view-order-address-item ul li {
			margin-bottom: 15px;
		}

	.page-product-download {
		padding: 60px 0;
	}


	.page-my-account-address {
		padding: 60px 0;
	}

	.account-address-content-header {
		margin-bottom: 30px;
	}

	.account-address-item {
		margin-bottom: 30px;
	}

	.account-address-item-title {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

		.account-address-item-title h2 {
			font-size: 20px;
		}

	.account-address-item-info-list ul li {
		margin-bottom: 15px;
	}

	.page-account-addresses {
		padding: 60px 0;
	}

	.page-account-details {
		padding: 60px 0;
	}

	.account-details-content-item {
		margin-bottom: 30px;
	}

	.page-account-wishlist {
		padding: 60px 0;
	}

	.wishlist-content-button {
		margin-top: 30px;
	}

	.page-login {
		padding: 60px 0;
	}

	.login-content-form-item {
		width: 100%;
	}

	.login-content-title-box {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

		.login-content-title-box h2 {
			font-size: 30px;
		}

		.login-content-title-box p {
			margin: 10px 0 0;
		}

	.login-content-form-btn {
		margin-top: 20px;
	}

		.login-content-form-btn a {
			font-size: 18px;
		}

	.signup-form-btn {
		margin-top: 20px;
	}

	.page-forgot-password {
		padding: 60px 0;
	}

	.page-privacy-policy {
		padding: 60px 0;
	}

	.privacy-policy-entry-header {
		margin-bottom: 40px;
	}

		.privacy-policy-entry-header h3 {
			font-size: 20px;
			margin-bottom: 15px;
		}

	.privacy-policy-entry-item {
		margin-bottom: 40px;
	}

		.privacy-policy-entry-item .section-title h2 {
			font-size: 30px;
		}

	.privacy-policy-entry-item-content-box {
		margin-bottom: 30px;
	}

		.privacy-policy-entry-item-content-box h3 {
			font-size: 20px;
			margin-bottom: 15px;
		}

		.privacy-policy-entry-item-content-box p {
			margin-bottom: 10px;
		}

		.privacy-policy-entry-item-content-box ul {
			margin-bottom: 15px;
		}

	.page-terms-conditions {
		padding: 60px 0;
	}

	.page-refund-return-policy {
		padding: 60px 0;
	}

	.page-cancellation-policy {
		padding: 60px 0;
	}

	.page-delivery-policy {
		padding: 60px 0;
	}

	.page-testimonials {
		padding: 60px 0 30px;
	}

	.testimonial-item-box {
		padding: 30px;
	}

	.testimonial-author-content-box h2 {
		font-size: 20px;
	}

	.testimonial-item-content-box p {
		font-size: 18px;
	}

	.page-faqs {
		padding: 60px 0;
	}

	.sidebar-cta-box h2 {
		font-size: 20px;
		max-width: 100%;
	}

	.page-faq-accordion {
		margin-bottom: 40px;
	}

	.sidebar-cta-box ul {
		margin: 20px 0 0 0;
		padding: 20px 0 0 0;
	}

	.page-contact-us {
		padding: 60px 0 30px;
	}

	.contact-info-list {
		padding-top: 30px;
	}

	.contact-form-title {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

		.contact-form-title h2 {
			font-size: 20px;
		}

	.contact-form label {
		margin-bottom: 10px;
	}

	.contact-form .form-control {
		padding: 10px 15px;
	}

	.google-map {
		padding: 30px 0 60px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 450px;
	}

	.error-page {
		padding: 60px 0px;
	}

	.error-page-image {
		margin-bottom: 20px;
	}

		.error-page-image img {
			max-width: 450px;
		}
}

@media only screen and (max-width: 767px) {

	body {
		font-size: 16px;
	}

	.readmore-btn {
		padding-right: 32px;
	}

		.readmore-btn::before {
			width: 22px;
			height: 22px;
			background-size: 10px auto;
		}

	.section-row {
		margin-bottom: 30px;
	}

	.section-title h1 {
		font-size: 28px;
	}

	.section-title h2 {
		font-size: 26px;
	}

	.topbar-content-info p {
		font-size: 14px;
	}

	.topbar-content-info i {
		font-size: 14px;
		margin-right: 2px;
	}

	.navbar {
		gap: 15px;
	}

	.header-action-box {
		width: calc(100% - 53px);
	}

	.header-Category-list {
		display: none;
	}

	.header-search-form-box {
		max-width: max-content;
		padding: 0 5px;
	}

	.header-search-form .form-group {
		width: auto;
	}

		.header-search-form .form-group .form-control {
			width: 110px;
			font-size: 12px;
			padding: 10px 0;
		}

		.header-search-form .form-group .header-search-btn {
			padding: 0;
		}

			.header-search-form .form-group .header-search-btn i {
				font-size: 14px;
			}

	.slicknav_menu ul.dropdown-menu {
		padding: 20px 15px;
	}

	.mega-menu-links-box {
		gap: 20px;
	}

	.mega-menu-link {
		width: calc(50% - 10px);
	}

	.mega-menu-items-list {
		gap: 20px;
	}

	.mega-menu-item {
		width: calc(50% - 10px);
	}

		.mega-menu-item.big-offer-box {
			width: 100%;
			min-height: 180px;
		}

	.slicknav_menu .mega-menu-item-content h2 a,
	.mega-menu-item-content h2 {
		font-size: 18px;
	}

	.hero {
		min-height: 680px;
	}

	.about-us .section-row {
		margin-bottom: 30px;
	}

	.about-us .section-title-content p {
		font-size: 16px;
	}

	.about-us-items-list {
		gap: 20px;
	}

	.about-us-item {
		width: 100%;
	}

		.about-us-item h2 {
			font-size: 28px;
		}

		.about-us-item h3 {
			font-size: 18px;
		}

	.about-category-items-list {
		margin-top: 30px;
	}

	.about-category-item {
		width: 100%;
		min-height: 350px;
		padding: 20px;
	}

	.about-category-item-content span {
		font-size: 16px;
	}

	.about-category-item-content h2 {
		font-size: 30px;
		margin-bottom: 10px;
	}

	.about-category-item-btn {
		margin-top: 20px;
	}

	.collection-item-body {
		bottom: 20px;
		left: 20px;
		right: 20px;
		transform: translateY(65px);
	}

	.collection-item-content h2 {
		font-size: 20px;
	}

	.product-item {
		padding: 20px;
	}

	.product-item-header {
		margin-bottom: 15px;
	}

	.product-item-image {
		max-width: 200px;
	}

	.product-item-action ul {
		gap: 15px;
		padding: 8px 10px;
	}

		.product-item-action ul li a img {
			max-width: 20px;
		}

	.product-item-content .product-item-rating {
		margin-top: 10px;
	}

	.product-item-price {
		margin-top: 10px;
	}

		.product-item-price h2 {
			font-size: 22px;
		}

	.product-slider .product-pagination {
		margin-top: 20px;
	}

	.intro-video-bg-video {
		height: 300px;
	}

	.video-play-button a span {
		width: 54px;
		height: 54px;
	}

		.video-play-button a span i {
			font-size: 18px;
		}

	.brand-item-slider .brand-pagination {
		margin-top: 20px;
	}

	.new-arrival-item-content {
		bottom: 20px;
		right: 20px;
		left: 20px;
	}

		.new-arrival-item-content h2 {
			font-size: 18px;
		}

	.new-arrival-slider .new-arrival-pagination {
		margin-top: 20px;
	}

	.latest-update-video {
		height: 230px;
	}

	.latest-update-video-title {
		padding: 15px;
	}

		.latest-update-video-title h3 {
			font-size: 16px;
		}

	.why-choose-img-item {
		max-width: 190px;
		bottom: 15px;
		right: 15px;
	}

	.why-choose-accordion .accordion-header .accordion-button {
		font-size: 18px;
		padding: 1px 30px 1px 0;
	}

	.why-choose-accordion .accordion-item .accordion-button::after,
	.why-choose-accordion .accordion-item .accordion-button.collapsed::after {
		font-size: 22px;
	}

	.why-choose-accordion .accordion-item .accordion-body {
		padding: 10px 0 0;
	}

	.faq-info-list {
		padding-top: 20px;
	}

		.faq-info-list ul {
			gap: 10px 30px;
		}

	.faq-accordion {
		padding: 20px;
	}

		.faq-accordion .accordion-header .accordion-button {
			font-size: 16px;
			padding: 1px 30px 1px 0;
		}

		.faq-accordion .accordion-item .accordion-button::after,
		.faq-accordion .accordion-item .accordion-button.collapsed::after {
			font-size: 22px;
		}

		.faq-accordion .accordion-item .accordion-body {
			padding: 10px 0 0;
		}

	.testimonial-item {
		min-height: 380px;
		padding: 20px;
	}

	.testimonial-item-content p {
		font-size: 18px;
	}

	.testimonial-footer-box {
		margin-top: 30px;
	}

	.google-rating-box {
		padding: 0;
		border: none;
	}

	.google-rating-logo img {
		max-width: 40px;
	}

	.google-rating-info-content {
		width: calc(100% - 55px);
	}

		.google-rating-info-content h2 {
			font-size: 18px;
		}

			.google-rating-info-content h2 span {
				min-width: 24px;
			}

	.post-item .post-item-content h2 {
		font-size: 18px;
	}

	.post-item .post-item-btn {
		margin-top: 15px;
		padding-top: 15px;
	}

	.footer-benefit-item-list {
		gap: 20px 30px;
	}

	.footer-benefit-item {
		width: calc(50% - 15px);
	}

		.footer-benefit-item::before {
			right: -15px;
		}

		.footer-benefit-item:nth-child(2n + 2)::before {
			display: none;
		}

	.footer-benefit-item-content h2 {
		font-size: 16px;
	}

	.footer-header {
		margin-bottom: 30px;
	}

	.footer-download-app-box h2 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.app-download-buttons {
		gap: 20px;
	}

	.app-download-btn a img {
		max-width: 140px;
	}

	.footer-links {
		max-width: 100%;
	}

		.footer-links::before {
			display: none;
		}

		.footer-links h2 {
			font-size: 18px;
			margin-bottom: 15px;
		}

	.footer-copyright {
		margin-top: 30px;
		padding: 15px 0;
		justify-content: center;
		text-align: center;
	}


	.page-header-box h1 {
		font-size: 28px;
	}

	.page-header-box ol li.breadcrumb-item {
		font-size: 16px;
	}

	.page-about-content-box .intro-video-bg-video {
		height: 300px;
	}

	.what-we-item {
		width: 100%;
	}

		.what-we-item .icon-box {
			margin-bottom: 20px;
		}

	.what-we-do .section-footer-text {
		margin-top: 30px;
	}

	.our-approach-accordion .accordion-header .accordion-button {
		font-size: 18px;
		padding: 1px 30px 1px 0;
	}

	.our-approach-accordion .accordion-item .accordion-button::after,
	.our-approach-accordion .accordion-item .accordion-button.collapsed::after {
		font-size: 22px;
	}

	.our-approach-accordion .accordion-item .accordion-body {
		padding: 10px 0 0;
	}

	.approach-video-content-box {
		min-height: 400px;
	}

	.approach-cta-box {
		max-width: 100%;
		left: 20px;
		right: 20px;
		bottom: 20px;
	}

	.approach-cta-title h2 {
		font-size: 24px;
	}

	.approach-cta-btn {
		margin-top: 20px;
	}

	.our-dealer-list ul li {
		width: 50%;
		padding: 15px;
	}

		.our-dealer-list ul li img {
			max-width: 100px;
		}

	.our-dealer .section-footer-text {
		margin-top: 30px;
	}

	.team-item-body {
		left: 20px;
		right: 20px;
		bottom: 20px;
	}

	.our-excellence-item-body {
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

		.our-excellence-item-body h3 {
			font-size: 20px;
			padding-bottom: 15px;
			margin-bottom: 15px;
		}

	.post-single-meta ol li,
	.post-single-meta ol li i {
		font-size: 16px;
	}

	.post-image img {
		aspect-ratio: 1 / 0.7;
	}

	.post-entry h2 {
		font-size: 26px;
	}

	.post-entry blockquote {
		background-size: 30px;
		padding: 60px 20px 20px 20px;
	}

		.post-entry blockquote p {
			font-size: 16px;
		}

	.post-entry ol li,
	.post-entry ul li {
		font-size: 16px;
	}

	.tag-links {
		font-size: 18px;
	}

	.post-tags .tag-links a {
		font-size: 16px;
	}

	.page-single-sidebar .product-category-filter-header {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.product-category-item-title {
		font-size: 18px;
	}

	.product-category-result-info {
		width: 100%;
		justify-content: space-between;
	}

	.product-category-sorting-list .form-select {
		min-width: auto;
	}

	.product-item-list {
		gap: 6px;
	}

		.product-item-list .product-item {
			width: calc(50% - 3px);
		}

		.product-item-list .product-item-header {
			margin-bottom: 15px;
		}

		.product-item-list .product-item-action ul {
			gap: 8px;
			padding: 6px 10px;
		}

			.product-item-list .product-item-action ul li a img {
				max-width: 18px;
			}

		.product-item-list .product-item .product-item-body {
			padding: 0 0px 4px;
		}

		.product-item-list .product-item .product-item-category {
			font-size: 14px;
			margin-bottom: 4px;
		}

		.product-item-list .product-item .product-item-content .product-item-title {
			font-size: 16px;
		}

		.product-item-list .product-item .product-item-content .product-item-rating {
			gap: 0;
			margin-top: 4px;
		}

			.product-item-list .product-item .product-item-content .product-item-rating i {
				font-size: 12px;
			}

			.product-item-list .product-item .product-item-content .product-item-rating b {
				font-size: 14px;
			}

		.product-item-list .product-item .product-item-price h2 {
			font-size: 18px;
		}

	.product-single-breadcrumb-list ol {
		gap: 10px 40px;
	}

		.product-single-breadcrumb-list ol li {
			font-size: 14px;
		}

	.product-single-breadcrumb-list .breadcrumb li::before {
		right: -24px;
		width: 10px;
		height: 10px;
	}

	.product-single-image-slider {
		width: 110px;
	}

	.product-single-image-item {
		width: calc(100% - 120px);
	}

	.product-single-image-slider .swiper-slide figure img {
		aspect-ratio: 1 / 1;
	}

	.product-single-price h2,
	.product-single-title h2 {
		font-size: 22px;
	}

		.product-single-price h2 sub {
			font-size: 20px;
		}

	.product-single-content-body {
		gap: 15px;
	}

	.qty-box {
		gap: 5px;
		padding: 9px 10px;
	}

	.qty-input {
		font-size: 16px;
	}

	.qty-btn span {
		font-size: 22px;
	}

	.product-single-action ul {
		gap: 15px;
	}

		.product-single-action ul li a {
			padding: 10px;
		}

	.product-shipping-box p span {
		display: block;
		border-right: none;
		padding-right: 0;
		margin: 0 0 5px 0;
	}

	.product-step-nav .nav-tabs {
		gap: 15px;
	}

	.product-step-nav ul li {
		width: calc(33.33% - 10px);
	}

		.product-step-nav ul li .nav-link {
			font-size: 16px;
		}

			.product-step-nav ul li .nav-link::before {
				display: none;
			}

	.product-tab-item-box h2 {
		font-size: 22px;
	}

	.customer-review-item .icon-box {
		margin-right: 10px;
	}

		.customer-review-item .icon-box img {
			max-width: 50px;
		}

	.customer-review-item-body {
		width: calc(100% - 60px);
	}

	.product-additional-content-title {
		margin-bottom: 20px;
	}

	.product-additional-info-table table {
		width: 100%;
	}

		.product-additional-info-table table tr {
			width: 50%;
		}

			.product-additional-info-table table tr td {
				min-width: 100%;
				padding: 15px 10px;
			}

	.related-product-items-list .product-item {
		width: 100%;
		padding: 20px;
	}

	.cart-item-header {
		display: none;
	}

	.cart-item-image-content,
	.cart-item-quantity-total {
		width: 100%;
	}

	.cart-item-quantity-total {
		justify-content: left;
	}

	.cart-item-image {
		width: 85px;
		height: 70px;
	}

	.cart-item-info-content {
		width: calc(100% - 105px);
	}

	.cart-item-title {
		width: 100%;
	}

		.cart-item-title p {
			max-width: 100%;
		}

	.cart-item-subtotal {
		width: auto;
	}

	.interested-products-box-title h2 {
		font-size: 24px;
	}

	.order-summary-content-box {
		padding: 5px;
	}

	.order-summary-box-title {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.order-summary-total h3,
	.order-summary-shipment-info h3 {
		font-size: 18px;
	}

	.order-summary-promocode-form .form-group .form-control {
		background-size: 14px auto;
		background-position: left 6px center;
		padding: 8px 10px 8px 28px;
	}

	.order-detail-sidebar {
		padding: 20px;
	}

	.order-detail-sidebar-item ul li {
		margin-bottom: 10px;
	}

	.order-detail-box ul li {
		padding-bottom: 10px;
	}

	.order-detail-title-box h2 {
		font-size: 28px;
	}

	.order-detail-content-list ul li {
		margin-bottom: 10px;
		padding-bottom: 10px;
	}

		.order-detail-content-list ul li span {
			width: 58%;
		}

	.checkout-accordion-header .checkout-accordion-button {
		font-size: 14px;
	}

	.checkout-bill-address-title h2 {
		font-size: 18px;
	}

	.checkout-form-checkbox.different-address-note {
		margin-top: 10px;
	}

	.product-total-order-box {
		padding: 5px;
	}

	.coupeon-accordion-header .coupeon-accordion-button {
		font-size: 14px;
	}

	.coupeon-apply-form .form-group {
		min-width: 160px;
	}

	.coupeon-apply-form .form-control {
		padding: 5px 15px;
		background-image: none;
	}

	.coupeon-apply-btn .btn-default {
		font-size: 14px;
		padding: 7px 12px;
	}

	.product-total-order-title h3 {
		font-size: 18px;
	}

	.order-payment-info-item p {
		font-size: 14px;
	}

	.my-account-sidebar-item {
		padding: 20px;
	}

		.my-account-sidebar-item ul li img {
			max-width: 22px;
		}

	.account-dashboard-detail-box p {
		font-size: 18px;
	}

	.account-order-table-box table {
		min-width: 630px;
		margin-bottom: 15px;
	}

		.account-order-table-box table tr th {
			min-width: auto;
			padding: 0 10px 15px 0;
		}

		.account-order-table-box table tr td {
			padding: 15px 10px 15px 0;
		}

			.account-order-table-box table tr td .btn-default {
				padding: 7px 24px;
			}

	.view-order-product-info-box .cart-item-header {
		display: flex;
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.view-order-product-info-box .product-header-tag {
		width: calc(56% - 6.67px);
	}

	.view-order-product-info-box .quantity-header-tag,
	.view-order-product-info-box .subtotal-header-tag {
		width: calc(22% - 6.67px);
	}

	.view-order-product-info-box .cart-item-image-content {
		width: calc(62% - 5px);
	}

	.view-order-product-info-box .cart-item-quantity-total {
		width: calc(38% - 5px);
	}

	.view-order-product-info-box .cart-item-subtotal {
		width: auto;
	}

	.view-order-address-item ul li {
		margin-bottom: 10px;
	}

	ul.view-order-product-info-list li span {
		width: 40%;
	}

	.view-order-address-item {
		width: 100%;
	}

		.view-order-address-item ul {
			margin-top: 15px;
			padding-top: 15px;
		}

	.account-address-item-title p a img {
		max-width: 20px;
	}

	.account-address-item-info-list ul li {
		margin-bottom: 10px;
	}

	.wishlist-item-header {
		display: none;
	}

	.wishlist-item {
		align-items: start;
	}

	.wishlist-item-image-content {
		width: calc(75% - 5px);
	}

	.wishlist-item-image {
		width: 65px;
	}

	.wishlist-item-info-content {
		width: calc(100% - 80px);
	}

	.wishlist-item-title p {
		max-width: 100%;
	}

	.wishlist-item-price {
		width: 100%;
	}

	.wishlist-item-status-action {
		flex-direction: column;
		width: calc(25% - 5px);
		align-items: end;
		text-align: end;
	}

	.wishlist-item-action {
		width: 100%;
	}

		.wishlist-item-action a i {
			font-size: 20px;
		}

	.login-content-title-box h2 {
		font-size: 24px;
	}

	.privacy-policy-entry-item {
		margin-bottom: 30px;
	}

		.privacy-policy-entry-item .section-title {
			margin-bottom: 20px;
		}

			.privacy-policy-entry-item .section-title h2 {
				font-size: 24px;
			}

	.testimonial-item-box {
		padding: 20px;
		gap: 20px;
	}

	.testimonial-item-content-box p {
		font-size: 16px;
	}

	.testimonial-item-author-box {
		padding-top: 20px;
	}

	.testimonial-author-content-box h2 {
		font-size: 18px;
	}

	.contact-info-item {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.contact-us-form {
		padding: 20px;
	}

	.contact-form-title {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 350px;
	}
}

/****************************************/
/*** 	  45. Home - Version 2 css    ***/
/****************************************/

.hero-royal {
	position: relative;
	align-content: center;
	min-height: 800px;
	padding: 120px 0;
}

	.hero-royal::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 25%, rgba(0, 0, 0, 0.90) 65%);
		width: 100%;
		height: 100%;
		z-index: 1;
	}

	.hero-royal.hero-video-royal .hero-bg-video-royal {
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
	}

		.hero-royal.hero-video-royal .hero-bg-video-royal video {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

	.hero-royal .container {
		position: relative;
		z-index: 2;
	}

.about-us-royal {
	padding: 120px 0;
}

.about-content-list-royal {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 30px;
}

.about-content-item-royal {
	width: calc(50% - 10px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

	.about-content-item-royal .icon-box img {
		width: 100%;
		max-width: 24px;
	}

.about-content-title-royal {
	width: calc(100% - 39px);
}

	.about-content-title-royal h3 {
		font-size: 18px;
	}

.about-category-item-royal {
	position: relative;
	min-height: 250px;
	align-content: end;
	border-radius: 2px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

.about-category-image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

	.about-category-image figure {
		position: relative;
		display: block;
		height: 100%;
		overflow: hidden;
	}

		.about-category-image figure img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			transition: all 0.6s ease-in-out;
		}

.about-category-item-royal:hover .about-category-image figure img {
	transform: scale(1.06);
}

.about-category-item-content-royal {
	position: relative;
	z-index: 1;
}

	.about-category-item-content-royal ul {
		display: flex;
		flex-wrap: wrap;
		gap: 15px 30px;
		list-style: disc;
		padding: 0 0 0 20px;
		margin: 0 0 15px;
	}

		.about-category-item-content-royal ul li {
			font-size: 16px;
			line-height: 1.5em;
			color: var(--white-color);
		}

			.about-category-item-content-royal ul li::marker {
				color: var(--accent-color);
			}

	.about-category-item-content-royal h2 {
		font-size: 30px;
		color: var(--white-color);
	}

		.about-category-item-content-royal h2 a {
			color: inherit;
		}

	.about-category-item-content-royal p {
		color: var(--white-color);
		margin: 5px 0 0;
	}

.our-offer-royal {
	position: relative;
	background-image: url('../images/our-offer-bg-image-royal.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 120px 0 60px;
}

	.our-offer-royal::before {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		height: 100%;
		width: 100%;
		background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 45%, #000 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.00) 42.86%, #000 100%);
		z-index: 1;
	}

	.our-offer-royal .container {
		position: relative;
		z-index: 2;
	}

.special-offer-item-list-royal {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 5.208vw;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 40px;
	margin-top: 230px;
}

.special-offer-item-royal {
	position: relative;
	width: calc(25% - 3.906vw);
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	gap: 15px;
}

	.special-offer-item-royal:before {
		content: '';
		position: absolute;
		top: 50%;
		bottom: 0;
		right: -2.604vw;
		background: var(--dark-divider-color);
		width: 1px;
		height: 70%;
		transform: translateY(-50%);
	}

	.special-offer-item-royal:nth-child(4n + 4)::before,
	.special-offer-item-royal:last-child::before {
		display: none;
	}

	.special-offer-item-royal .icon-box img {
		width: 100%;
		max-width: 30px;
		margin-top: 5px;
	}

.special-offer-item-content-royal {
	width: calc(100% - 45px);
}

	.special-offer-item-content-royal h3 {
		font-size: 18px;
		color: var(--white-color);
	}

	.special-offer-item-content-royal p {
		font-size: 18px;
		color: var(--white-color);
		margin: 5px 0 0;
	}

.our-category-royal {
	padding: 120px 0;
}

.category-item-royal {
	position: relative;
	min-height: 520px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	align-content: end;
	border-radius: 2px;
	padding: 40px;
	overflow: hidden;
}

.category-item-image-royal {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

	.category-item-image-royal figure {
		position: relative;
		display: block;
		height: 100%;
		overflow: hidden;
	}

		.category-item-image-royal figure:before {
			content: '';
			position: absolute;
			top: 0;
			bottom: 0;
			left: 0;
			right: 0;
			background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 95.39%);
			width: 100%;
			height: 100%;
			z-index: 1;
		}

		.category-item-image-royal figure img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

.category-item-body-royal {
	position: relative;
	z-index: 1;
}

.category-item-content-royal h2 {
	font-size: 30px;
	color: var(--white-color);
}

	.category-item-content-royal h2 a {
		color: inherit;
	}

.category-item-content-royal p {
	margin: 10px 0 0;
	color: var(--white-color);
}

.category-item-btn-royal {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

.category-item-list-royal .category-item-royal {
	min-height: 250px;
}

.category-item-royal.box-3 .category-item-body-royal {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
}

.category-item-royal.box-3 .category-item-btn-royal {
	border-top: none;
	padding-top: 0;
	margin-top: 0;
}

.why-choose-us-royal {
	padding: 120px 0;
}

.why-choose-content-royal {
	height: 100%;
	align-content: center;
}

.why-choose-item-body {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.why-choose-item {
	width: calc(50% - 15px);
	padding: 30px;
	background: var(--bg-color);
	border-radius: 2px;
}

	.why-choose-item .icon-box {
		margin-bottom: 30px;
	}

		.why-choose-item .icon-box img {
			width: 100%;
			max-width: 40px;
		}

.why-choose-item-content h2 {
	font-size: 30px;
}

.why-choose-item-content p {
	margin: 10px 0 0;
}

.why-choose-item-info {
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

	.why-choose-item-info p {
		margin: 0;
	}

.why-choose-us-royal .section-footer-text.section-satisfy-img {
	justify-content: start;
}

.why-choose-us-royal .section-footer-text {
	margin-top: 60px;
}

.why-choose-video-content-box-royal {
	position: relative;
	height: 100%;
	min-height: 680px;
	border-radius: 2px;
	overflow: hidden;
	margin: 0 0 0 15px;
}

.why-choose-video-box-royal {
	position: relative;
	height: 100%;
}

	.why-choose-video-box-royal::before {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 36.83%, #000 84.21%);
		height: 100%;
		width: 100%;
		z-index: 1;
	}

	.why-choose-video-box-royal video {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

.why-choose-cta-box-royal {
	position: absolute;
	left: 40px;
	right: 40px;
	bottom: 40px;
	z-index: 2;
}

.Why-choose-cta-header-royal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

	.Why-choose-cta-header-royal .satisfy-client-images .satisfy-client-image {
		border-color: var(--divider-color);
	}

.why-choose-cta-rating-royal i {
	color: var(--white-color);
	font-size: 16px;
}

.why-choose-cta-content-royal p {
	margin: 5px 0 0;
	line-height: normal;
	color: var(--white-color);
}

.why-choose-cta-body-royal {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

	.why-choose-cta-body-royal p {
		color: var(--white-color);
		margin: 0;
	}

.our-faqs-royal {
	padding: 120px 0;
}

.faqs-content-royal {
	position: sticky;
	top: 30px;
}

.faq-accordion-royal .accordion-item {
	position: relative;
	background: var(--secondary-color);
	border-radius: 2px;
	margin-bottom: 20px;
	overflow: hidden;
}

	.faq-accordion-royal .accordion-item:last-child {
		margin-bottom: 0;
	}

.faq-accordion-royal .accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3em;
	background: transparent;
	color: var(--primary-color);
	padding: 22px 60px 22px 20px;
}

.faq-accordion-royal .accordion-item .accordion-button::after,
.faq-accordion-royal .accordion-item .accordion-button.collapsed::after {
	content: '\f055';
	font-family: 'Font Awesome 7 Free';
	position: absolute;
	top: 50%;
	right: 20px;
	line-height: 1em;
	font-size: 30px;
	font-weight: 600;
	transform: translateY(-50%);
	color: var(--black-color);
	transition: all 0.4s ease-in-out;
}

.faq-accordion-royal .accordion-button:not(.collapsed)::after {
	content: '\f056';
}

.faq-accordion-royal .accordion-item .accordion-body {
	border-top: 1px solid var(--divider-color);
	padding: 22px 20px;
}

	.faq-accordion-royal .accordion-item .accordion-body p:last-child {
		margin: 0;
	}

.our-testimonials-royal {
	padding: 120px 0;
}

.testimonial-slider-royal .swiper-wrapper {
	cursor: none;
}

.testimonial-item-royal {
	position: relative;
	min-height: 450px;
	background-color: var(--bg-color);
	border-radius: 2px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	padding: 40px;
	overflow: hidden;
}

.testimonial-slider-royal .swiper-wrapper .swiper-slide .testimonial-item-royal {
	transform: scale(0.95);
	transition: all 0.6s ease-in-out;
}

.testimonial-slider-royal .swiper-wrapper .swiper-slide.swiper-slide-next .testimonial-item-royal {
	transform: scale(1);
}

.testimonial-item-rating-royal i {
	font-size: 18px;
	color: var(--accent-color);
}

.testimonial-item-content-royal p {
	font-size: 22px;
	font-weight: 600;
	color: var(--primary-color);
}

	.testimonial-item-content-royal p:last-child {
		margin-bottom: 0;
	}

.testimonial-author-box-royal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border-top: 1px solid var(--divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

.testimonial-author-image-royal figure {
	display: block;
	border-radius: 50%;
}

.testimonial-author-image-royal img {
	width: 100%;
	max-width: 50px;
	object-fit: cover;
	border-radius: 50%;
}

.testimonial-author-content-royal {
	width: calc(100% - 65px);
}

	.testimonial-author-content-royal h2 {
		font-size: 22px;
	}

	.testimonial-author-content-royal p {
		line-height: normal;
		margin: 5px 0 0;
	}

.our-testimonials-royal .section-footer-text {
	margin-top: 60px;
}

.main-footer-royal {
	padding: 120px 0 0;
}

.footer-logo-royal img {
	width: 100%;
	max-width: 141px;
}

.about-footer-content-royal {
	margin-top: 20px;
}

	.about-footer-content-royal p {
		color: var(--white-color);
		margin: 0;
	}

.footer-social-links-royal {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

	.footer-social-links-royal h2 {
		font-size: 22px;
		color: var(--white-color);
		margin-bottom: 20px;
	}

	.footer-social-links-royal ul {
		list-style: none;
		display: flex;
		align-items: center;
		gap: 15px;
		padding: 0;
		margin: 0;
	}

		.footer-social-links-royal ul li a {
			width: 40px;
			height: 40px;
			border: 1px solid var(--dark-divider-color);
			background-color: var(--dark-divider-color);
			backdrop-filter: blur(30px);
			-webkit-backdrop-filter: blur(30px);
			border-radius: 2px;
			color: var(--white-color);
			display: flex;
			align-items: center;
			justify-content: center;
			transition: all 0.4s ease-in-out;
		}

			.footer-social-links-royal ul li a:hover {
				background-color: var(--white-color);
				color: var(--primary-color);
			}

			.footer-social-links-royal ul li a i {
				font-size: 20px;
				color: inherit;
				transition: all 0.4s ease-in-out;
			}

.footer-links-box-royal {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 70px;
	margin-left: 40px;
}

.footer-links-royal {
	position: relative;
	max-width: 30%;
	flex-grow: 1;
}

	.footer-links-royal::before {
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		right: -35px;
		width: 1px;
		height: 100%;
		background: var(--dark-divider-color);
	}

	.footer-links-royal:nth-child(3n + 3)::before,
	.footer-links-royal:last-child::before {
		display: none;
	}

	.footer-links-royal h2 {
		font-size: 22px;
		color: var(--white-color);
		margin-bottom: 30px;
	}

	.footer-links-royal ul {
		list-style: disc;
		padding: 0 0 0 20px;
		margin: 0;
	}

		.footer-links-royal ul li {
			line-height: 1.4em;
			color: var(--white-color);
			margin-bottom: 15px;
		}

			.footer-links-royal ul li:last-child {
				margin-bottom: 0;
			}

			.footer-links-royal ul li::marker {
				color: var(--accent-color);
			}

			.footer-links-royal ul li a {
				color: inherit;
				transition: all 0.3s ease-in-out;
			}

				.footer-links-royal ul li a:hover {
					color: var(--accent-color);
				}

.footer-cta-box-royal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 60px;
	background-color: var(--dark-divider-color);
	padding: 30px;
	border-radius: 2px;
}

.footer-cta-box-title-royal {
	max-width: 330px;
}

	.footer-cta-box-title-royal h2 {
		color: var(--secondary-color);
		font-size: 30px;
	}

.footer-cta-box-content-royal {
	max-width: 340px;
}

	.footer-cta-box-content-royal p {
		color: var(--white-color);
		margin: 0;
	}

.footer-newsletter-form-royal {
	width: 100%;
	max-width: 440px;
}

	.footer-newsletter-form-royal .form-group {
		display: flex;
		flex-wrap: wrap;
		background-color: var(--dark-divider-color);
		border-radius: 2px;
		overflow: hidden;
	}

		.footer-newsletter-form-royal .form-group .form-control {
			width: 50%;
			flex-grow: 1;
			font-size: 16px;
			font-weight: 400;
			line-height: 1.4em;
			color: var(--white-color);
			background: transparent;
			border: none;
			border-radius: 0;
			outline: none;
			box-shadow: none;
			padding: 11px 20px;
		}

			.footer-newsletter-form-royal .form-group .form-control::placeholder {
				color: var(--white-color);
				opacity: 20%;
			}

		.footer-newsletter-form-royal .form-group .btn-default {
			padding: 16px 20px;
			border-radius: 0;
			border: none;
			background: var(--bg-color);
			color: var(--primary-color);
		}

			.footer-newsletter-form-royal .form-group .btn-default:hover {
				color: var(--white-color);
			}

			.footer-newsletter-form-royal .form-group .btn-default::before {
				display: none;
			}

			.footer-newsletter-form-royal .form-group .btn-default::after {
				background: var(--accent-color);
			}

.footer-copyright-royal {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 15px;
	padding: 60px 0;
}

.footer-copyright-text-royal p {
	color: var(--white-color);
	margin: 0;
}

.footer-privacy-policy-royal ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 40px;
	margin: 0;
	padding: 0;
	list-style: none;
}

	.footer-privacy-policy-royal ul li {
		position: relative;
		line-height: 1.5em;
		color: var(--white-color);
	}

		.footer-privacy-policy-royal ul li::before {
			content: '';
			position: absolute;
			top: 50%;
			right: -24px;
			transform: translateY(-50%);
			background: var(--accent-color);
			border-radius: 100px;
			width: 6px;
			height: 6px;
		}

		.footer-privacy-policy-royal ul li:last-child::before {
			display: none;
		}

		.footer-privacy-policy-royal ul li a {
			color: inherit;
			transition: all 0.4s ease-in-out;
		}

			.footer-privacy-policy-royal ul li a:hover {
				color: var(--accent-color);
			}

@media only screen and (max-width: 1024px) {

	.hero-royal {
		min-height: 700px;
	}

	.about-content-list-royal {
		margin-top: 20px;
	}

	.our-offer-royal::before {
		background: var(--primary-color);
		opacity: 50%;
	}

	.special-offer-item-list-royal {
		gap: 30px 40px;
	}

	.special-offer-item-royal {
		width: calc(25% - 30px);
	}

		.special-offer-item-royal::before {
			right: -20px;
		}

	.category-item-list-royal {
		display: flex;
		flex-wrap: wrap;
		gap: 0 30px;
	}

		.category-item-list-royal .category-item-royal {
			width: calc(50% - 15px);
		}

	.why-choose-content-royal {
		height: auto;
		margin-bottom: 30px;
	}

	.why-choose-us-royal .section-footer-text {
		margin-top: 30px;
	}

	.why-choose-video-content-box-royal {
		margin: 0;
		height: 500px;
		min-height: auto;
	}

	.faqs-content-royal {
		position: initial;
		margin-bottom: 30px;
	}

	.testimonial-slider-royal .swiper-wrapper .swiper-slide .testimonial-item-royal {
		transform: scale(1);
	}

	.about-footer-royal {
		margin-bottom: 30px;
	}

	.footer-links-box-royal {
		margin-left: 0;
	}

	.footer-links-royal h2 {
		margin-bottom: 20px;
	}

	.footer-links-royal ul li {
		margin-bottom: 10px;
	}

	.footer-cta-box-royal {
		gap: 10px;
		margin-top: 30px;
	}

	.footer-cta-box-content-royal,
	.footer-cta-box-title-royal,
	.footer-newsletter-form-royal {
		max-width: 100%;
	}

	.footer-cta-box-content-royal {
		margin-bottom: 10px;
	}

	.footer-copyright-royal {
		padding: 30px 0;
	}
}

@media only screen and (max-width: 991px) {

	.hero-royal {
		padding: 60px 0;
	}

	.about-us-royal {
		padding: 60px 0;
	}

	.about-category-item-royal {
		padding: 30px;
	}

	.about-category-item-content-royal ul {
		margin: 0 0 10px;
	}

	.about-category-item-content-royal h2 {
		font-size: 26px;
	}

	.our-offer-royal {
		padding: 60px 0;
	}

	.special-offer-item-list-royal {
		margin-top: 160px;
		padding-top: 30px;
	}

	.special-offer-item-royal .icon-box img {
		margin-top: 0;
	}

	.special-offer-item-content-royal {
		width: 100%;
	}

		.special-offer-item-content-royal p {
			font-size: 16px;
		}

	.our-category-royal {
		padding: 60px 0;
	}

	.category-item-royal {
		min-height: 400px;
		padding: 30px;
	}

	.category-item-content-royal h2 {
		font-size: 26px;
	}

	.why-choose-us-royal {
		padding: 60px 0;
	}

	.why-choose-item .icon-box {
		margin-bottom: 20px;
	}

	.why-choose-item-content h2 {
		font-size: 26px;
	}

	.why-choose-item-info {
		margin-top: 20px;
		padding-top: 20px;
	}

	.why-choose-cta-box-royal {
		bottom: 30px;
		left: 30px;
		right: 30px;
	}

	.why-choose-cta-body-royal {
		margin-top: 20px;
		padding-top: 20px;
	}

	.our-faqs-royal {
		padding: 60px 0;
	}

	.faq-accordion-royal .accordion-header .accordion-button {
		font-size: 18px;
		padding: 15px 45px 15px 15px;
	}

	.faq-accordion-royal .accordion-item .accordion-button::after,
	.faq-accordion-royal .accordion-item .accordion-button.collapsed::after {
		right: 15px;
		font-size: 24px;
	}

	.faq-accordion-royal .accordion-item .accordion-body {
		padding: 15px;
	}

	.our-testimonials-royal {
		padding: 60px 0;
	}

	.testimonial-item-royal {
		padding: 30px;
		min-height: auto;
	}

	.testimonial-item-content-royal p {
		font-size: 20px;
	}

	.testimonial-author-content-royal h2 {
		font-size: 20px;
	}

	.our-testimonials-royal .section-footer-text {
		margin-top: 40px;
	}

	.main-footer-royal {
		padding: 60px 0 0;
	}

	.footer-social-links-royal {
		margin-top: 20px;
		padding-top: 20px;
	}

		.footer-social-links-royal h2 {
			font-size: 20px;
		}

	.footer-links-royal h2 {
		font-size: 20px;
	}

	.footer-cta-box-royal {
		padding: 20px;
	}

		.footer-cta-box-royal h2 {
			font-size: 26px;
		}

	.footer-newsletter-form-royal .form-group .btn-default {
		padding: 15px;
	}
}

@media only screen and (max-width: 767px) {

	.hero-royal {
		min-height: 570px;
	}

	.about-content-list-royal {
		gap: 15px;
	}

	.about-content-item-royal {
		width: 100%;
		gap: 10px;
	}

	.about-content-title-royal {
		width: calc(100% - 34px);
	}

	.about-category-item-royal {
		min-height: 200px;
		padding: 20px;
	}

	.about-category-item-content-royal h2 {
		font-size: 22px;
	}

	.special-offer-item-list-royal {
		margin-top: 30px;
	}

	.special-offer-item-royal {
		width: calc(50% - 20px);
	}


		.special-offer-item-royal:nth-child(2n + 2)::before,
		.special-offer-item-royal:last-child::before {
			display: none;
		}

	.category-item-royal {
		padding: 20px;
		min-height: 300px;
	}

	.category-item-list-royal .category-item-royal {
		width: 100%;
	}

	.category-item-content-royal h2 {
		font-size: 22px;
	}

	.category-item-btn-royal {
		padding-top: 20px;
		margin-top: 20px;
	}

	.category-item-list-royal .category-item-royal {
		min-height: auto;
	}

	.why-choose-item {
		width: 100%;
		padding: 20px;
	}

	.why-choose-item-content h2 {
		font-size: 22px;
	}

	.why-choose-us-royal .section-footer-text.section-satisfy-img {
		justify-content: center;
	}

	.why-choose-video-content-box-royal {
		height: 400px;
	}

	.why-choose-cta-box-royal {
		left: 20px;
		right: 20px;
		bottom: 20px;
	}

	.why-choose-cta-rating-royal i {
		font-size: 14px;
	}

	.why-choose-cta-body-royal {
		padding-top: 15px;
		margin-top: 15px;
	}

	.faq-accordion-royal .accordion-header .accordion-button {
		font-size: 16px;
		padding: 12px 40px 12px 15px;
	}

	.faq-accordion-royal .accordion-item .accordion-button::after,
	.faq-accordion-royal .accordion-item .accordion-button.collapsed::after {
		font-size: 20px;
	}

	.faq-accordion-royal .accordion-item .accordion-body {
		padding: 12px 15px;
	}

	.testimonial-item-royal {
		padding: 20px;
		gap: 20px;
	}

	.testimonial-item-content-royal p {
		font-size: 18px;
	}

	.testimonial-author-box-royal {
		margin-top: 20px;
		padding-top: 20px;
	}

	.testimonial-author-content-royal h2 {
		font-size: 18px;
	}

	.footer-social-links-royal h2 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-links-royal {
		max-width: 100%;
	}

		.footer-links-royal::before {
			display: none;
		}

		.footer-links-royal h2 {
			font-size: 18px;
			margin-bottom: 15px;
		}

	.footer-cta-box-royal {
		padding: 15px;
	}

		.footer-cta-box-royal h2 {
			font-size: 22px;
		}

	.footer-newsletter-form-royal .form-group .form-control {
		font-size: 14px;
		padding: 11px 15px;
	}

	.footer-newsletter-form-royal .form-group .btn-default {
		font-size: 14px;
		padding: 15px 10px;
	}

	.footer-copyright-royal {
		gap: 10px;
		justify-content: center;
		text-align: center;
		padding: 15px 0;
	}
}

/****************************************/
/*** 	  46. Home - Version 3 css    ***/
/****************************************/

.hero-gold {
	position: relative;
	min-height: 830px;
	align-content: center;
	padding: 120px 0;
}

.hero-slider-gold {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

	.hero-slider-gold .swiper,
	.hero-slider-image {
		height: 100%;
	}

		.hero-slider-image figure {
			position: relative;
			display: block;
			height: 100%;
		}

			.hero-slider-image figure::before {
				content: '';
				position: absolute;
				top: 0;
				left: 0;
				right: 0;
				bottom: 0;
				background: var(--primary-color);
				opacity: 70%;
				width: 100%;
				height: 100%;
			}

		.hero-slider-image img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

	.hero-slider-gold .hero-pagination-gold {
		position: absolute;
		bottom: 60px;
		display: flex;
		justify-content: center;
		gap: 8px;
		z-index: 1;
	}

		.hero-slider-gold .hero-pagination-gold .swiper-pagination-bullet {
			position: relative;
			height: 12px;
			width: 12px;
			background: transparent;
			border: 1px solid var(--white-color);
			opacity: 1;
			margin: 0;
			border-radius: 10px;
			transition: all 0.4s ease-in-out;
		}

		.hero-slider-gold .hero-pagination-gold .swiper-pagination-bullet-active {
			background: var(--white-color);
		}

.hero-content-box-gold {
	position: relative;
	max-width: 1020px;
	margin: 0 auto;
	text-align: center;
	z-index: 1;
}

	.hero-content-box-gold .section-title p {
		max-width: 790px;
		margin-left: auto;
		margin-right: auto;
	}

.hero-content-body-gold {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px 40px;
}

.google-review-box-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	text-align: left;
	gap: 15px;
}

	.google-review-box-gold .icon-box img {
		width: 100%;
		max-width: 50px;
	}

.google-review-box-content-gold {
	width: calc(100% - 65px);
}

.google-rating-star-gold i {
	font-size: 16px;
	color: var(--primary-color);
}

.dark-section .google-review-box-content-gold p,
.dark-section .google-rating-star-gold i {
	color: var(--white-color);
}

.google-review-box-content-gold p {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
	margin: 10px 0 0;
}

.about-us-gold {
	padding: 120px 0;
}

	.about-us-gold .section-content-btn {
		margin-left: 50px;
	}

.about-review-box-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 40px;
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.about-us-item-list-gold {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 90px;
}

.about-us-item-gold {
	position: relative;
	width: calc(33.33% - 60px);
	text-align: center;
}

	.about-us-item-gold::before {
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		right: -45px;
		background: var(--divider-color);
		width: 1px;
		height: 100%;
	}

	.about-us-item-gold:nth-child(3n + 3):before,
	.about-us-item-gold:last-child:before {
		display: none;
	}

	.about-us-item-gold .icon-box {
		margin-bottom: 50px;
	}

		.about-us-item-gold .icon-box img {
			width: 100%;
			max-width: 60px;
		}

.about-us-item-content-gold h3 {
	font-size: 22px;
}

.about-us-item-content-gold p {
	margin: 15px 0 0;
}

.about-us-gold .section-footer-text {
	margin-top: 60px;
}

.our-collection-gold {
	padding: 120px 0;
}

.collection-item-gold {
	position: relative;
	border-radius: 2px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.collection-item-image-gold figure {
	position: relative;
	display: block;
}

.collection-item-image-gold img {
	width: 100%;
	aspect-ratio: 1 / 1.116;
	object-fit: cover;
}

.collection-item-body-gold {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	padding: 30px;
	align-content: center;
	text-align: center;
	opacity: 0;
	transform: scale(0.4);
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.collection-item-gold.active .collection-item-body-gold,
.collection-item-gold:hover .collection-item-body-gold {
	transform: scale(1);
	opacity: 1;
}

.collection-item-body-gold::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-color);
	opacity: 50%;
	width: 100%;
	height: 100%;
}

.collection-item-content-gold,
.collection-item-btn-gold {
	position: relative;
	z-index: 1;
}

	.collection-item-content-gold h2 {
		font-size: 30px;
		color: var(--white-color);
	}

		.collection-item-content-gold h2 a {
			color: inherit;
		}

.collection-item-btn-gold {
	margin-top: 15px;
}

.why-choose-us-gold {
	padding: 120px 0;
}

.why-choose-item-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

	.why-choose-item-gold:last-child {
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
	}

.why-choose-item-image-gold figure {
	display: block;
	border-radius: 50%;
}

.why-choose-item-image-gold img {
	width: 100%;
	max-width: 80px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}

.why-choose-item-content-gold {
	width: calc(100% - 110px);
}

	.why-choose-item-content-gold h3 {
		font-size: 22px;
		color: var(--white-color);
	}

	.why-choose-item-content-gold p {
		color: var(--white-color);
		margin: 10px 0 0;
	}

.why-choose-image-box-gold {
	position: relative;
	background: var(--dark-divider-color);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border-radius: 2px;
	text-align: center;
	padding: 0 30px;
	margin-left: 15px;
	overflow: hidden;
}

	.why-choose-image-box-gold::before {
		content: '';
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		background: url('../images/why-choose-bg-circle-image.png') no-repeat;
		background-position: bottom center;
		background-size: 650px auto;
		width: 100%;
		height: 100%;
	}

.why-choose-shadow-image-gold,
.why-choose-image-title-gold,
.why-choose-us-image-gold {
	position: relative;
	z-index: 1;
}

.why-choose-shadow-image-gold,
.why-choose-image-title-gold {
	margin-bottom: 60px;
}

	.why-choose-shadow-image-gold figure {
		display: block;
		border-radius: 0 0 2px 2px;
		max-width: 430px;
		margin: 0 auto;
	}

	.why-choose-shadow-image-gold img {
		width: 100%;
		aspect-ratio: 1 / 0.27;
		object-fit: cover;
		transform: rotate(180deg);
		object-position: top center;
		opacity: 20%;
	}

	.why-choose-image-title-gold span {
		display: block;
		line-height: normal;
		color: var(--white-color);
		margin-bottom: 5px;
	}

	.why-choose-image-title-gold h2 {
		font-size: 54px;
		text-transform: uppercase;
		letter-spacing: -0.01em;
		color: var(--white-color);
	}

	.why-choose-image-title-gold a {
		display: inline-block;
		color: var(--white-color);
		text-decoration: underline;
		transition: all 0.4s ease-in-out;
		margin-top: 5px;
	}

		.why-choose-image-title-gold a:hover {
			color: var(--accent-color);
		}

.why-choose-us-image-gold figure {
	display: block;
	border-radius: 2px 2px 0 0;
	max-width: 430px;
	margin: 0 auto;
}

.why-choose-us-image-gold img {
	width: 100%;
	aspect-ratio: 1 / 0.918;
	object-fit: cover;
}

.our-categories-gold {
	padding: 120px 0;
}

.category-item-gold {
	background: var(--secondary-color);
	border-radius: 2px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 50px;
	overflow: hidden;
}

.category-item-content-box-gold {
	width: calc(62% - 15px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
}

.category-item-content-gold span {
	display: block;
	font-size: 20px;
	font-weight: 500;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.category-item-content-gold h2 {
	font-size: 54px;
	line-height: 1.1em;
}

	.category-item-content-gold h2 a {
		color: inherit;
	}

.category-item-content-gold p {
	margin: 10px 0 0;
}

.category-item-image-gold {
	width: calc(38% - 15px);
	align-content: center;
}

	.category-item-image-gold figure {
		display: block;
		margin: -50px -165px -50px 0;
	}

	.category-item-image-gold img {
		width: 100%;
		aspect-ratio: 1 / 1.352;
		object-fit: cover;
	}

.our-testimonials-gold {
	position: relative;
	background-image: url('../images/testimonial-bg-image-gold.jpg');
	background-position: center center;
	background-size: cover;
	padding: 120px 0;
}

	.our-testimonials-gold::before {
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background: linear-gradient(90deg, rgba(0, 0, 0, 0.00) 50%, rgba(0, 0, 0, 0.50) 100%);
		width: 100%;
		height: 100%;
	}

	.our-testimonials-gold .container {
		position: relative;
		z-index: 1;
	}

.testimonials-content-box-gold {
	max-width: 610px;
	margin-left: auto;
}

	.testimonials-content-box-gold .section-title {
		margin-bottom: 80px;
	}

.testimonial-slider-gold .swiper .swiper-wrapper {
	cursor: none;
}

.testimonial-item-rating-gold i {
	color: var(--accent-color);
}

.testimonial-item-content-gold {
	margin-top: 25px;
}

	.testimonial-item-content-gold p {
		color: var(--white-color);
		margin-bottom: 15px;
	}

		.testimonial-item-content-gold p:last-child {
			margin: 0;
		}

.testimonial-item-body-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 50px;
	padding-top: 30px;
}

.testimonial-item-author-gold {
	width: calc(100% - 95px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.testimonial-author-image-gold figure {
	display: block;
	border-radius: 50%;
}

.testimonial-author-image-gold img {
	width: 100%;
	max-width: 50px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}

.testimonial-author-content-gold {
	width: calc(100% - 65px);
}

	.testimonial-author-content-gold h2 {
		font-size: 22px;
		color: var(--white-color);
	}

	.testimonial-author-content-gold p {
		line-height: normal;
		color: var(--white-color);
		margin: 5px 0 0;
	}

.testimonial-item-quote-gold img {
	width: 100%;
	max-width: 80px;
	aspect-ratio: 1 / 1;
}

.new-arrivals-gold {
	padding: 120px 0;
}

.new-arrival-image-box-gold {
	position: relative;
	height: 100%;
	border-radius: 2px;
	overflow: hidden;
}

.new-arrival-image-gold {
	height: 100%;
}

	.new-arrival-image-gold figure {
		position: relative;
		display: block;
		height: 100%;
	}

		.new-arrival-image-gold figure::before {
			content: '';
			position: absolute;
			top: 0;
			bottom: 0;
			left: 0;
			right: 0;
			background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 50%, rgba(0, 0, 0, 0.90) 100%);
			width: 100%;
			height: 100%;
			z-index: 1;
		}

.new-arrival-content-title-gold,
.new-arrival-content-btn-gold {
	position: relative;
	z-index: 2;
}

	.new-arrival-content-title-gold h3 {
		font-size: 22px;
		color: var(--white-color);
	}

.new-arrival-content-btn-gold {
	margin-top: 30px;
}

.new-arrival-image-gold img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.05;
	object-fit: cover;
}

.new-arrival-image-content-gold {
	position: absolute;
	bottom: 60px;
	right: 60px;
	left: 60px;
	z-index: 1;
}

.product-item-list-gold {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

	.product-item-list-gold .product-item {
		width: calc(50% - 15px);
		background: transparent;
		border: 1px solid var(--divider-color);
		padding: 10px;
	}

		.product-item-list-gold .product-item .product-item-image {
			max-width: 190px;
		}

		.product-item-list-gold .product-item .product-item-body {
			padding: 0 15px 20px;
		}

.our-faqs-gold {
	padding: 120px 0;
}

.faqs-content-gold {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.faq-client-box-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
}

	.faq-client-box-gold .satisfy-client-image img {
		max-width: 50px;
	}

.faq-client-box-content-gold p {
	color: var(--primary-color);
	margin: 0;
}

.faq-accordion-gold {
	background: var(--secondary-color);
	border-radius: 2px;
	padding: 50px;
	margin-left: 15px;
}

	.faq-accordion-gold .accordion-item {
		border-bottom: 1px solid var(--divider-color);
		margin-bottom: 30px;
		padding-bottom: 30px;
		transition: all 0.3s ease-in-out;
	}

		.faq-accordion-gold .accordion-item:last-child {
			border-bottom: none;
			padding-bottom: 0;
			margin-bottom: 0;
		}

	.faq-accordion-gold .accordion-header .accordion-button {
		font-size: 20px;
		font-weight: 500;
		line-height: normal;
		color: var(--primary-color);
		padding: 0 30px 0 0;
	}

	.faq-accordion-gold .accordion-item .accordion-button::after,
	.faq-accordion-gold .accordion-item .accordion-button.collapsed::after {
		content: '\f107';
		font-family: 'FontAwesome';
		position: absolute;
		right: 0px;
		top: 50%;
		font-size: 20px;
		color: var(--primary-color);
		transform: translateY(-50%);
		transition: all 0.3s ease-in-out;
	}

	.faq-accordion-gold .accordion-button:not(.collapsed)::after {
		transform: translateY(-50%) rotate(180deg);
	}

	.faq-accordion-gold .accordion-item .accordion-body {
		padding: 15px 30px 0 0;
	}

		.faq-accordion-gold .accordion-item .accordion-body p {
			margin: 0;
		}

.main-footer-gold {
	padding: 120px 0 0;
}

.about-footer-gold {
	max-width: 350px;
}

.footer-logo-gold img {
	width: 100%;
	max-width: 141px;
}

.about-footer-content-gold {
	margin-top: 30px;
}

	.about-footer-content-gold p {
		color: var(--white-color);
		margin: 0;
	}

.footer-social-links-gold {
	margin-top: 30px;
}

	.footer-social-links-gold ul {
		display: flex;
		flex-wrap: wrap;
		gap: 10px 15px;
		list-style: none;
		padding: 0;
		margin: 0;
	}

		.footer-social-links-gold ul li a {
			display: flex;
			justify-content: center;
			align-items: center;
			width: 40px;
			height: 40px;
			border: 1px solid var(--dark-divider-color);
			color: var(--white-color);
			border-radius: 50%;
			transition: all 0.3s ease-in-out;
		}

			.footer-social-links-gold ul li a:hover {
				background: var(--accent-color);
			}

		.footer-social-links-gold ul li i {
			font-size: 18px;
			color: inherit;
		}

.footer-links-box-gold {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
}

.footer-links-gold {
	max-width: 30%;
}

	.footer-links-gold h2 {
		font-size: 22px;
		color: var(--white-color);
		margin-bottom: 30px;
	}

	.footer-links-gold p {
		color: var(--white-color);
		margin-bottom: 30px;
	}

	.footer-links-gold ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}

		.footer-links-gold ul li {
			position: relative;
			text-transform: capitalize;
			color: var(--white-color);
			line-height: 1.4em;
			margin-bottom: 15px;
		}

			.footer-links-gold ul li:last-child {
				margin-bottom: 0;
			}

			.footer-links-gold ul li a {
				color: inherit;
				transition: all 0.3s ease-in-out;
			}

				.footer-links-gold ul li a:hover {
					color: var(--accent-color);
				}

.footer-newsletter-form-gold {
	max-width: 38%;
}

	.footer-newsletter-form-gold .form-group {
		display: flex;
		background-color: var(--dark-divider-color);
		backdrop-filter: blur(30px);
		-webkit-backdrop-filter: blur(30px);
		border-radius: 10px;
		padding: 5px;
	}

	.footer-newsletter-form-gold .form-control {
		width: calc(100% - 40px);
		font-size: 16px;
		font-weight: 400;
		line-height: 1.5em;
		color: var(--white-color);
		background: transparent;
		border: none;
		border-radius: 0;
		outline: none;
		box-shadow: none;
		padding: 6px 15px;
	}

		.footer-newsletter-form-gold .form-control::placeholder {
			color: var(--white-color);
			opacity: 40%;
		}

	.footer-newsletter-form-gold .newsletter-btn {
		width: 40px;
		height: 40px;
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: var(--accent-color);
		border: none;
		border-radius: 5px;
		transition: all 0.3s ease-in-out;
	}

		.footer-newsletter-form-gold .newsletter-btn:hover {
			background-color: var(--white-color);
		}

		.footer-newsletter-form-gold .newsletter-btn i {
			font-size: 20px;
			color: var(--white-color);
			padding-right: 2px;
			transition: all 0.3s ease-in-out;
		}

		.footer-newsletter-form-gold .newsletter-btn:hover i {
			color: var(--primary-color);
		}

	.footer-newsletter-form-gold p {
		margin: 20px 0 0;
	}

.footer-copyright-text-gold {
	text-align: center;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 60px;
	padding: 60px 0;
}

	.footer-copyright-text-gold p {
		color: var(--white-color);
		margin: 0;
	}

@media only screen and (max-width: 1024px) {

	.hero-gold {
		min-height: 680px;
	}

	.about-us-gold .section-content-btn {
		margin: 0;
	}

	.about-us-item-list-gold {
		gap: 40px 30px;
	}

	.about-us-item-gold {
		width: calc(33.33% - 20px);
	}

		.about-us-item-gold::before {
			right: -15px;
		}

		.about-us-item-gold .icon-box {
			margin-bottom: 30px;
		}

	.collection-item-image-gold img {
		aspect-ratio: 1 / 1.02;
	}

	.why-choose-content-box-gold {
		margin-bottom: 30px;
	}

	.why-choose-item-gold {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.why-choose-image-box-gold {
		margin: 0;
	}

	.category-item-gold {
		padding: 30px;
	}

	.category-item-image-gold figure {
		margin: -30px -115px -30px 0;
	}

	.testimonials-content-box-gold {
		max-width: 490px;
	}

	.new-arrival-image-box-gold {
		margin-bottom: 30px;
	}

	.new-arrival-image-box-gold,
	.new-arrival-image-gold,
	.new-arrival-image-gold figure,
	.new-arrival-image-gold img {
		height: auto;
	}

		.new-arrival-image-gold img {
			aspect-ratio: 1 / 0.67;
		}

	.faqs-content-gold {
		height: auto;
		padding: 0;
		margin-bottom: 30px;
	}

	.faq-accordion-gold {
		margin: 0;
	}

	.about-footer-gold {
		max-width: 100%;
		margin-bottom: 30px;
	}

	.about-footer-content-gold,
	.footer-social-links-gold {
		margin-top: 20px;
	}

	.footer-links-gold h2 {
		margin-bottom: 20px;
	}

	.footer-links-gold ul li {
		margin-bottom: 10px;
	}

	.footer-newsletter-form-gold p {
		margin-top: 15px;
	}

	.footer-copyright-text-gold {
		margin-top: 30px;
		padding: 30px 0;
	}
}

@media only screen and (max-width: 991px) {

	.hero-gold {
		padding: 60px 0 80px;
	}

	.hero-slider-gold .hero-pagination-gold {
		bottom: 60px;
	}

	.google-review-box-gold {
		gap: 10px;
	}

		.google-review-box-gold .icon-box img {
			max-width: 46px;
		}

	.google-review-box-content-gold {
		width: calc(100% - 56px);
	}

	.google-rating-star-gold i {
		font-size: 14px;
	}

	.google-review-box-content-gold p {
		font-size: 20px;
		margin-top: 5px;
	}

	.about-us-gold {
		padding: 60px 0;
	}

	.about-review-box-gold {
		margin-top: 30px;
		padding-top: 30px;
	}

	.about-us-item-gold .icon-box img {
		max-width: 50px;
	}

	.about-us-item-content-gold h3 {
		font-size: 20px;
	}

	.about-us-item-content-gold p {
		margin: 10px 0 0;
	}

	.about-us-gold .section-footer-text {
		margin-top: 40px;
	}

	.our-collection-gold {
		padding: 60px 0;
	}

	.collection-item-content-gold h2 {
		font-size: 26px;
	}

	.why-choose-us-gold {
		padding: 60px 0;
	}

	.why-choose-item-content-gold h3 {
		font-size: 20px;
	}

	.why-choose-shadow-image-gold,
	.why-choose-image-title-gold {
		margin-bottom: 30px;
	}

		.why-choose-image-title-gold h2 {
			font-size: 40px;
		}

	.our-categories-gold {
		padding: 60px 0;
	}

	.category-item-content-gold span {
		font-size: 18px;
	}

	.category-item-content-gold h2 {
		font-size: 40px;
	}

	.category-item-image-gold figure {
		max-width: 250px;
		margin-left: auto;
	}

	.our-testimonials-gold {
		padding: 60px 0;
	}

		.our-testimonials-gold::before {
			background: var(--primary-color);
			opacity: 50%;
		}

	.testimonials-content-box-gold {
		max-width: 100%;
	}

		.testimonials-content-box-gold .section-title {
			margin-bottom: 50px;
		}

	.testimonial-item-content-gold {
		margin-top: 15px;
	}

	.testimonial-item-body-gold {
		margin-top: 30px;
	}

	.testimonial-item-author-gold {
		width: calc(100% - 75px);
	}

	.testimonial-author-content-gold h2 {
		font-size: 20px;
	}

	.testimonial-item-quote-gold img {
		max-width: 60px;
	}

	.new-arrivals-gold {
		padding: 60px 0;
	}

	.new-arrival-image-content-gold {
		bottom: 30px;
		right: 30px;
		left: 30px;
	}

	.new-arrival-content-title-gold h3 {
		font-size: 20px;
	}

	.new-arrival-content-btn-gold {
		margin-top: 20px;
	}

	.our-faqs-gold {
		padding: 60px 0;
	}

	.faq-client-box-gold {
		gap: 10px;
		padding-top: 30px;
	}

		.faq-client-box-gold .satisfy-client-image img {
			max-width: 40px;
		}

	.faq-accordion-gold {
		padding: 30px;
	}

		.faq-accordion-gold .accordion-item {
			margin-bottom: 20px;
			padding-bottom: 20px;
		}

		.faq-accordion-gold .accordion-header .accordion-button {
			font-size: 18px;
			padding: 0 25px 0 0;
		}

		.faq-accordion-gold .accordion-item .accordion-button::after,
		.faq-accordion-gold .accordion-item .accordion-button.collapsed::after {
			font-size: 18px;
		}

		.faq-accordion-gold .accordion-item .accordion-body {
			padding: 10px 25px 0 0;
		}

	.main-footer-gold {
		padding: 60px 0 0 0;
	}

	.footer-links-gold h2 {
		font-size: 20px;
	}
}

@media only screen and (max-width: 767px) {

	.hero-content-body-gold {
		gap: 20px 25px;
	}

	.google-review-box-content-gold p {
		font-size: 18px;
	}

	.about-review-box-gold {
		margin-top: 20px;
		padding-top: 20px;
	}

	.about-review-box-gold {
		gap: 20px;
	}

	.about-us-item-gold {
		width: 100%;
	}

		.about-us-item-gold::before {
			width: 100%;
			height: 1px;
			top: auto;
			bottom: -20px;
			left: 0;
			right: 0;
		}

		.about-us-item-gold .icon-box {
			margin-bottom: 15px;
		}

	.about-us-gold .section-footer-text {
		margin-top: 30px;
	}

	.collection-item-content-gold h2 {
		font-size: 22px;
	}

	.why-choose-item-gold {
		gap: 15px;
	}

	.why-choose-item-content-gold {
		width: 100%;
	}

	.why-choose-image-box-gold {
		padding: 0 20px;
	}

	.why-choose-shadow-image-gold figure,
	.why-choose-us-image-gold figure {
		max-width: 270px;
	}

	.why-choose-image-title-gold h2 {
		font-size: 26px;
	}

	.category-item-gold {
		padding: 20px;
		gap: 15px;
	}

	.category-item-content-box-gold {
		width: calc(62% - 7.5px);
	}

	.category-item-content-gold h2 {
		font-size: 26px;
	}

	.category-item-image-gold {
		width: calc(38% - 7.5px);
	}

		.category-item-image-gold figure {
			margin: -20px -80px -20px 0;
		}

	.testimonial-item-body-gold {
		margin-top: 20px;
		padding-top: 20px;
	}

	.new-arrival-image-gold img {
		aspect-ratio: 1 / 1.05;
	}

	.new-arrival-image-content-gold {
		bottom: 20px;
		right: 20px;
		left: 20px;
	}

	.new-arrival-content-title-gold h3 {
		font-size: 18px;
	}

	.new-arrival-content-btn-gold {
		margin-top: 15px;
	}

	.product-item-list-gold .product-item {
		width: 100%;
	}

		.product-item-list-gold .product-item .product-item-body {
			padding: 0 10px 10px;
		}

	.faq-accordion-gold {
		padding: 20px;
	}

		.faq-accordion-gold .accordion-header .accordion-button {
			font-size: 16px;
			padding: 0 20px 0 0;
		}

		.faq-accordion-gold .accordion-item .accordion-button::after,
		.faq-accordion-gold .accordion-item .accordion-button.collapsed::after {
			font-size: 18px;
		}

		.faq-accordion-gold .accordion-item .accordion-body {
			padding: 10px 0 0;
		}

	.about-footer-gold {
		max-width: 100%;
		margin-bottom: 30px;
	}

	.about-footer-content-gold,
	.footer-social-links-gold {
		margin-top: 20px;
	}

	.footer-links-gold {
		max-width: 100%;
	}

		.footer-links-gold h2 {
			font-size: 18px;
			margin-bottom: 15px;
		}

	.footer-newsletter-form-gold p {
		margin-top: 10px;
	}

	.footer-copyright-text-gold {
		padding: 15px 0;
	}
}

/* Go Top — Watch Style */
.go-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: opacity 0.5s cubic-bezier(.4,0,.2,1), visibility 0.5s, transform 0.5s cubic-bezier(.4,0,.2,1);
	filter: drop-shadow(0 4px 16px rgba(0,0,0,0.45));
	outline: none;
	background: transparent;
	-webkit-tap-highlight-color: transparent;
	user-select: none;
}

	.go-top:focus,
	.go-top:focus-visible {
		outline: none;
		box-shadow: none;
	}

/* GO TOP label */
.go-top-label {
	position: absolute;
	top: -28px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 9px;
	font-weight: 700;
	color: #7a5c1e;
	font-family: var(--heading-font);
	letter-spacing: 1.5px;
	white-space: nowrap;
	pointer-events: none;
}

.go-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Bezel — SVG progress ring */
.watch-bezel {
	position: absolute;
	top: 0;
	left: 0;
	width: 70px;
	height: 70px;
	transform: rotate(-90deg);
}

	.watch-bezel circle {
		fill: none;
	}

.bezel-track {
	stroke: rgba(90, 65, 15, 0.25);
	stroke-width: 4;
}

.bezel-fill {
	stroke: url(#bezelGradient);
	stroke-width: 4;
	stroke-dasharray: 295.31;
	stroke-dashoffset: 295.31;
	stroke-linecap: round;
	transition: stroke-dashoffset 0.12s ease-out;
}

/* Watch dial — face */
.watch-dial {
	position: absolute;
	top: 6px;
	left: 6px;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 35%, #2a2a2a, #111 60%, #0a0a0a);
	border: 1.5px solid rgba(90, 65, 15, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Hour markers */
.watch-markers {
	position: absolute;
	width: 100%;
	height: 100%;
}

	.watch-markers .marker {
		position: absolute;
		top: 3px;
		left: 50%;
		width: 1.5px;
		height: 5px;
		background: rgba(90, 65, 15, 0.7);
		transform-origin: 0.75px 26px;
		transform: rotate(calc(var(--i) * 30deg));
		border-radius: 1px;
	}

		/* Every 3rd marker (12, 3, 6, 9) is bigger */
		.watch-markers .marker:nth-child(3n+1) {
			width: 2px;
			height: 7px;
			background: #7a5c1e;
			transform-origin: 1px 26px;
		}

/* Watch hands */
.watch-hands {
	position: absolute;
	width: 100%;
	height: 100%;
}

.hand {
	position: absolute;
	bottom: 50%;
	left: 50%;
	transform-origin: bottom center;
	border-radius: 2px;
}

.hour-hand {
	width: 2px;
	height: 14px;
	background: #7a5c1e;
	margin-left: -1px;
	transform: rotate(0deg);
	will-change: transform;
}

.minute-hand {
	width: 1.5px;
	height: 19px;
	background: #a07828;
	margin-left: -0.75px;
	transform: rotate(0deg);
	will-change: transform;
}

/* Center dot */
.watch-center-dot {
	position: absolute;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #7a5c1e;
	z-index: 3;
	box-shadow: 0 0 3px rgba(90, 65, 15, 0.7);
}

/* Percentage text — below center */
.go-top-text {
	position: absolute;
	bottom: 13px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 8px;
	font-weight: 700;
	color: #7a5c1e;
	font-family: var(--heading-font);
	line-height: 1;
	letter-spacing: 0.3px;
	white-space: nowrap;
	transition: opacity 0.3s ease, transform 0.3s ease;
	z-index: 2;
}

/* Arrow icon — replaces dial on hover */
.go-top-icon {
	position: absolute;
	font-size: 16px;
	color: #7a5c1e;
	opacity: 0;
	background: transparent;
	transform: translateY(5px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	z-index: 4;
}

.go-top:hover .go-top-text {
	opacity: 0;
	transform: translateX(-50%) translateY(-5px);
}

.go-top:hover .go-top-icon {
	opacity: 1;
	transform: translateY(0);
}

.go-top:hover .watch-dial {
	background: radial-gradient(circle at 35% 35%, #333, #1a1a1a 60%, #111);
	border-color: rgba(90, 65, 15, 0.6);
	box-shadow: 0 0 15px rgba(90, 65, 15, 0.3);
}

.go-top:hover .hand,
.go-top:hover .watch-center-dot,
.go-top:hover .go-top-icon {
	color: #b89440;
}

/* ----------------------------------------------------------------------------------------
43. Knowledge Base Page css (Minimal - using Bootstrap utilities)
---------------------------------------------------------------------------------------- */

/* All knowledge/news/services page styles now use Bootstrap utility classes inline.
   Custom CSS kept to absolute minimum - only 3 rules needed: */



#customer-service-widget {
	--cs-primary-color: #2196f3;
	--cs-success-color: #07c160;
	--cs-warning-color: #ff5722;
	--cs-whatsapp-color: #25d366;
	--cs-vk-color: #4c75a3;
	--cs-text-color: #333;
	--cs-light-text: #555;
	--cs-bg-color: #fff;
	--cs-shadow: 0 2px 5px rgba(0,0,0,0.2);
	--cs-shadow-hover: 0 5px 15px rgba(0,0,0,0.3);
	font-family: Arial,sans-serif
}

	#customer-service-widget .cs-container {
		position: fixed;
		z-index: 9999;
		display: flex;
		flex-direction: column;
		gap: 10px;
		transition: all .3s ease
	}

@media(min-width:768px) {
	#customer-service-widget .cs-container {
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
		flex-direction: column
	}
}

@media(max-width:767px) {
	#customer-service-widget .cs-container {
		bottom: 0;
		left: 0;
		right: 0;
		flex-direction: row;
		justify-content: space-around;
		padding: 10px;
		background-color: #f8f8f8;
		box-shadow: 0 -2px 10px rgba(0,0,0,0.1)
	}
}

#customer-service-widget .cs-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: white;
	font-size: 24px;
	box-shadow: var(--cs-shadow);
	transition: transform .3s ease,box-shadow .3s ease;
	position: relative
}

	#customer-service-widget .cs-btn:hover {
		transform: translateY(-3px);
		box-shadow: var(--cs-shadow-hover)
	}

@media(max-width:767px) {
	#customer-service-widget .cs-btn {
		width: 40px;
		height: 40px;
		font-size: 20px
	}
}

#customer-service-widget .cs-btn-whatsapp {
	background-color: var(--cs-whatsapp-color)
}

#customer-service-widget .cs-btn-vk {
	background-color: var(--cs-vk-color)
}

#customer-service-widget .cs-btn-wechat {
	background-color: var(--cs-success-color)
}

#customer-service-widget .cs-btn-phone {
	background-color: var(--cs-warning-color)
}

#customer-service-widget .cs-btn-message {
	background-color: var(--cs-primary-color)
}

#customer-service-widget .cs-tooltip {
	position: absolute;
	background-color: #333;
	color: white;
	padding: 5px 10px;
	border-radius: 4px;
	font-size: 14px;
	white-space: nowrap;
	opacity: 0;
	transition: opacity .3s;
	pointer-events: none
}

@media(min-width:768px) {
	#customer-service-widget .cs-tooltip {
		right: 60px
	}

		#customer-service-widget .cs-tooltip::after {
			content: "";
			position: absolute;
			top: 50%;
			right: -5px;
			transform: translateY(-50%);
			border-width: 5px 0 5px 5px;
			border-style: solid;
			border-color: transparent transparent transparent #333
		}
}

@media(max-width:767px) {
	#customer-service-widget .cs-tooltip {
		top: -40px;
		left: 50%;
		transform: translateX(-50%)
	}

		#customer-service-widget .cs-tooltip::after {
			content: "";
			position: absolute;
			bottom: -5px;
			left: 50%;
			transform: translateX(-50%);
			border-width: 5px 5px 0 5px;
			border-style: solid;
			border-color: #333 transparent transparent transparent
		}
}

#customer-service-widget .cs-wechat-qrcode {
	position: absolute;
	width: 200px;
	height: 220px;
	background-color: var(--cs-bg-color);
	border-radius: 10px;
	box-shadow: var(--cs-shadow-hover);
	padding: 10px;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
	z-index: 10000
}

@media(min-width:768px) {
	#customer-service-widget .cs-wechat-qrcode {
		right: 60px;
		top: 50%;
		transform: translateY(-50%)
	}
}

@media(max-width:767px) {
	#customer-service-widget .cs-wechat-qrcode {
		bottom: 60px;
		left: 50%;
		transform: translateX(-50%)
	}
}

#customer-service-widget .cs-btn-wechat:hover .cs-wechat-qrcode {
	opacity: 1;
	visibility: visible
}

#customer-service-widget .cs-wechat-qrcode img {
	width: 180px;
	height: 180px;
	margin-bottom: 5px
}

#customer-service-widget .cs-wechat-qrcode p {
	font-size: 12px;
	color: var(--cs-text-color);
	margin: 0
}

#customer-service-widget .cs-phone-container {
	position: absolute;
	width: 200px;
	background-color: var(--cs-bg-color);
	border-radius: 10px;
	box-shadow: var(--cs-shadow-hover);
	padding: 15px;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
	z-index: 10000
}

@media(min-width:768px) {
	#customer-service-widget .cs-phone-container {
		right: 60px;
		top: 50%;
		transform: translateY(-50%)
	}
}

@media(max-width:767px) {
	#customer-service-widget .cs-phone-container {
		display: none
	}
}

#customer-service-widget .cs-btn-phone:hover .cs-phone-container, #customer-service-widget .cs-btn-phone.active .cs-phone-container {
	opacity: 1;
	visibility: visible
}

#customer-service-widget .cs-phone-number {
	font-size: 18px;
	font-weight: bold;
	color: var(--cs-text-color);
	margin-bottom: 10px
}

#customer-service-widget .cs-copy-btn {
	background-color: var(--cs-warning-color);
	color: white;
	border: 0;
	padding: 5px 10px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 12px;
	transition: background-color .3s
}

	#customer-service-widget .cs-copy-btn:hover {
		background-color: #e64a19
	}

#customer-service-widget .cs-copy-success {
	font-size: 12px;
	color: var(--cs-success-color);
	margin-top: 5px;
	display: none
}

#customer-service-widget .cs-message-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease
}

	#customer-service-widget .cs-message-modal.active {
		opacity: 1;
		visibility: visible
	}

#customer-service-widget .cs-modal-content {
	background-color: var(--cs-bg-color);
	padding: 25px;
	border-radius: 10px;
	width: 90%;
	max-width: 500px;
	box-shadow: var(--cs-shadow-hover)
}

#customer-service-widget .cs-modal-title {
	margin-top: 0;
	color: var(--cs-text-color);
	text-align: center
}

#customer-service-widget .cs-form-group {
	margin: 15px 0
}

#customer-service-widget .cs-form-input, #customer-service-widget .cs-form-textarea {
	width: 96%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-family: inherit;
	font-size: 14px
}

#customer-service-widget .cs-form-textarea {
	height: 120px;
	resize: vertical
}

#customer-service-widget .cs-form-actions {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 20px
}

#customer-service-widget .cs-submit-btn, #customer-service-widget .cs-cancel-btn {
	padding: 8px 15px;
	border: 0;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	transition: background-color .3s
}

#customer-service-widget .cs-submit-btn {
	background-color: var(--cs-primary-color);
	color: white
}

	#customer-service-widget .cs-submit-btn:hover {
		background-color: #0b7dda
	}

#customer-service-widget .cs-cancel-btn {
	background-color: #f5f5f5;
	color: var(--cs-text-color)
}

	#customer-service-widget .cs-cancel-btn:hover {
		background-color: #e0e0e0
	}

#customer-service-widget a {
	color: #FFF
}

#customer-service-widget .cs-whatsapp-qrcode {
	position: absolute;
	width: 200px;
	height: 220px;
	background-color: var(--cs-bg-color);
	border-radius: 10px;
	box-shadow: var(--cs-shadow-hover);
	padding: 10px;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
	z-index: 10000;
}

@media(min-width:768px) {
	#customer-service-widget .cs-whatsapp-qrcode {
		right: 60px;
		top: 50%;
		transform: translateY(-50%);
	}
}

@media(max-width:767px) {
	#customer-service-widget .cs-whatsapp-qrcode {
		display: none;
	}
}

#customer-service-widget .cs-btn-whatsapp:hover .cs-whatsapp-qrcode {
	opacity: 1;
	visibility: visible;
}

#customer-service-widget .cs-whatsapp-qrcode img {
	width: 180px;
	height: 180px;
	margin-bottom: 5px;
}

#customer-service-widget .cs-whatsapp-qrcode p {
	font-size: 12px;
	color: var(--cs-text-color);
	margin: 0;
}

.hero-slide {
	aspect-ratio: 5 / 2;
}

	.hero-slide img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}

.hero-swiper .swiper-slide-active .hero-slide img {
	animation: heroZoom 5s ease-out forwards;
}

@keyframes heroZoom {
	from {
		transform: scale(1);
	}

	to {
		transform: scale(1.05);
	}
}

.hero-pagination .swiper-pagination-bullet {
	width: 32px;
	height: 3px;
	border-radius: 2px;
	background: rgba(255,255,255,0.4);
	opacity: 1;
	transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
	width: 48px;
	background: #b89440;
}
/* Product Image Section */
.product-gallery {
	display: flex;
	flex-direction: column;
	gap: 15px;
	position: relative;
	z-index: 1;
}

.product-main-image {
	position: relative;
	background: var(--secondary-color);
	padding: 20px;
	text-align: center;
	overflow: visible;
	height: 490px;
	display: flex;
	align-items: center;
	justify-content: center;
}

	.product-main-image img {
		max-width: 100%;
		max-height: 450px;
		object-fit: contain;
		cursor: crosshair;
	}

	.product-main-image video {
		max-width: 100%;
		max-height: 450px;
		object-fit: contain;
	}
/* Thumbnails */
.product-thumbs {
	position: relative;
	padding: 0 45px;
	overflow: hidden;
}

.product-thumbs-inner {
	overflow: hidden;
}

.product-thumbs-list {
	display: flex;
	gap: 10px;
	transition: transform 0.3s ease;
	width: fit-content;
}

.product-thumb-item {
	flex: 0 0 80px;
	cursor: pointer;
	padding: 5px;
	border: 2px solid transparent;
	background: var(--secondary-color);
	transition: border-color 0.3s ease;
}

	.product-thumb-item:hover,
	.product-thumb-item.active {
		border-color: var(--primary-color);
	}

	.product-thumb-item img {
		width: 100%;
		aspect-ratio: 1 / 1.2;
		object-fit: cover;
	}

.thumb-nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 35px;
	height: 35px;
	background: var(--primary-color);
	color: var(--white-color);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: all 0.3s ease;
}

	.thumb-nav-btn:hover {
		background: var(--accent-color);
	}

	.thumb-nav-btn i {
		font-size: 14px;
		color: var(--white-color);
	}

	.thumb-nav-btn.prev {
		left: 0;
	}

	.thumb-nav-btn.next {
		right: 0;
	}
/* Video thumbnail */
.video-thumb {
	position: relative;
}

.video-play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 30px;
	height: 30px;
	background: rgba(0,0,0,0.7);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

	.video-play-icon i {
		font-size: 10px;
		color: #fff;
		margin-left: 2px;
	}
/* Product Info */
.product-info {
	padding-left: 30px;
}

.product-title h2 {
	font-size: 28px;
	margin-bottom: 5px;
}

.product-title .brand {
	font-size: 16px;
	color: var(--text-color);
	margin-bottom: 15px;
}

.product-rating {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 15px;
}

	.product-rating i {
		color: var(--accent-color);
		font-size: 14px;
	}

	.product-rating span {
		font-size: 14px;
		color: var(--text-color);
	}

.product-price {
	margin-bottom: 20px;
}

	.product-price h2 {
		font-size: 32px;
		color: var(--primary-color);
	}

		.product-price h2 sub {
			font-size: 20px;
			font-weight: 400;
			color: var(--text-color);
			text-decoration: line-through;
			margin-left: 10px;
		}

	.product-price .discount {
		display: inline-block;
		background: #e74c3c;
		color: #fff;
		padding: 3px 10px;
		font-size: 14px;
		border-radius: 3px;
		margin-left: 10px;
	}

	.product-price .tax {
		display: block;
		font-size: 14px;
		color: var(--text-color);
		margin-top: 5px;
	}

.product-desc {
	border-top: 1px solid var(--divider-color);
	padding-top: 20px;
	margin-bottom: 20px;
}

	.product-desc p {
		font-size: 15px;
		color: var(--text-color);
		margin-bottom: 15px;
	}

.product-options {
	margin-bottom: 20px;
}

	.product-options label {
		display: block;
		font-weight: 600;
		margin-bottom: 10px;
		color: var(--primary-color);
	}

.sku-options {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.sku-item {
	cursor: pointer;
	text-align: center;
	padding: 5px;
	border: 2px solid var(--divider-color);
	border-radius: 4px;
	transition: all 0.3s ease;
	width: 70px;
}

	.sku-item:hover,
	.sku-item.active {
		border-color: var(--primary-color);
	}

	.sku-item img {
		width: 50px;
		height: 50px;
		object-fit: cover;
		border-radius: 3px;
	}

	.sku-item span {
		display: block;
		font-size: 11px;
		margin-top: 5px;
		color: var(--text-color);
	}

	.sku-item.active span {
		color: var(--primary-color);
		font-weight: 600;
	}

.size-options {
	display: flex;
	gap: 10px;
}

.size-option {
	padding: 8px 15px;
	border: 1px solid var(--divider-color);
	cursor: pointer;
	font-size: 14px;
	transition: all 0.3s ease;
}

	.size-option:hover,
	.size-option.active {
		border-color: var(--primary-color);
		background: var(--primary-color);
		color: var(--white-color);
	}

.product-actions {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.qty-box {
	display: flex;
	align-items: center;
	border: 1px solid var(--divider-color);
}

	.qty-box .qty-btn {
		width: 40px;
		height: 40px;
		border: none;
		background: transparent;
		cursor: pointer;
		font-size: 20px;
		transition: all 0.3s ease;
	}

		.qty-box .qty-btn:hover {
			background: var(--primary-color);
			color: var(--white-color);
		}

	.qty-box .qty-input {
		width: 50px;
		height: 40px;
		text-align: center;
		border: none;
		border-left: 1px solid var(--divider-color);
		border-right: 1px solid var(--divider-color);
		font-size: 16px;
	}

.btn-add-cart {
	flex: 1;
	padding: 12px 30px;
	background: var(--primary-color);
	color: var(--white-color);
	border: none;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

	.btn-add-cart:hover {
		background: var(--accent-color);
	}

.btn-buy-now {
	padding: 12px 30px;
	background: var(--accent-color);
	color: var(--white-color);
	border: none;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

	.btn-buy-now:hover {
		background: var(--primary-color);
	}

.product-wishlist {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
}

	.product-wishlist a {
		display: flex;
		align-items: center;
		gap: 5px;
		font-size: 14px;
		color: var(--text-color);
		transition: color 0.3s ease;
	}

		.product-wishlist a:hover {
			color: var(--accent-color);
		}

		.product-wishlist a i {
			font-size: 16px;
		}

.product-meta {
	border-top: 1px solid var(--divider-color);
	padding-top: 20px;
}

	.product-meta ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}

		.product-meta ul li {
			font-size: 14px;
			margin-bottom: 8px;
			color: var(--text-color);
		}

			.product-meta ul li span {
				font-weight: 600;
				color: var(--primary-color);
			}
/* Zoom Container */
.zoom-container {
	position: relative;
	display: inline-block;
	width: 100%;
}

.product-main-image {
	position: relative;
	overflow: visible !important;
}

#mainImage {
	object-fit: contain;
}
.zoomLens {
	position: absolute;
	border: 2px solid rgba(0,0,0,0.4);
	background: rgba(255,255,255,0.3);
	pointer-events: none;
	display: none;
	width: 100px;
	height: 100px;
	z-index: 9999;
}

.zoomResult {
	position: absolute;
	top: 0;
	left: calc(100% + 10px);
	width: 350px;
	height: 350px;
	border: 1px solid #ddd;
	background-repeat: no-repeat;
	display: none;
	z-index: 9999;
	box-shadow: 0 4px 20px rgba(0,0,0,0.15);
	background-color: #fff;
}

.product-tab-item-content img {
	display: block;
	width: 98%;
	height: auto;
	margin: 0 auto;
	object-fit: contain;
}
