.single #content {
	margin-top: 0;
}
.product-sections section {
	padding: 90px 0;
}

.product-sections section:first-child {
	padding-top: 100px;
}

.product-sections section:last-child {
	padding-bottom: 0;
}

.sec-label {
	text-transform: capitalize;
}

.product-h3 {
	font-size: 35px;
	line-height: normal;
	margin-bottom: 40px;
	font-weight: 400;
}

.product-sections .tbl-section .tbl-wrapper {
	margin-bottom: -4px;
	margin-top: 0;
}

.product-sections .db-section .db-blocks-grid {
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
	max-width: 605px;
}

.product-sections .db-section .db-image-ratio img {
	object-fit: contain;
}

.product-sections .db-section .db-slider-col {
	max-width: 47.44%;
	margin-bottom: 80px;
}

.product-sections .db-section .db-info-col {
	max-width: 52.56%;
}

.product-sections .db-card-title {
	margin-bottom: 30px;
	font-family: var(--font-heading);
}

.db-section .sec-header {
	margin-bottom: 80px;
}

.product-accordion .product-accordion-content {
	overflow: hidden;
	max-height: 0;
	-webkit-transition: max-height 0.4s ease;
	-o-transition: max-height 0.4s ease;
	transition: max-height 0.4s ease;
}

.product-sections .db-section .db-body-wrapper {
	gap: 44px;
}

.db-card-title h3 {
	margin-bottom: 20px;
}

.product-sections .db-section .db-card-subtitle {
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 24px;
	margin-top: -10px;
	font-weight: 400;
}

.product-accordion-item {
	padding: 20px 30px;
	background-color: #FBFBFB;
	margin-bottom: 20px;
	border-radius: 10px;
}

.product-accordion-item:last-child {
	margin-bottom: 0;
}

.product-sections .db-section .db-card {
	background: none;
	padding: 0;
}

.product-accordion-title {
	color: #000000;
	cursor: pointer;
  position: relative;
}

.product-accordion-item.is-open .product-accordion-title {
	color: var(--color-link-hover);
}

.product-accordion-title::after {
  content:"";
  display: block;
  position: absolute;
  width: 16px;
  height: 9px;
  background-image: url(../images/arrow-down.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 10px;
  right: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.product-accordion-item.is-open .product-accordion-title::after {
  -webkit-transform: rotate(180deg);-ms-transform: rotate(180deg);transform: rotate(180deg);
}

.product-sections .db-section .db-feat-group {
	margin-bottom: 0;
	margin-top: 30px;
}

#content .product-sections .db-section .db-feat-group:last-child .db-feat-list {
	margin-bottom: 0;
}

.product-sections .db-section .db-feat-group:last-child li:last-child {
	margin-bottom: 0;
}

.product-item:not(:last-child) {
	margin-bottom: 130px;
}

.product-sections .db-section .db-swiper .swiper-button-next, .product-sections .db-section .db-swiper .swiper-button-prev {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.product-sections .db-section .db-swiper .swiper-button-next.swiper-button-lock, .product-sections .db-section .db-swiper .swiper-button-prev.swiper-button-lock {
	display: none;
}

.product-sections .db-section .check-icon {
	position: relative;
	width: 14px;
	height: 14px;
	margin-right: 8px;
}

.product-sections .db-section .check-icon::before {
	content:"";
	display: block;
	width: 14px;
	height: 14px;
	background-image: url(../images/list-marker.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top left;
	position: absolute;
	top: 0;
	left: 0;
}

/* =========================
   Layout: Key Points
   Left cards + Right CTA box
========================= */
.kp-grid {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 21px 1fr;
	grid-template-columns: 1fr 1fr;
	gap: 21px;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

.kp-cards {
	display: -ms-grid;
	display: grid;
	gap: 10px;
}

.kp-card {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 64px 40px 1fr;
	grid-template-columns: 64px 1fr;
	gap: 48px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 30px 50px;
	border-radius: 10px;
	background: #F8F9FA;
}

.kp-ico {
	width: 69px;
	height: 66px;
	display: -ms-grid;
	display: grid;
	place-items: center;
}

.kp-ico-img {
	-o-object-fit: contain;
	object-fit: contain;
	display: block;
}

.kp-title {
	margin-bottom: 8px;
}

.kp-cta {
	height: 100%;
	min-height: 240px;
	border-radius: 10px;
	background: #FFDBBE;
	position: relative;
	overflow: hidden;
	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: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 20px;
	text-align: center;
}

.kp-cta::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	background-image: url(../images/productpattern.svg);
	background-position: top right;
	background-size: contain;
	background-repeat: no-repeat;
	pointer-events: none;
}

.kp-cta .button {
  position: relative;
}

.kp-cta-title {
	position: relative;
	z-index: 1;
	text-align: center;
	margin-bottom: 40px;
}

/* =========================
   Layout: Competitive Advantages
   Left list + Right image
========================= */
.adv-grid {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 21px 1fr;
	grid-template-columns: 1fr 1fr;
	gap: 21px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
}

.adv-list {
	display: -ms-grid;
	display: grid;
	gap: 55px;
	margin-top: 31px;
}

.adv-item {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 14px 14px 1fr;
	grid-template-columns: 14px 1fr;
	gap: 9px;
}

.adv-mark {
	width: 3px;
	background: var(--color-button-background);
	margin-bottom: 2px;
}

.adv-title {
	margin-bottom: 11px;
}

.adv-media {
	border-radius: 10px;
	overflow: hidden;
}

.adv-img {
	width: 100%;
	height: auto;
	display: block;
}

#content .adv-bullets {
	margin: 0;
	padding: 0;
	list-style: none;
	padding-left: 3px;
}

.adv-bullets li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 8px;
}

.adv-bullets li:last-child {
	margin-bottom: 0;
}

.adv-bullets li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: #FBAB69;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.product-sections .db-section .db-image-ratio {
	border-radius: 10px;
	overflow: hidden;
	background-color: #FBFBFB;
	padding-bottom: 98%;
}

