.faq-section-tpl1 {
	/* LEFT */
	/* ACTIVE */
	/* RIGHT */
	/* RESPONSIVE */
}

.faq-section-tpl1 .faq-section {
	padding: 80px 20px;
}

.faq-section-tpl1 .faq-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	gap: 40px;
	align-items: center;
}

.faq-section-tpl1 .faq-section {
    background: var(--faq_background_color);
}
.faq-section-tpl1 .faq-left {
	width: 50%;
}

.faq-section-tpl1 .faq-title {
	font-size: 32px;
	margin-bottom: 30px;
	font-weight: 700;
}

.faq-section-tpl1 .faq-item {
	border-bottom: 1px solid #ddd;
	padding: 15px 0;
	cursor: pointer;
}

.faq-section-tpl1 .faq-question {
	font-size: 16px;
	font-weight: 600;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-section-tpl1 .faq-question span {
	font-size: 20px;
	transition: 0.3s;
}

.faq-section-tpl1 .faq-answer {
	font-size: 14px;
	color: #555;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-section-tpl1 .faq-item.active .faq-answer {
	max-height: 200px;
	margin-top: 10px;
}

.faq-section-tpl1 .faq-item.active .faq-question span {
	transform: rotate(45deg);
}

.faq-section-tpl1 .faq-right {
	width: 50%;
}

.faq-section-tpl1 .faq-right img {
	width: 100%;
	border-radius: 12px;
	object-fit: cover;
}

@media (max-width: 991px) {
	.faq-section-tpl1 .faq-container {
		flex-direction: column;
	}

	.faq-section-tpl1 .faq-left,
	.faq-section-tpl1 .faq-right {
		width: 100%;
	}

	.faq-section-tpl1 .faq-title {
		font-size: 26px;
	}
}





















































/* faq v3  */
.section-tpl3-vertion .faq-template-2 .left-col .section-heading h2 {
	font-size: 21px;
	padding-left: 20px;
	border-left: 4px solid var(--bv-secondary);
}

.section-tpl3-vertion .faq-template-2 .left-col .section-heading h2 b {
	font-size: 48px;
	color: var(--bv-secondary);
}

.section-tpl3-vertion {
	/* Answer body */
	/* Support badge bubble */
	background: var(--faq_background_color);
}

.section-tpl3-vertion .faq-template-2 {
	padding: 30px 0;
}

.section-tpl3-vertion .faq-template-2 .inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
}

.section-tpl3-vertion .faq-template-2 .left-col .badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 1.5px solid #e0e0e0;
	border-radius: 100px;
	padding: 6px 16px 6px 10px;
	width: fit-content;
	margin-bottom: 18px;
}

.section-tpl3-vertion .faq-template-2 .left-col .badge svg {
	width: 16px;
	height: 16px;
}

.section-tpl3-vertion .faq-template-2 .left-col .badge span {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #111;
}

.section-tpl3-vertion .faq-template-2 .left-col .section-heading {
	font-size: 44px;
	font-weight: 800;
	color: #111;
	line-height: 1.1;
	margin-bottom: 36px;
}

.section-tpl3-vertion .faq-template-2 .left-col .faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.section-tpl3-vertion .faq-template-2 .faq-list .faq-item {
	border: 1.5px solid #e8e8e8;
	border-radius: 14px;
	overflow: hidden;
	transition: border-color 0.22s, box-shadow 0.22s;
}

.section-tpl3-vertion .faq-template-2 .faq-list .faq-item.active {
	border-color: var(--bv-secondary);
	box-shadow: none;
}

.section-tpl3-vertion .faq-template-2 .faq-list .faq-item .item-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 24px;
	cursor: pointer;
	user-select: none;
	background: #fff;
	transition: background 0.22s;
}

.section-tpl3-vertion .faq-template-2 .faq-list .faq-item.active .item-trigger {
	background: var(--bv-secondary);
}

