/* FAQ STYLES */


.faq-page .qa-group {
	background-color: #40494d;
	padding-left: 40px;
	padding-right: 40px;
	margin-bottom: 1px;
	cursor: pointer;
	position: relative;
	transition: all 0.2s;
}

.faq-page .qa-group:hover,
.faq-page .qa-group.open {
	background-color: #4b5559;
}

.faq-page .qa-group:first-child {
	border-radius: 5px 5px 0 0;
}

.faq-page .qa-group:last-child {
	border-radius: 0 0 5px 5px;
}

.faq-page .qa-group .question {
	font-size: 1.3em;
	line-height: 1.4em;
	font-weight: 700;
	color: #FFF;
	padding-top: 40px;
	padding-bottom: 40px;
}

.faq-page .qa-group .answer {
	padding-bottom: 40px;
	line-height: 1.4em;
	font-size: 1.1em;
	display: none;
}

.faq-page .qa-group.open .answer {
	display: block;
}