.product-sections .db-section .db-feat-group-title {
	margin-bottom: 12px;
}

.product-accordion .kp-card {
  background: none;
  padding: 0;
  gap: 30px;
}

.product-accordion .kp-cards {
  gap: 30px;
  margin-top: 30px;
}

.product-accordion .kp-title {
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	margin-bottom: 10px;
}

.product-accordion .kp-text {
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
}

.product-accordion .kp-ico {
	width: 40px;
	height: 40px;
}

.product-accordion .kp-card {
	grid-template-columns: 40px 1fr;
}

.psec-advantages[data-type="normal"] .adv-list {
	margin-top: 46px;
	gap: 59px;
}

.psec-advantages[data-type="normal"] .adv-title {
	margin-bottom: 9px;
}

.psec-advantages[data-type="normal"] .adv-item {
	gap: 18px;
}

@media (min-width: 1366px) {
	/* .product-sections .tbl-section thead th:first-child {
		min-width: 223px;
	}

	.product-sections .tbl-section thead th:nth-child(2) {
		min-width: 357px;
	}

	.product-sections .tbl-section thead th:nth-child(3) {
		min-width: 357px;
	}

	.product-sections .tbl-section thead th:last-child {
		min-width: 383px;
	} */
	.product-sections .tbl-section thead th:first-child {
		min-width: 0;
	}

	.product-sections .tbl-section thead th:nth-child(2) {
		min-width: 0;
	}

	.product-sections .tbl-section thead th:nth-child(3) {
		min-width: 0;
	}

	.product-sections .tbl-section thead th:last-child {
		min-width: 0;
	}
}