.section-tpl3-vertion .faq-template-2 .faq-list .faq-item .item-trigger .q-text {
	font-size: 16px;
	font-weight: 600;
	color: #111;
	line-height: 1.4;
	transition: color 0.22s;
}

.section-tpl3-vertion .faq-template-2 .faq-list .faq-item.active .item-trigger .q-text {
	color: #fff;
}

.section-tpl3-vertion .faq-template-2 .faq-list .faq-item .item-trigger .chevron {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.32s ease;
}

.section-tpl3-vertion .faq-template-2 .faq-list .faq-item.active .item-trigger .chevron {
	transform: rotate(180deg);
}

.section-tpl3-vertion .faq-template-2 .faq-list .faq-item .item-trigger .chevron svg {
	width: 16px;
	height: 16px;
	stroke: #111;
	fill: none;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: stroke 0.22s;
}

.section-tpl3-vertion .faq-template-2 .faq-list .faq-item.active .item-trigger .chevron svg {
	stroke: #fff;
}

.section-tpl3-vertion .faq-template-2 .faq-list .faq-item .item-body {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease;
	padding: 0 24px;
	background: #fff;
}

.section-tpl3-vertion .faq-template-2 .faq-list .faq-item.active .item-body {
	max-height: 300px;
	opacity: 1;
	padding: 10px 15px 10px;
}

.section-tpl3-vertion .faq-template-2 .faq-list .faq-item .item-body p {
	font-size: 14px;
	color: #555;
	line-height: 1.75;
}

.section-tpl3-vertion .faq-template-2 .right-col {
	position: relative;
}

.section-tpl3-vertion .faq-template-2 .right-col .main-photo {
	width: 100%;
	aspect-ratio: 0.9523809524;
	border-radius: 20px;
	overflow: hidden;
	display: block;
}

.section-tpl3-vertion .faq-template-2 .right-col .main-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.section-tpl3-vertion .faq-template-2 .right-col .support-badge {
	position: absolute;
	top: 80px;
	left: -36px;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background: var(--bv-secondary);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 12px;
	box-shadow: 0 8px 28px rgba(211, 47, 47, 0.38);
}

.section-tpl3-vertion .faq-template-2 .right-col .support-badge svg {
	width: 40px;
	height: 40px;
	stroke: #fff;
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.section-tpl3-vertion .faq-template-2 .right-col .support-badge p {
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	line-height: 1.3;
}

@media (max-width: 992px) {
	.section-tpl3-vertion .faq-template-2 .inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.section-tpl3-vertion .faq-template-2 .right-col .support-badge {
		display: none;
	}

	.section-tpl3-vertion .faq-template-2 .left-col .section-heading {
		font-size: 32px;
	}
}


















































/* faq v4  */

.faq-tpl4-section .section-header .header-label {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.faq-tpl4-section .section-header h2 {
	font-size: 30px;
	font-weight: 700;
	color: var(--bv-primary);
}

.faq-tpl4-section .faq-wrap {
	padding: 45px 0;
	background: var(--faq_background_color);
}

.faq-tpl4-section .faq-wrap .title-page-des {
	font-size: 17px;
}

.faq-tpl4-section .faq-wrap .inner {
	display: grid;
	grid-template-columns: 2fr 1.3fr;
	gap: 36px;
}

.faq-tpl4-section .faq-wrap .title-page-des {
	margin: 20px 0;
}

.faq-tpl4-section .faq-wrap .accordion-item {
	background: #f5f0e8;
	border-radius: 12px;
	margin-bottom: 10px;
	transition: box-shadow 0.2s;
}

.faq-tpl4-section .faq-wrap .title-page-des h2 {
	font-size: 24px;
	line-height: 1.1;
	padding-left: 20px;
	border-left: 3px solid var(--bv-primary);
}

.faq-tpl4-section .faq-wrap .title-page-des h2 b {
	font-size: 54px;
}

.faq-tpl4-section .faq-wrap .inner .desc {
	padding-bottom: 12px;
	font-size: 17px;
}

.faq-tpl4-section .faq-wrap .accordion-item.open {
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
}

.faq-tpl4-section .faq-wrap .accordion-item .acc-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 20px;
	cursor: pointer;
	user-select: none;
	gap: 12px;
}

.faq-tpl4-section .faq-wrap .accordion-item .acc-header span {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
}

.faq-tpl4-section .faq-wrap .accordion-item .acc-header .chevron {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	stroke: #1a1208;
	fill: none;
	transition: transform 0.3s;
}

.faq-tpl4-section .faq-wrap .accordion-item.open .acc-header .chevron {
	transform: rotate(180deg);
	stroke: #d49c45;
}

.faq-tpl4-section .faq-wrap .accordion-item .acc-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease, padding 0.25s;
	padding: 0 22px;
}

