.question {
   background: #f4f9fa;
   border-radius: 13px;
   border: 1px solid #8dd5d7;
   padding: 0 20px;
   margin-top: 15px;
}

.questions {
	position: relative;
	z-index: 800;
}

.quest {
	position: relative;
	cursor: pointer;
	padding: 20px 0;
	padding-right: 30px;
}

.quest:after {
	content: url(../img/faq_arrow.svg);
	display: block;
	width: 18px;
	position: absolute;
	right: 0;
	top: 37px;
	transform: rotate(0);
	transition: .2s;
}

.active-question.quest {
    padding-bottom: 20px;
}

.active-question.quest:after {
	transform: rotate(-180deg);
	transition: .2s;
}

.answer-text {
    display: none;
}

#question1 .answer-text {
    display: block;
}

.answ-content {
	flex: 1 1;
	padding-top: 11px;
}

.answ-content strong {
	color: #12a7ac;
}

.answ-cont {
	border-top: 1px solid #8dd5d7;
	padding-top: 20px;
	padding-bottom: 30px;
}

.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;
}

.square p {
	font-family: 'Serifa-Bold';
    font-size: 32px;
	line-height: 1;
    color: #127eac;
}

.a-square p {
	font-size: 27px;
}

.question h5, .question h6 {
	flex: 1 1;
	text-align: left;
}

.quest h5, .question h6 {
	margin-top: 0;
}

.questions ul {
	margin-top: 10px;
}

.questions ul:first-child {
	margin-top: 0;
}

@media (max-width: 767px) {
	.question {padding: 0 15px;}
}

@media (max-width: 450px) {
  .question h5, .question h6 {
  	width: 100%;
  	flex: none;
  	padding-right: 0;
  	text-align: center;
  }
  .question h6{
	margin-top: 13px;
  }
  .square {margin: 0 auto;}
  .quest {
	  padding-right: 0;
  }
  .answ-content {
  	flex: none;
  	width: 100%;
  	padding-top: 15px;
  }
}