@media (max-width: 768px) {
	.product-accordion-item .product-accordion-title {
		color: var(--color-link-hover);
	}

	.product-accordion .product-accordion-content {
		max-height: none !important;
	}

	.product-accordion-title::after {
		display: none;
	}
	/* .product-sections .tbl-section thead th:first-child {
		min-width: 223px;
	}

	.product-sections .tbl-section thead th:nth-child(2) {
		min-width: 357px;
	}

	.product-sections .tbl-section thead th:nth-child(3) {
		min-width: 357px;
	}

	.product-sections .tbl-section thead th:last-child {
		min-width: 383px;
	} */
	.product-sections .tbl-section thead th:first-child {
		min-width: 0;
	}

	.product-sections .tbl-section thead th:nth-child(2) {
		min-width: 0;
	}

	.product-sections .tbl-section thead th:nth-child(3) {
		min-width: 0;
	}

	.product-sections .tbl-section thead th:last-child {
		min-width: 0;
	}
  .kp-grid,
	.adv-grid {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}

	.kp-cta {
		min-height: 200px;
		padding: 48px 70px 49px;
	}
	.kp-card {
		border-radius: 8px;
	}

	.product-accordion-item {
		border-radius: 8px;
	}

	.product-sections .db-section .db-image-ratio {
		border-radius: 8px;
	}

	.adv-media {
		border-radius: 5px;
	}

	.product-sections section {
		padding: 40px 0;
	}

	.product-sections section:first-child {
		padding-top: 80px;
	}

	.product-h3 {
		font-size: 25px;
		margin-bottom: 28px;
	}

	.product-sections .db-section .db-slider-col {
		max-width: 100%;
		margin-bottom: 0;
	}

	.product-sections .db-section .db-info-col {
		max-width: 100%;
	}

	.product-item {
		display: none;
	}

	.product-item.is-active {
		display: block;
	}

	.tab-title {
		cursor: pointer;
		opacity: 0.6;
		-webkit-transition: opacity 0.3s;
		-o-transition: opacity 0.3s;
		transition: opacity 0.3s;
	}

	.tab-title.is-active {
		opacity: 1;
		font-weight: 600;
	}

	.product-sections .db-section .db-card {
		display: block;
	}

	.tab-title {
		font-size: 14px;
		line-height: normal;
		font-weight: 600;
		position: relative;
	}

	.tab-title.is-active {
		color: var(--color-link-hover);
	}
	.tab-title.is-active::after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		bottom: -2px;
		height: 1px;
		background: var(--color-link-hover);
		width: var(--u-w, 100%);
	}
	.product-items-tab {
		display: flex;
		margin-bottom: 42px;
		gap: 28px;
	}
	.sec-title br {
		display: none;
	}
	.db-section .sec-header {
		margin-bottom: 40px;
	}

	.product-sections .db-section .db-body-wrapper {
		gap: 79px;
	}

	.product-sections .db-card-title {
		margin-bottom: 28px;
	}
	.product-sections .db-section .db-card-subtitle {
		margin-top: -12px;
	}
	.product-accordion-item {
		padding: 40px 20px;
		margin-bottom: 16px;
	}
	.product-sections .db-section .db-feat-group {
		margin-top: 28px;
	}
	.db-section .db-feat-group:last-child {
		padding-bottom: 0;
	}
	.product-sections .db-section .db-card-subtitle {
		margin-bottom: 28px;
	}
	.product-item:not(:last-child) {
		margin-bottom: 0;
	}
	.tbl-section thead th:first-child {
		min-width: 205px;
	}
	.tbl-section thead th:nth-child(3) {
		min-width: 272.69px;
	}
	.tbl-section thead th:last-child {
		min-width: 320px;
	}

	.adv-left {
		order: 1;
	}
	.adv-list {
		margin-top: 0;
		gap: 48px;
	}
	.adv-grid {
		gap: 40px;
	}
	.kp-card {
		padding: 20px;
		gap: 16px;
		-ms-grid-columns: 39px 39px 1fr;
    	grid-template-columns: 39px 1fr;
	}
	.kp-cards {
		gap: 16px;
	}
	.kp-ico {
    	width: 39px;
		height: auto;
	}
	.kp-grid {
		gap: 16px;
	}
	.kp-cta-title {
		margin-bottom: 28px;
	}
	.psec-advantages[data-type="normal"] .adv-list {
		margin-top: 0;
	}
	.psec-advantages[data-type="normal"] .adv-list {
		gap: 48px;
	}
	.psec-advantages[data-type="normal"] .adv-title {
		margin-bottom: 16px;
	}
	.psec-advantages[data-type="normal"] .adv-item {
		-ms-grid-columns: 2px 2px 1fr;
    	grid-template-columns: 2px 1fr;
	}
	.db-section .db-feat-list li {
		line-height: normal;
		margin-bottom: 16px;
	}
	.product-sections .db-section .db-feat-group-title {
		margin-bottom: 7px;
	}
	.product-accordion-title {
		font-size: 18px;
	}
	.product-accordion .kp-card {
		gap: 16px;
	}
	.product-accordion .kp-cards {
		margin-top: 28px;
		gap: 28px;
	}
	.kp-card {
		-webkit-box-align: normal;
		-ms-flex-align: normal;
		align-items: normal;
	}
	.product-accordion .kp-text {
		line-height: normal;
	}
	.product-accordion .kp-title {
		margin-bottom: 5px;
    	margin-top: -2px;
	}
	.product-accordion .kp-ico {
		width: 38px;
		height: auto;
	}
	.tbl-section thead th {
		font-size: 18px;
		line-height: normal;
	}
	.tbl-section thead th, .tbl-section tbody td {
		white-space: nowrap;
	}
	.adv-mark {
		width: 2px;
		margin-bottom: 0;
	}
	.adv-item {
		-ms-grid-columns: 2px 2px 1fr;
    	grid-template-columns: 2px 1fr;
		gap: 16px;
	}
	.adv-bullets li::before {
		width: 7px;
		height: 7px;
		top: 8px;
	}
	.adv-bullets li {
		font-size: 14px;
    	line-height: normal;
		margin-bottom: 16px;
		padding-left: 15px;
	}
	#content .adv-bullets {
		padding-left: 0px;
	}
	.adv-title {
		margin-bottom: 16px;
	}
	.kp-text {
		font-size: 14px;
		line-height: normal;
	}
	.psec-advantages[data-type="normal"] .adv-grid {
		gap: 48px;
	}
	.psec-advantages[data-type="normal"] .adv-item {
		gap: 16px;
	}
	.adv-text {
		font-size: 14px;
    	line-height: normal;
	}
}