.faqs--container {
	padding: 60px 30px;
}

.faqs--title {
	margin-bottom: 40px;
}

.faqs--list {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-left: -20px;
	margin-right: -20px;
}

.faqs--item {
	overflow: hidden;
	border-bottom: 1px solid var(--theme-lt-blue);
}

.faqs--item:last-child {
	border-bottom: none;
}

.faqs--question-wrapper{
	margin-bottom: 0;
}

.faqs--question {
	width: 100%;
	color: var(--theme-lt-blue);
	border: none;
	text-align: left;
	font-size: 1.125rem;
	font-weight: 500;
	cursor: pointer;
	position: relative;
	background-color: transparent;
	padding: 30px 20px;
}

.faqs--question:focus {
	outline: none;
}

.faqs--icon {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	transition: transform 0.3s ease;
	color: var(--theme-lt-blue);
}

.faqs--icon-horizontal {
	transition: opacity 0.15s ease;
}

.faqs--item.is-open .faqs--icon {
	transform: translateY(-50%) rotate(90deg);
}

.faqs--item.is-open .faqs--icon-horizontal {
	opacity: 0;
}

.faqs--answer {
	display: none;
}

.faqs--answer-content {
	padding: 0 20px 35px 20px;
	font-size: 0.9375rem;
	line-height: 1.6;
}

.faqs--cta-wrap {
	margin-top: 35px;
}