/**
 * Faq Section
 */

.faq-section {
	background: var(--gray);
	padding-top: 165px;
	padding-bottom: 0;
}
.faq-section .section-header .desc{
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}
.faq-section .section-header h1 {
	margin-bottom: 15px;
	max-width: 910px;
	margin-left: auto;
	margin-right: auto;
}

/* Tabs */
.faq-section .faq-tabs-wrap {
    padding: 30px 0 38px;
}
.faq-section .faq-tabs {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 15px;
	row-gap: 12px;
}
.faq-section .faq-tab {
	font-family: 'Calibre', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: var(--black);
	background: transparent;
	border: 1px solid var(--black);
	border-radius: 15px;
	padding: 12px 24px;
	cursor: pointer;
	transition: var(--transition);
}
.faq-section .faq-tab:hover {
	border-color: var(--blue);
	color: var(--blue);
}
.faq-section .faq-tab.active {
	background: var(--black);
	border-color: var(--black);
	color: var(--white);
}

/* Category rows */
.faq-section .faq-categories {
	background: var(--white);
}
.faq-section .faq-category {
	padding: 56px 0;
}
.faq-section .faq-category .row {
	row-gap: 20px;
}
.faq-section .col-left {
	width: 33.333%;
}
.faq-section .col-right {
	width: 66.666%;
}

/* Accordion */
.faq-section .faq-list {
	display: flex;
	flex-direction: column;
}
.faq-section .faq-item {
    border-top: 3px solid var(--black);
    padding: 20px 0;
}
.faq-section .faq-item:last-child {
	border-bottom: 3px solid var(--black);
}
.faq-section .faq-item-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	column-gap: 30px;
	background: none;
	border: none;
	padding: 0;
	text-align: left;
	cursor: pointer;
	font-family: 'Calibre', sans-serif;
}
.faq-section .faq-item-question span:first-child {
	font-size: 36px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.03em;
	color: var(--black);
}
.faq-section .faq-icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	position: relative;
}
.faq-section .faq-icon::before,
.faq-section .faq-icon::after {
	content: "";
	position: absolute;
	background: var(--black);
	top: 50%;
	left: 50%;
	transition: var(--transition);
}
.faq-section .faq-icon::before {
	width: 20px;
	height: 2px;
	transform: translate(-50%, -50%);
}
.faq-section .faq-icon::after {
	width: 2px;
	height: 20px;
	transform: translate(-50%, -50%);
}
.faq-section .faq-item.active .faq-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
	opacity: 0;
}
.faq-section .faq-item-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}
.faq-section .faq-item-answer-inner {
	padding-top: 24px;
}
.faq-section .faq-item-answer-inner p:last-child {
	margin-bottom: 0;
}
.faq-section .faq-item-answer-inner a {
	text-decoration: underline;
}
.faq-section .faq-category .sub-title {
    color: var(--blue);
    margin-bottom: 0;
}

/* Contact CTA */
.faq-section .faq-contact-cta .section-header{
	margin-bottom: 85px;
}
.faq-section .faq-contact-cta {
	background: var(--blue);
	text-align: center;
}
.faq-section .faq-contact-cta * {
	color: var(--white);
}
.faq-section .faq-contact-cta h2,
.faq-section .faq-contact-cta .h3 {
	margin-bottom: 30px;
}
.faq-section .faq-contact-cta .row {
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}
.faq-section .faq-contact-cta .col-left,
.faq-section .faq-contact-cta .col-right {
	width: 50%;
}
.faq-section .faq-contact-cta .subtitle {
	color: var(--gray);
}
.faq-section .faq-contact-cta .email-link {
	display: inline-block;
}
.faq-section .faq-contact-cta .email-link:hover {
	text-decoration: underline;
}
.faq-section .faq-contact-cta p {
	margin-bottom: 0;
}
.faq-section.filter-off .container-fluid>:last-child {
    padding-bottom: 0;
}
.faq-section.filter-off .container-fluid>:first-child {
    padding-top: 0;
}
.faq-section.filter-off{
	background: var(--white);
	padding-top: 120px;
	padding-bottom: 120px;
}
.faq-section.filter-off .faq-tabs-wrap{
	display: none;
}

@media only screen and (max-width: 1199px) {
	.faq-section .faq-item-question span:first-child {
		font-size: 30px;
	}
	.faq-section.filter-off{
		padding-top: 80px;
		padding-bottom: 80px;
	}
}
@media only screen and (max-width: 991px) {
	.faq-section .col-left,
	.faq-section .col-right {
		width: 100%;
	}
	.faq-section .faq-tabs {
		flex-wrap: wrap;
		padding-bottom: 5px;
		column-gap: 5px;
    	row-gap: 5px;
	}
	.faq-section .faq-tab {
		font-size: 18px;
        padding: 13px 20px;
	}
	.faq-section .faq-contact-cta .col-left,
	.faq-section .faq-contact-cta .col-right {
		width: 100%;
	}
	.faq-section .faq-contact-cta h2 {
		margin-bottom: 40px;
	}
	.faq-section.filter-off{
		padding-top: 60px;
		padding-bottom: 60px;
	}
}
@media only screen and (max-width: 767px) {
	.faq-section .faq-tabs-wrap {
		padding: 40px 0 45px;
	}
	.faq-section .faq-category {
		padding: 30px 0;
	}
	.faq-section .faq-item {
		padding: 22px 0;
	}
	.faq-section .faq-item-question span:first-child {
		font-size: 24px;
	}
	.faq-section .faq-icon {
		width: 24px;
		height: 24px;
	}
	.faq-section .faq-contact-cta {
		padding: 60px 0;
	}
	.faq-section .faq-contact-cta .section-header {
		margin-bottom: 45px;
	}
	.faq-section {
		padding-top: 135px;
	}
	.faq-section.filter-off{
		padding-top: 45px;
		padding-bottom: 45px;
	}
}
