#section-faq .flex-container {
	flex-direction: column;
}

.faq {
	margin-bottom: 0.5rem;
	border-left: 0.2rem solid var(--primary-color);
	width: 100%;
	border-radius: 2rem;
	opacity: 0.8;
}

.faq-button {
	position: relative;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 1.1rem;
	border: 0.1rem solid rgba(0, 0, 0, 0.125);
	text-transform: uppercase;
	font-size: 1.3rem;
	font-weight: 200;
	transition: all 0.2s ease;
	background-color: var(--secondary-color);
	color: var(--light-color);
}

.faq-button i {
	font-size: 2rem;
	padding: 1rem;
	color: var(--primary-color);
}

.faq-content {
	display: none;
	overflow: auto;
	padding: 0 1.5rem;
	background-color: var(--light-gray-color);
}

.faq-button p {
	font-size: 1.3rem;
	text-align: left;
}

.faq-button.active + .faq-content {
	display: block;
	transition: 0.2s;
}

.faq-button.active {
	color: var(--light-color);
	background-color: var(--secondary-color);
}

.faq-button.active .open {
	display: none;
}

.faq-button .close {
	display: none;
}

.faq-button.active .close {
	display: block;
	color: var(--light-color);
}