.faq-tpl4-section .faq-wrap .accordion-item.open .acc-body {
	max-height: 500px;
	padding: 0 22px 20px;
}

.faq-tpl4-section .faq-wrap .accordion-item .acc-body p {
	font-size: 14px;
	color: #555;
	line-height: 1.7;
}

.faq-tpl4-section .faq-wrap .mid-col {
	position: relative;
}

.faq-tpl4-section .faq-wrap .mid-col .photo-wrap {
	border-radius: 20px;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 0.7281553398;
}

.faq-tpl4-section .faq-wrap .mid-col .photo-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.faq-tpl4-section .faq-wrap .mid-col .qmark-badge {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 65px;
	height: 65px;
	border-radius: 0px 16px 0px 40px;
	background: #fff;
	display: flex;
	align-items: start;
	justify-content: end;
	z-index: 2;
}

.faq-tpl4-section .faq-wrap .mid-col .qmark-badge-mid {
	background-color: #e79c16;
	color: #fff;
	font-size: 20px;
	padding: 13px;
	border-radius: 50%;
	display: flex;
	position: relative;
	z-index: 2;
}

.faq-tpl4-section .faq-wrap .mid-col .qmark-badge-top {
	width: 40px;
	height: 25px;
	position: absolute;
	left: -40px;
	top: 0px;
	border-radius: 0px 20px 0px 0px;
	box-shadow: 20px 0px 0px 0px #fff;
}

.faq-tpl4-section .faq-wrap .mid-col .qmark-badge-bot {
	width: 25px;
	height: 40px;
	position: absolute;
	right: 0px;
	bottom: -40px;
	border-radius: 0px 20px 0px 0px;
	box-shadow: 0px -20px 0px 0px #fff;
}

.faq-tpl4-section .faq-wrap .mid-col .qmark-badge svg {
	width: 26px;
	height: 26px;
	stroke: #fff;
	fill: none;
}

