/* ==================================================
   HOMEPAGE FAQ SECTION
================================================== */

.home-faq-section {
	background: var(--black);
}

/* ==================================================
   FAQ HEADING
================================================== */

.home-faq-heading {
	max-width: 650px;
	margin-right: auto;
	margin-bottom: 36px;
	margin-left: auto;
}

.home-faq-heading p {
	max-width: 500px;
	margin-right: auto;
	margin-left: auto;
}

/* ==================================================
   FAQ LIST
================================================== */

.home-faq-list {
	display: flex;
	flex-direction: column;
	gap: 11px;
	width: 100%;
	max-width: 700px;
	margin-right: auto;
	margin-left: auto;
}

/* ==================================================
   FAQ ITEM
================================================== */

.home-faq-item {
	overflow: hidden;
	width: 100%;
	border: var(--border-primary);
	border-radius: var(--border-radius);
	background: var(--black);
	transition:
		background-color 0.3s ease,
		box-shadow 0.3s ease;
}

.home-faq-item.active {
	background:
		linear-gradient(
			100deg,
			rgba(17, 219, 112, 0.035),
			rgba(17, 219, 112, 0.075)
		);
	box-shadow:
		0 12px 35px rgba(0, 0, 0, 0.28);
}

/* ==================================================
   FAQ QUESTION
================================================== */

.home-faq-title {
	margin: 0;
	font-family: var(--font-body);
	font-size: inherit;
	line-height: inherit;
}

.home-faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	min-height: 44px;
	margin: 0;
	padding: 9px 24px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--white);
	font-family: var(--font-body);
/* 	font-size: 11px; */
	font-weight: 400;
	line-height: 24px;
	text-align: left;
	cursor: pointer;
	transition: color 0.3s ease;
}

.home-faq-question span {
    color: var(--white);
}

.home-faq-question:hover,
.home-faq-question:focus {
	border: 0;
	background: transparent;
	color: var(--primary);
	transform: none;
}

.home-faq-question:focus-visible {
	outline: 2px solid var(--primary);
	outline-offset: -4px;
}

/* ==================================================
   PLUS / MINUS ICON
================================================== */

.home-faq-icon {
	position: relative;
	display: block;
	flex: 0 0 16px;
	width: 16px;
	height: 16px;
	color: var(--white);
	transition:
		color 0.3s ease,
		transform 0.3s ease;
}

.home-faq-icon::before,
.home-faq-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 1.5px;
	border-radius: 10px;
	background: currentColor;
	transform: translate(-50%, -50%);
	transition:
		opacity 0.3s ease,
		transform 0.3s ease;
}

.home-faq-icon::after {
	transform:
		translate(-50%, -50%)
		rotate(90deg);
}

.home-faq-item.active .home-faq-icon {
	color: var(--primary);
}

.home-faq-item.active .home-faq-icon::after {
	opacity: 0;
	transform:
		translate(-50%, -50%)
		rotate(0);
}

/* ==================================================
   FAQ ANSWER
================================================== */

.home-faq-answer {
	display: grid;
	grid-template-rows: 0fr;
	visibility: hidden;
	opacity: 0;
	transition:
		grid-template-rows 0.35s ease,
		visibility 0.35s ease,
		opacity 0.3s ease;
}

.home-faq-item.active .home-faq-answer {
	grid-template-rows: 1fr;
	visibility: visible;
	opacity: 1;
}

.home-faq-answer-inner {
	overflow: hidden;
}

.home-faq-answer-inner p {
	max-width: 620px;
	margin: 0;
	padding: 0 48px 17px 24px;
	font-size: 13px;
	line-height: 22px;
	color: rgba(255, 255, 255, 0.78);
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

	.home-faq-heading {
		margin-bottom: 32px;
	}

	.home-faq-list {
		max-width: 760px;
	}

	.home-faq-question {
		min-height: 48px;
		padding-right: 22px;
		padding-left: 22px;
		font-size: 13px;
	}

	.home-faq-answer-inner p {
		padding-right: 45px;
		padding-bottom: 18px;
		padding-left: 22px;
	}

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

	.home-faq-heading {
		margin-bottom: 28px;
	}

	.home-faq-list {
		gap: 10px;
	}

	.home-faq-question {
		min-height: 52px;
		padding: 11px 18px;
		font-size: 13px;
		line-height: 21px;
	}

	.home-faq-answer-inner p {
		padding-right: 38px;
		padding-bottom: 17px;
		padding-left: 18px;
		font-size: 13px;
		line-height: 22px;
	}

}

/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 575px) {

	.home-faq-item {
		border-radius: 13px;
	}

	.home-faq-question {
		gap: 14px;
		padding-right: 15px;
		padding-left: 15px;
	}

	.home-faq-answer-inner p {
		padding-right: 30px;
		padding-left: 15px;
	}

}