/* 

COLORS

blue-1000: #040439
blue-600: #1A63FF
blue-300: #98B9F7
blue-100: #DAE7FF
slate: #4F4F6D
red: #E31E24

 */

.faq-section {
	position: relative;
	background-color: var(--blue-1000);
	z-index: 1
}

.faq-section.animated-background-image.transparent::before {
	background-position: center;
	background-repeat: no-repeat;
}

.faq-section .header .title {
	color: white;
}

.faq-section .cards {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-section .card {
	width: 100%;
	display: flex;
	flex-direction: column;
	border-radius: 20px;
}

.faq-section .card .collapsible-content {
	height: 0;
	overflow: hidden;
	will-change: margin-top, height;
	transition: margin-top 200ms ease-out, height 200ms ease-out;
}

.faq-section .card .collapsible-content .title {
	font-size: 14px;
}

.faq-section .card .text {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.faq-section .card .text .title {
	font-size: 16px;
}

@media (min-width: 768px) {
	.faq-section .card .text .title {
		font-size: 20px;
	}

	.faq-section .card .collapsible-content .title {
		font-size: 16px;
	}
}

@media (min-width: 1440px) {
	.faq-section .card {
		padding: 40px 30px;
	}

	.faq-section .card .text .title {
		font-size: 24px;
	}

	.faq-section .card .collapsible-content .title {
		font-size: 20px;
	}
}
