@charset "UTF-8";
.faq {
		overflow: hidden;
		padding: calc(var(--header) + clamp(30px, 8.125rem, 130px)) var(--side-padding) var(--vert-padding) var(--side-padding);
}
.faq .image {
		position: relative;
		aspect-ratio: 1/1;
}
.faq .image img, .faq .image video {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
}
.faq .title {
		font-weight: 500;
		line-height: 1;
		font-size: clamp(44px, 6.875rem, 110px);
		margin: -0.06em 0 -0.18em 0;
}
.faq-thumbs {
		width: auto !important;
		overflow: visible !important;
		margin: clamp(40px, 5rem, 80px) -5px 0 -5px !important;
}
.faq-thumbs .swiper-slide {
		padding: 0 5px;
		width: auto;
}
.faq-thumbs .btn {
		height: clamp(59px, 4.375rem, 70px);
		padding: 0 clamp(20px, 1.5625rem, 25px);
		font-size: clamp(16px, 1.3125rem, 21px);
}
.faq-thumbs .swiper-slide-thumb-active .btn {
		background-color: var(--white);
		color: var(--black);
}
.faq-main {
		margin-top: clamp(60px, 5rem, 80px) !important;
}
.faq-main .swiper-slide {
		width: 100%;
		height: auto !important;
}
.faq .h2 {
		display: none;
}
.faq-el {
		border-style: solid;
		border-width: 1px 0;
		border-color: #1C1C1C;
		--height: 0;
}
.faq-el:not(:last-child) {
		margin-bottom: -1px;
}
.faq-el-title {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		margin: 0;
		padding: clamp(25px, 1.875rem, 30px) 0;
		cursor: pointer;
		user-select: none;
		font-weight: 500;
		line-height: 1.199;
		font-size: clamp(18px, 1.5rem, 24px);
}
.faq-el-title .btn {
		flex: 0 0 auto;
		padding: 0;
		width: clamp(40px, 3.5rem, 56px);
		height: clamp(40px, 3.5rem, 56px);
}
.faq-el.open .faq-el-title .btn {
		background-color: var(--white);
		color: var(--black);
}
.faq-el.open .faq-el-title .btn:before {
		background-color: var(--dark);
}
@media (pointer:fine) {
		.faq-el.open .faq-el-title .btn:hover {
				color: var(--white);
		}
}
.faq-el-title .btn svg {
		height: 35%;
		width: auto;
		backface-visibility: hidden;
		transition-property: fill, transform;
		transform: rotate(0deg);
}
.faq-el.open .faq-el-title .btn svg {
		transform: rotate(-180deg);
}
.faq-el .text {
		font-weight: normal;
		line-height: 1.5;
		font-size: clamp(16px, 1.125rem, 18px);
		overflow: hidden;
		backface-visibility: hidden;
		transition-property: height, opacity;
		transition-duration: 0.4s;
		transition-timing-function: ease;
		height: 0;
		opacity: 0;
}
.faq-el.open .text {
		height: var(--height);
		opacity: 1;
}
.faq-el .text > * {
		padding-bottom: clamp(30px, 2.5rem, 40px);
}
.faq-el .text > * > *:first-child {
		margin-top: 0 !important;
}
.faq-el .text > * > *:last-child {
		margin-bottom: 0 !important;
}
@media only screen and (max-width: 999.99px) {
		.faq .title {
				text-align: center;
		}
		.faq .image {
				width: 100vw;
				max-width: 500px;
				left: 50%;
				transform: translate3d(-50%, 0, 0);
				margin-bottom: clamp(30px, 8.125rem, 130px);
		}
		.faq-thumbs .swiper-slide:nth-child(1) {
				margin-left: auto;
		}
		.faq-thumbs .swiper-slide:nth-last-child(1) {
				margin-right: auto;
		}
}
@media only screen and (min-width: 1000px) {
		.faq {
				display: flex;
				align-items: flex-start;
				justify-content: space-between;
		}
		.faq .image {
				flex: 0 0 auto;
				width: 44.444444%;
		}
		.faq .wrap {
				flex: 0 0 auto;
				width: 50%;
		}
}