.header {
	top: 0;
	left: 0;
	position: sticky;
	z-index: 1000;
	background: var(--bs-white);
	transition: var(--transition-default);
}

.header .header-top {
	background: rgb(var(--primary-color));
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
	display: flex;
	align-items: center;
}

.header .header-top .header-contact {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 30px;
	transition: var(--transition-default);
}

.header .header-top .header-contact .header-contact_item {
	display: flex;
	align-items: center;
	color: var(--bs-white);
	font-size: 1em;
	padding: 10px 0 8px;
	gap: 6px;
	font-weight: 500;
	white-space: nowrap;
}

.header .header-top .header-contact .header-contact_item > i {
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	background: rgb(var(--secondary-color));
	font-size: 1.15em;
	flex-shrink: 0;
	transition: var(--transition);
	-webkit-transform: translateY(-1px);
	-moz-transform: translateY(-1px);
	-ms-transform: translateY(-1px);
	-o-transform: translateY(-1px);
	transform: translateY(-1px);
}

.header .header-top .header-contact .header-contact_item:hover i {
	background: rgb(var(--secondary-hover));
}

.header .header-top .header-social {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--bs-white);
	font-size: 1em;
	font-weight: 500;
	white-space: nowrap;
	margin-left: 30px;
}

.header .header-top .header-title {
	color: var(--bs-white);
	font-size: 0.925em;
	font-weight: 600;
}

.header .header-middle {
	padding: 15px 0;
	background: var(--bs-white);
	position: sticky;
	z-index: 10;
	transition: var(--transition);
	box-shadow: 0 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
}

.header.is-scroll {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}

.header.is-scroll .header-logo img {
	height: 50px;
}

.header.is-scroll .header-top .header-contact .header-contact_item {
	padding: 5px 0;
}

.header.is-scroll .header-middle {
	padding: 10px 0;
}

.header .header-grid {
	display: flex;
	align-items: center;
	position: relative;
}

.header .header-logo {
	background: var(--bs-white);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.header .header-logo img {
	height: 55px;
	position: relative;
}

.header .header-logo > .logo-mobile {
	display: none;
}

.header .header-navigation {
	transition: var(--transition-default);
	padding-left: 30px;
}

.header .header-navigation ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.header .header-navigation > ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header .header-navigation > ul > li > a,
.header .header-navigation > ul > li > button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	font-size: 1em;
	font-weight: 500;
	color: rgb(var(--dark-color));
	position: relative;
	white-space: nowrap;
	padding: 7px 16px;
	outline: none;
	background-color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 0;
	gap: 6px;
}

.header .header-navigation > ul > li > a > i,
.header .header-navigation > ul > li > button > i {
	transition: .3s transform ease-in-out;
	display: block;
	line-height: 0;
}

.header .header-navigation > ul > li > ul > li > a {
	white-space: nowrap;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 10px 15px;
	color: rgb(var(--dark-color));
	font-weight: 500;
	border-radius: 5px;
}

.header .header-navigation > ul > li .navigation-product_inner .navigation-product_wrapper::-webkit-scrollbar {
	width: 5px;
	background-color: #d9d9d9;
}

.header .header-navigation > ul > li .navigation-product_inner .navigation-product_wrapper::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: #bfc3c7;
}

.header .header-navigation .navigation-product_inner .navigation-product_wrapper .navigation-product_tab {
	flex-shrink: 0;
	width: 20%;
}

.header .header-navigation .navigation-product_inner .navigation-product_wrapper .navigation-product_tab > ul {
	display: flex;
	flex-direction: column;
	height: 100%;
	flex-wrap: nowrap;
	border-right: 1px solid #f1f1f1;
	border-bottom: 0;
}

.header .header-navigation .navigation-product_inner .navigation-product_wrapper .navigation-product_tab > ul > li {
	width: 100%;
	position: relative;
}

.header .header-navigation .navigation-product_inner .navigation-product_wrapper .navigation-product_tab > ul > li > button {
	width: 100%;
	position: relative;
	display: block;
	text-align: left;
	font-weight: 500;
	color: #232628;
	padding: 16px 16px;
	border: 0;
	border-left: 4px solid transparent;
}

.header .header-navigation .navigation-product_inner .navigation-product_wrapper .navigation-product_tab > ul > li > button.active {
	color: rgb(var(--primary-color));
	border-left-color: rgb(var(--primary-color));
	background: #f5f7f7;
	font-weight: 600;
}

.header .header-navigation .product-card {
	padding: 30px 20px;
}

.header .header-navigation .product-card .card-body .card-title {
	font-size: 1.075em;
}

.header .header-navigation .product-card .card-body .card-price span {
	font-size: 1.075em;
}

.header .header-toolbar {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-left: auto;
	flex-shrink: 0;
}

.header .header-toolbar .header-button {
	color: rgb(var(--primary-color));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3em;
}

.header .header-toolbar .header-hamburger {
	display: none;
}

.header .header-navigation .header-navigation_contact {
	display: none;
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
	.header .header-top .header-contact .header-contact_item,
	.header .header-top .header-title,
	.header .header-navigation > ul > li > a, .header .header-navigation > ul > li > button {
		font-size: 0.925em;
	}

	.header .header-toolbar .header-phone .header-phone_content {
		display: none;
	}

	.header .header-navigation > ul > li .navigation-product_inner .navigation-product_tab .nav-tabs .nav-item .nav-link {
		font-size: 1.15em;
		padding: 8px 30px;
	}
}

@media screen and (min-width: 1024px) and (max-width: 1359px) {
	.header .header-logo img {
		height: 50px !important;
	}

	.header .header-top .header-contact {
		gap: 20px;
	}

	.header .header-top .header-contact .header-contact_item {
		gap: 4px;
	}

	.header .header-top .header-social {
		margin-left: 20px;
	}

	.header .header-navigation {
		padding-left: 20px;
	}

	.header .header-navigation > ul > li > a, .header .header-navigation > ul > li > button {
		gap: 4px;
		padding: 5px 8px;
	}

	.header .header-middle {
		padding: 10px 0;
	}
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
	.header .header-top .header-contact .header-contact_item,
	.header .header-top .header-title,
	.header .header-navigation > ul > li > a, .header .header-navigation > ul > li > button {
		font-size: 0.85em;
	}

	.header .header-toolbar .header-phone {
		display: none;
	}

	.header .header-navigation > ul > li .navigation-product_inner .navigation-product_tab .nav-tabs .nav-item .nav-link {
		font-size: 1.15em;
		padding: 8px 30px;
	}
}

@media screen and (min-width: 1024px) {
	.header .header-navigation > ul > li:hover > a,
	.header .header-navigation > ul > li:hover > button {
		color: var(--bs-white);
	}

	.header .header-navigation > ul > li:hover > a > i,
	.header .header-navigation > ul > li:hover > button > i {
		-webkit-transform: rotate(180deg);
		-moz-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		-o-transform: rotate(180deg);
		transform: rotate(180deg);
	}

	.header .header-navigation .header-navigation_bg {
		position: absolute;
		top: 0;
		left: 15px;
		width: 100px;
		display: flex;
		background-color: rgb(var(--primary-color));
		font-weight: 700;
		border-radius: 150px;
		transition: .3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
		box-shadow: 0 8px 16px -6px rgba(24, 39, 75, 0.08), 0px 6px 8px -6px rgba(24, 39, 75, 0.12);
		opacity: 0;
	}

	.header .header-navigation > ul > li > ul {
		position: absolute;
		top: calc(100% + 25px);
		-webkit-transform: translateY(-25px);
		-ms-transform: translateY(-25px);
		transform: translateY(-25px);
		visibility: hidden;
		opacity: 0;
		pointer-events: none;
		left: 0;
		padding: 10px;
		background-color: var(--bs-white);
		-webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
		box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
		-webkit-transition: var(--transition);
		-o-transition: var(--transition);
		transition: var(--transition);
		min-width: 200px;
		border-radius: 0 0 4px 4px;
		z-index: 5;
	}

	.header .header-navigation > ul > li > ul:before {
		content: "";
		height: 20px;
		background: transparent;
		top: -20px;
		width: 100%;
		position: absolute;
		left: 0;
	}

	.header.is-scroll .header-navigation > ul > li > ul {
		top: calc(100% + 15px);
		-webkit-transform: translateY(-15px);
		-ms-transform: translateY(-15px);
		transform: translateY(-15px);
	}

	.header.is-scroll .header-navigation > ul > li > ul:before {
		top: -10px;
	}

	.header .header-navigation > ul > li:hover > ul {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
		visibility: visible;
		opacity: 1;
		pointer-events: auto;
	}

	.header .header-navigation > ul > li > ul > li:hover > a {
		background: rgb(var(--primary-color));
		color: var(--bs-white);
	}

	.header .header-navigation .navigation-product_inner {
		visibility: hidden;
		opacity: 0;
		pointer-events: none;
		padding: 0;
		list-style: none;
		position: absolute;
		width: 100%;
		left: 0;
		background-color: #fff;
		box-shadow: 1px 1px 3px rgba(0, 0, 0, .2);
		z-index: 10;
		transition: var(--transition-default);
		top: calc(100% + 15px);
		-webkit-transform: translateY(-15px);
		-ms-transform: translateY(-15px);
		transform: translateY(-15px);
	}

	.header .header-navigation .navigation-product_inner:before {
		content: "";
		height: 20px;
		background: transparent;
		top: -20px;
		width: 100%;
		position: absolute;
		left: 0;
	}

	.is-scroll.header .header-navigation .navigation-product_inner {
		top: calc(100% + 10px);
	}

	.header .header-navigation > ul > li:hover .navigation-product_inner {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
		visibility: visible;
		opacity: 1;
		pointer-events: auto;
	}

	.header .header-navigation .navigation-product_inner .navigation-product_wrapper {
		display: flex;
		height: 100%;
	}

	.header .header-navigation .navigation-product_inner .navigation-product_wrapper .navigation-product_list {
		padding: 16px;
		max-height: 100%;
		overflow-y: auto;
		width: 100%;
	}

	.header .header-navigation .navigation-product_inner .navigation-product_wrapper .navigation-product_list .product-card .card-title a {
		font-size: 1.225em;
	}

	.header .header-navigation .navigation-product_inner .navigation-product_wrapper .navigation-product_list .product-card .card-price {
		font-size: 1.075em;
	}
}

@media screen and (max-width: 1024px) {
	.header .header-logo {
		position: static;
		box-shadow: none !important;
		top: unset;
		padding: 0 !important;
	}

	.header .header-logo img {
		height: 50px !important;
	}

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

	.header .header-top .header-contact {
		gap: 15px;
	}

	.header .header-top .header-social {
		margin-left: 15px;
	}

	.header .header-middle {
		padding: 10px 0;
		background: var(--bs-white);
		transition: var(--transition);
	}

	.header .header-logo {
		background: transparent;
	}

	.header .header-logo .logo-mobile {
		display: none;
	}

	.is-navigation .header .header-logo .logo {
		display: none;
	}

	.is-navigation .header .header-logo .logo-mobile {
		display: block;
	}

	.header .header-grid {
		position: static;
	}

	.header .header-toolbar {
		margin-left: auto;
	}

	.header .header-toolbar .header-button {
		width: 24px;
		height: 24px
	}

	.is-navigation .header .header-toolbar .header-button {
		color: var(--bs-white);
	}

	.header .header-toolbar .header-hamburger {
		margin-left: 4px;
		gap: 6px;
		width: 32px;
		height: 32px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		flex-direction: column;
		padding-top: 2px;
	}

	.header .header-toolbar .header-hamburger .hamburger-button {
		position: relative;
		width: 20px;
		height: 20px;
		-webkit-transform: translateY(-1px);
		-ms-transform: translateY(-1px);
		transform: translateY(-1px);
		display: block;
	}

	.header .header-toolbar .header-hamburger .hamburger-button > i {
		background-color: rgb(var(--primary-color));
		width: 100%;
		height: 2px;
		position: absolute;
		display: block;
		-webkit-transition: var(--transition-default);
		-o-transition: var(--transition-default);
		transition: var(--transition-default);
		left: 0;
	}

	.header .header-toolbar .header-hamburger .hamburger-button > i:nth-child(1) {
		top: 2px;
	}

	.header .header-toolbar .header-hamburger .hamburger-button > i:nth-child(2) {
		top: 10px;
	}

	.header .header-toolbar .header-hamburger .hamburger-button > i:nth-child(3) {
		bottom: 0;
		width: 15px;
		left: auto;
		right: 0;
	}

	.is-navigation .header .header-toolbar .header-hamburger .hamburger-button > i {
		background: var(--bs-white);
	}

	.is-navigation .header .header-toolbar .header-hamburger .hamburger-button > i:nth-child(1) {
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
		top: 9px;
	}

	.is-navigation .header .header-toolbar .header-hamburger .hamburger-button > i:nth-child(2) {
		left: 50%;
		width: 0;
	}

	.is-navigation .header .header-toolbar .header-hamburger .hamburger-button > i:nth-child(3) {
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
		bottom: 9px;
		width: 100%;
	}

	.header .header-navigation {
		position: absolute;
		top: 100%;
		width: 100%;
		margin: 0 auto;
		left: 0;
		z-index: 10;
		transition: var(--transition-default);
		background-color: var(--bs-white);
		display: flex;
		flex-direction: column;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		height: 0;
		padding: 0 !important;
	}

	.header .header-navigation > ul {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		gap: 0;
		flex: 1 1 auto;
		padding: 0 calc(var(--bs-gutter-x) * .5);
		overflow-x: hidden;
		overflow-y: auto;
	}

	.header .header-navigation > ul > li {
		width: 100%;
	}

	.header .header-navigation > ul > li > ul {
		border-top: 1px solid var(--bs-gray-300);
	}

	.header .header-navigation > ul > li > a,
	.header .header-navigation > ul > li > button {
		justify-content: space-between;
		padding: 15px 0;
		width: 100%;
	}

	.header .header-navigation > ul > li > a > i,
	.header .header-navigation > ul > li > button > i {
		font-size: 1.15em;
	}

	.header .header-navigation > ul > li > a[aria-expanded=true] > i,
	.header .header-navigation > ul > li > button[aria-expanded=true] > i {
		transform: rotate(180deg);
	}

	.header .header-navigation > ul > li + li,
	.header .header-navigation > ul > li > ul > li + li {
		border-top: 1px solid var(--bs-gray-300);
	}

	.header .header-navigation > ul > li > ul > li > a {
		padding: 15px 0 15px 15px;
		width: 100%;
	}

	.header .header-navigation .navigation-product_inner .navigation-product_wrapper .navigation-product_tab {
		width: 100%;
	}

	.header .header-navigation .navigation-product_inner .navigation-product_wrapper .navigation-product_tab > ul {
		flex-direction: row;
		border-right: 0;
	}

	.header .header-navigation > ul > li .navigation-product_inner .navigation-product_tab .nav-tabs .nav-item .nav-link {
		font-size: 1.075em;
		padding: 6px 12px 4px;
		white-space: nowrap;
	}

	.header .header-navigation > ul > li .navigation-product_inner .navigation-product_wrapper {
		border-top: 1px solid var(--bs-gray-300);
		padding: 15px 0;
	}

	.header .header-navigation > ul > li .navigation-product_inner .navigation-product_tab {
		margin-bottom: 12px;
	}

	.header .header-navigation .product-card .card-body .card-title {
		font-size: 1em;
	}

	.header .header-navigation .product-card .card-body .card-price,
	.header .header-navigation .product-card .card-body .card-link {
		margin-top: 8px;
	}

	.header .header-navigation .header-navigation_bg {
		display: none;
	}

	.header .header-navigation .header-navigation_contact {
		margin-top: auto;
		border-top: 1px solid rgba(var(--primary-color), 0.15);
		background: rgba(var(--primary-color), 0.025);
		position: relative;
		overflow: hidden;
		flex-shrink: 0;
		display: block;
	}

	.header .header-navigation .header-navigation_contact .header-navigation_contact__inner {
		padding: 15px 50px 25px calc(var(--bs-gutter-x) * .5);
	}

	.header .header-navigation .header-navigation_contact:before {
		position: absolute;
		content: '';
		width: 200px;
		height: 300px;
		right: -128px;
		bottom: 0;
		clip-path: polygon(100% 0, 0% 100%, 100% 100%);
		background: rgba(var(--primary-color), 1);
	}

	.header .header-navigation .header-navigation_contact .header-navigation_contact__item {
		font-size: 1em;
		color: rgb(var(--dark-color));
		font-weight: 500;
		transition: var(--transition);
	}

	.header .header-navigation .header-navigation_contact .header-navigation_contact__item + .header-navigation_contact__item {
		margin-top: 8px;
	}

	.header .header-navigation .header-navigation_contact .header-navigation_contact__item > span {
		width: 28px;
		height: 28px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 4px;
		color: rgb(var(--primary-color));
		background: rgba(var(--primary-color), 7.5%);
		font-size: 1.15em;
		flex-shrink: 0;
		transition: var(--transition);
	}

	.is-navigation .header .header-navigation {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		height: calc(100vh - 60px);
	}

	.is-navigation {
		overflow: hidden;
	}

	.is-navigation .header .header-middle {
		background: rgb(var(--primary-color));
	}
}

@media screen and (min-width: 992px) and (max-width: 1023px) {
	.header .header-navigation > ul,
	.header .header-navigation .header-navigation_contact .header-navigation_contact__inner {
		max-width: 960px;
		margin: 0 auto;
		width: 100%;
	}
}

@media screen and (min-width: 768px) and (max-width: 991px) {
	.header .header-navigation > ul,
	.header .header-navigation .header-navigation_contact .header-navigation_contact__inner {
		max-width: 720px;
		margin: 0 auto;
		width: 100%;
	}
}

