/*# sourceMappingURL=block-faq.css.map */

.faq {
	padding: 90px 95px 90px 95px;
	background-color: var(--primaryColor);
}

@media (max-width: 1279px) {
	.faq {
		padding: 70px 40px 80px 40px;
	}
}

@media (max-width: 767px) {
	.faq {
		padding: 40px 20px 60px 20px;
	}
}

.faq__inner {
	max-width: 1250px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 45px;
}

@media (max-width: 767px) {
	.faq__inner {
		gap: 10px;
	}
}

.faq__left {
	flex: 1 1 calc(100% - 737px);
}

@media (max-width: 767px) {
	.faq__left {
		flex: 1 1 100%;
		margin-bottom: 10px;
	}
}

.faq__left .tagline {
	margin-bottom: 30px;
	background: none;
	border: none;
	color: var(--tertiaryColor);
	font-family: "Manrope", sans-serif;
	font-size: 13px;
	font-size: .8125rem;
	font-style: normal;
	font-weight: 700;
	line-height: 22px;
	line-height: 1.375rem;
	letter-spacing: 6px;
}

.faq__left .title {
	margin-bottom: 50px;
	color: #fff;
	font-family: "Manrope", sans-serif;
	font-size: 65px;
	font-size: 4.0625rem;
	font-style: normal;
	font-weight: 700;
	line-height: 75px;
	line-height: 4.6875rem;
	letter-spacing: -1px;
}

@media (max-width: 767px) {
	.faq__left .title {
		font-size: 40px;
		line-height: 55px;
		margin-bottom: 30px;
	}
}

.faq__left .btn:hover {
	background-color: var(--secondaryColor);
}

.faq__right {
	flex: 1 0 692px;
}

@media (max-width: 767px) {
	.faq__right {
		flex: 1 1 100%;
	}
}

.faq__right .item {
	max-width: 100%;
	padding: 20px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.faq__right .item:first-child {
	padding-top: 0;
}

@media (max-width: 768px) {
	.faq__right .item[open] {
		padding-bottom: 0px;
	}
}

.faq__right .item[open] .question .vertical-line {
	display: none;
}

.faq__right .item[open] .answer {
	display: block;
	width: calc(100% - 80px);
}

@media (max-width: 768px) {
	.faq__right .item[open] .answer {
		width: 100%;
	}
}

.faq__right .item[open] .answer p, .faq__right .item[open] .answer li, .faq__right .item[open] .answer a {
	color: #fff;
	margin-bottom: 25px;
	font-family: "Manrope", sans-serif;
	font-size: 16px;
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
	line-height: 1.875rem;
	transition: .3s ease;
}

@media (max-width: 767px) {
	.faq__right .item[open] .answer p, .faq__right .item[open] .answer li, .faq__right .item[open] .answer a {
		font-size: 16px;
	}
}

.faq__right .item[open] .answer li {
	margin-bottom: 15px;
	margin-left: 20px;
}

.faq__right .item[open] .answer a {
	text-decoration: underline;
}

.faq__right .item .question {
	width: 100%;
	padding: 15px 0;
	position: relative;
	color: #fff;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq__right .item .question::marker {
	content: none;
}

.faq__right .item .question::-webkit-details-marker {
	display: none;
}

.faq__right .item .question .title {
	margin-right: 95px;
	margin-bottom: 0;
	font-family: "Manrope", sans-serif;
	font-size: 27px;
	font-size: 1.6875rem;
	font-style: normal;
	font-weight: 700;
	line-height: 37px;
	line-height: 2.3125rem;
}

@media (max-width: 767px) {
	.faq__right .item .question .title {
		margin-right: 20px;
	}
}

.faq__right .item .question svg {
	flex: 0 0 60px;
}

@media (max-width: 767px) {
	.faq__right .item .question svg {
		flex: 0 0 40px;
	}
}

.faq__right .item .question svg rect {
	fill: var(--tertiaryColor);
}

.faq__right .item .question svg path {
	stroke: #fff;
}

.faq__right .item .answer {
	display: none;
}
