.accordion {
	margin: auto;
	width: 100%;
}
.accordion input {
	display: none;
}
.faq-item {
	transition: all 0.75s linear;
	overflow: hidden;
}
.faq-item::before {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	pointer-events: none;
}

/* FAQ accordion */
.faq-item {
	border: 1px solid #d9d9d9;
	border-radius: 10px 10px 10px 10px;
	padding: 18px 20px;
	margin-bottom: 25px;
}
.faq-item:last-child {
	margin-bottom: 25px;
}
.faq-item.faq-open {
	background: #fff;
}
.faq-item.faq-closed {
	background: #0d1b2a;
}
.faq-question {
	display: flex;
	justify-content: space-between;
	cursor: pointer;
}
.faq-question-text {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-weight: 700;
	padding-right: 50px;
}
.faq-open .faq-question-text {
	font-size: 22px;
	color: #333;
	letter-spacing: -0.75px;
	line-height: 1.3;
}
.faq-closed .faq-question-text {
	font-size: 22px;
	color: #fff;
	letter-spacing: -0.75px;
	line-height: 1.3;
}
.faq-icon {
	font-size: 20px;
	flex-shrink: 0;
	position: relative;
	top: 3px;
}
.faq-open .faq-icon {
	color: #152b50;
}
.faq-closed .faq-icon {
	color: #fff;
}
.faq-answer {
	margin-top: 15px;
	font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: #212121;
	line-height: 1.3;
}
.faq-answer p {
	font-size: 20px;
	line-height: 1.3;
	font-weight: 500;
	margin-bottom: 20px;
}
.faq-answer ul {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
}
.faq-answer ul li {
	position: relative;
	padding: 0px 0 10px 18px;
	font-size: 20px;
	font-weight: 500;
	color: #212121;
	line-height: 1.3;
}
.faq-answer ul li:last-child {
	padding-bottom: 0;
}
.faq-answer ul li::before {
	content: '•';
	position: absolute;
	left: 2px;
	top: 0;
	color: #212121;
	font-size: 20px;
	line-height: 1.3;
}
.faq-closed .faq-answer {
	display: none;
}

.box-title {
	font-size: 24px;
	line-height: 1;
	color: #fff;
	display: inline-block;
	cursor: pointer;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.box-content {
	padding: 1rem 0 0;
	color: rgba(0, 0, 0, 0.54);
	display: none;
	line-height: 1.4em;
	font-size: 20px;
}
.box-close {
	position: absolute;
	/* height: 64px; */
	width: 100%;
	top: 0;
	left: 0;
	cursor: pointer;
	display: none;
}
input:checked + .box {
	height: auto;
	margin: 0 0 2.75%;
	overflow: hidden;
	border: 1px solid #d9d9d9;
	background-color: #fff;
}
input:checked + .box .box-title {
	color: #152b50;
}
input:checked + .box .box-content,
input:checked + .box .box-close {
	color: #fff;
	display: inline-block;
}
.arrows section .box-title {
	width: calc(100% - 64px);
}
.arrows section .box-title:after {
	position: absolute;
	display: block;
	font-family: 'Font Awesome 5 Free';
	content: '\2b';
	font-size: 24px;
	top: 30%;
	transition: transform 0.75s linear;
	color: #fff;
	right: 2%;
}
input:checked + section.box .box-title:after {
	transform: rotate(90deg);
	display: none;
}

@media only screen and (max-width: 767px) {
	.box-title {
		font-size: 20px;
		line-height: 1.15;
	}

	.box-content p {
		font-size: 16px;
		line-height: 1.4;
	}
}

@media (max-width: 640px) {
	.faq-open .faq-question-text {
		font-size: 22px;
		line-height: 1.35;
	}
	.faq-answer p,
	.faq-answer ul li {
		font-size: 18px;
		line-height: 1.35;
	}
}
