.fc_frequently_asked_questions {
	display: flex;
	align-items: stretch;
}
.fc_frequently_asked_questions .image-switch {
	flex-basis: 40%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.fc_frequently_asked_questions .faqs_container, .fc_frequently_asked_questions .faqs_container_nested {
	flex: 1;
}
.fc_frequently_asked_questions.with_image .faqs_container, .fc_frequently_asked_questions.with_image .faqs_container_nested {
	padding: clamp(15px, 7vw, 120px);
}
.faqs_intro > :first-child {
	margin-top: 0;
}
.fc_frequently_asked_questions.remove_padding_bottom {
	padding-bottom: 0;
}
.fc_frequently_asked_questions.remove_padding_top {
	padding-top: 0;
}
.fc_frequently_asked_questions.remove_padding_both {
	padding-top: 0;
	padding-bottom: 0;
}
.fc_frequently_asked_questions .faq_item .tab_inner, .fc_frequently_asked_questions .nested_faq .faq_item .tab_inner {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	padding: 0 20px;
	font-size: 18px;
	line-height: 25px;
	color: #202020;
	transition: max-height 300ms ease-in-out, opacity 300ms ease-in-out, padding-top .3s, padding-bottom .3s;
	box-sizing: border-box;
}
.fc_frequently_asked_questions .faq_item.active .tab_inner, .fc_frequently_asked_questions .nested_faq .faq_item.active .tab_inner {
	max-height: 600px;
	opacity: 1;
	padding: 20px;
	background: #ffffff;
	border-width: 0px 2px;
	border-style: solid;
	border-color: #45AE50;
	border-radius: 0 0 4px 4px;
	transition: max-height 300ms ease-in-out, opacity 300ms ease-in-out, padding-top .3s, padding-bottom .3s;
}
.fc_frequently_asked_questions .faqs_container_nested {
	display: flex;
	gap: 50px;
	flex-wrap: wrap;
}
.fc_frequently_asked_questions .faqs_container_nested .nested_faq {
	width: calc(50% - 27px);
}
.fc_frequently_asked_questions .faqs_container_nested .nested_faq .faq_item, .fc_frequently_asked_questions .faqs_container .faq_item {
	margin-bottom: 20px;
	cursor: pointer;
}
.fc_frequently_asked_questions .faqs_container_nested .nested_faq .faq_item:last-child, .fc_frequently_asked_questions .faqs_container .faq_item:last-child {
	margin-bottom: 0;
}
.fc_frequently_asked_questions .faqs_container_nested .nested_faq .faq_item .title, .fc_frequently_asked_questions .faqs_container .faq_item .title {
	margin: 0;
	padding: 20px;
	border-width: 0px 2px;
	border-style: solid;
	border-color: #45AE50;
	background-color: white;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 18px;
	line-height: 25px;
	font-weight: 600;
	color: #202020;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.fc_frequently_asked_questions .faqs_container_nested .nested_faq .faq_item.active .title, .fc_frequently_asked_questions .faqs_container .faq_item.active .title {
	border-radius: 4px 4px 0 0;
}
.fc_frequently_asked_questions .faqs_container_nested .nested_faq .faq_item .title::after, .fc_frequently_asked_questions .faqs_container .faq_item .title::after {
	content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='11' fill='none'%3E%3Cpath fill='%232B2D55' d='M9 10.5 0 1.7 1.3.5 9 8 16.7.5 18 1.7l-9 8.8Z'/%3E%3C/svg%3E");
	transition: all .3s ease-in-out;
}
.fc_frequently_asked_questions .faqs_container_nested .nested_faq .faq_item.active .title::after, .fc_frequently_asked_questions .faqs_container .faq_item.active .title::after {
	transform: rotate(180deg);
	transition: all .3s ease-in-out;
	content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='11' fill='none'%3E%3Cpath fill='%2345AE50' d='M9 10.5 0 1.7 1.3.5 9 8 16.7.5 18 1.7l-9 8.8Z'/%3E%3C/svg%3E");
}

@media (max-width: 1240px) {
	.fc_frequently_asked_questions .faqs_container_nested {
		gap: 40px;
	}
	.fc_frequently_asked_questions .faqs_container_nested .nested_faq {
		width: calc(50% - 25px);
	}
}
@media (max-width:1024px) {
	.fc_frequently_asked_questions {
		flex-direction: column;
	}
	.fc_frequently_asked_questions .image-switch {
		width: 100%;
		min-height: 60vw;
	}
	.fc_frequently_asked_questions .faqs_container_nested {
		gap: 30px;
	}
	.fc_frequently_asked_questions .faqs_container_nested .nested_faq {
		width: 100%;
	}
}
@media (max-width:640px) {
	.fc_frequently_asked_questions .faqs_container_nested {
		gap: 20px;
	}
}
