.faq {
	max-width: 1440px;
    width: 90%;
    margin: auto;
	padding-top: 100px;
    padding-bottom: 60px;
}

.faq .title {
	font-weight: 500;
    font-size: 36px;
    text-transform: uppercase;
    line-height: 36px;
    position: relative;
    text-align: center;
    padding: 0 12.5%;
    margin-bottom: 85px;
}

.faq .subtitle {
	font-weight: normal;
    font-size: 26px;
    line-height: 36px;
    position: relative;
    text-align: center;
    padding: 0 12.5%;
    margin-bottom: 25px;
}

.faq .no-info {
	font-size: 19px;
    font-weight: normal;
	color: #aaaaaa;
	padding: 30px;
    background: #f0f0f0;
}

.faq .row .question svg {
	width: 15px;
	fill: #a2a2a2;
	transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-webkit-transition: all 300ms linear;	
}

.faq .row .question {
	line-height: 0;
	font-size: 0;
	text-align: justify;
	padding: 16px 19px;
	background: #f0f0f0;
	border-radius: 10px;
	margin-bottom: 23px;
	transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-webkit-transition: all 300ms linear;
	cursor: pointer;
}

.faq .row .question:after {
	content: "";
	display: inline-block;
	width: 100%;
	height: 0;
}

.faq .row.active .question,
.faq .row .question:hover {
	background: #48556e;
}

.faq .row.active .question svg,
.faq .row .question:hover svg {
	transform: rotate(180deg);
}

.faq .row .question .left-side,
.faq .row .question .right-side {
	display: inline-block;
	vertical-align: middle;
}

.faq .row .question .left-side {
	font-size: 16px;
	line-height: 23px;
	color: #a9a9a9;
	max-width: 90%;
}

.faq .row .answer {
	margin-bottom: 23px;
	font-size: 16px;
	line-height: 23px;
	color: #a9a9a9;
	padding-left: 17px;
	padding-right: 40px;
}