@media screen and (min-width: 575px) and (max-width: 767px) {
	.header .header-navigation > ul,
	.header .header-navigation .header-navigation_contact .header-navigation_contact__inner {
		max-width: 540px;
		margin: 0 auto;
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	.header .header-toolbar .header-phone {
		border-left: 0;
		padding-left: 0;
		margin-left: 4px;
	}

	.header .header-toolbar .header-phone .header-phone_content {
		display: none;
	}

	.header .header-top .header-contact {
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 5px;
		padding: 5px 0;
	}

	.header .header-top .header-contact .header-contact_item {
		padding: 0;
		font-size: 0.85em;
	}

	.header .header-top .header-social {
		margin-left: 10px;
		font-size: 0.85em;
		gap: 5px;
	}
}

.search-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 1002;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0 20px;
	-webkit-transform: translateY(-110%);
	transform: translateY(-110%);
	-webkit-transition: opacity 600ms ease, -webkit-transform 600ms ease;
	transition: opacity 600ms ease, -webkit-transform 600ms ease;
	transition: transform 600ms ease, opacity 600ms ease;
	transition: transform 600ms ease, opacity 600ms ease, -webkit-transform 600ms ease;
}

.search-popup .search-popup_overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgb(var(--primary-color));
	opacity: 0.75;
	cursor: pointer;
}

.search-popup .search-popup_content {
	width: 580px;
	max-width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	background-color: var(--bs-white);
	border-radius: 4px;
	overflow: hidden;
}

.search-popup .search-popup_content input {
	width: 100%;
	background-color: var(--bs-white);
	font-size: 1.075em;
	border: none;
	outline: none;
	height: 52px;
	padding: 2px 16px 0;
	border-radius: 4px 0 0 4px;
	color: rgb(var(--dark-color));
}

.search-popup .search-popup_content .button-theme {
	width: 52px;
	height: 52px;
	border-radius: 0 4px 4px 0;
	font-size: 1.3em;
}

.is-search {
	overflow: hidden;
}

.is-search .search-popup {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
	.search-popup .search-popup_content input {
		font-size: 1em;
		height: 50px;
	}

	.search-popup .search-popup_content .button-theme {
		height: 50px;
		width: 50px;
	}
}

@media screen and (max-width: 767px) {
	.search-popup .search-popup_content {
		width: 100%;
	}

	.search-popup .search-popup_content input {
		font-size: .925em;
	}
}

.header .header-toolbar .header-button {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	background: rgb(var(--primary-color));
	color: var(--bs-white);
	font-size: 1.15em;
	flex-shrink: 0;
}

.button-theme {
	position: relative;
	outline: none;
	box-shadow: none;
	background: transparent;
	font-size: 1.075em;
	padding: 2px 32px 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	border-radius: 12px;
	width: -moz-max-content;
	width: max-content;
	transition: var(--transition-default);
	border: 1px solid transparent;
	font-weight: 600;
	color: var(--bs-white);
	overflow: hidden;
	text-align: center;
	line-height: 1.2;
}

.button-theme > span {
	position: relative;
	z-index: 2;
	transition: var(--transition-default);
}

.button-theme > span svg {
	width: 22px;
	height: 22px;
	margin-right: 4px;
	transform: translateY(-1px);
}

.button-theme > span svg path {
	fill: var(--bs-white);
	transition: var(--transition-default);
}

.button-theme:before {
	position: absolute;
	z-index: 1;
	background: var(--bs-white);
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	transition: var(--transition-default);
	content: "";
}

.button-theme:hover:before {
	width: 100%;
}

.button-theme.button-theme_primary {
	background: rgb(var(--primary-color));
	border-color: rgb(var(--primary-color));
}

.button-theme.button-theme_primary:hover {
	background: transparent;
	color: rgb(var(--primary-color));
}

.button-theme.button-theme_primary:hover svg path {
	fill: rgb(var(--primary-color));
}

.button-theme.button-theme_primary__outline {
	background: transparent;
	color: rgb(var(--primary-color));
	border-color: rgb(var(--primary-color));
}

.button-theme.button-theme_primary__outline:before {
	background: rgb(var(--primary-color));
}

.button-theme.button-theme_primary__outline:hover {
	color: var(--bs-white);
}

.button-theme.button-theme_secondary {
	background: rgb(var(--secondary-color));
	border-color: rgb(var(--secondary-color));
}

.button-theme.button-theme_secondary:hover {
	background: transparent;
	color: rgb(var(--secondary-color));
}

.button-theme.button-theme_small {
	height: 36px;
	padding-left: 16px;
	padding-right: 16px;
	font-size: 1em;
	font-weight: 500;
	border-radius: 5px;
}

@media screen and (max-width: 991px) {
	.button-theme {
		font-size: 1em;
		height: 40px;
		padding-left: 20px;
		padding-right: 20px;
	}
}

.section-heading {
	margin-bottom: 32px;
}

.section-heading .heading-title {
	font-size: 2.4em;
	font-weight: 600;
	line-height: 48px;
	color: rgb(var(--primary-color));
}

.section-heading .heading-title span {
	color: rgba(var(--secondary-color));
}

.section-heading .heading-title_small {
	font-size: 2em;
	font-weight: 600;
	line-height: 32px;
	color: rgba(var(--secondary-color));
}

.section-heading .heading-title_small span {
	color: rgb(var(--primary-color));
}

.section-heading .heading-sub {
	font-size: 1.6em;
	font-weight: 500;
	color: rgb(var(--primary-color));
}

.section-heading .heading-desc {
	margin-top: 32px;
	font-size: 1.075em;
	line-height: 160%;
}

.section-heading .heading-desc p,
.section-heading .heading-desc ul,
.section-heading .heading-desc ol {
	margin-bottom: 12px;
}

.section-heading .heading-desc ul,
.section-heading .heading-desc ol {
	padding-left: 0;
}

.section-heading .heading-desc ul li,
.section-heading .heading-desc ol li {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.section-heading .heading-desc ul li:before,
.section-heading .heading-desc ol li:before {
	content: "\f058";
	display: inline-block;
	color: rgb(var(--primary-color));
	font-family: "Font Awesome 5 Pro";
	font-weight: 900;
	font-size: 1.15em;
	transform: translateY(1px);
	margin-right: 5px;
	width: 20px;
	height: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

.section-heading .heading-desc ul li + li,
.section-heading .heading-desc ol li + li {
	margin-top: 12px
}

.section-heading .heading-desc p:last-child,
.section-heading .heading-desc ul:last-child,
.section-heading .heading-desc ol:last-child {
	margin-bottom: 0;
}

.section-heading .heading-tab_2 {
	margin-top: 12px;
}

.section-heading .heading-tab_2 .nav-tabs {
	margin-bottom: 0;
	border-bottom: 0;
	gap: 8px;
	justify-content: center;
}

.section-heading .heading-tab_2 .nav-tabs .nav-link {
	margin-bottom: 0;
	border-radius: 4px;
	background: #f5f7f7;
	border: 1px solid var(--bs-gray-300);
	font-size: 1em;
	text-transform: uppercase;
	font-weight: 500;
	color: rgb(var(--black-off));
	transition: var(--transition-default);
	position: relative;
}

.section-heading .heading-tab_2 .nav-tabs .nav-link.active,
.section-heading .heading-tab_2 .nav-tabs .nav-link:hover {
	color: var(--bs-white);
	background: rgb(var(--primary-color));
	border-color: rgb(var(--primary-color));
}

.section-heading .heading-tabs {
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: max-content;
	overflow-y: hidden;
	overflow-x: auto;
}

.section-heading .heading-tabs .nav-tabs {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 45px;
	flex-wrap: nowrap;
	width: 100%;
	border: 0;
	border-bottom: 1px solid #acacac;
	margin-bottom: 3px;
}

.section-heading .heading-tabs .nav-tabs .nav-item .nav-link {
	display: flex;
	padding: 14px 10px;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #444444;
	background: transparent;
	font-weight: 400;
	position: relative;
	border-radius: 0;
	white-space: nowrap;
	font-size: 1.3em;
	z-index: 2;
	border: 0;
	margin: 0;
}

.section-heading .heading-tabs.heading-tabs_small .nav-tabs {
	gap: 4px;
}

.section-heading .heading-tabs.heading-tabs_small .nav-tabs .nav-item .nav-link {
	padding: 7px 18px;
	font-size: 1.075em;
}

.section-heading .heading-tabs .nav-tabs .nav-item .nav-link.active {
	color: rgb(var(--secondary-color));
	font-weight: 600;
}

.section-heading .heading-tabs .heading-tabs_bg {
	position: absolute;
	z-index: 2;
	bottom: 1px;
	left: 15px;
	width: 100px;
	display: flex;
	background-color: rgb(var(--secondary-color));
	border-radius: 5px;
	transition: .3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	opacity: 0;
	height: 5px;
}

@media screen and (max-width: 991px) {
	.section-heading {
		margin-bottom: 24px;
	}

	.section-heading .heading-title {
		font-size: 1.6em;
		line-height: 1.3;
	}

	.section-heading .heading-title_small {
		font-size: 1.45em;
	}

	.section-heading .heading-sub {
		font-size: 1.3em;
	}

	.section-heading .heading-tabs {
		margin-top: 8px !important;
	}

	.section-heading .heading-tabs .nav-tabs {
		gap: 12px;
	}

	.section-heading .heading-tabs .nav-tabs .nav-item .nav-link {
		font-size: 1.15em;
		padding: 10px 8px;
	}

	.section-heading .heading-desc {
		margin-top: 12px;
		font-size: 1em;
	}

	.section-heading .heading-desc h3,
	.section-heading .heading-desc h4,
	.section-heading .heading-desc h5,
	.section-heading .heading-desc h6 {
		font-size: 1.075em;
	}

	.section-heading .heading-tab_2 .nav-tabs .nav-link {
		padding: 4px 8px;
	}
}

.section-hero .slider-hero .hero-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.section-hero .slider-hero .hero-item .hero-item_content {
	width: 85%;
}

.section-hero .slider-hero .hero-item .hero-item_image {
	width: 100%;
}

.section-hero .slider-hero .hero-item .hero-item_image img {
	-webkit-transition: all 8s ease-out 0s;
	-moz-transition: all 8s ease-out 0s;
	-ms-transition: all 8s ease-out 0s;
	-o-transition: all 8s ease-out 0s;
	transition: all 8s ease-out 0s;
}

.section-hero .swiper-slide-active .hero-item .hero-item_image img {
	-webkit-transform: scale(1.045);
	-moz-transform: scale(1.045);
	transform: scale(1.045);
}

.section-hero .slider-hero .hero-item .hero-item_title {
	font: var(--head-line);
}

.section-hero .slider-hero .hero-item .hero-item_desc {
	font: var(--sub-head);
	margin-top: 8px;
}

.section-hero .slider-hero .slider-buttons [class*=slider-button] {
	background: rgb(var(--primary-color));
	border-color: rgb(var(--primary-color));
	color: var(--bs-white);
	border-radius: 6px;
}

.section-hero .slider-hero .slider-buttons [class*=slider-button]:hover {
	background: rgb(var(--secondary-color));
	border-color: rgb(var(--secondary-color));
	color: var(--bs-white);
}

.section-hero .slider-hero .slider-buttons .slider-button_prev {
	left: 15px;
}

.section-hero .slider-hero .slider-buttons .slider-button_next {
	right: 15px;
}

.section-hero .slider-hero .slider-pagination {
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	left: 50%;
	bottom: 15px;
	transform: translateX(-50%);
	z-index: 2;
	width: auto;
}

.section-hero .slider-hero .slider-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	opacity: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bs-white);
	transition: var(--transition-default);
	margin: 0;
}

.section-hero .slider-hero .slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: rgb(var(--secondary-color));
	width: 36px;
	border-radius: 6px;
}

@media screen and (max-width: 767px) {
	.section-hero .slider-hero .hero-item .hero-item_image img {
		height: 100%;
		object-fit: cover;
		width: 100%;
	}

	.section-hero .slider-hero .hero-item .hero-item_title {
		font-size: 1.75em;
	}

	.section-hero .slider-hero .hero-item .hero-item_desc {
		display: none;
	}

	.section-hero .slider-hero .slider-nav_button {
		--width: 50px;
		--height: 30px;
	}

	.section-hero .slider-hero .slider-nav_button .slider-nav_button__icon {
		font-size: 1.45em;
	}

	.section-hero .slider-hero .slider-nav_button.slider-nav_prev {
		left: 5px;
	}

	.section-hero .slider-hero .slider-nav_button.slider-nav_next {
		right: 5px;
	}
}

.section-gap {
	padding: 35px 0;
}

@media screen and (max-width: 1023px) {
	.section-gap {
		padding: 25px 0;
	}
}

.slider-theme {
	position: relative;
}

.slider-buttons .slider-button_next,
.slider-buttons .slider-button_prev {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgb(var(--secondary-color));
	color: var(--bs-white);
	font-size: 1.75em;
	border-radius: 6px;
	cursor: pointer;
	transition: var(--transition-default);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
}

.slider-buttons .slider-button_next {
	right: -88px;
}

.slider-buttons .slider-button_prev {
	left: -88px;
}

.slider-buttons .slider-button_next:hover,
.slider-buttons .slider-button_prev:hover {
	background: rgb(var(--secondary-hover));
	color: var(--bs-white);
}