.faq-tpl4-section .faq-wrap .right-col {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.faq-tpl4-section .faq-wrap .right-col .stat-card {
	padding: 30px 15px;
	background-color: #fff;
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	/* gap: 14px;
	 */
	text-align: center;
}

.faq-tpl4-section .faq-wrap .right-col .stat-card .ring-wrap {
	position: relative;
	width: 120px;
	height: 120px;
}

.faq-tpl4-section .faq-wrap .right-col .stat-card .ring-wrap svg {
	width: 120px;
	height: 120px;
	transform: rotate(-90deg);
}

.faq-tpl4-section .faq-wrap .right-col .stat-card .ring-wrap .ring-bg {
	fill: none;
	stroke: #e8dece;
	stroke-width: 11;
}

.faq-tpl4-section .faq-wrap .stat-card .ring-wrap .ring-fill {
	fill: none;
	stroke: #e79c16;
	stroke-width: 11;
	stroke-linecap: round;
	stroke-dasharray: 220;
	stroke-dashoffset: 30;
	/* 90% = 10% gap Ã¢â€ â€™ 0.1 * 220 = 22 */
	transition: stroke-dashoffset 1s ease;
}

.faq-tpl4-section .faq-wrap .stat-card .ring-wrap .ring-label {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 700;
}

.faq-tpl4-section .faq-wrap .right-col .stat-card h3 {
	font-size: 16px;
	font-weight: 700;
	margin-top: 10px;
}

.faq-tpl4-section .faq-wrap .right-col .stat-card p {
	font-size: 13px;
	color: #888;
	margin-top: 5px;
}

@media (max-width: 992px) {
	.faq-tpl4-section .faq-wrap .inner {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.faq-tpl4-section .faq-wrap .right-col {
		flex-direction: row;
		gap: 15px;
		margin-top: 10px;
	}
}

@media (max-width: 575px) {
	.faq-tpl4-section .faq-wrap {
		padding: 20px 0 30px;
	}
}















































/* faq v5  */

.faq-tpl5-section .faq-template-8 {
	background: var(--faq_background_color);
	padding: 25px 0 25px;
	overflow: hidden;
	position: relative;
}

.faq-tpl5-section .faq-template-8 .faq-header {
	text-align: center;
	margin-bottom: 20px;
	padding: 0 40px;
	position: relative;
	z-index: 9;
}

.faq-tpl5-section .ctnr {
	width: 1100px;
	padding: 30px;
	background: #fff;
	border-radius: 16px;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}

.faq-tpl5-section .ctnr:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: url(https://images.bivaco.com/img/CHEAP_WEBSITE_TEST/img_faq_index_1772782629.webp);
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
	filter: blur(8px);
}

.faq-tpl5-section .ctnr:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: #00000059;
	z-index: 2;
	top: 0;
	left: 0;
	right: 0;
}

.faq-tpl5-section .faq-template-8 .faq-header .sub-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 12px;
	display: block;
}

.faq-tpl5-section .faq-template-8 .faq-header h2 {
	font-size: 37px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.15;
	letter-spacing: -0.01em;
}

.faq-tpl5-section .faq-template-8 .faq-body {
	align-items: end;
	position: relative;
	z-index: 9;
}

.faq-tpl5-section .faq-template-8 .faq-body .illus-left {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 0;
	height: 380px;
	position: relative;
}

.faq-tpl5-section .faq-template-8 .faq-body .illus-right {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 0;
	height: 380px;
	position: relative;
}

.faq-tpl5-section .faq-template-8 .faq-body .illus-left img,
.faq-tpl5-section .faq-template-8 .faq-body .illus-right img {
	width: 220px;
	height: auto;
	display: block;
	object-fit: contain;
}

.faq-tpl5-section .faq-template-8 .faq-body .faq-center {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 0 20px 15px;
}

.faq-tpl5-section .faq-template-8 .faq-body .faq-center .faq-item {
	border-bottom: 1px solid #ddd;
	overflow: hidden;
	padding: 0px 16px;
	background: #ffffffc9;
	border-radius: 10px;
	padding: 0px 16px;
	margin-bottom: 10px;
}

.faq-tpl5-section .faq-template-8 .faq-body .faq-center .faq-item:first-child {
	border-top: 1px solid #ddd;
	background: #ffffffc9;
	border-radius: 10px;
	padding: 0px 16px;
}

.faq-tpl5-section .faq-template-8 .faq-body .faq-center .faq-item .item-trigger {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px 0;
	cursor: pointer;
	user-select: none;
}

.faq-tpl5-section .faq-template-8 .faq-body .faq-center .faq-item .item-trigger .plus-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-top: 2px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.faq-tpl5-section .faq-template-8 .faq-body .faq-center .faq-item .item-trigger .plus-icon::before,
.faq-tpl5-section .faq-template-8 .faq-body .faq-center .faq-item .item-trigger .plus-icon::after {
	content: '';
	position: absolute;
	background: #333;
	border-radius: 1px;
	transition: transform 0.3s ease, opacity 0.22s ease, background 0.22s;
}

.faq-tpl5-section .faq-template-8 .faq-body .faq-center .faq-item .item-trigger .plus-icon::before {
	width: 14px;
	height: 2px;
}

.faq-tpl5-section .faq-template-8 .faq-body .faq-center .faq-item .item-trigger .plus-icon::after {
	width: 2px;
	height: 14px;
}

