.gk-faqs {
	--gk-faqs-primary: #d1736d;
	--gk-faqs-text: #2e2338;
	--gk-faqs-black: #000;
	--gk-faqs-row-bg: #fff5f5;
	--gk-faqs-tab-bg: #fff;
	--gk-faqs-max: 940px;
	--gk-faqs-radius: 16px;

	box-sizing: border-box;
	max-width: 1280px;
	margin: 0 auto;
	padding: 70px 0 !important;
	text-align: center;
}

.gk-faqs *,
.gk-faqs *::before,
.gk-faqs *::after {
	box-sizing: border-box;
}

.gk-faqs .gk-faqs__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	margin: 0 0 32px;
}

.gk-faqs .gk-faqs__eyebrow {
	font-family: "Manrope", sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 21.6px;
	letter-spacing: -0.3px;
	text-transform: uppercase;
	color: var(--gk-faqs-primary);
}

.gk-faqs .gk-faqs__heading {
	max-width: 340px;
	font-family: "Nunito", sans-serif;
	font-size: 40px;
	font-weight: 500;
	line-height: 56px;
	text-transform: capitalize;
	color: var(--gk-faqs-text);
}

.gk-faqs .gk-faqs__tabs {
	display: flex;
	align-items: center;
	overflow-x: auto;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	gap: 18px;
	justify-content: center;
	margin: 0 auto 32px;
}

.gk-faqs .gk-faqs__tabs::-webkit-scrollbar {
	display: none;
}

.gk-faqs .gk-faqs__tab {
	background-color: var(--gk-faqs-tab-bg) !important;
	display: flex;
	padding: 16px 24px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border: 0;
	border-radius: 50px;
	font-family: "Manrope", sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: none;
	color: var(--gk-faqs-black) !important;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.gk-faqs .gk-faqs__tab:hover {
	background: var(--gk-faqs-tab-bg) !important;
	color: var(--gk-faqs-primary) !important;
}

.gk-faqs .gk-faqs__tab:focus-visible {
	outline: 2px solid var(--gk-faqs-primary) !important;
	outline-offset: 2px !important;
}

.gk-faqs .gk-faqs__tab.is-active,
.gk-faqs .gk-faqs__tab.is-active:hover {
	background: var(--gk-faqs-primary) !important;
	color: var(--gk-faqs-tab-bg) !important;
}

.gk-faqs .gk-faqs__group[hidden],
.gk-faqs .gk-faqs__item[hidden],
.gk-faqs .gk-faqs__a[hidden] {
	display: none;
}

.gk-faqs .gk-faqs__group {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0 auto;
	text-align: left;
}

.gk-faqs .gk-faqs__item {
	background: var(--gk-faqs-row-bg);
	border-radius: var(--gk-faqs-radius);
	overflow: hidden;
	padding: 20px;
}

.gk-faqs .gk-faqs__q-heading {
	margin: 0;
	padding: 0;
	font: inherit;
	line-height: inherit;
}

.gk-faqs .gk-faqs__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent !important;
	box-shadow: none;
}

.gk-faqs .gk-faqs__q:hover {
	background: transparent;
	color: var(--gk-faqs-text);
}

.gk-faqs .gk-faqs__q:focus-visible {
	outline: 2px solid var(--gk-faqs-primary);
	outline-offset: -2px;
}

.gk-faqs .gk-faqs__q-text {
	flex: 1 1 auto;
	min-width: 0;
	color: var(--gk-faqs-text) !important;
	font-family: "Nunito", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 19.8px;
	text-align: left;
	text-transform: capitalize;
}

.gk-faqs .gk-faqs__icon {
	display: block;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	color: var(--gk-faqs-text);
}

.gk-faqs .gk-faqs__icon svg {
	display: block;
	width: 20px;
	height: 20px;
}

.gk-faqs .gk-faqs__icon-bar {
	transform-origin: center;
	transition: opacity 0.2s ease;
}

.gk-faqs .gk-faqs__item.is-open .gk-faqs__icon-bar {
	opacity: 0;
}

.gk-faqs .gk-faqs__a {
	overflow: hidden;
	transition: height 0.28s ease;
}

.gk-faqs .gk-faqs__a-inner {
	padding: 8px 0 0;
	max-width: 875px;
}

.gk-faqs .gk-faqs__a-inner > :first-child {
	margin-top: 0;
}

.gk-faqs .gk-faqs__a-inner > :last-child {
	margin-bottom: 0;
}

.gk-faqs .gk-faqs__a-inner p {
	margin: 0 0 10px;
	color: var(--gk-faqs-text);
	font-family: "Manrope", sans-serif;
	font-size: 14px;
	line-height: 22px;
	font-style: normal;
	font-weight: 400;
}

.gk-faqs .gk-faqs__a-inner a {
	color: var(--gk-faqs-primary);
	text-decoration: underline;
}

.gk-faqs .gk-faqs__a-inner ul,
.gk-faqs .gk-faqs__a-inner ol {
	margin: 0 0 10px;
	padding-left: 20px;
}

.gk-faqs .gk-faqs__a-inner li {
	margin: 0 0 4px;
}

@media (max-width: 1280px) {
	.gk-faqs {
		padding: 64px 20px!important;
	}
	.gk-faqs .gk-faqs__tabs {
		justify-content: flex-start;
	}
}

@media screen and (max-width: 690px) {
	.gk-faqs {
		padding: 64px 20px !important;
	}

	.gk-faqs .gk-faqs__head { 
		margin: 0 0 24px;
	}
	.gk-faqs .gk-faqs__tabs {
		gap: 8px;
		margin: 0 auto 24px;
	}

	.gk-faqs .gk-faqs__tab {
		font-weight: 700;
		font-size: 15px;
	}
	.gk-faqs .gk-faqs__heading {
		font-size: 32px;
		line-height: 46px;
	}

}
