.question {
   border-top: 1px solid rgba(255,255,255,0.5);
   padding-right: 35px;
}

.question:last-child {
   border-bottom: 1px solid rgba(255,255,255,0.5);
}

.quest {
	position: relative;
	cursor: pointer;
	padding: 15px 0;
}

.quest:after {
	display: block;
	content: url(../img/faq_arrow.svg);
	width: 12px;
	position: absolute;
	right: -23px;
	top: 22px;
	transition: .2s;
}

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

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

.answer-text {
    display: none;
	padding-bottom: 25px;
}

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

.answ-content {
	flex: 1 1;
}

.answ-content p {
	font-style: italic;
}

.square {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	margin-right: 20px;
}

.square p {
	font-family: 'Roboto-Bold';
    font-size: 24px;
}

.q-square {
	background: #48ccea;
	border: 2px solid #48ccea;
}

.q-square p {
    color: #000;
}

.a-square {
	background: none;
	border: 2px solid #fff;
}

.a-square p {
    color: #fff;
}

.question h5 {
	font-family: 'Roboto-Medium';
	font-size: 16px;
	flex: 1 1;
	margin-top: 0;
	text-align: left;
	padding-right: 25px;
}

.questions  h5 {
	text-align: left;
}

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

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


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