.faq-tpl5-section .faq-template-8 .faq-body .faq-center .faq-item.active .item-trigger .plus-icon::before {
	background: var(--bv-header-top-bg);
}

.faq-tpl5-section .faq-template-8 .faq-body .faq-center .faq-item.active .item-trigger .plus-icon::after {
	opacity: 0;
	transform: rotate(90deg);
	background: var(--bv-header-top-bg);
}

.faq-tpl5-section .faq-template-8 .faq-body .faq-center .faq-item .item-trigger .q-text {
	font-size: 16px;
	font-weight: 500;
	color: #222;
	line-height: 1.55;
	transition: color 0.22s;
	flex: 1;
}

.faq-tpl5-section .faq-template-8 .faq-body .faq-center .faq-item.active .item-trigger .q-text {
	color: var(--bv-header-top-bg);
	font-weight: 600;
}

.faq-tpl5-section .faq-template-8 .faq-body .faq-center .faq-item .item-body {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	padding: 0 0 0 36px;
	transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease;
}

.faq-tpl5-section .faq-template-8 .faq-body .faq-center .faq-item.active .item-body {
	max-height: 260px;
	opacity: 1;
	padding: 0 0 20px 36px;
}

.faq-tpl5-section .faq-template-8 .faq-body .faq-center .faq-item .item-body p {
	font-size: 14px;
	color: #555;
	line-height: 1.8;
}

@media (max-width: 900px) {
	.faq-tpl5-section .faq-template-8 .faq-body {
		grid-template-columns: 1fr;
	}

	.faq-tpl5-section .faq-template-8 .faq-body .illus-left,
	.faq-tpl5-section .faq-template-8 .faq-body .illus-right {
		display: none;
	}

	.faq-tpl5-section .faq-template-8 .faq-header h2 {
		font-size: 30px;
	}
}













































/* faq v6  */
.faq-tpl6-section {
    background: var(--faq_background_color);
}
.faq-tpl6-section .faq-template-7 {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 64px;
	align-items: start;
}

.faq-tpl6-section .faq-template-7 .faq-left {
	display: flex;
	flex-direction: column;
}

.faq-tpl6-section .faq-template-7 .faq-left .heading-wrap {
	margin-bottom: 28px;
}

.faq-tpl6-section .faq-template-7 .faq-left .heading-wrap .accent-line {
	width: 32px;
	height: 3px;
	background: var(--bv-primary);
	border-radius: 2px;
	margin-bottom: 14px;
}

.faq-tpl6-section .faq-template-7 .faq-left .heading-wrap h2 {
	font-size: 34px;
	font-weight: 800;
	color: #111;
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.faq-tpl6-section .faq-template-7 .faq-left .faq-list {
	display: flex;
	flex-direction: column;
}

.faq-tpl6-section .faq-template-7 .faq-left .faq-list .faq-item {
	border-bottom: 1px solid #e4e4e4;
}

.faq-tpl6-section .faq-template-7 .faq-left .faq-list .faq-item:first-child {
	border-top: 1px solid #e4e4e4;
}

.faq-tpl6-section .faq-template-7 .faq-left .faq-list .faq-item .item-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 0;
	cursor: pointer;
	user-select: none;
}

.faq-tpl6-section .faq-template-7 .faq-left .faq-list .faq-item .item-trigger .q-text {
	font-size: 18px;
	font-weight: 500;
	color: #333;
	line-height: 1.5;
	transition: color 0.22s;
}

.faq-tpl6-section .faq-template-7 .faq-left .faq-list .faq-item.active .item-trigger .q-text {
	color: var(--bv-primary);
	font-weight: 600;
}