.slider-buttons .slider-button_next:disabled, .slider-buttons .slider-button_next.swiper-button-disabled, .slider-buttons .slider-button_prev:disabled, .slider-buttons .slider-button_prev.swiper-button-disabled {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

@media screen and (max-width: 768px) {
	.slider-buttons .slider-button_next,
	.slider-buttons .slider-button_prev {
		display: none;
	}
}

.section-toolbar {
	background: #f5f7f7;
	padding: 20px 0;
}

.section-toolbar .toolbar-item {
	background: rgb(var(--primary-color));
	border: 1px solid var(--bs-gray-100);
	padding: 15px;
	border-radius: 12px;
	background: var(--bs-white);
	box-shadow: rgba(14, 63, 126, 0.02) 0 0 0 1px, rgba(42, 51, 69, 0.02) 0 1px 1px -0.5px, rgba(42, 51, 70, 0.02) 0 3px 3px -1.5px, rgba(42, 51, 70, 0.02) 0 6px 6px -3px, rgba(14, 63, 126, 0.02) 0 12px 12px -6px, rgba(14, 63, 126, 0.02) 0 24px 24px -12px;
	transition: var(--transition-default);
	height: 100%;
}

.section-toolbar .toolbar-item .toolbar-image {
	width: 30px;
	margin-right: 15px;
	-webkit-transition: all .3s cubic-bezier(0, 0, .3, 1) .1s;
	transition: all .3s cubic-bezier(0, 0, .3, 1) .1s;
}

.section-toolbar .toolbar-item .toolbar-image svg {
	height: auto;
	width: 100%;
	object-fit: cover;
	max-width: 100%;
	fill: rgb(var(--primary-color));
	transition: var(--transition);
}

.section-toolbar .toolbar-item .toolbar-body {
	padding-right: 15px;
}

.section-toolbar .toolbar-item .toolbar-title {
	font-size: 1.15em;
	color: rgb(var(--primary-color));
	transition: var(--transition);
}

.section-toolbar .toolbar-item .toolbar-desc {
	color: rgb(var(--black-muted));
	transition: var(--transition);
	font-weight: 300;
}

.section-toolbar .toolbar-item:hover {
	background: var(--bs-white);
	border-color: rgba(var(--secondary-color), 1);
}

.section-toolbar .toolbar-item:hover .toolbar-title {
	color: rgb(var(--secondary-color));
}

@media screen and (max-width: 991px) {
	.section-toolbar .toolbar-item {
		flex-direction: column;
		padding: 12px;
	}

	.section-toolbar .toolbar-item .toolbar-image {
		margin-bottom: 10px;
		margin-right: 0;
	}

	.section-toolbar .toolbar-item .toolbar-body {
		padding-right: 0;
		display: flex;
		flex-direction: column;
		flex: 1 1 auto;
	}

	.section-toolbar .toolbar-item .toolbar-title {
		font-size: 1.075em;
		line-height: 1.3;
	}

	.section-toolbar .toolbar-item .toolbar-desc {
		font-size: .925em;
		line-height: 1.3;
		margin-top: auto;
	}
}

.section-reviews {
	padding-top: 75px;
}

.review-card {
	padding: 15px;
	border-radius: 0;
}

.review-card .card-avatar {
	width: 100px;
	height: 100px;
}

.review-card .card-name {
	display: inline-block;
	margin: 0 auto;
	padding: 0 15px 15px;
}

.review-card .card-name > span {
	font-size: 1.6em;
	font-weight: 600;
	color: rgb(var(--secondary-color));
	--line: 1;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: var(--line);
	line-clamp: var(--line);
	-webkit-box-orient: vertical;
	position: relative;
	z-index: 2;
}

.review-card .card-desc {
	font-size: 1.075em;
	font-style: italic;
	color: #29292c;
	--line: 5;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: var(--line);
	line-clamp: var(--line);
	-webkit-box-orient: vertical;
	line-height: 1.6;
	margin-top: auto;
	font-weight: 300;
	text-align: center;
}

.review-card .card-star {
	position: relative;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	color: rgb(var(--black-gray));
	font-size: 1.3em;
}

.review-card .card-star .fas {
	color: rgb(var(--primary-color));
}

.review-card .card-address {
	text-align: center;
	font-size: 1.075em;
	font-weight: 500;
	color: rgb(var(--black-off));
}

@media screen and (max-width: 991px) {
	.review-card .card-name > span {
		font-size: 1.45em;
	}

	.review-card .card-desc {
		font-size: 1em;
	}
}

.section-value {
	background: #f5f7f7;
}

.section-value .value-item {
	padding: 18px;
	display: flex;
	align-items: center;
	background: rgb(240, 240, 240) url('../../../../public/upload/theme/value-image.jpg') center center/cover no-repeat;
	box-shadow: rgba(17, 17, 17, 0.08) 0px 20px 80px;
	border: 3px solid rgba(var(--primary-color), .15);
	border-radius: 8px;
	color: var(--dark-color);
	height: 100%;
}

.section-value .value-item:before {
	position: absolute;
	left: -25px;
	bottom: -25px;
	width: 100px;
	height: 100px;
	display: block;
	content: "";
	background: url(../../../../public/upload/theme/decor-wheel.png) center center/cover no-repeat;
	pointer-events: none;
	opacity: 0.025;
}

.section-value .value-item .value-image {
	width: 65px;
	margin-right: 12px;
	flex-shrink: 0;
}

.section-value .value-item .value-title {
	font-size: 1.15em;
	color: var(--dark-color);
}

.section-value .value-item .value-desc {
	color: #29292c;
	font-weight: 300;
	line-height: 1.3;
	font-size: 1em;
	margin-top: 4px;
}

@media screen and (min-width: 1024px)  and (max-width: 1199px) {
	.section-value .value-item .value-image {
		width: 65px;
	}

	.section-value .value-item .value-title {
		font-size: 1.15em;
	}
}

@media screen  and (max-width: 767px) {
	.section-value .value-item {
		padding: 12px;
	}

	.section-value .value-item .value-image {
		width: 40px;
	}

	.section-value .value-item .value-title {
		font-size: 1.075em;
	}
}

.footer {
	background: rgb(var(--primary-color));
	padding: 45px 0;
}

.footer .footer-cta {
	margin-bottom: 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer .footer-cta .footer-cta_content .footer-cta_title {
	font-size: 1.825em;
	color: var(--bs-white);
	font-weight: 500;
}

.footer .footer-cta .footer-cta_content .footer-cta_desc {
	font-size: 1.075em;
	color: var(--bs-white);
	margin-top: 4px;
}

.footer .footer-cta .footer-cta_form .footer-cta_form__item {
	position: relative;
	overflow: hidden;
}

.footer .footer-cta .footer-cta_form .footer-cta_form__item .form-control {
	width: 100%;
	border-radius: 12px;
	height: 64px;
	font-size: 1.075em;
	overflow: hidden;
	padding-left: 16px;
	padding-right: 150px;
	border-color: transparent !important;
	outline: none !important;
	box-shadow: none !important;
	min-width: 450px;
}

.footer .footer-cta .footer-cta_form .footer-cta_form__item .form-control.is-invalid,
.footer .footer-cta .footer-cta_form .was-validated .footer-cta_form__item .form-control:invalid {
	border-color: #dc3545 !important;
	background-position: right calc(.375em + 150px) center;
}

.footer .footer-cta .footer-cta_form .footer-cta_form__item .footer-cta_form__button {
	position: absolute;
	top: 8px;
	right: 8px;
}

.footer .footer-cta .footer-cta_form .footer-cta_form__item .footer-cta_form__button .button-theme {
	height: 48px;
	padding-left: 24px;
	padding-right: 24px;
}

.footer .footer-cta .footer-cta_form .footer-cta_form__item .footer-cta_form__button .button-theme:before {
	background: rgb(var(--primary-hover));
}

.footer .footer-cta .footer-cta_form .footer-cta_form__item .footer-cta_form__button .button-theme > span {
	color: var(--bs-white) !important;
}

.footer .footer-item .footer-logo img {
	height: 65px;
	width: auto;
}

.footer .footer-item .footer-sub,
.footer .footer-item .footer-title {
	font-size: 1.15em;
	font-weight: 600;
	color: var(--bs-white);
	margin-top: 10px;
	line-height: 1.5;
}

.footer .footer-item .footer-contact,
.footer .footer-item .footer-desc {
	display: flex;
	flex-direction: column;
	margin-top: 10px;
	gap: 4px;
}

.footer .footer-item .footer-contact .footer-contact_item,
.footer .footer-item .footer-desc .footer-list_item {
	color: #c1c1c1;
	font-size: 1em;
}

.footer .footer-item .footer-contact .footer-contact_item span {
	font-weight: 600;
	color: var(--bs-white)
}

.footer .footer-item .footer-contact .footer-contact_item > a:hover,
.footer .footer-item .footer-desc .footer-list_item:hover {
	color: var(--bs-white) !important;
}

.footer .footer-item .footer-social .footer-social_item {
	height: 28px;
	width: 28px;
	color: var(--bs-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.45em;
}

.footer .footer-item .footer-social .footer-social_item:hover {
	transform: translateY(-3px);
}

.footer .footer-bottom {
	padding-top: 40px;
}

.footer .footer-bottom .footer-copyright_link {
	margin-bottom: 15px;
}

.footer .footer-bottom .footer-copyright_link > a {
	color: #afafaf;
}

.footer .footer-bottom .footer-copyright_link > a:hover {
	color: var(--bs-white);
}

.footer .footer-bottom .footer-copyright_link > a + a:before {
	display: inline-block;
	width: 1px;
	height: 14px;
	margin: 0 10px;
	background: #afafaf;
	content: "";
	opacity: 0.15;
	transform: translateY(2px);
}

.footer .footer-bottom .footer-copyright {
	color: #afafaf;
	font-size: 0.925em;
}

@media screen and (max-width: 991px) {
	.footer {
		padding-bottom: 80px;
	}

	.footer .footer-cta {
		padding-bottom: 30px;
		margin-bottom: 30px;
		flex-direction: column;
	}

	.footer .footer-cta .footer-cta_content .footer-cta_title {
		font-size: 1.3em;
	}

	.footer .footer-cta .footer-cta_form .footer-cta_form__item .form-control {
		font-size: 1em;
	}

	.footer .footer-cta .footer-cta_form .footer-cta_form__item .footer-cta_form__button .button-theme {
		padding-left: 12px;
		padding-right: 12px;
		font-size: 0.925em;
	}

	.footer .footer-cta .footer-cta_form {
		width: 100%;
		margin-top: 18px;
	}

	.footer .footer-cta .footer-cta_form .footer-cta_form__item .form-control {
		padding-right: 120px;
		max-width: 100%;
		min-width: 320px;
	}

	.footer .footer-item .footer-title {
		padding-top: 0;
	}

	.footer .footer-item .footer-sub, .footer .footer-item .footer-title {
		font-size: 1.075em;
	}
}

.section-services {
	background: #f5f7f7;
}

.service-progress .progress-list::after {
	position: absolute;
	content: '';
	display: block;
	top: 50%;
	left: 0;
	width: 100%;
	height: 105px;
	background: url('../../../../public/upload/theme/process-line.png') center no-repeat;
	background-size: contain;
	-webkit-transition: all 0.35s ease-in-out;
	-o-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
	z-index: 2;
	transform: translateY(-94px);
}

.service-progress .progress-list .progress-item .progress-item_image {
	width: 190px;
	height: 190px;
	z-index: 3;
}

.service-progress .progress-list .progress-item .progress-item_number {
	transition: all .3s ease 0s;
	position: absolute;
	top: 10px;
	left: 30px;
	transform: translateX(-50%);
	width: 45px;
	height: 45px;
	background: rgb(var(--primary-color));
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 1.1em;
	font-weight: 500;
	box-shadow: 0 0 0 5px rgb(0 9 91 / 25%);
}

.service-progress .progress-list .progress-item .progress-item_title {
	margin-top: 24px;
	font-size: 1.15em;
	font-weight: 700;
	color: rgb(var(--primary-color));
}

.service-progress .progress-list .progress-item .progress-item_desc {
	font-size: 1em;
	color: #29292c;
}

.section-services .swiper {
	padding: 5px;
	margin: -5px;
}

.section-services .service-card {
	border-radius: 4px;
	border: 1px solid transparent !important;
	box-shadow: rgba(60, 64, 67, 0.2) 0px 1px 2px 0px, rgba(60, 64, 67, 0.1) 0px 2px 6px 2px;
	transition: var(--transition-default);
}

.section-services .service-card .card-title {
	font-size: 1.225em;
	font-weight: 600;
	color: rgba(var(--primary-color));
	text-align: center;
	line-height: 1.2;
	margin-top: 2px;
}

.section-services .service-card .card-text {
	font-size: 1.075em;
	font-weight: 400;
	color: rgb(var(--secondary-color));
	margin-top: 10px;
	text-align: center;
	line-height: 1.2;
}

.section-services .service-card .card-image {
	margin: 0 auto;
	width: 53px;
	height: 53px;
}

.section-services .service-card:hover {
	border: 1px solid rgb(var(--secondary-color)) !important;
}

@media screen and (max-width: 1200px) {
	.service-progress .progress-list::after {
		height: 70px;
	}

	.service-progress .progress-list .progress-item .progress-item_image {
		width: 130px;
		height: 130px;
	}

	.service-progress .progress-list .progress-item .progress-item_number {
		left: 15px;
		width: 40px;
		height: 40px;
		font-size: 0.85em;
	}

	.service-progress .progress-list .progress-item .progress-item_title {
		font-size: 1em;
	}

	.service-progress .progress-list .progress-item .progress-item_desc {
		font-size: 0.9em;
	}
}

@media screen and (max-width: 1024px) {
	.service-progress .service-list .service-box {
		padding: 15px 15px 40px;
	}

	.service-progress .service-list .service-box .service-box_image {
		height: 45px;
		width: 45px;
	}

	.service-progress .service-list .service-box .service-box_title {
		font-size: 1em;
		margin-top: 10px;
	}

	.section-service__bg::after {
		border-radius: 0;
	}

	.service-progress .progress-list::after {
		background: unset;
		content: unset;
	}
}

@media screen and (max-width: 768px) {
	.section-services .service-card {
		padding: 10px !important;
	}

	.section-services .service-card .card-text {
		font-size: 1em;
	}

	.section-services .service-card .card-title {
		font-size: 1.15em;
	}
}

@media screen and (max-width: 575px) {
	.section-services .service-card .card-image {
		width: 45px;
		height: 45px;
	}

	.section-services .service-card {
		padding: 8px !important;
	}

	.section-services .service-card .card-title {
		font-size: 1.075em;
	}
}

.section-contact {
	min-height: 75vh;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
}

.section-contact .contact-map {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.section-contact .contact-map .contact-map_button {
	top: 15px;
}

.section-contact .contact-map:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(var(--bs-black-rgb), 0.24);
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition: var(--transition-default);
}

.section-contact:hover .contact-map:before {
	opacity: 0;
	visibility: hidden;
	pointer-events: auto;
}

.section-contact .contact-map iframe {
	width: 100%;
	height: 100%;
	vertical-align: middle;
}

.section-contact .contact-info {
	background: var(--bs-white);
	border-radius: 16px;
	padding: 42px;
	position: relative;
	z-index: 2;
	box-shadow: rgba(17, 17, 17, 0.08) 0px 20px 80px;
	border: 3px solid rgba(var(--primary-color), .25);
}

.section-contact .contact-info .section-heading .heading-title {
	font-size: 1.675em;
}

.section-contact .contact-info .contact-info_list {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.section-contact .contact-info .contact-info_list .contact-info_list__item {
	display: flex;
	gap: 15px;
	align-items: center;
}

.section-contact .contact-info .contact-info_list .contact-info_list__item .contact-info_list__item__icon {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

.section-contact .contact-info .contact-info_list .contact-info_list__item .contact-info_list__item__icon svg {
	width: 100%;
	height: 100%;
}

.section-contact .contact-info .contact-info_list .contact-info_list__item .contact-info_list__item__icon svg path {
	fill: var(--bs-gray-400);
	transition: var(--transition-default);
}

.section-contact .contact-info .contact-info_list .contact-info_list__item .contact-info_list__item__content .contact-info_list__item___title {
	font-size: 1em;
	font-weight: 500;
	color: var(--bs-gray-700);
}

.section-contact .contact-info .contact-info_list .contact-info_list__item .contact-info_list__item__content .contact-info_list__item___value {
	font-size: 1.075em;
	line-height: 1.3;
	font-weight: 500;
	color: var(--black-off);
	transition: var(--transition-default);
}

.section-contact .contact-info .contact-info_list .contact-info_list__item:hover .contact-info_list__item__icon svg path {
	fill: rgb(var(--primary-color));
}

.section-contact .contact-info .contact-info_list .contact-info_list__item:hover .contact-info_list__item__content .contact-info_list__item___value {
	color: rgb(var(--primary-color));
}

@media screen and (max-width: 991px) {
	.section-contact .contact-info {
		padding: 16px;
		top: 130px;
	}

	.section-contact .contact-info .contact-info_list {
		gap: 16px;
	}

	.section-contact .contact-info .contact-info_list .contact-info_list__item {
		gap: 10px;
	}

	.section-contact .contact-info .contact-info_list .contact-info_list__item .contact-info_list__item__icon {
		width: 28px;
		height: 28px;
	}

	.section-contact .contact-info .contact-info_list .contact-info_list__item .contact-info_list__item__content .contact-info_list__item___title {
		font-size: 0.925em;
	}

	.section-contact .contact-info .contact-info_list .contact-info_list__item .contact-info_list__item__content .contact-info_list__item___value {
		font-size: 1em;
	}
}

@media screen and (max-width: 768px) {
	.section-contact {
		background: #f5f7f7;
		min-height: auto;
		padding-top: 0;
	}

	.section-contact .contact-map {
		position: relative;
	}

	.section-contact .contact-map iframe {
		height: 300px;
	}

	.section-contact .contact-map:before {
		display: none;
	}

	.section-contact .contact-info {
		position: static;
		margin-top: 30px;
	}

	.section-contact .contact-map .contact-map_button {
		top: unset;
		bottom: 15px;
	}
}

.contact-info {
	width: 100%;
}

.contact-info .contact-info_box {
	border-radius: 24px;
	background: rgb(var(--primary-color)) url(../../../../public/upload/theme/contact-information-bg.svg) bottom right/auto no-repeat;
	padding: 48px 36px;
	width: 100%;
}

.contact-info .contact-info_box .contact-info_title {
	font: var(--sub-head);
	color: var(--bs-white);
	margin-bottom: 36px;
	font-weight: 600;
}

.contact-info .contact-info_box .contact-info_list {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.contact-info .contact-info_box .contact-info_list .contact-info_list__item {
	display: flex;
	align-items: center;
	gap: 16px;
	max-width: 80%;
}

.contact-info .contact-info_box .contact-info_list .contact-info_list__grid {
	display: flex;
	align-items: center;
	gap: 60px;
}

.contact-info .contact-info_box .contact-info_list .contact-info_list__item .contact-info_list__item__icon {
	height: 38px;
	width: 38px;
	flex-shrink: 0;
}

.contact-info .contact-info_box .contact-info_list .contact-info_list__item .contact-info_list__item__icon svg {
	height: 100%;
	width: 100%;
}

.contact-info .contact-info_box .contact-info_list .contact-info_list__item .contact-info_list__item__content .contact-info_list__item___title {
	font-size: 0.925em;
	font-weight: 400;
	color: var(--bs-white);
}

.contact-info .contact-info_box .contact-info_list .contact-info_list__item .contact-info_list__item__content .contact-info_list__item___value {
	font-size: 1.075em;
	color: var(--bs-white);
	line-height: 1.6;
	font-weight: 500;
}

@media screen and (max-width: 767px) {
	.contact-info .contact-info_box {
		padding: 24px;
	}

	.contact-info .contact-info_box .contact-info_title {
		margin-bottom: 18px;
	}

	.contact-info .contact-info_box .contact-info_list {
		gap: 20px;
	}

	.contact-info .contact-info_box .contact-info_list .contact-info_list__item {
		max-width: 100%;
	}

	.contact-info .contact-info_box .contact-info_list .contact-info_list__item .contact-info_list__item__icon {
		width: 30px;
		height: 30px;
	}

	.contact-info .contact-info_box .contact-info_list .contact-info_list__item .contact-info_list__item__content .contact-info_list__item___value {
		font-size: 1em;
	}

	.contact-info .contact-info_box .contact-info_list .contact-info_list__grid {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
}

.slider-product .slider-product_inner {
	padding-bottom: 90px;
}

.product-card_2 {
	padding: 10px 0;
}

.product-card_2 .card-image {
	height: 120px;
}

.product-card_2 .card-title {
	color: var(--dark-color);
	font-size: 1.45em;
	transition: var(--transition-default);
	margin-bottom: 0;
}

.product-card_2 .card-price {
	font-size: 1.15em;
	color: rgb(var(--primary-color));
	font-weight: 500;
	transition: var(--transition-default);
}

.slider-product .slider-buttons {
	position: absolute;
	bottom: 25px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.slider-product .slider-buttons [class*=slider-button] {
	position: static;
	transform: translateY(0);
	display: flex !important;
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
}

@media screen and (min-width: 992px) {
	.product-card_2:hover .card-title {
		color: var(--bs-white);
	}

	.product-card_2:hover .card-price {
		color: var(--bs-white);
	}

	.product-card_2:before {
		position: absolute;
		width: 100%;
		height: 150px;
		bottom: -30px;
		background-color: #f4f8fd;
		content: "";
		display: block;
		left: 50%;
		transform: translateX(-50%);
		z-index: -1;
		opacity: 0;
		visibility: hidden;
		transition: var(--transition-default);
	}

	.product-card_2:hover:before {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.product-card_2 .product-bg {
		width: 92%;
		margin: auto;
		height: 100%;
		position: absolute;
		left: 50%;
		transform: translate(-50%, -50%);
		top: 50%;
		z-index: 0;
	}

	.product-card_2 .product-bg .product-bg_top {
		width: 100%;
		height: 280px;
		top: 200px;
		opacity: 0;
		background-color: rgb(var(--primary-color));
		transition: var(--transition-default);
		position: relative;
	}

	.product-card_2 .product-bg .product-bg_bottom {
		width: 100%;
		height: 0;
		background-color: rgb(var(--primary-color));
		transition: var(--transition-default);
		position: relative;
	}

	.product-card_2:hover > .product-bg .product-bg_top {
		height: 50.5%;
		top: 1%;
		opacity: 1;
	}

	.product-card_2:hover > .product-bg .product-bg_bottom {
		height: 50.5%;
	}

	.product-card_2 .card-button {
		opacity: 0;
		visibility: hidden;
	}

	.product-card_2:hover .card-button {
		opacity: 1;
		visibility: visible;
	}

	.product-card_2 img {
		max-width: 85%;
		margin: 0 auto;
	}

	.product-card_2:hover .ratio img {
		transform: scale(1.05);
	}
}

@media screen and (max-width: 991px) {
	.product-card_2 {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		padding: 0;
	}

	.product-card_2 .card-title {
		font-size: 1.15em;
	}

	.product-card_2 .card-price {
		font-size: 1em;
	}

	.product-card_2 .card-image {
		height: 100px;
		margin: auto 0 10px !important;
	}

	.product-card_2 .card-image img {
		object-fit: contain;
	}

	.product-card_2 .card-button {
		color: var(--dark-color) !important;
		font-size: 0.825em;
	}

	.product-card_2 .card-button .product-card__arrow img {
		filter: invert(1);
		-webkit-filter: invert(1);
		transition: var(--transition);
	}
}

.product-card {
	padding: 40px 30px;
	border-radius: 4px;
	position: relative;
	z-index: 1;
	box-shadow: rgba(60, 64, 67, 0.2) 0px 1px 2px 0px, rgba(60, 64, 67, 0.1) 0px 2px 6px 2px;
	border: 1px solid #f1f1f1;
}

.product-card:hover {
	border: 1px solid rgb(var(--secondary-color));
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
	transition: var(--transition-default);
}

.product-card:hover .card-image img {
	transform: scale(1.05);
}

.product-card .card-title a {
	font-size: 1.45em;
	text-align: center;
	line-height: 1.25;
}

.product-card .card-price {
	font-size: 1.15em;
	text-align: center;
	color: rgb(var(--secondary-color));
	font-weight: 300;
	display: flex;
	justify-content: center;
	gap: 4px;
}

.product-card .card-price > span {
	font-size: 1.225em;
	line-height: 1.2;
	position: relative;
	font-weight: 600 !important;
	transform: translateY(-0.5px);
}

.product-card.product-card_small .card-title a {
	font-size: 1.15em;
}

.product-card.product-card_small .card-price {
	font-size: 1em;
}

.product-card.product-card_small .card-price > span {
	font-size: 1.3em;
}

@media screen and (max-width: 991px) {
	.product-card {
		padding: 10px;
	}

	.product-card .card-body {
		display: flex;
		flex-direction: column;
	}

	.product-card .card-title a {
		font-size: 1.15em;
	}

	.product-card .card-price {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		font-size: 1em;
		gap: 0;
		margin-top: auto;
	}

	.product-card .card-price > span {
		font-size: 1.15em !important;
	}

	.product-card.product-card_small .card-title a {
		font-size: 1.075em;
	}
}

.section-breadcrumb {
	padding: 40px 0;
	position: relative;
}

.section-breadcrumb .section-breadcrumb_title {
	font-size: 2em;
	font-weight: 700;
	color: #212121;
	margin-bottom: 8px;
}

.section-breadcrumb .section-breadcrumb_list .breadcrumb {
	margin-bottom: 0;
}

.section-breadcrumb .section-breadcrumb_list .breadcrumb .breadcrumb-item {
	color: #444;
	font-size: 1em;
}

.section-breadcrumb .section-breadcrumb_list .breadcrumb .breadcrumb-item > a {
	color: inherit;
	transition: var(--transition);
}

.section-breadcrumb .section-breadcrumb_list .breadcrumb .breadcrumb-item > a:hover {
	color: rgb(var(--primary-color));
}

.section-breadcrumb .section-breadcrumb_list .breadcrumb .breadcrumb-item + .breadcrumb-item:before {
	content: "\f105";
	font-weight: 500;
	font-family: "Font Awesome 5 Pro";
	color: var(--bs-gray-600);
}

.section-breadcrumb .section-breadcrumb_tools {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-top: 24px;
}

.section-breadcrumb .section-breadcrumb_tools .tool-item {
	border-radius: 4px;
	background: var(--bs-white);
	padding: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 10px;
	min-width: 120px;
	transition: var(--transition);
}

.section-breadcrumb .section-breadcrumb_tools .tool-item .tool-item_image {
	width: 36px;
}

.section-breadcrumb .section-breadcrumb_tools .tool-item .tool-item_image svg {
	height: auto;
	width: 100%;
	object-fit: cover;
	max-width: 100%;
	fill: rgb(var(--primary-color));
	transition: var(--transition);
}

.section-breadcrumb .section-breadcrumb_tools .tool-item .tool-item_title {
	font-size: 1.075em;
	font-weight: 600;
	color: rgb(var(--dark-color));
	transition: var(--transition);
}

.section-breadcrumb .section-breadcrumb_tools .tool-item:hover {
	background: rgb(var(--secondary-color));
}

.section-breadcrumb .section-breadcrumb_tools .tool-item:hover .tool-item_image svg {
	fill: var(--bs-white);
}

.section-breadcrumb .section-breadcrumb_tools .tool-item:hover .tool-item_title {
	color: var(--bs-white);
}

@media screen and (max-width: 1023px) {
	.section-breadcrumb {
		padding: 30px 0;
	}

	.section-breadcrumb .section-breadcrumb_title {
		font-size: 1.45em;
	}

	.section-breadcrumb .section-breadcrumb_list .breadcrumb .breadcrumb-item {
		display: none;
	}

	.section-breadcrumb .section-breadcrumb_list .breadcrumb .breadcrumb-item:nth-child(1), .section-breadcrumb .section-breadcrumb_list .breadcrumb .breadcrumb-item:nth-child(2) {
		display: block;
	}

	.section-breadcrumb .section-breadcrumb_list .breadcrumb .breadcrumb-item > a {
		font-size: .925em;
	}
}

@media screen and (max-width: 767px) {
	.section-breadcrumb .section-breadcrumb_tools {
		gap: 5px;
	}

	.section-breadcrumb .section-breadcrumb_tools .tool-item {
		padding: 4px;
		min-width: auto;
		max-width: 100px;
		gap: 5px;
		flex: 0 0 25%;
	}

	.section-breadcrumb .section-breadcrumb_tools .tool-item .tool-item_image {
		width: 24px;
	}

	.section-breadcrumb .section-breadcrumb_tools .tool-item .tool-item_title {
		font-size: .85em;
		white-space: nowrap;
	}
}


.section-pagination {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.section-pagination .pagination {
	margin-bottom: 0;
}

.section-pagination .pagination li a {
	border: 1px solid #f1f1f1;
	border-radius: 6px !important;
	background-color: var(--bs-white);
	color: rgb(var(--dark-color));
	width: 36px;
	height: 36px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-weight: 300;
	margin: 0;
}

.section-pagination .pagination li.active a,
.section-pagination .pagination li.pageactive a {
	background-color: rgb(var(--primary-color));
	color: var(--bs-white);
}

.section-pagination .pagination li + li {
	margin-left: 10px;
}


.section-page .contact-map {
	position: relative;
}

.section-page .contact-map iframe {
	height: 100%;
	width: 100%;
	vertical-align: middle;
	min-height: 450px;
}

.section-page .contact-info .contact-info_box .contact-info_title {
	font-size: 1.7em;
}

.section-page .contact-box {
	height: 100%;
}

.section-page .contact-box .contact-wrapper {
	padding: 30px;
	background-color: var(--bs-white);
	border-radius: 12px;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
	height: 100%;
}

@media screen and (max-width: 991px) {
	.section-page .contact-info .contact-info_box .contact-info_title {
		font-size: 18px;
	}

	.section-page .contact-box {
		padding-top: 0;
	}

	.section-page .contact-box .contact-wrapper {
		padding: 24px;
	}

	.section-page .contact-box .contact-wrapper .section-heading {
		margin-bottom: 18px;
	}
}

.contact-form_bg {
	background: var(--bs-white);
	padding: 30px;
	border-radius: 6px;
	box-shadow: rgba(14, 63, 126, 0.02) 0 0 0 1px, rgba(42, 51, 69, 0.02) 0 1px 1px -0.5px, rgba(42, 51, 70, 0.02) 0 3px 3px -1.5px, rgba(42, 51, 70, 0.02) 0 6px 6px -3px, rgba(14, 63, 126, 0.02) 0 12px 12px -6px, rgba(14, 63, 126, 0.02) 0 24px 24px -12px;
}

.contact-form .contact-form_item + .contact-form_item {
	margin-top: 20px;
}

.contact-form .contact-form_item .contact-form_item--label {
	margin-bottom: 5px;
	color: rgb(var(--dark-color));
	font-weight: 600;
}

.contact-form .contact-form_item .contact-form_item--input, .contact-form .contact-form_item .contact-form_item--select, .contact-form .contact-form_item .select2-container--bootstrap-5 .select2-selection--single {
	color: rgb(var(--dark-color));
	font-size: 1em;
	box-shadow: none !important;
	outline: none !important;
	padding: 12px 15px;
	border-radius: 6px;
	height: auto;
	background-color: var(--bs-white);
	font-weight: 300;
	border-color: #ececec;
}

.contact-form .was-validated .contact-form_item .contact-form_item--input,
.contact-form .was-validated .contact-form_item .contact-form_item--select,
.contact-form .was-validated .contact-form_item .select2-container--bootstrap-5 .select2-selection--single {
	border-color: #dc3545;
}

.contact-form .contact-form_item .contact-form_item--input:disabled {
	background-color: #efefef !important;
}

.contact-form .contact-form_item .contact-form_item--input.form-select {
	padding-right: 34px;
}

.contact-form .contact-form_item textarea {
	resize: none;
}

.contact-form .contact-form_item .select2-container--bootstrap-5.select2-container--open.select2-container--below .select2-selection, .contact-form .contact-form_item .select2-container--bootstrap-5.select2-container--open.select2-container--above .select2-selection {
	border-color: #ced4da !important;
}

.contact-form .contact-form_item .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option {
	font-size: 1em;
}

.contact-form .contact-form_item .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected, .contact-form .contact-form_item .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true] {
	color: var(--bs-white);
	background-color: rgb(var(--primary-color));
}

.contact-form .contact-form_item .contact-form_item--input::placeholder {
	opacity: .75;
}

.contact-form .was-validated .contact-form_item .contact-form_item--select:valid {
	border-color: #ced4da;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.contact-form .was-validated .contact-form_item .contact-form_item--input:valid {
	border-color: #ced4da;
	background-image: none;
	padding-right: 15px;
}

.contact-form .contact-form_item .contact-form_item--input[type=file]::file-selector-button {
	border: none !important;
	margin-left: -8px;
}

.contact-form .was-validated .contact-form_item select.contact-form_item--input:valid {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.contact-form .was-validated .form-check-input:valid {
	border: 1px solid rgba(0, 0, 0, .25);
}

.contact-form .was-validated .form-check-label, .contact-form .was-validated .form-check-input:valid ~ .form-check-label {
	color: rgb(var(--dark-color));
}

.contact-form .form-check-input.error {
	border-color: #D70C19 !important;
}

.contact-form .form-check-input.error ~ .form-check-label {
	color: #D70C19 !important;
}

.contact-form .form-check-input:valid:checked {
	background-color: #0d6efd !important;
	border-color: #0d6efd !important;
}

.contact-form .form-check-input.error ~ .form-check-label a {
	color: #D70C19 !important;
}

.contact-form .was-validated .form-check-label p:last-child {
	margin-bottom: 0;
}

.contact-form .was-validated .contact-form_item .contact-form_item--input[type=date]:invalid, .contact-form .was-validated .contact-form_item .contact-form_item--input[type=time]:invalid {
	background-position: right 36px top 14px;
}

.contact-form .form-checks .form-check-inline {
	margin-right: 0;
	display: flex;
}

.contact-form .form-checks .form-check-inline .form-check-input {
	height: 20px;
	width: 20px;
	margin-top: -1px;
	margin-right: 5px;
	flex-shrink: 0;
}

.contact-form .form-checks .form-check-inline .form-check-label a {
	color: rgb(var(--primary-color));
	text-decoration: underline !important;
}

.contact-form .slide-input_item {
	box-shadow: rgba(14, 63, 126, 0.02) 0 0 0 1px, rgba(42, 51, 69, 0.02) 0 1px 1px -0.5px, rgba(42, 51, 70, 0.02) 0 3px 3px -1.5px, rgba(42, 51, 70, 0.02) 0 6px 6px -3px, rgba(14, 63, 126, 0.02) 0 12px 12px -6px, rgba(14, 63, 126, 0.02) 0 24px 24px -12px !important;
	border-radius: 5px;
	padding: 45px 0 15px;
	text-align: center;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	background: var(--bs-white);
	border: 3px solid transparent;
}

.contact-form .slide-input_item .check {
	border-radius: 50%;
	height: 24px;
	width: 24px;
	border: 1px solid rgb(var(--light-off));
	font-size: 1em;
	color: var(--bs-white);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 2;
}

.contact-form .slide-input_item .check i {
	opacity: 0;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.contact-form .slide-input_item > img {
	max-width: 100%;
	height: 100px;
	width: auto;
	display: block;
	margin: 0 auto;
}

.contact-form .slide-input_item .body {
	padding: 15px 10px 0;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}

.contact-form .slide-input_item .body .title {
	font-weight: 600;
	color: rgb(var(--dark-color));
	font-size: 1.075em;
	margin-bottom: 10px;
}

.contact-form .slide-input_item .body .price {
	color: rgb(var(--secondary-color));
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
	margin-top: auto;
	font-weight: 300;
}

.contact-form .slide-input_item .body .price > span {
	font-weight: 600;
	font-size: 1.225em;
	position: relative;
	display: inline-block;
	line-height: 1.2;
}

.contact-form .slide-input_item .body .price > span > span {
	z-index: 2;
	position: relative;
	font-weight: 600;
}

.contact-form .slide-input_item.active {
	border: 1px solid rgba(var(--primary-color), .5);
}

.contact-form .slide-input_item.active .check {
	background-color: rgb(var(--primary-color));
}

.contact-form .slide-input_item.active .check i {
	opacity: 1;
}

.contact-form .slide-input_item.active .body .title {
	color: rgb(var(--primary-color));
}

.sliderCar .swiper {
	padding: 10px;
	margin: -10px;
}

@media screen and (max-width: 991px) {
	.contact-form_bg {
		padding: 16px;
	}

	.contact-form .form-checks .form-check-inline .form-check-input {
		width: 16px;
		height: 16px;
	}

	.contact-form .slide-input_item {
		padding: 12px;
	}
}

.table-theme th {
	font-weight: 600;
}

.table-theme th,
.table-theme td {
	padding: 14px 18px;
	color: rgb(var(--dark-color));
}

.table-theme:not(.table-theme_2) tr > :first-child {
	width: 40%;
}

.table-theme:not(.table-theme_2) tr > :last-child {
	width: 60%;
}

.table-theme:not(.table-theme_2) tbody tr:nth-child(even) {
	background: #f7f7f7;
}

@media screen and (max-width: 991px) {
	.table-theme {
		font-size: .925em;
	}

	.table-theme th,
	.table-theme td {
		padding: 10px 15px;
	}
}

.article-detail {
	background: var(--bs-white);
	padding: 30px;
	border-radius: 6px;
	box-shadow: rgba(14, 63, 126, 0.02) 0 0 0 1px, rgba(42, 51, 69, 0.02) 0 1px 1px -0.5px, rgba(42, 51, 70, 0.02) 0 3px 3px -1.5px, rgba(42, 51, 70, 0.02) 0 6px 6px -3px, rgba(14, 63, 126, 0.02) 0 12px 12px -6px, rgba(14, 63, 126, 0.02) 0 24px 24px -12px;
}

.article-detail .article-meta {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--bs-gray-300);
}

.article-detail .article-social > ul > li > * {
	height: 20px !important;
	line-height: 20px;
	z-index: 2;
}

.article-detail .article-inner_desc {
	margin-bottom: 15px;
}

.detail-content {
	color: #333;
	line-height: 1.6;
}

.detail-content h1, .detail-content h2, .detail-content h3, .detail-content h4, .detail-content h5, .detail-content h6 {
	margin-bottom: 10px;
	font-weight: 700;
}

.detail-content h1 b, .detail-content h1 strong, .detail-content h2 b, .detail-content h2 strong, .detail-content h3 b, .detail-content h3 strong, .detail-content h4 b, .detail-content h4 strong, .detail-content h5 b, .detail-content h5 strong, .detail-content h6 b, .detail-content h6 strong, .detail-content strong, .detail-content b {
	font-weight: 700;
}

.detail-content h1 {
	font-size: 1.6em;
}

.detail-content h2 {
	font-size: 1.525em;
}

.detail-content h3 {
	font-size: 1.45em;
}

.detail-content h4 {
	font-size: 1.375em;
}

.detail-content h5 {
	font-size: 1.3em;
}

.detail-content h6 {
	font-size: 1.225em;
}

.detail-content img {
	max-width: 100% !important;
	height: auto !important;
	margin-bottom: 15px;
}

.detail-content blockquote {
	padding: 15px 15px 15px 45px;
	border-left: 5px solid rgb(var(--primary-color));
	background: rgba(var(--primary-color), .05);
	position: relative;
}

.detail-content blockquote:before {
	position: absolute;
	content: "\f10d";
	font-family: "Font Awesome 5 Pro";
	font-size: 1.5em;
	color: rgb(var(--primary-color));
	top: 10px;
	left: 10px;
	-webkit-transform: rotateX(180deg);
	transform: rotateX(180deg);
	font-weight: 700;
	line-height: 1;
}

@media (max-width: 991px) {
	.article-detail {
		padding: 16px;
	}

	.article-detail .article-meta {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		font-size: 0.925em;
	}

	.detail-content h1 {
		font-size: 1.4em;
	}

	.detail-content h2 {
		font-size: 1.375em;
	}

	.detail-content h3 {
		font-size: 1.3em;
	}

	.detail-content h4 {
		font-size: 1.225em;
	}

	.detail-content h5 {
		font-size: 1.15em;
	}

	.detail-content h6 {
		font-size: 1.075em;
	}
}

.page-price {
	background: var(--bs-white);
	padding: 30px;
	border-radius: 6px;
	box-shadow: rgba(14, 63, 126, 0.02) 0 0 0 1px, rgba(42, 51, 69, 0.02) 0 1px 1px -0.5px, rgba(42, 51, 70, 0.02) 0 3px 3px -1.5px, rgba(42, 51, 70, 0.02) 0 6px 6px -3px, rgba(14, 63, 126, 0.02) 0 12px 12px -6px, rgba(14, 63, 126, 0.02) 0 24px 24px -12px;
}

.page-price .page-price_inner .price-heading {
	text-align: center;
	margin-bottom: 50px;
}

.page-price .page-price_inner .price-heading .price-heading_title {
	font-weight: 700;
	color: rgb(var(--dark-color));
	margin-bottom: 15px;
	font-size: 1.5em;
}

.page-price .page-price_inner .price-heading .price-heading_desc {
	font-size: 1em;
	color: rgba(var(--bs-dark-rgb), .9);
}

.page-price .page-price_inner .price-heading .price-heading_desc {
	font-size: 1em;
	color: rgba(var(--bs-dark-rgb), .9);
}

.page-price .page-price_inner .price-header .price-text {
	font-weight: 400;
	color: rgb(var(--dark-color));
	font-size: 1em;
}

.page-price .page-price_inner .price-header .price-text > span {
	font-weight: 600;
	color: rgb(var(--primary-color));
}

.page-price .page-price_inner .price-header .price-tools {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.page-price .page-price_inner .price-header .price-tools .price-tools_item .tool-dropdown {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.page-price .page-price_inner .price-header .price-tools .price-tools_item .tool-dropdown .tool-title {
	font-weight: 500;
	color: rgb(var(--dark-color));
	font-size: 1em;
	margin-right: 10px;
}

.page-price .page-price_inner .price-header .price-tools .price-tools_item .tool-dropdown .dropdown .dropdown-toggle {
	border: 1px solid #9e9e9e;
	background-color: transparent;
	font-size: 1em;
	width: 200px;
	color: rgb(var(--dark-color)) !important;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	display: flex;
	align-items: center;
	padding: 8px 12px;
	height: 44px;
}

.page-price .page-price_inner .price-header .price-tools .price-tools_item .tool-dropdown .dropdown .button-theme:after {
	border: 0;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
	font-weight: 400;
	font-family: "Font Awesome 5 Pro";
	content: "\f107";
	margin-left: .5rem;
	line-height: 0;
}

.page-price .page-price_inner .price-header .price-tools .price-tools_item .tool-dropdown .dropdown .dropdown-menu {
	-webkit-transform: translateY(-10px) !important;
	-ms-transform: translateY(-10px) !important;
	transform: translateY(-10px) !important;
	display: block;
	top: 100% !important;
	right: 0 !important;
	left: unset !important;
	padding: 10px 15px;
	background-color: var(--bs-white);
	-webkit-box-shadow: 0 10px 15px rgb(0 0 0 / 10%), 0 4px 6px rgb(0 0 0 / 5%);
	box-shadow: 0 10px 15px rgb(0 0 0 / 10%), 0 4px 6px rgb(0 0 0 / 5%);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
	width: 200px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	font-size: 1em;
	z-index: 3;
}

.page-price .page-price_inner .price-header .price-tools .price-tools_item .tool-dropdown .dropdown .dropdown-menu.show {
	-webkit-transform: translateY(5px) !important;
	-ms-transform: translateY(5px) !important;
	transform: translateY(5px) !important;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.page-price .page-price_inner .price-header .price-tools .price-tools_item .tool-dropdown .dropdown .dropdown-menu .dropdown-item {
	white-space: nowrap;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: left;
	padding: 10px 0;
	color: rgb(var(--dark-color));
	font-weight: 400;
	background-color: transparent;
	font-size: 1em;
}

.page-price .page-price_inner .price-header .price-tools .price-tools_item .tool-dropdown .dropdown .dropdown-menu .dropdown-item.active {
	color: rgb(var(--primary-color));
}

.page-price .page-price_inner .price-header .price-tools .price-tools_item .tool-dropdown .dropdown .button-theme.show:after {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.page-price .page-price_inner .price-header .price-tools .price-tools_item + .price-tools_item {
	margin-left: 15px;
}

.page-price .page-price_inner .price-header .collapse-inner {
	padding: 30px 0;
}

.page-price .page-price_inner .price-header .collapse-inner .collapse-inner_item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.page-price .page-price_inner .price-header .collapse-inner .collapse-inner_item .form-check_item {
	min-width: 100px;
}

.page-price .page-price_inner .price-header .collapse-inner .collapse-inner_item .form-check_item.collapse-inner_item__title {
	min-width: 200px;
	font-size: 1em;
}

.page-price .page-price_inner .price-header .collapse-inner .collapse-inner_item .form-check_item.collapse-inner_item__title .form-check-label b,
.page-price .page-price_inner .price-header .collapse-inner .collapse-inner_item .form-check_item.collapse-inner_item__title .form-check-label strong {
	font-weight: 500;
}

.page-price .page-price_inner .price-header .collapse-inner .collapse-inner_item .form-check-inline {
	margin-bottom: 0;
}

.page-price .page-price_inner .price-header .collapse-inner .collapse-inner_item .form-check-inline .form-check-input {
	height: 20px;
	width: 20px;
	margin-top: -1px;
	margin-right: 5px;
}

.page-price .page-price_inner .price-header .collapse-inner .collapse-inner_item .collapse-inner_item__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
}

.page-price .page-price_inner .price-header .collapse-inner .collapse-inner_item + .collapse-inner_item {
	margin-top: 15px;
}

.page-price .page-price_inner .price-body {
	margin-top: 30px;
}

.page-price .page-price_inner .price-body .price-result .price-result_inner {
	max-width: 100%;
	overflow-x: auto;
}

.page-price .page-price_inner .price-body .price-result .price-result_inner::-webkit-scrollbar {
	height: 5px;
	background-color: #d9d9d9;
}

.page-price .page-price_inner .price-body .price-result .price-result_inner::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: #bfc3c7;
}

.page-price .page-price_inner .price-body .price-result .price-result_inner .price-result_inner__header {
	margin-bottom: 20px;
}

.page-price .page-price_inner .price-body .price-result .price-result_inner .price-result_inner__header [class*=item-] {
	font-weight: 500;
	color: rgb(var(--primary-color)) !important;
	font-size: 1em;
}

.page-price .page-price_inner .price-body .price-result .section-heading {
	margin-left: -30px;
	margin-right: -30px;
	width: calc(100% + 60px);
	background: #eaebec;
	padding: 15px 30px;
}

.page-price .page-price_inner .price-body .price-result .price-result_inner .price-result_item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	color: rgb(var(--primary-color));
}

.page-price .page-price_inner .price-body .price-result .price-result_inner .price-result_item [class*=item] {
	padding: 5px 12px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	color: rgb(var(--black-off));
}

.page-price .page-price_inner .price-body .price-result .price-result_inner .price-result_item .item-image {
	width: 10%;
}

.page-price .page-price_inner .price-body .price-result .price-result_inner .price-result_item .item-name {
	-ms-flex-negative: unset;
	flex-shrink: unset;
	width: 25%;
}

.page-price .page-price_inner .price-body .price-result .price-result_inner .price-result_item .item-nhienlieu,
.page-price .page-price_inner .price-body .price-result .price-result_inner .price-result_item .item-loaihinh,
.page-price .page-price_inner .price-body .price-result .price-result_inner .price-result_item .item-socho {
	width: 11%;
}

.page-price .page-price_inner .price-body .price-result .price-result_inner .price-result_item .item-xuatxu,
.page-price .page-price_inner .price-body .price-result .price-result_inner .price-result_item .item-gia {
	width: 11%;
}

.page-price .page-price_inner .price-body .price-result .price-result_inner .price-result_item .item-link {
	width: 10%;
}

.page-price .page-price_inner .price-body .price-result .price-result_inner .price-result_inner__body .item-image img {
	max-width: 100%;
}

.page-price .page-price_inner .price-body .price-result .price-result_inner .price-result_inner__body .item-name,
.page-price .page-price_inner .price-body .price-result .price-result_inner .price-result_inner__body .item-gia {
	font-size: 1em;
	font-weight: 500;
}

.page-price .page-price_inner .price-body .price-result .price-result_inner .price-result_inner__body .price-result_item + .price-result_item {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid #e9e9e9;
}

@media (max-width: 991px) {
	.page-price {
		padding: 16px;
	}

	.page-price .page-price_inner .price-header .price-tools .price-tools_item + .price-tools_item {
		margin-left: 5px;
	}

	.page-price .page-price_inner .price-body .price-result .price-result_inner .price-result_inner__body .price-result_item [class*=item],
	.page-price .page-price_inner .price-body .price-result .price-result_inner .price-result_item [class*=item] {
		padding: 5px 10px;
		min-width: 150px;
	}

	.page-price .page-price_inner .price-body .price-result .price-result_inner .price-result_item .item-image {
		width: 120px;
	}

	.page-price .page-price_inner .price-body .price-result .price-result_inner .price-result_inner__header [class*=item-] {
		font-size: 1em;
		white-space: nowrap;
	}

	.page-price .page-price_inner .price-body .price-result .price-result_inner .price-result_inner__body .item-name,
	.page-price .page-price_inner .price-body .price-result .price-result_inner .price-result_inner__body .item-gia {
		font-size: .925em;
	}

	.page-price .page-price_inner .price-body .price-result .price-result_inner .price-result_item .item-name {
		max-width: 150px;
		min-width: 150px;
	}

	.page-price .page-price_inner .price-header .price-tools .price-tools_item .tool-dropdown .tool-title {
		display: none;
	}

	.page-price .page-price_inner .price-header .price-tools {
		margin-top: 10px;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.page-price .page-price_inner .price-header .collapse-inner .collapse-inner_item {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.page-price .page-price_inner .price-header .collapse-inner .collapse-inner_item .form-check_item.collapse-inner_item__title {
		font-size: 1em;
		width: 100%;
		margin-bottom: 10px;
	}

	.page-price .page-price_inner .price-header .price-tools .price-tools_item .tool-dropdown .dropdown .dropdown-toggle {
		width: 180px;
		font-size: 0.9em;
		padding: 6px 12px;
	}

	.page-price .page-price_inner .price-header .price-tools .price-tools_item .tool-dropdown .dropdown .dropdown-menu {
		right: unset !important;
		left: 0 !important;
		width: 180px;
	}

	.page-price .page-price_inner .price-body .price-result .section-heading {
		margin-left: -15px;
		margin-right: -15px;
		width: calc(100% + 30px);
		padding: 15px;
	}
}

@media (max-width: 575px) {
	.page-price .page-price_inner .price-body .price-result .price-result_inner .price-result_inner__body .price-result_item [class*=item],
	.page-price .page-price_inner .price-body .price-result .price-result_inner .price-result_item [class*=item] {
		padding: 5px 10px 5px 0;
		width: 50%;
		min-width: 0;
		max-width: 100%;
	}

	.page-price .page-price_inner .price-body .price-result .price-result_inner .price-result_item .item-name,
	.page-price .page-price_inner .price-body .price-result .price-result_inner .price-result_inner__body .price-result_item .item-name {
		width: 65%;
	}

	.page-price .page-price_inner .price-body .price-result .price-result_inner .price-result_item .item-gia,
	.page-price .page-price_inner .price-body .price-result .price-result_inner .price-result_inner__body .price-result_item .item-gia {
		width: 35%;
	}
}

.section-accessory .swiper {
	margin: -20px;
	padding: 20px;
}

.accessory-category {
	position: relative;
	border-radius: 12px;
}

.accessory-category:before {
	position: absolute;
	content: "";
	pointer-events: none;
	width: calc(100% + 20px);
	height: calc(100% + 20px);
	top: -10px;
	left: -10px;
	box-shadow: 3px 0 calc(10 / 1920 * 100rem) rgba(0, 0, 0, 0.25);
	transition: var(--transition-default);
	opacity: 0;
	border-radius: 12px;
	background: var(--bs-white);
}

.accessory-category .accessory-category__image {
	overflow: hidden;
	border-radius: 12px;
}

.accessory-category .card-body {
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
	padding-left: 10px;
	padding-right: 10px;
}

.accessory-category .card-body .card-title {
	font-size: 1.075em;
	font-weight: 500;
	color: rgb(var(--black-off));
	line-height: 1.4;
	--line: 2;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: var(--line);
	line-clamp: var(--line);
	-webkit-box-orient: vertical;
	margin-bottom: 0;
	transition: var(--transition-default);
}

.accessory-category:hover:before {
	opacity: 1;
}

.accessory-category:hover .accessory-category__image img {
	transform: scale(1.1);
}

.accessory-category:hover .card-body .card-title {
	color: rgb(var(--primary-color));
}

.card-accessory {
	background: var(--bs-white);
	border-radius: .4rem;
	padding: 12px !important;
	border-radius: .4rem;
	-webkit-box-shadow: 0 2px 4px rgba(97, 97, 97, 0.13), 0 4px 8px rgba(97, 97, 97, 0.13);
	box-shadow: 0 2px 4px rgba(97, 97, 97, 0.13), 0 4px 8px rgba(97, 97, 97, 0.13);
}

.accessory-category__item:nth-child(odd) {
	background-color: rgb(var(--light-gray));
}

.accessory-category__item:nth-child(odd) .card-accessory {
	-webkit-box-shadow: 0 2px 4px rgba(97, 97, 97, 0.08), 0 4px 8px rgba(97, 97, 97, 0.08);
	box-shadow: 0 2px 4px rgba(97, 97, 97, 0.08), 0 4px 8px rgba(97, 97, 97, 0.08);
}

.slider-accessory .swiper {
	padding: 8px;
	margin: -8px;
}

.card-accessory__title {
	font-size: 1.075em;
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
	color: rgb(var(--dark-color));
	line-height: 1.3;
}

.card-accessory__price {
	display: flex;
	flex-direction: column;
}

.card-accessory__price .card-accessory__price___current {
	color: rgb(var(--black-gray));
}

.card-accessory__price .card-accessory__price___current span {
	color: var(--bs-danger);
	font-size: 1.075em;
}

.card-accessory__price .card-accessory__price___old {
	color: rgb(var(--dark-color));
	opacity: .7;
	text-decoration: line-through;
}

.card-accessory__label {
	position: absolute;
	left: 5px;
	top: 5px;
	width: auto;
	z-index: 1;
	background-color: #D70C19;
	font-weight: 500;
	font-size: 0.775em;
	padding: 3px 6px;
	border-radius: 5px;
}

.card-accessory:hover .card-accessory__image img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	opacity: 0.7;
}

.card-accessory:hover .card-accessory__title,
.card-accessory__title:hover {
	color: rgb(var(--primary-color));
}

@media (max-width: 1024px) {
	.card-accessory__title {
		font-size: 1em;
	}
}

.card-accessory:hover .card-accessory__title,
.card-accessory__title:hover {
	color: rgb(var(--primary-color));
}

.card-accessory:hover .card-accessory__image img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	opacity: 0.7;
}


.page-accessory__filter > button {
	background-color: var(--bs-white);
	color: var(--dark-color);
	padding: 9px 20px;
	border-radius: 8px;
	font-weight: 400;
	user-select: none;
	cursor: pointer;
	border: 1px solid var(--bs-gray-300);
}

.page-accessory__filter > button:hover {
	background-color: var(--bs-gray-200);
}

.page-accessory__filter > button.active {
	background-color: rgb(var(--primary-color));
	color: var(--bs-white);
}

.page-accessory__filter .page-accessory__dropdown {
	position: relative;
}

.page-accessory__filter .page-accessory__dropdown .dropdown-value {
	background-color: var(--bs-white);
	color: var(--dark-color);
	padding: 8px 12px;
	font-size: 1em;
	border-radius: 6px;
	font-weight: 400;
	user-select: none;
	cursor: pointer;
	transition: var(--transition);
	border: 1px solid var(--bs-gray-300);
	width: 200px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.page-accessory__filter .page-accessory__dropdown .dropdown-value > span {
	--line: 1;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: var(--line);
	line-clamp: var(--line);
	-webkit-box-orient: vertical;
	display: block;
}

.page-accessory__filter .page-accessory__dropdown .dropdown-value:hover {
	background-color: var(--bs-gray-200);
}

.page-accessory__filter .page-accessory__dropdown.active .dropdown-value {
	background-color: rgb(var(--primary-color));
	color: var(--bs-white);
}

.page-accessory__filter .page-accessory__dropdown .dropdown-list {
	position: absolute;
	top: calc(100% + 5px);
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	left: 0;
	padding: 10px 8px;
	background-color: var(--bs-white);
	box-shadow: 0 2px 20px rgba(0, 0, 0, .25);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
	min-width: 100%;
	z-index: 5;
	border-radius: 8px;
	max-height: 370px;
	overflow-y: auto;
}

.page-accessory__filter .page-accessory__dropdown .dropdown-list::-webkit-scrollbar {
	width: 5px;
}

.page-accessory__filter .page-accessory__dropdown .dropdown-list::-webkit-scrollbar-track {
	background: #ffffff;
}

.page-accessory__filter .page-accessory__dropdown .dropdown-list::-webkit-scrollbar-thumb {
	background: #d7d7d7;
}

.page-accessory__filter .page-accessory__dropdown .dropdown-list::-webkit-scrollbar-thumb:hover {
	background: #b9b9b9;
}

.page-accessory__filter .page-accessory__dropdown.is-show .dropdown-list {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.page-accessory__filter .page-accessory__dropdown .dropdown-list > button {
	padding: 8px 15px;
	color: var(--dark-color);
	font-size: 1em;
	border-radius: 4px;
	width: 100%;
	text-align: left;
}

.page-accessory__filter .page-accessory__dropdown .dropdown-list > button.active {
	background-color: rgba(var(--primary-color), 0.05);
	color: rgb(var(--primary-color));
}

.detail-accessory .detail-accessory__price {
	font-size: 1.15em;
}

.detail-accessory .detail-accessory__price del {
	color: rgb(var(--black-gray));
	opacity: .7;
}

@media screen and (max-width: 768px) {
	.detail-accessory .detail-accessory__price {
		font-size: 1.075em;
	}

	.page-category .page-accessory__filter .page-accessory__dropdown,
	.page-category .page-accessory__filter > button {
		width: calc(50% - 0.25rem);
	}

	.page-accessory__filter .page-accessory__dropdown .dropdown-value {
		width: 100%;
	}
}

.detail-accessory .product-images #slider-avatar .product-image_item:after {
	position: absolute;
	content: "";
	display: block;
	width: 27px;
	height: 27px;
	bottom: 25px;
	right: 25px;
	background: url(../../../../public/upload/theme/zoom.png) center no-repeat;
	background-size: contain;
	-webkit-transition: all 0.35s ease-in-out;
	-o-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
	opacity: 0;
	-webkit-transform: scale(0.6);
	-ms-transform: scale(0.6);
	transform: scale(0.6);
	z-index: 2;
}

.detail-accessory .product-images #slider-avatar .product-image_item::before {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-webkit-transition: all 0.35s ease-in-out;
	-o-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
	background: rgba(var(--primary-color), 0.3);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 1;
}

.detail-accessory .product-images #slider-avatar .product-image_item:hover::before {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.detail-accessory .product-images #slider-avatar .product-image_item:hover::after {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.detail-accessory .product-images .slider-thumb .product-image_item {
	cursor: pointer;
	border: 1px solid var(--bs-gray-300);
	opacity: 0.8;
	transition: var(--transition-default);
}

.detail-accessory .product-images .swiper-slide-thumb-active .product-image_item {
	border: 1px solid rgb(var(--primary-color));
	opacity: 1;
}

.section-service__decor {
	position: absolute;
	left: 0;
	width: 50vw;
	top: 43px;
	height: auto;
	z-index: 2;
}

.service-form {
	border: 1px solid transparent;
	padding: 30px;
	border-radius: 3px;
	-webkit-box-shadow: 0 10px 45px rgba(10, 10, 10, 0.07);
	box-shadow: 0 10px 45px rgba(10, 10, 10, 0.07);
}

.service-collapse .service-collapse_item button {
	font-size: 1.225em;
	font-weight: 600;
	color: var(--dark-color);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 16px 30px 16px 0;
	border: 0;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	width: 100%;
	background: transparent;
	text-align: left;
	gap: 12px;
	position: relative;
}

.service-collapse .service-collapse_item button:after {
	font-size: 12px;
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
	position: absolute;
	right: 0;
	top: 16px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--bs-gray-300);
	font-family: "Font Awesome 5 Pro";
	content: "\f067";
	font-weight: 500;
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.service-collapse .service-collapse_item button[aria-expanded=true] {
	color: rgb(var(--primary-color));
}

.service-collapse .service-collapse_item button[aria-expanded=true]:after {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
	background: rgb(var(--primary-color));
	color: var(--bs-white);
	border: transparent;
	content: "\f068";
}

.service-collapse .service-collapse_item .service-collapse_content {
	font-size: 1em;
	line-height: 1.6;
	color: var(--dark-color);
	padding-top: 16px;
	padding-bottom: 16px;
	border-top: 1px solid #e9e9e9;
}

.service-collapse .service-collapse_item .service-collapse_content p {
	margin-bottom: 16px;
}

.service-collapse .service-collapse_item .service-collapse_content p:last-child {
	margin-bottom: 0;
}

.service-collapse .service-collapse_item + .service-collapse_item {
	border-top: 1px solid #e9e9e9;
}

@media screen and (max-width: 991px) {
	.service-form {
		padding: 24px;
	}

	.service-collapse .service-collapse_item button {
		font-size: 1.075em;
	}
}

.service-bg {
	background-attachment: fixed;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	display: block;
	position: relative;
}

.service-bg::after {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: 0;
	background: -o-linear-gradient(bottom, rgb(23 23 23 / 70%), rgb(36 35 35 / 70%));
	background: -webkit-gradient(linear, left bottom, left top, from(rgb(23 23 23 / 70%)), to(rgb(36 35 35 / 70%)));
	background: linear-gradient(0deg, rgb(23 23 23 / 70%), rgb(36 35 35 / 70%));
	width: 100%;
	height: 100%;
	z-index: 1;
}

.compare-inner .compare-inner_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
}

.compare-inner .compare-inner_list .compare-inner_list__item {
	width: calc(100% / 3);
}

.compare-inner .compare-inner_list .compare-inner_list__item .compare-inner_item__main {
	border: 1px solid #cccccc;
	background: var(--bs-white);
	padding: 15px;
	min-height: 240px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
	height: 100%;
	border-radius: 12px;
}

.compare-inner .compare-inner_list .compare-inner_list__item .compare-inner_item__main button.callPopUp {
	position: absolute;
	top: 0;
	left: 0;
	background: transparent;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border: 0;
	padding: 45px;
	color: var(--bs-black);
	font-size: 1.15em;
	font-weight: 600;
}

.compare-inner .compare-inner_list .compare-inner_list__item .compare-inner_item__main button.callPopUp > i {
	font-size: 2em;
	margin-right: 15px;
}

.compare-inner .compare-inner_list .compare-inner_list__item .compare-inner_item__main .deleteItem {
	border: 0;
	font-size: 1.5em;
	position: absolute;
	top: 8px;
	right: 8px;
	background: transparent;
	cursor: pointer;
	color: #676767;
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
	z-index: 2;
}

.compare-inner .compare-inner_list .compare-inner_list__item .compare-inner_item__main .deleteItem:hover,
.compare-inner .compare-inner_list .compare-inner_list__item .compare-inner_item__main .deleteItem:active {
	color: var(--bs-danger);
}

.compare-inner .compare-inner_list .compare-inner_list__item .compare-inner_item__main .product-card {
	z-index: 1;
	box-shadow: none !important;
}

.compare-inner .compare-inner_list .compare-inner_list__item .compare-inner_item__main .product-card .card-title {
	font-size: 1.225em;
	margin-bottom: 0;
	line-height: 1.2;
}

.compare-inner .compare-inner_list .compare-inner_list__item .compare-inner_item__main .product-card .card-price {
	font-size: 1em;
	margin-top: 4px;
	align-items: center;
}

.compare-inner .compare-inner_button .button-theme[disabled] {
	pointer-events: none;
	opacity: .5;
}

.compare-inner .compare-inner_button .button-theme span.text {
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
}

.compare-inner .compare-inner_button .button-theme span.float-contact_text__hide {
	opacity: 0;
	visibility: hidden;
	display: none;
}

.compare-inner .compare-inner_button .button-theme span i {
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
}

.compare-inner .compare-inner_button .button-theme[aria-expanded=true] .text.float-contact_text__show {
	opacity: 0;
	visibility: hidden;
	display: none;
}

.compare-inner .compare-inner_button .button-theme[aria-expanded=true] .text.float-contact_text__hide {
	opacity: 1;
	visibility: visible;
	display: block;
}

.compare-inner .compare-inner_button .button-theme[aria-expanded=true] span i {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.compare-table .table-theme thead tr th {
	min-width: 150px;
	max-width: 250px;
}

.compare-table .table-theme thead tr .column-data {
	min-width: 300px;
	max-width: 500px;
}

.popup-compare_inner .popup-compare_heading {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	font-size: 1.3em;
	font-weight: 700;
	color: #232323;
	position: relative;
	padding-right: 40px;
	margin-bottom: 20px;
}

.popup-compare_inner .popup-compare_heading .popup-compare_close {
	padding: 0;
	background: transparent;
	border: 0;
	color: #8d8d8d;
	display: flex;
	height: 30px;
	width: 30px;
	align-items: center;
	justify-content: center;
	font-size: 1.3em;
	top: -5px;
	right: -5px;
	position: absolute;
	z-index: 2;
}

.popup-compare_inner .popup-compare_heading .popup-compare_close:hover,
.popup-compare_inner .popup-compare_heading .popup-compare_close:active {
	color: var(--bs-black);
}

.preview-image .btn-readmore {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	margin-top: 15px;
	color: rgb(var(--primary-color));
	font-size: 1.1em;
	font-weight: 400
}

.preview-image .btn-readmore:hover Ã†Â¡ {
	color: var(--secondary-color);
}

@media screen and (max-width: 991px) {
	.compare-inner .compare-inner_list .compare-inner_list__item {
		width: calc(50% - 8px);
		display: none;
	}

	.compare-inner .compare-inner_list .compare-inner_list__item:nth-child(1),
	.compare-inner .compare-inner_list .compare-inner_list__item:nth-child(2) {
		display: block;
	}

	.compare-inner .compare-inner_list .compare-inner_list__item .compare-inner_item__main {
		padding: 6px;
		min-height: 200px;
	}

	.compare-inner .compare-inner_list .compare-inner_list__item .compare-inner_item__main button.callPopUp {
		padding: 15px;
		font-size: 1em;
	}

	.compare-inner .compare-inner_list .compare-inner_list__item .compare-inner_item__main button.callPopUp > i {
		margin-right: 5px;
	}

	.compare-inner .compare-inner_list .compare-inner_list__item .compare-inner_item__main .product-card {
		width: 100%;
		overflow: hidden;
	}

	.compare-inner .compare-inner_list .compare-inner_list__item .compare-inner_item__main .product-card .card-title {
		font-size: 1em;
	}

	.compare-inner .compare-inner_list .compare-inner_list__item .compare-inner_item__main .product-card .card-price > span {
		font-size: 1em;
	}

	.compare-table .table-responsive {
		border-left: 1px solid #dee2e6;
		border-top: 1px solid #dee2e6;
		max-height: 70vh;
	}

	.compare-table .table {
		margin-left: -1px;
		margin-top: -1px;
	}

	.compare-table .table thead tr > th {
		position: sticky;
		z-index: 2;
		top: -1px;
		background: var(--bs-white);
		border-bottom: 0;
	}

	.compare-table .table tr > th:first-of-type {
		z-index: 3 !important;
	}

	.compare-table .table thead tr > th::before {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 1px;
		background-color: #dee2e6;
		z-index: 3;
		pointer-events: none;
	}

	/*
	.compare-table .table tr > th:first-of-type,
	.compare-table .table tr > td.title {
		position: sticky;
		z-index: 2;
		left: -1px;
		background: var(--bs-white);
		border-right: 0;
		border-left: 0;
		width: 200px;
	}

	.compare-table .table tr > th:first-of-type::after,
	.compare-table .table tr > td.title::after {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		width: 1px;
		height: 100%;
		background-color: #dee2e6;
		z-index: 3;
		pointer-events: none;
	}

	.compare-table .table tr > th:first-of-type + th,
	.compare-table .table tr > td.title + td,
	.compare-table .table tr td:not(.title):first-of-type {
		border-left: 0;
	}*/
	.compare-table .table tbody tr:first-of-type {
		border-style: hidden;
	}

	.compare-table .table tr > .sticky-col {
		position: sticky;
		z-index: 3;
		left: -1px;
		background: var(--bs-white);
		border-right: 0;
		border-left: 0;
		width: 200px;
	}

	.compare-table .table thead tr > .sticky-col {
		z-index: 4;
	}

	.compare-table .table tr > .sticky-col::after {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		width: 1px;
		height: 100%;
		background-color: #dee2e6;
		z-index: 3;
		pointer-events: none;
	}

	/*.compare-table .table tr > th:first-of-type + th,
	.compare-table .table tr > td.title + td,
	.compare-table .table tr td:not(.title):first-of-type {
		border-left: 0;
	}*/
}

.page-product .section-colors {
	padding: 80px 0;
}

.page-product .section-colors .color-preview {
	display: flex;
	gap: 15px;
	align-items: center;
}

.page-product .section-colors .color-preview .color-preview_image {
	width: 50%;
}

.page-product .section-colors .color-preview .color-preview_content {
	width: 50%;
}

.page-product .section-colors .color-preview .color-preview_title {
	font-size: 2em;
	color: rgb(var(--primary-color));
	font-weight: 600;
}

.page-product .section-colors .color-preview .color-preview_price {
	margin-top: 16px;
	font-size: 1.15em;
	color: #41464b;
}

.page-product .section-colors .color-preview .color-preview_price > span {
	font-size: 1.3em;
	color: rgb(var(--secondary-color));
	font-weight: 500;
	position: relative;
	display: inline-block;
}

.page-product .section-colors .color-preview .color-preview_price > span > span {
	z-index: 2;
	position: relative;
	color: rgb(var(--secondary-color));
}

.page-product .section-colors .color-preview .color-preview_sub {
	margin-top: 16px;
	font-size: 1.15em;
	color: #41464b;
}

.page-product .section-colors .color-preview .color-preview_sub > span {
	font-size: 1.3em;
	color: rgb(var(--dark-color));
	font-weight: 600;
}

.page-product .section-colors .color-preview .color-preview_list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin: 10px 0 25px;
}

.page-product .section-colors .color-preview .color-preview_list .color-preview_list__item {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	width: 40px;
	background-color: var(--color);
	border-radius: 6px;
	box-shadow: rgba(0, 0, 0, 0.1) 0 5px 15px !important;
	border: 1px solid transparent;
}

.page-product .section-colors .color-preview .color-preview_list .color-preview_list__item.active {
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px !important;
	border: 3px solid var(--bs-white)
}

.page-product .section-colors .color-warning {
	margin-top: 15px;
	color: rgb(var(--black-gray));
	font-size: 1.075em;
}

.page-product .section-colors .color-warning a {
	color: rgb(var(--dark-color));
	font-weight: 500;
}

.page-product .section-colors .color-warning a:hover {
	color: rgb(var(--primary-color));
}

.page-product .section-colors .color-link {
	color: rgb(var(--primary-color));
	font-weight: 500;
	font-size: 1.075em;
}

.page-product .section-colors .color-link svg {
	fill: rgb(var(--primary-color));
	margin-right: 4px;
}

.page-product .section-colors .color-buttons {
	margin-top: 25px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.page-product .section-colors .color-buttons .button-theme {
	padding: 0 16px;
	height: 46px;
	white-space: nowrap;
}

.section-specifications .specifications-collapse {
	border: 1px solid rgba(182, 185, 199, 0.33);
	border-bottom: unset;
}

.section-specifications .specifications-collapse:last-child {
	border: 1px solid rgba(182, 185, 199, 0.33);
}

.section-specifications .specifications-collapse .specifications-collapse_btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 15px;
	background: var(--bs-white);
	color: var(--bs-black);
	font-size: 1.2em;
	font-weight: 500;
	width: 100%;
	padding: 14px 25px;
}

.section-specifications .specifications-collapse .specifications-collapse_btn[aria-expanded=true] {
	background-color: rgb(var(--primary-color));
	color: var(--bs-white);
}

.section-specifications .specifications-collapse .specifications-collapse_btn[aria-expanded=true] > i:before {
	content: "\f068";
}

.section-specifications .specifications-collapse .card-body {
	padding: 14px 25px;
}

.section-specifications .specifications-collapse .specifications-item {
	font-size: 1.075em;
	color: rgb(var(--black-gray));
}

.section-specifications .specifications-collapse .specifications-item span {
	color: rgb(var(--primary-color));
}

.section-specifications .specifications-collapse .specifications-item + .specifications-item {
	padding-top: 15px;
}

.section-specifications .specifications-collapse .card-body {
	border: 1px transparent;
	border-top: 1px solid rgba(182, 185, 199, 0.33);
	background: rgb(255, 255, 255);
}

.page-product .section-gallery {
	padding-bottom: 10px;
	padding-left: 7.5px;
	padding-right: 7.5px;
}

.page-product .section-gallery .gallery-list {
	display: grid;
	gap: 10px;
	grid-template:
			"a a b d"
			"a a c e";
}

.page-product .section-gallery .gallery-list .gallery-item:first-child {
	grid-area: a;
}

.page-product .section-gallery .gallery-list .gallery-item:nth-child(2) {
	grid-area: b;
}

.page-product .section-gallery .gallery-list .gallery-item:nth-child(3) {
	grid-area: c;
}

.page-product .section-gallery .gallery-list .gallery-item:nth-child(4) {
	grid-area: d;
}

.page-product .section-gallery .gallery-list .gallery-item:nth-child(5) {
	grid-area: e;
}

.page-product .section-gallery .gallery-list .gallery-item {
	padding: 5px;
	position: relative;
	background-color: var(--bs-white);
	border-radius: 8px;
	box-shadow: 0 4px 8px 0 rgb(48 56 70 / 20%);
}

.page-product .section-gallery .gallery-list .gallery-item .ratio > a {
	border-radius: 6px;
	overflow: hidden;
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.page-product .section-gallery .gallery-list .gallery-item .ratio > a:before {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-webkit-transition: all 0.35s ease-in-out;
	-o-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
	background: rgba(var(--primary-color), 0.3);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 1;
}

.page-product .section-gallery .gallery-list .gallery-item .ratio > a:after {
	position: absolute;
	content: "";
	display: block;
	width: 27px;
	height: 27px;
	bottom: 25px;
	right: 25px;
	background: url(../../../../public/upload/theme/zoom.png) center no-repeat;
	background-size: contain;
	-webkit-transition: all 0.35s ease-in-out;
	-o-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
	opacity: 0;
	-webkit-transform: scale(0.6);
	-ms-transform: scale(0.6);
	transform: scale(0.6);
	z-index: 2;
}

.page-product .section-gallery .gallery-list .gallery-item:hover .ratio > a::before {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.page-product .section-gallery .gallery-list .gallery-item:hover .ratio > a::after {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.page-product .section-gallery .gallery-list .gallery-item img {
	width: 100%;
	transition: var(--transition);
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	height: 100%;
	object-fit: cover;
}

.page-product .section-gallery .gallery-list .gallery-item:hover img {
	transform: scale(1.05);
}

.page-product .section-gallery .gallery-list .gallery-item:first-child .ratio {
	--bs-aspect-ratio: calc(56.25% + 20px);
}

.page-product .section-gallery .gallery-list .gallery-expand {
	position: absolute;
	bottom: 15px;
	right: 15px;
	font-size: 2.6em;
	color: var(--bs-white);
	z-index: 3;
	height: 50px;
	width: 50px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, .35);
	display: flex;
	align-items: center;
	justify-content: center;
}

.page-product .section-360 {
	position: relative;
	overflow: hidden;
}

.page-product .section-360__decor {
	position: absolute;
	left: 0;
	width: 50vw;
	top: 43px;
	height: auto;
	z-index: 2;
}

.page-product .section-360-wrap {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	overflow: hidden;
	background: var(--bs-white);
}

.page-product .section-360-wrap:before {
	display: block;
	padding-top: 56.25%;
	content: "";
}

.page-product .section-360-wrap > * {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.page-product .lds-spinner {
	color: official;
	-webkit-transition: .3s all ease;
	-o-transition: .3s all ease;
	transition: .3s all ease;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}

.page-product .lds-spinner div {
	-webkit-transform-origin: 40px 40px;
	-ms-transform-origin: 40px 40px;
	transform-origin: 40px 40px;
	-webkit-animation: lds-spinner 1.2s linear infinite;
	animation: lds-spinner 1.2s linear infinite;
}

.page-product .lds-spinner div:after {
	content: " ";
	display: block;
	position: absolute;
	top: 3px;
	left: 37px;
	width: 6px;
	height: 18px;
	border-radius: 20%;
	background: #fff;
}

.page-product .lds-spinner div:nth-child(1) {
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}

.page-product .lds-spinner div:nth-child(2) {
	-webkit-transform: rotate(30deg);
	-ms-transform: rotate(30deg);
	transform: rotate(30deg);
	-webkit-animation-delay: -1s;
	animation-delay: -1s;
}

.page-product .lds-spinner div:nth-child(3) {
	-webkit-transform: rotate(60deg);
	-ms-transform: rotate(60deg);
	transform: rotate(60deg);
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s;
}

.page-product .lds-spinner div:nth-child(4) {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s;
}

.page-product .lds-spinner div:nth-child(5) {
	-webkit-transform: rotate(120deg);
	-ms-transform: rotate(120deg);
	transform: rotate(120deg);
	-webkit-animation-delay: -0.7s;
	animation-delay: -0.7s;
}

.page-product .lds-spinner div:nth-child(6) {
	-webkit-transform: rotate(150deg);
	-ms-transform: rotate(150deg);
	transform: rotate(150deg);
	-webkit-animation-delay: -0.6s;
	animation-delay: -0.6s;
}

.page-product .lds-spinner div:nth-child(7) {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	-webkit-animation-delay: -0.5s;
	animation-delay: -0.5s;
}

.page-product .lds-spinner div:nth-child(8) {
	-webkit-transform: rotate(210deg);
	-ms-transform: rotate(210deg);
	transform: rotate(210deg);
	-webkit-animation-delay: -0.4s;
	animation-delay: -0.4s;
}

.page-product .lds-spinner div:nth-child(9) {
	-webkit-transform: rotate(240deg);
	-ms-transform: rotate(240deg);
	transform: rotate(240deg);
	-webkit-animation-delay: -0.3s;
	animation-delay: -0.3s;
}

.page-product .lds-spinner div:nth-child(10) {
	-webkit-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	transform: rotate(270deg);
	-webkit-animation-delay: -0.2s;
	animation-delay: -0.2s;
}

.page-product .lds-spinner div:nth-child(11) {
	-webkit-transform: rotate(300deg);
	-ms-transform: rotate(300deg);
	transform: rotate(300deg);
	-webkit-animation-delay: -0.1s;
	animation-delay: -0.1s;
}

.page-product .lds-spinner div:nth-child(12) {
	-webkit-transform: rotate(330deg);
	-ms-transform: rotate(330deg);
	transform: rotate(330deg);
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}

@-webkit-keyframes lds-spinner {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@keyframes lds-spinner {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

.page-product .section-360.is-done .lds-spinner {
	opacity: 0;
	visibility: hidden;
	pointer-events: auto;
}

.page-product .section-360.is-done .image-item .icon-360 {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.page-product .section-360 .image-item:hover .icon-360 {
	opacity: 0 !important;
	pointer-events: none !important;
	visibility: hidden !important;
}

.page-product .section-360 .image-item {
	position: absolute !important;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.page-product .section-360 .image-item > img {
	display: none;
}

.page-product .section-360 .image-item.is-show {
	z-index: 4;
}

.page-product .section-360 .image-item > [id*=_] {
	position: absolute !important;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.page-product .section-360 .image-item > [id*=notification_] {
	display: none !important;
}

.page-product .section-360 [id*=powered-by-] {
	display: none !important;
}

.page-product .section-360 .image-item div img {
	position: absolute !important;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: 0;
	height: 100%;
	width: auto;
}

.page-product .section-360 .image-item .icon-360 {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 10;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	width: 200px;
	height: 200px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@-webkit-keyframes drag360 {
	0% {
		-webkit-transform: translateX(-5px);
		transform: translateX(-5px);
	}
	50% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
	}
	100% {
		-webkit-transform: translateX(5px);
		transform: translateX(5px);
	}
}

@keyframes drag360 {
	0% {
		-webkit-transform: translateX(-5px);
		transform: translateX(-5px);
	}
	50% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
	}
	100% {
		-webkit-transform: translateX(5px);
		transform: translateX(5px);
	}
}

.page-product .section-360 .image-item .icon-360 img {
	height: auto;
	max-width: 100%;
	text-align: center;
	-webkit-animation: drag360 0.7s linear forwards alternate infinite;
	animation: drag360 0.7s linear forwards alternate infinite;
	position: static !important;
	-webkit-transition: .3s all ease;
	-o-transition: .3s all ease;
	transition: .3s all ease;
	display: block !important;
}

.page-product .parts-item {
	width: calc(33.333333% - 20px);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.page-product .parts-item.parts-hidden {
	opacity: 0;
	visibility: visible;
	pointer-events: none;
	height: 0;
}

.page-product .parts-wrapper.partsBoxExpand .parts-item.parts-hidden {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	height: var(--height);
}

.page-product .parts-item .parts-title {
	font-size: 1.3em;
	font-weight: 500;
	color: var(--dark-color);
}

.page-product .parts-item .parts-desc {
	margin-top: 15px;
	line-height: 1.7;
	color: var(--bs-gray-700);
	max-height: var(--init-max-height);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
	overflow: hidden;
}

.page-product .parts-item.is-expanded .parts-desc {
	max-height: var(--real-height);
}

.page-product .parts-item .parts-desc > p, .page-product .parts-item .parts-desc > ul, .page-product .parts-item .parts-desc > ol {
	margin-bottom: 18px;
}

.page-product .parts-item .parts-desc > p:last-child, .page-product .parts-item .parts-desc > ul:last-child, .page-product .parts-item .parts-desc > ol:last-child {
	margin-bottom: 0;
}

.page-product .parts-item .parts-button {
	position: absolute;
	bottom: -25px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.page-product .parts-item.parts-hidden_content.parts-hidden {
	padding-bottom: 0;
}

.partsBoxExpand .page-product .parts-item.parts-hidden_content.parts-hidden {
	padding-bottom: 30px;
}

.page-product .parts-item .parts-button button {
	width: 32px;
	height: 32px;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: var(--bs-black);
	font-size: 1.15em;
	background: transparent;
	outline: none;
	border: none;
	transition: var(--transition-default);
}

.page-product .parts-item .parts-button button:hover {
	color: rgb(var(--secondary-color));
}

.page-product .parts-item.is-expanded .parts-button button {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.page-product .button-call {
	margin-top: 10px;
}

.page-product .button-call .button-theme {
	background: #d01818;
	border-color: #d01818;
	height: auto;
	padding: 12px 45px 10px;
	color: var(--bs-white) !important;
}

.page-product .button-call .button-theme:before {
	background: #c21414;
	border-color: #c21414;
}

.page-product .button-call .button-theme > span {
	display: flex;
	text-align: left;
	font-size: 1.15em;
}

.page-product .button-call .button-theme > span > i {
	font-size: 2em;
	margin-right: 8px;
	flex-shrink: 0;
}

@media (max-width: 991px) {
	.page-product .section-colors {
		padding: 30px 0;
	}

	.page-product .section-colors .color-preview {
		flex-direction: column;
	}

	.page-product .section-colors .color-preview .color-preview_image {
		margin: 0 auto 30px;
		width: 100%;
	}

	.page-product .section-colors .color-preview .color-preview_content {
		width: 100%;
	}

	.page-product .section-colors .color-preview .color-preview_title {
		font-size: 1.45em;
		line-height: 1.3;
	}

	.page-product .section-colors .color-preview .color-preview_price {
		font-size: 1.075em;
		margin-top: 8px;
	}

	.page-product .section-colors .color-preview .color-preview_sub {
		font-size: 1.075em;
		margin-top: 8px;
	}

	.page-product .section-colors .color-preview .color-preview_list {
		margin-top: 8px;
		margin-bottom: 8px;
	}

	.page-product .section-colors .color-preview .color-preview_list .color-preview_list__item {
		width: 30px;
		height: 30px;
	}

	.page-product .section-colors .color-warning {
		font-size: 0.925em;
	}

	.page-product .section-colors .color-buttons {
		flex-wrap: wrap;
	}

	.page-product .section-colors .color-buttons .button-theme {
		width: calc(50% - 4px);
	}

	.page-product .section-specifications .specifications-collapse .specifications-collapse_btn {
		font-size: 1.075em;
	}

	.section-specifications .specifications-collapse .specifications-item {
		font-size: 1em;
	}

	.page-product .section-360 .image-item .icon-360 {
		width: 100px;
		height: 100px;
	}

	.page-product .section-gallery .gallery-list {
		gap: 5px;
	}

	.page-product .section-gallery .gallery-list .gallery-item {
		padding: 3px;
	}

	.page-product .section-gallery .gallery-list .gallery-item:first-child .ratio {
		--bs-aspect-ratio: calc(56.25% + 10px);
	}

	.page-product .parts-list {
		gap: 15px;
	}

	.page-product .parts-item .parts-title {
		font-size: 1.15em;
		line-height: 1.25;
	}

	.page-product .parts-item .parts-desc {
		margin-top: 8px;
	}

	.page-product .parts-item .parts-button {
		bottom: -15px;
	}

	.page-product .button-call .button-theme > span {
		font-size: 1em;
	}
}

@media screen and (max-width: 768px) {
	.page-product .parts-item {
		width: calc(50% - 7.5px);
	}
}

.float-cta {
	position: fixed;
	bottom: 100px;
	right: 5px;
	border-radius: 100px;
	-webkit-box-shadow: -1px 1px 3px 0 rgb(40 40 48 / 20%);
	box-shadow: -1px 1px 3px 0 rgb(40 40 48 / 20%);
	z-index: 13;
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
}

.float-cta.is-show {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.float-cta .float-cta_item {
	position: relative;
	display: block;
	width: 57px;
	height: 57px;
	line-height: 57px;
	background-color: #eff0f0;
	color: var(--bs-dark);
	margin-top: -1px;
}

.float-cta .float-cta_item:not(:first-child) {
	border-top: 1px solid #e3e3e3;
}

.float-cta .float-cta_item:first-child {
	border-radius: 100px 100px 0 0;
	padding-top: 8px;
}

.float-cta .float-cta_item:last-child {
	border-radius: 0 0 100px 100px;
	padding-bottom: 8px;
}

.float-cta .float-cta_item .float-cta_item__icon {
	font-size: 1.3em;
	padding: 0 5px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all .6s cubic-bezier(.785, .135, .15, .86);
	-o-transition: all .6s cubic-bezier(.785, .135, .15, .86);
	transition: all .6s cubic-bezier(.785, .135, .15, .86);
	margin: auto;
	position: relative;
	top: 8.5px;
}

.float-cta .float-cta_item .float-cta_item__content {
	right: -45px;
	opacity: 0;
	z-index: -1;
	position: absolute;
	width: auto;
	top: calc(50% - 15px);
	bottom: auto;
	-webkit-transition: all .6s cubic-bezier(.785, .135, .15, .86);
	-o-transition: all .6s cubic-bezier(.785, .135, .15, .86);
	transition: all .6s cubic-bezier(.785, .135, .15, .86);
	pointer-events: none;
}

.float-cta .float-cta_item .float-cta_item__content .float-cta_item__content___inner {
	background: rgb(var(--primary-color));
	color: var(--bs-white);
	margin-right: 10px;
	display: block;
	border-radius: 100px;
	padding: 4px 20px;
	white-space: nowrap;
	line-height: 27px;
	height: 32px;
	font-size: .9rem;
	-webkit-transition: all .6s cubic-bezier(.785, .135, .15, .86);
	-o-transition: all .6s cubic-bezier(.785, .135, .15, .86);
	transition: all .6s cubic-bezier(.785, .135, .15, .86);
}

.float-cta .float-cta_item .float-cta_item__content .float-cta_item__content___inner:hover {
	background: rgb(var(--primary-color));
}

.float-cta .float-cta_item:first-child .float-cta_item__content {
	top: calc(50% - 10px);
}

.float-cta .float-cta_item:last-child .float-cta_item__content {
	top: calc(50% - 18px);
}

.float-cta .float-cta_item:hover .float-cta_item__icon {
	background: rgb(var(--primary-color));
	color: var(--bs-white);
}

.float-cta .float-cta_item:hover .float-cta_item__content {
	right: 57px;
	opacity: 1;
	z-index: 1;
	pointer-events: auto;
}

.float-cta.is-show .float-cta_item .float-cta_item__content,
.float-cta .float-cta_item:hover .float-cta_item__content {
	right: 57px;
	opacity: 1;
	z-index: 1;
	pointer-events: auto;
}

.float-return_top {
	position: fixed;
	z-index: -1;
	bottom: 40px;
	right: 11px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	-webkit-transition: var(--transition-default);
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
}

.float-return_top .btn {
	color: var(--dark-color);
	width: 45px;
	height: 45px;
	background-color: #eff0f0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	cursor: pointer;
	font-size: 1rem;
	border-radius: 50%;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.float-return_top .btn:hover {
	background-color: rgb(var(--primary-color));
	color: var(--bs-white);
}

.float-return_top.is-show {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 12;
}

@media (max-width: 768px) {
	.float-cta {
		top: unset;
		right: unset;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		bottom: 0;
		left: 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		width: 100%;
		background-color: #eff0f0;
		border-radius: 0 !important;
		border-top: 2px solid rgb(var(--primary-color));
		-webkit-box-shadow: 5px -3px 3px 0 rgb(40 40 48 / 20%);
		box-shadow: 5px -3px 3px 0 rgb(40 40 48 / 20%);
	}

	.float-cta .float-cta_item {
		border-radius: 0 !important;
		margin: 0 !important;
		padding: 5px 0 !important;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		width: 100%;
		height: auto !important;
		line-height: 1;
		-webkit-transition: var(--transition-default);
		-o-transition: var(--transition-default);
		transition: var(--transition-default);
	}

	.float-cta .float-cta_item + .float-cta_item:before {
		position: absolute;
		content: "";
		height: 100%;
		width: 1px;
		background: #dddfdf;
		opacity: .8;
		left: 0;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.float-cta .float-cta_item .float-cta_item__icon {
		position: relative;
		top: unset;
		width: 30px;
		height: 30px;
		font-size: 1.1rem;
		margin: 0;
		background: transparent !important;
	}

	.float-cta .float-cta_item .float-cta_item__content {
		position: static;
		opacity: 1;
		pointer-events: auto;
		z-index: 1;
	}

	.float-cta .float-cta_item .float-cta_item__content .float-cta_item__content___inner {
		color: var(--dark-color) !important;
		font-size: .7rem;
		padding: 0;
		margin: 0;
		height: auto;
		line-height: 1;
		background: transparent !important;
	}

	.float-cta .float-cta_item:hover,
	.float-cta .float-cta_item:active {
		background: rgb(var(--primary-color));
	}

	.float-cta .float-cta_item:active .float-cta_item__content .float-cta_item__content___inner,
	.float-cta .float-cta_item:hover .float-cta_item__content .float-cta_item__content___inner,
	.float-cta .float-cta_item:active .float-cta_item__icon,
	.float-cta .float-cta_item:hover .float-cta_item__icon {
		color: var(--bs-white) !important;
	}

	.float-return_top {
		bottom: 60px;
		right: 10px;
		top: unset;
		-webkit-transform: unset;
		-ms-transform: unset;
		transform: unset;
	}

	.float-return_top .btn {
		height: 35px;
		width: 35px;
		font-size: .9rem;
	}
}

.float-contact {
	position: fixed;
	bottom: 30px;
	left: 15px;
	z-index: 99;
}

.float-contact .float-contact_button {
	border-radius: 50%;
	width: 55px;
	height: 55px;
	background: rgb(var(--secondary-color));
	color: #fff;
	font-size: 1.6em;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s all ease-in-out;
}

.float-contact.is-show .float-contact_button i:before {
	content: "\f00d";
}

.float-contact .float-contact_list {
	position: absolute;
	bottom: 70px;
	left: 38px;
	transition: 0.3s all ease-in-out;
	display: flex;
	flex-direction: column;
	gap: 15px;
	opacity: 0;
	transform: scale(0);
	transform-origin: 50% bottom;
}

.float-contact.is-show .float-contact_list {
	opacity: 1;
	transform: scale(1);
}

.float-contact .float-contact_item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	height: 50px;
	border-radius: 5px;
	background: rgb(var(--primary-color));
	color: var(--bs-white);
	padding: 0;
}

.float-contact .float-contact_item .float-contact_icon {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background: rgb(var(--primary-color));
	position: absolute;
	top: 50%;
	left: -37.5px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	padding: 15px;
	z-index: 2;
}

.float-contact .float-contact_item .float-contact_icon:before {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-name: hover-ripple-out;
	animation-name: hover-ripple-out;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-radius: 50%;
	content: '';
	display: block;
	position: absolute;
	background: rgb(var(--primary-color));
	opacity: 0.8;
	width: 100%;
	height: 100%;
}

.float-contact .float-contact_item .float-contact_icon .float-contact_icon__inner {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background: rgb(var(--primary-color));
	border: 2px solid var(--bs-white);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
	font-size: 1.45em;
	color: var(--bs-white);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	z-index: 2;
}

.float-contact .float-contact_item .float-contact_icon .float-contact_icon__inner i {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-name: zoom-icon;
	animation-name: zoom-icon;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}

.float-contact .float-contact_item .float-contact_text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	text-align: left;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	bottom: auto;
	-webkit-transition: all .4s cubic-bezier(.785, .135, .15, .86);
	-o-transition: all .4s cubic-bezier(.785, .135, .15, .86);
	transition: all .4s cubic-bezier(.785, .135, .15, .86);
	left: -75px;
	opacity: 0;
	z-index: -1;
	padding: 8px 15px 5px 25px;
	background: rgb(var(--primary-color));
	color: var(--bs-white);
	border-radius: 0 5px 5px 0;
	line-height: 1.2;
	white-space: nowrap;
	width: 155px;
}

.float-contact .float-contact_item:hover .float-contact_text {
	left: 0;
	opacity: 1;
	z-index: 1;
}

.float-contact .float-contact_item .float-contact_text .float-contact_text__title {
	font-size: .825em;
	color: var(--bs-white);
}

.float-contact .float-contact_item .float-contact_text .float-contact_text__number {
	font-size: 1em;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.float-contact a.float-contact_item:nth-of-type(odd),
.float-contact a.float-contact_item:nth-of-type(odd) .float-contact_icon,
.float-contact a.float-contact_item:nth-of-type(odd) .float-contact_icon:before,
.float-contact a.float-contact_item:nth-of-type(odd) .float-contact_icon .float-contact_icon__inner,
.float-contact a.float-contact_item:nth-of-type(odd) .float-contact_text {
	background: rgb(var(--secondary-color));
}

@-webkit-keyframes hover-ripple-out {
	50% {
		width: calc(100% + 15px);
		height: calc(100% + 15px);
		opacity: 0;
	}
}

@keyframes hover-ripple-out {
	50% {
		width: calc(100% + 15px);
		height: calc(100% + 15px);
		opacity: 0;
	}
}

@-webkit-keyframes zoom-icon {
	100% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
}

@keyframes zoom-icon {
	100% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
}

@media screen and (max-width: 767px) {
	.float-contact {
		left: 10px;
		bottom: 60px;
	}

	.float-contact .float-contact_button {
		width: 50px;
		height: 50px;
		font-size: 1.225em;
	}

	.float-contact .float-contact_item .float-contact_icon,
	.float-contact .float-contact_item .float-contact_icon .float-contact_icon__inner {
		width: 50px;
		height: 50px;
	}

	.float-contact .float-contact_list {
		bottom: 60px;
		gap: 10px;
	}

	.float-contact .float-contact_item .float-contact_text {
		width: 140px;
		padding: 7px 10px 5px 20px;
	}
}

.popup-theme .modal-dialog .modal-content {
	border-radius: 10px;
	overflow: hidden;
	border: 0;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}

.popup-theme .modal-dialog .modal-content .modal-header {
	border-radius: 0;
	text-align: center;
	display: block;
	position: relative;
	width: 45%;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
	padding: 40px 50px 70px;
	border: 0;
}

.popup-theme .modal-dialog .modal-content .modal-header:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 60%;
	background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, #c5c5c5 100%);
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(#c5c5c5));
	background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #c5c5c5 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#000000", GradientType=0);
	z-index: -1;
}

.popup-theme .modal-dialog .modal-content .modal-header:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60%;
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000));
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#000000", GradientType=0);
	z-index: -1;
}

.popup-theme .modal-dialog .modal-content .modal-body {
	padding: 40px;
}

.popup-theme .modal-dialog .modal-content .modal-desc {
	font-size: 1em;
}

.popup-theme .modal-dialog .modal-content .modal-desc p {
	color: var(--dark-color);
	margin-bottom: 0;
	font-weight: 400;
	font-size: 1.075em;
}

.popup-theme .modal-dialog .modal-content .modal-desc .modal-desc_title {
	color: rgb(var(--primary-color));
	font-weight: 700;
	font-size: 1.5rem;
	margin-bottom: 0;
}

.popup-theme .modal-dialog .modal-content .modal-form {
	margin-top: 30px;
}

.popup-theme .modal-dialog .modal-content .button-link {
	font-size: .95em;
	color: var(--bs-gray-700);
	text-decoration: underline;
	margin-top: 15px;
}

.popup-theme .modal-dialog .modal-content .button-link:hover {
	color: rgb(var(--primary-color));
}

.popup-theme .modal-dialog .modal-close {
	padding: 0;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	font-size: 1.45em;
	border: 0;
}

@media (max-width: 992px) {
	.popup-theme .modal-dialog .modal-content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.popup-theme .modal-dialog .modal-content .modal-header {
		width: 100%;
		background-color: rgba(0, 0, 0, 0.8);
		background-blend-mode: darken;
		color: var(--bs-white);
		padding: 30px 30px 50px;
	}

	.popup-theme .modal-dialog .modal-content .modal-header .modal-icon {
		position: absolute;
		z-index: 6;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		left: 50%;
		border: 1px solid #f1f1f1;
		bottom: -30px;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
		border-radius: 50%;
		background: var(--bs-white);
		color: rgb(var(--primary-color));
		line-height: 45px;
		font-size: 1.5rem;
		height: 60px;
		width: 60px;
	}

	.popup-theme .modal-dialog .modal-content .modal-desc p {
		color: var(--bs-white);
	}

	.popup-theme .modal-dialog .modal-content .modal-desc .modal-desc_title {
		color: var(--bs-white);
		margin: 5px 0;
		font-size: 1.3em;
	}

	.popup-theme .modal-dialog .modal-content .modal-body {
		padding: 15px;
	}

	.popup-theme .modal-dialog .modal-close {
		color: var(--bs-white);
	}
}

.section-articles .swiper {
	margin: -15px 0;
	padding: 15px 0;
}

.article-card {
	overflow: hidden;
	position: relative;
	height: 100%;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
	-webkit-box-shadow: 0 2px 4px rgba(97, 97, 97, 0.18), 0 4px 8px rgba(97, 97, 97, 0.18);
	box-shadow: 0 2px 4px rgba(97, 97, 97, 0.18), 0 4px 8px rgba(97, 97, 97, 0.18);
	padding: 1rem;
	border: 0.4rem;
}

.article-card .card-header {
	width: 100%;
	position: relative;
	padding-bottom: calc(3 / 5 * 100%);
	overflow: hidden;
}

.article-card .card-header img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transition: var(--transition);
}

.article-card .card-body {
	color: var(--dark-color);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 16px 0;
}

.article-card .card-body .card-title {
	margin-bottom: 15px;
}

.article-card .card-body .card-title a {
	font-size: 1.3em;
	color: #010101;
	font-weight: 600;
	line-height: 1.3;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.article-card .card-body .card-desc {
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-line-clamp: 4;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	font-size: 1.075em;
	color: var(--dark-color);
	line-height: 20px;
	margin-top: auto;
}

.article-card .card-body p:last-child {
	margin-bottom: 0;
}

.article-card .card-body .card-meta .card-meta_inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #e9e9e9;
}

.article-card .card-body .card-meta .card-meta_inner .card-meta_post {
	font-size: 1em;
	font-weight: 500;
	color: rgba(33, 37, 41, .9);
	text-transform: uppercase;
}

.article-card .card-body .card-meta .card-meta_inner .card-meta_link > a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: rgb(var(--primary-color));
	font-weight: 500;
	font-size: 1em;
	text-transform: uppercase;
	transition: var(--transition);
}

.article-card .card-body .card-meta .card-meta_inner .card-meta_link > a > i {
	margin-left: 7px;
	font-size: 1.15em;
}

.article-card:hover,
.article-card:active {
	-webkit-box-shadow: rgb(50 50 93 / 15%) 0 10px 15px -5px, rgb(0 0 0 / 30%) 0 8px 16px -8px;
	box-shadow: rgb(50 50 93 / 15%) 0 10px 15px -5px, rgb(0 0 0 / 30%) 0 8px 16px -8px;
	z-index: 2;
}

.article-card:hover .card-header img,
.article-card:active .card-header img {
	opacity: .9;
}

.article-card .card-body .card-title > a:hover,
.article-card .card-body .card-title > a:active {
	color: rgb(var(--primary-color));
}

.article-card .card-body .card-meta .card-meta_inner .card-meta_link > a:hover,
.article-card .card-body .card-meta .card-meta_inner .card-meta_link > a:active {
	color: rgb(var(--primary-hover));
}

@media screen and (max-width: 991px) {
	.article-card .card-body .card-title {
		margin-bottom: 10px;
	}

	.article-card .card-body {
		padding: 12px;
	}

	.article-card .card-body .card-title a {
		font-size: 1.15em;
	}

	.article-card .card-body .card-desc {
		font-size: 1em;
	}

	.article-card .card-body .card-meta {
		font-size: 0.85em;
		white-space: nowrap;
	}
}


.article-slide_item {
	border-radius: .4rem;
}

.article-slide_item .card-header {
	padding: 0;
	position: relative;
	padding-bottom: 62% !important;
	overflow: hidden;
}

.article-slide_item .card-header img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.article-slide_item .card-body .card-title {
	margin: 20px 0;
	font-size: 1.25em;
	color: var(--dark-color);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
	font-weight: 500;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;

}

.article-slide_item .card-body .card-date {
	font-size: .95em;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.article-slide_item .card-body .card-date > a {
	position: relative;
	z-index: 3;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	font-size: .8em;
	color: var(--bs-white);
	background-color: #D42600;
	padding: 5px 8px 3px;
	border-radius: 4px;
}

.article-slide_item .card-body .card-date > a:active,
.article-slide_item .card-body .card-date > a:hover {
	opacity: .9;
}

.article-slide_item .card-body .card-date,
.article-slide_item .card-body .card-text {
	color: #29292c;
}

.article-slide_item .card-body .card-text {
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-line-clamp: 4;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-height: 1.6;
}

.article-slide_item .card-body .card-link {
	margin-top: 20px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.article-slide_item .card-body .card-link i {
	font-size: 1.4em;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
	margin-left: 5px;
}

.article-slide_item:hover .card-body .card-title,
.article-slide_item:active .card-body .card-title,
.article-slide_item:hover .card-body .card-link,
.article-slide_item:active .card-body .card-link {
	color: rgb(var(--primary-color));
}

.article-slide_item:hover .card-body .card-link i,
.article-slide_item:active .card-body .card-link i {
	margin-left: 10px;
}

.article-slide_item:hover .card-header img,
.article-slide_item:active .card-header img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.article-grid_item {
	border: 0;
	-webkit-box-shadow: 0 2px 4px rgba(97, 97, 97, 0.18), 0 4px 8px rgba(97, 97, 97, 0.18);
	box-shadow: 0 2px 4px rgba(97, 97, 97, 0.18), 0 4px 8px rgba(97, 97, 97, 0.18);
}

.article-grid_item .card-body .card-text {
	-webkit-line-clamp: 3;
}

.article-item_horizontal {
	border: 0;
	-webkit-box-shadow: 0 2px 4px rgba(97, 97, 97, 0.18), 0 4px 8px rgba(97, 97, 97, 0.18);
	box-shadow: 0 2px 4px rgba(97, 97, 97, 0.18), 0 4px 8px rgba(97, 97, 97, 0.18);
	border-radius: 0.4rem;
	padding: .75rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	height: calc(100% / 3 - 10px);
}

.article-item_horizontal .card-header {
	position: relative;
	min-height: 130px;
	width: 165px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	overflow: hidden;
}

.article-item_horizontal .card-header img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.article-item_horizontal .card-body {
	padding-top: 5px;
	padding-bottom: 5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
}

.article-item_horizontal .card-body .card-title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.article-item_horizontal .card-body .card-title span {
	font-size: 1.25em;
	color: var(--dark-color);
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
	font-weight: 500;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.article-item_horizontal .card-body .card-category {
	position: relative;
	top: 0;
	right: -5px;
	margin-left: auto;
}

.article-item_horizontal .card-body .card-category > a {
	position: relative;
	z-index: 3;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	font-size: .8em;
	color: var(--bs-white);
	background-color: #D42600;
	padding: 5px 8px 3px;
	border-radius: 4px;
	white-space: nowrap;
}

.article-item_horizontal .card-body .card-category > a:active,
.article-item_horizontal .card-body .card-category > a:hover {
	opacity: .9;
}

.article-item_horizontal .card-body .card-date {
	font-size: .95em;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	color: #29292c;
}

.article-item_horizontal .card-body .card-link {
	margin-top: 20px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
}

.article-item_horizontal .card-body .card-link i {
	font-size: 1.4em;
	-webkit-transition: var(--transition);
	-o-transition: var(--transition);
	transition: var(--transition);
	margin-left: 5px;
}

.article-item_horizontal + .article-item_horizontal {
	margin-top: 15px;
}

.article-item_horizontal:hover .card-body .card-title,
.article-item_horizontal:active .card-body .card-title,
.article-item_horizontal:hover .card-body .card-link,
.article-item_horizontal:active .card-body .card-link {
	color: rgb(var(--primary-color));
}

.article-item_horizontal:hover .card-body .card-link i,
.article-item_horizontal:active .card-body .card-link i {
	margin-left: 10px;
}

.article-item_horizontal:hover .card-header img,
.article-item_horizontal:active .card-header img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

@media screen and (max-width: 991px) {
	.article-slide_item .card-body .card-date {
		font-size: .9em;
	}

	.article-slide_item .card-body .card-title {
		font-size: 1.1em;
		margin: 10px 0;
	}

	.article-slide_item .card-body .card-text,
	.article-slide_item .card-body .card-link {
		font-size: .95em;
	}

	.article-item_horizontal .card-body .card-title span {
		font-size: 1.1em;
	}
}

@media screen and (max-width: 768px) {
	.article-item_horizontal .card-header {
		width: 120px;
		min-height: 100px;
	}

	.article-item_horizontal .card-body {
		padding-right: 0;
	}

	.article-item_horizontal .card-body .card-title {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	.article-item_horizontal .card-body .card-category {
		top: unset;
		right: unset;
		margin-left: 0;
		margin-top: 5px;
	}

	.article-item_horizontal .card-body .card-title span {
		font-size: 1em;
	}

	.article-slide_item .card-body .card-title {
		font-size: 1em;
	}
}

.review-card {
	padding: 24px 30px 30px 48px;
	background-color: #f7f8f9;
	border-radius: 12px;
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.review-card:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--bs-white);
	-webkit-clip-path: polygon(0 10%, 0% 100%, 90% 100%);
	clip-path: polygon(0 10%, 0% 100%, 90% 100%);
	border-radius: 0 0 0 12px;
}

.review-card .review-card_content {
	position: relative;
	border-radius: 24px;
	padding: 30px 24px 16px;
	background-color: #ecedf7;
	z-index: 2;
}

.review-card .review-card_content__header {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	white-space: nowrap;
	width: 100%;
	padding: 0 24px;
}

.review-card .review-card_content__name {
	background-color: rgb(var(--primary-color));
	color: #fff;
	font-size: 14px;
	border-radius: 8px;
	padding: 6px 12px;
	font-weight: 600;
}

.review-card .review-card_content__star {
	background-color: #f7f3f0;
	font-size: 12px;
	border-radius: 50px;
	padding: 6px 12px;
	color: #ffa832;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2px;
}

.review-card .review-card_content__sub {
	font-size: 15px;
	color: rgb(var(--primary-color));
	font-weight: 700;
	margin-bottom: 6px;
}

.review-card .review-card_content__desc {
	font-size: 14px;
	color: #121212;
	line-height: 1.5;
	padding-left: 24px;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-line-clamp: 5;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.review-card .review-card_content__image {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	position: absolute;
	bottom: 30px;
	left: -40px;
}

.review-card .review-card_content__image > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (max-width: 768px) {
	.review-card {
		padding: 18px 24px 24px 36px;
	}

	.review-card .review-card_content {
		padding: 20px 18px 12px;
	}

	.review-card .review-card_content__header {
		padding: 0 12px;
	}

	.review-card .review-card_content__name {
		padding: 4px 8px;
		font-size: 13px;
	}

	.review-card .review-card_content__sub {
		font-size: 14px;
	}

	.review-card .review-card_content__desc {
		padding-left: 20px;
	}

	.review-card .review-card_content__image {
		width: 60px;
		height: 60px;
		left: -30px;
	}
}

.card-gallery:hover {
	cursor: -webkit-zoom-out;
	cursor: zoom-out;
}

.card-gallery:hover img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.card-gallery::after {
	position: absolute;
	content: "";
	display: block;
	width: 27px;
	height: 27px;
	bottom: 25px;
	right: 25px;
	background: url('../../../../public/upload/theme/zoom.png') center no-repeat;
	background-size: contain;
	-webkit-transition: all 0.35s ease-in-out;
	-o-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
	opacity: 0;
	-webkit-transform: scale(0.8);
	-ms-transform: scale(0.8);
	transform: scale(0.8);
}

.card-gallery:hover::after {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}
