/* ========================================================= */
/* FAQ VARIABLES                                             */
/* ========================================================= */
.faq-section {
	--faq-black: #171717;
	--faq-border: #DCD6D0;
	--faq-green: #C2E501;
	--faq-green-dark: #4F9030;
	--faq-green-light: #F2F8EE;
	--faq-orange: #FFA200;
	--faq-text: #343434;
	background: #FFFFFF;
}

.faq-page__intro {
	padding: 6rem 0 0 0;
}


/* ========================================================= */
/* FAQ TOPIC NAVIGATION                                      */
/* ========================================================= */
.faq-topic-nav {
	background: #FFFFFF;
	padding: 2.5rem 0;
}

.faq-topic-nav__list {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-topic-nav .faq-topic-nav__link {
	align-items: center;
	background: #FFFFFF !important;
	border: 1.5px solid #DDDDDD !important;
	border-radius: 999px;
	color: #171717 !important;
	display: inline-flex;
	font-size: 1.15rem;
	font-weight: 700;
	gap: .65rem;
	justify-content: center;
	line-height: 1.2;
	padding: .95rem 1.5rem;
	text-decoration: none !important;
	transition: all .25s ease;
}

.faq-topic-nav .faq-topic-nav__link i,
.faq-topic-nav .faq-topic-nav__link span {
	color: inherit !important;
}

.faq-topic-nav .faq-topic-nav__link:hover,
.faq-topic-nav .faq-topic-nav__link:focus {
	background: #14CAD5 !important;
	border-color: #14CAD5 !important;
	color: #FFFFFF !important;
	text-decoration: none !important;
}

.faq-topic-nav .faq-topic-nav__link:focus-visible {
	outline: 2px solid #FFA200;
	outline-offset: 3px;
}

@media (max-width: 767.98px) {
	.faq-topic-nav {
		padding: 1.75rem 0;
	}

	.faq-topic-nav__list {
		flex-direction: column;
		gap: .75rem;
	}

	.faq-topic-nav .faq-topic-nav__link {
		width: 100%;
	}
}


/* ========================================================= */
/* FAQ TOPICS                                                */
/* ========================================================= */
.faq-topic {
	background: #FFFFFF;
	padding: 7rem 0;
	position: relative;
	scroll-margin-top: 8rem;
}

.faq-topic+.faq-topic::before {
	background: var(--faq-border);
	content: '';
	height: 1px;
	left: 50%;
	max-width: 1320px;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	width: calc(100% - 3rem);
}

.faq-topic__row {
	--bs-gutter-x: 7rem;
	--bs-gutter-y: 3.5rem;
}

.faq-topic__intro {
	max-width: 28rem;
}

.faq-topic__icon {
	align-items: center;
	background: var(--faq-green);
	border-radius: 50%;
	color: #2F3700;
	display: flex;
	height: 3.75rem;
	justify-content: center;
	margin: 0 0 1.75rem;
	width: 3.75rem;
}

.faq-topic__icon i {
	color: #2F3700;
	font-size: 1.5rem;
	line-height: 1;
}

.faq-topic__icon svg {
	fill: none;
	height: 1.65rem;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.6;
	width: 1.65rem;
}

.faq-topic__eyebrow {
	color: var(--faq-orange);
	font-size: .95rem;
	font-weight: 800;
	letter-spacing: .09em;
	line-height: 1.4;
	margin: 0 0 .8rem;
	text-transform: uppercase;
}

.faq-topic__intro h2 {
	color: var(--faq-black);
	font-size: clamp(2rem, 3vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -.01em;
	line-height: 1.08;
	margin: 0 0 1.25rem;
}

.faq-topic__intro>p:last-child {
	color: var(--faq-text);
	font-size: 1.125rem;
	line-height: 1.75;
	margin: 0;
}


/* ========================================================= */
/* FAQ WRAPPER                                               */
/* ========================================================= */
.faq__wrapper {
	border-top: 1px solid var(--faq-border);
	width: 100%;
}

.faq__item {
	background: transparent !important;
	border-bottom: 1px solid var(--faq-border);
	margin: 0;
	padding: 0;
}

.faq__heading {
	font-size: inherit;
	line-height: inherit;
	margin: 0;
}


/* ========================================================= */
/* FAQ QUESTION                                              */
/* ========================================================= */
.faq-section .faq__question {
	align-items: center;
	appearance: none;
	background: transparent !important;
	border: 0;
	border-radius: 0;
	box-shadow: none !important;
	color: var(--faq-black);
	cursor: pointer;
	display: flex;
	font: inherit;
	gap: 1.5rem;
	justify-content: space-between;
	margin: 0;
	padding: 1.85rem 0;
	text-align: left;
	width: 100%;
}

.faq-section .faq__question:active,
.faq-section .faq__question:focus,
.faq-section .faq__question:hover,
.faq-section .faq__item.is-open,
.faq-section .faq__item.is-open .faq__question {
	background: transparent !important;
	box-shadow: none !important;
}

.faq__question-text {
	color: var(--faq-black);
	display: block;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.35;
	transition: color .2s ease;
}


.faq__question:hover .faq__question-text {
	color: var(--faq-orange);
}

.faq__question:focus {
	outline: none;
}

.faq__question:focus-visible {
	outline: 2px solid var(--faq-orange);
	outline-offset: 6px;
}

.faq__question:focus-visible .faq__question-text {
	color: var(--faq-orange);
}

.faq__item.is-open .faq__question-text {
	color: var(--faq-black);
}

.faq__item.is-open .faq__question:focus-visible .faq__question-text,
.faq__item.is-open .faq__question:hover .faq__question-text {
	color: var(--faq-orange);
}


/* ========================================================= */
/* FAQ PLUS ICON                                             */
/* ========================================================= */
.faq__icon {
	color: #14CAD5;
	display: block;
	flex: 0 0 auto;
	height: 1.25rem;
	position: relative;
	transition: transform .25s ease;
	width: 1.25rem;
}

.faq__icon::after,
.faq__icon::before {
	background: currentColor;
	content: '';
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.faq__icon::before {
	height: 2px;
	width: 100%;
}

.faq__icon::after {
	height: 100%;
	width: 2px;
}

.faq__item.is-open .faq__icon {
	transform: rotate(45deg);
}


/* ========================================================= */
/* FAQ ANSWER                                                */
/* ========================================================= */
.faq__answer {
	background: transparent !important;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transform: translateY(-.35rem);
	transition: max-height .35s ease, opacity .22s ease, transform .22s ease;
	visibility: hidden;
}

.faq__answer-inner {
	background: transparent !important;
	padding: 0 4rem 1.9rem 0;
}

.faq__answer p {
	color: var(--faq-text);
	font-size: 1.075rem;
	line-height: 1.75;
	margin: 0;
}

.faq__answer a {
	color: var(--faq-green-dark);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.faq__answer a:hover {
	color: var(--faq-orange);
}

.faq__item.is-open .faq__answer {
	background: transparent !important;
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}


/* ========================================================= */
/* FAQ RESPONSIVE                                            */
/* ========================================================= */
@media (min-width: 1400px) {
	.faq-topic__row {
		--bs-gutter-x: 9rem;
	}
}

@media (max-width: 1199.98px) {
	.faq-topic {
		padding: 5.5rem 0;
	}

	.faq-topic__intro {
		max-width: 44rem;
	}

	.faq-topic__row {
		--bs-gutter-x: 3rem;
		--bs-gutter-y: 3.5rem;
	}
}

@media (max-width: 767.98px) {
	.faq-topic-nav {
		padding: 1.75rem 0;
	}

	.faq-topic-nav__list {
		align-items: stretch;
		flex-direction: column;
		gap: .75rem;
	}

	.faq-topic-nav .faq-topic-nav__link {
		justify-content: flex-start;
		white-space: normal;
		width: 100%;
	}

	.faq-topic {
		overflow: hidden;
		padding: 4rem 0;
		scroll-margin-top: 5rem;
	}

	.faq-topic__row,
	.faq-topic__row>[class*="col-"] {
		max-width: 100%;
		min-width: 0;
	}

	.faq-topic__icon {
		height: 3.25rem;
		margin-bottom: 1.35rem;
		width: 3.25rem;
	}

	.faq-topic__icon i {
		font-size: 1.35rem;
	}

	.faq-topic__icon svg {
		height: 1.4rem;
		width: 1.4rem;
	}

	.faq-topic__intro {
		max-width: 100%;
		min-width: 0;
	}

	.faq-topic__intro h2 {
		font-size: 2rem;
		overflow-wrap: break-word;
	}

	.faq-topic__intro>p:last-child {
		font-size: 1rem;
		line-height: 1.65;
	}

	.faq__wrapper,
	.faq__item,
	.faq__heading {
		max-width: 100%;
		min-width: 0;
		width: 100%;
	}

	.faq__question {
		align-items: flex-start;
		display: flex;
		gap: 1rem;
		max-width: 100%;
		min-width: 0;
		overflow: hidden;
		padding: 1.5rem 0;
		white-space: normal;
		width: 100%;
	}

	.faq__question-text {
		flex: 1 1 auto;
		font-size: 1.15rem;
		max-width: 100%;
		min-width: 0;
		overflow-wrap: break-word;
		white-space: normal;
		word-break: normal;
	}

	.faq__icon {
		flex: 0 0 1.25rem;
		margin-top: .2rem;
	}

	.faq__answer {
		max-width: 100%;
		min-width: 0;
	}

	.faq__answer-inner {
		max-width: 100%;
		min-width: 0;
		padding: 0 2.25rem 1.55rem 0;
	}

	.faq__answer p {
		font-size: 1rem;
		line-height: 1.65;
		overflow-wrap: break-word;
	}
}

@media (prefers-reduced-motion: reduce) {

	.faq-topic-nav__link,
	.faq__answer,
	.faq__icon,
	.faq__question-text {
		transition: none;
	}
}