.faq {
	display: flex;
	flex-direction: column;
	row-gap: 20px;
	background: var(--accentslight);
	border-radius: 10px;

	margin-bottom: 40px;
	
}
.faq .question {
	font-weight: normal;
	cursor: pointer;
	user-select: none;
	display: flex;
	justify-content: flex-start;
}
.faq .question:before {
	content: "+";
	margin-right: 20px;
	color: var(--accents);
	width: 30px;
	height: 30px;
	background: var(--main);
	border-radius: 20px;
	margin-right: 20px;
	transform: translateY(4px);
	line-height: 23px;
	text-align: center;
	font-size: 1.2em;
	font-weight: bold;

}
.faq .question.open:before {
	content: "-";
}
.faq .question span {
	width: calc(100% - 40px);
}
.faq .answer {
	display: none;
	margin-top: 20px;
	margin-bottom: 10px;
	padding-left: 50px;
	color: var(--main);

	
		color: var(--highlight);
}
.faq .answer img {
	max-width: 500px;
}


@media screen and (max-width: 1100px) {

	.faq .question {
		flex-direction: column;
		row-gap: 10px;
	}
	.faq .question:before {
		width: 20px;
		height: 20px;
		line-height: 15px;
	}

	.faq .answer {
		padding-left: 0;
	}

}