.faq-section {
	padding: 40px 0;
}

@media (min-width: 1025px) {
	.faq-section {
		padding: 80px 0;
	}
}

.faq-section__title {
	margin: 0;
	font-size: 18px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 20px 0;
	cursor: pointer;
}

@media (min-width: 768px) {
	.faq-section__title {
		font-size: 20px;
	}
}

@media (min-width: 1025px) {
	.faq-section__title {
		font-size: 26px;
		padding: 30px 0;
	}
}

.faq-section__title .text {
	display: inline-block;
	padding-right: 20px;
	flex: 1;
}

.faq-section__title .icon {
	display: inline-block;
	width: 40px;
	height: 40px;
	background-color: #18143E;
	position: relative;
}

.faq-section__title .icon:before,
.faq-section__title .icon:after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	background-color: #fff;
	margin: 0 auto;
	transition: transform 0.3s ease-in-out;
}

.faq-section__title .icon:before {
	width: 2px;
	height: 25px;
}

.faq-section__title.is-active .icon:before {
	transform: translateY(-50%) rotate(90deg);
}

.faq-section__title .icon:after {
	width: 25px;
	height: 2px;
}

.faq-section__title.is-active .icon:after {
	transform: translateY(-50%) rotate(180deg);
}

.faq-section__content {
	display: none;
	padding-bottom: 0;
}

@media (min-width: 1025px) and (max-width: 1280px) {
	.faq-section__content {
		padding-bottom: 30px;
	}
}

.faq-section__content p:first-child {
	margin-top: 0;
}

.faq-section__item {
	border-bottom: 1px solid rgba(0,0,0,.1);
}