#faqs .question {
   background: #f4f9fa;
   border-radius: 13px;
   border: 1px solid #8dd5d7;
   padding: 0 20px;
   margin-top: 15px;
}

#faqs .questions {
	position: relative;
	z-index: 800;
}

#faqs .quest {
	position: relative;
	cursor: pointer;
	padding: 20px 0;
	padding-right: 30px;
}

	#faqs .quest:after {
		content: url(../img/faq_arrow.svg);
		display: block;
		width: 18px;
		position: absolute;
		right: 0;
		top: 37px;
		transform: rotate(0);
		transition: .2s;
	}

#faqs .active-question.quest {
	padding-bottom: 20px;
}

	#faqs .active-question.quest:after {
		transform: rotate(-180deg);
		transition: .2s;
	}

#faqs .answer-text {
	display: none;
}

#faqs #question1 .answer-text {
	display: block;
}

#faqs .answ-content {
	flex: 1 1;
	padding-top: 11px;
}

	#faqs .answ-content strong {
		color: #12a7ac;
	}

#faqs .answ-cont {
	border-top: 1px solid #8dd5d7;
	padding-top: 20px;
	padding-bottom: 30px;
}

#faqs .square {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: #fff;
	box-shadow: 0 0 5px rgba(0,0,0,0.15);
	border-radius: 50%;
	margin-right: 15px;
}

	#faqs .square p {
		font-family: 'Serifa-Bold';
		font-size: 32px;
		line-height: 1;
		color: #127eac;
	}

#faqs .a-square p {
	font-size: 27px;
}

#faqs .question h5, #faqs .question h6 {
	flex: 1 1;
	text-align: left;
}

#faqs .quest h5, #faqs .question h6 {
	margin-top: 0;
}

#faqs .questions ul {
	margin-top: 10px;
}

	#faqs .questions ul:first-child {
		margin-top: 0;
	}

@media (max-width: 767px) {
	#faqs .question {
		padding: 0 15px;
	}
}

@media (max-width: 450px) {
	#faqs .question h5, #faqs .question h6 {
		width: 100%;
		flex: none;
		padding-right: 0;
		text-align: center;
	}
	#faqs .question h6 {
		margin-top: 13px;
	}
	#faqs .square {
		margin: 0 auto;
	}
	#faqs .quest {
		padding-right: 0;
	}
	#faqs .answ-content {
		flex: none;
		width: 100%;
		padding-top: 15px;
	}
}
