@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');

* {
	box-sizing: border-box;
}

body {
	font-family: "Muli", sans-serif;
	background-color: #f0f0f0;
}

h1 {
	margin: 50px 0 30px;
	text-align: center;
}

h2 {
	font-size: 18px;
}

.faq-container {
	max-width: 600px;
	margin: 0 auto;
}

.faq {
	background: transparent;
	border: 1px solid #9fa4a8;
	border-radius: 10px;
	padding: 30px;
	margin: 20px 0;
	position: relative;
	transition: .3s ease;
}

.faq.active {
	background: #fff;
	box-shadow: 1px 3px 2px rgba(0, 0, 0, 0.3), 1px 3px 2px rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

.faq.active::before,
.faq.active::after {
	content: '\f075';
	font-family: 'Font Awesome 6 Free';
	color: #2ecc71;
	font-size: 7rem;
	opacity: 0.2;
	z-index: 0;
	position: absolute;
	top: 20px;
	left: 20px;
}

.faq.active::before {
	color: #3498db;
	top: -10px;
	left: -30px;
	transform: rotateY(180deg);
}

.faq-title {
	margin: 0 35px 0 0;
}

.faq-text {
	display: none;
	margin: 30px 0 0;
}

.faq.active .faq-text {
	display: block;
}

.faq-toggle {
	background-color: transparent;
	border: 0;
	cursor: pointer;
	border-radius: 50%;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	position: absolute;
	top: 30px;
	right: 30px;
	height: 30px;
	width: 30px;
}

.faq.active .faq-toggle {
	background-color: #9fa4a8;
}

.fa-times {
	display: none;
}

.faq.active .faq-toggle .fa-times {
	color: white;
	display: block;
}

.faq.active .faq-toggle .fa-chevron-down {
	display: none;
}