.faq-tpl6-section .faq-template-7 .faq-left .faq-list .faq-item .item-trigger .icon-wrap {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.faq-tpl6-section .faq-template-7 .faq-left .faq-list .faq-item .item-trigger .icon-wrap::before,
.faq-tpl6-section .faq-template-7 .faq-left .faq-list .faq-item .item-trigger .icon-wrap::after {
	content: '';
	position: absolute;
	background: #aaa;
	border-radius: 1px;
	transition: transform 0.3s ease, opacity 0.22s ease, background 0.22s;
}

.faq-tpl6-section .faq-template-7 .faq-left .faq-list .faq-item .item-trigger .icon-wrap::before {
	width: 14px;
	height: 2px;
}

.faq-tpl6-section .faq-template-7 .faq-left .faq-list .faq-item .item-trigger .icon-wrap::after {
	width: 2px;
	height: 14px;
}

.faq-tpl6-section .faq-template-7 .faq-left .faq-list .faq-item.active .item-trigger .icon-wrap::before {
	background: var(--bv-primary);
}

.faq-tpl6-section .faq-template-7 .faq-left .faq-list .faq-item.active .item-trigger .icon-wrap::after {
	opacity: 0;
	transform: rotate(90deg);
	background: var(--bv-primary);
}

.faq-tpl6-section .faq-template-7 .faq-left .faq-list .faq-item .item-body {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	padding: 0 0 0 14px;
	transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease;
}

.faq-tpl6-section .faq-template-7 .faq-left .faq-list .faq-item.active .item-body {
	max-height: 360px;
	opacity: 1;
	padding: 4px 0 20px 14px;
}

.faq-tpl6-section .faq-template-7 .faq-left .faq-list .faq-item .item-body p {
	font-size: 16px;
	color: #555;
	line-height: 1.8;
	margin-bottom: 4px;
}

.faq-tpl6-section .faq-template-7 .faq-left .faq-list .faq-item .item-body p:last-child {
	margin-bottom: 0;
}

.faq-tpl6-section .faq-template-7 .faq-right {
	background: var(--bv-secondary);
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	padding: 25px 18px 25px;
	position: sticky;
	top: 101px;
}

.faq-tpl6-section .faq-template-7 .faq-right .form-title {
	font-size: 19px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 20px;
	text-align: center;
	text-transform: uppercase;
}

.faq-tpl6-section .faq-template-7 .faq-right .contact-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq-tpl6-section .faq-template-7 .faq-right .contact-form input,
.faq-tpl6-section .faq-template-7 .faq-right .contact-form textarea {
	width: 100%;
	border: 1px solid #d5d5d5;
	border-radius: 6px;
	padding: 10px 16px;
	font-size: 14px;
	color: #333;
	transition: border-color 0.22s, box-shadow 0.22s;
	background: #ffffff3d;
	margin-bottom: 5px;
}

.faq-tpl6-section .faq-template-7 .faq-right .contact-form input::placeholder,
.faq-tpl6-section .faq-template-7 .faq-right .contact-form textarea::placeholder {
	color: #bbb;
}

.faq-tpl6-section .faq-template-7 .faq-right .contact-form input:focus,
.faq-tpl6-section .faq-template-7 .faq-right .contact-form textarea:focus {
	border-color: var(--bv-primary);
	box-shadow: 0 0 0 3px rgba(58, 181, 176, 0.12);
}

.faq-tpl6-section .faq-template-7 .faq-right .contact-form textarea {
	height: 100px;
	resize: vertical;
}

.faq-tpl6-section .faq-template-7 .faq-right .contact-form .btn-submit {
	width: 100%;
	background: #f6fffe;
	color: var(--bv-secondary);
	border: none;
	border-radius: 6px;
	padding: 15px;

	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.22s, transform 0.18s;
	margin-top: 4px;
}

.faq-tpl6-section .faq-template-7 .faq-right .contact-form .btn-submit:hover {
	background: var(--bv-primary);
	transform: translateY(-1px);
	color: #fff;
}

@media (max-width: 860px) {
	.faq-tpl6-section .faq-template-7 {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.faq-tpl6-section .faq-template-7 .faq-right {
		position: static;
	}

	.faq-tpl6-section .faq-template-7 .faq-left .heading-wrap h2 {
		font-size: 26px;
	}
}