.faq {
	padding-top: 5em;
	padding-bottom: 3em;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
}

.faq .inner {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
}

.faq__items {
	margin-top: 3em;
	cursor: pointer;
}

.faq__item {
	position: relative;
	max-width: 100%;
	width: 40em;
	padding: 1.5em 0;
	padding-right: 1em;
	border-top: 1px solid rgba(0,0,0,.1);
}

.faq__title {
	font-size: 1.2em;
	font-weight: 600;
}

.faq__desc {
	box-sizing: content-box;
	/*position: absolute;*/
	/*opacity: 1;*/
	/*overflow: hidden;*/
	font-size: 1.08em;
	line-height: 1.3em;
	font-weight: 500;
	/*height: 0;*/
	transition: all ease-in-out .3s;
}

.active .faq__desc {
	margin-top: 1em;
	max-height: 10000px;
}


.faq .cross {
	position: absolute;
	top: 1.25em;
	right: .5em;
	cursor: pointer;
	height: 2.4em;
	width: 2.4em;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	transition: all ease-in-out .3s;
	-webkit-transform: rotate(180deg);
	   -moz-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	     -o-transform: rotate(180deg);
	        transform: rotate(180deg);
}

.faq .faq__item a {
	text-decoration: none;
	color: #3B7DC2;
}

.active .cross {
	-webkit-transform: rotate(0deg);
	   -moz-transform: rotate(0deg);
	    -ms-transform: rotate(0deg);
	     -o-transform: rotate(0deg);
	        transform: rotate(0deg);
}

.faq .cross svg {
	height: 95%;
}

.faq .cross:hover {
	background-color: rgba(0,0,0,.1);
}

@media(max-width: 768px) {
	.faq__title {
		font-size: 1.4em;
	}

	.faq__items {
		width: 100%;
		margin-top: 0;
		padding: 0 2em;
	}
}