/* ----------------------------------
   ROOT VARIABLES
-------------------------------------*/

:root {
	/* Fonts */
	--bs-font-sans-serif: "Proxima Nova Condensed", sans-serif;
	--bs-body-font-size: clamp(1rem, 0.9219rem + 0.25vw, 1.125rem);
	--font-size-sm: clamp(0.75rem, 0.6719rem + 0.25vw, 0.875rem);

	/* Colors */
	--bs-body-color: var(--bs-black);
	--bs-body-color-rgb: 0, 0, 0;

	--bs-body-bg: var(--bs-white);
	--bs-body-bg-rgb: 255, 255, 255;

	--bs-border-color: #dee2e6;

	--bs-primary: #098cea;
	--bs-primary-rgb: 9, 140, 234;

	--bs-secondary: #fff100;
	--bs-secondary-rgb: 255, 242, 0;

	--bs-light: #f8f1ef;
	--bs-light-rgb: 248, 241, 239;

	--bs-dark: #080046;
	--bs-dark-rgb: 8, 0, 70;

	--color-accent: #6f013e;
	--color-accent-rgb: 111, 1, 62;

	--header-bg: #080046;
	--header-sticky-bg: rgba(8, 0, 70, 0.8);

	--footer-bg: var(--bs-black);

	/* Shadow */
	--bs-box-shadow: 0px 10px 30px 0px rgba(73, 99, 158, 0.1);
	--bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(73, 99, 158, 0.075);
	--bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);

	/* Spacing */
	--section-space: clamp(3.125rem, 0.8929rem + 7.1429vw, 6.25rem);
}

/* ----------------------------------
   Font
-------------------------------------*/
@font-face {
	font-family: "Proxima Nova Condensed";
	src:
		url("../fonts/ProximaNovaCond-Regular.woff2") format("woff2"),
		url("../fonts/ProximaNovaCond-Regular.woff") format("woff");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Proxima Nova Condensed";
	src:
		url("../fonts/ProximaNovaCond-RegularIt.woff2") format("woff2"),
		url("../fonts/ProximaNovaCond-RegularIt.woff") format("woff");
	font-weight: normal;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "Proxima Nova Condensed";
	src:
		url("../fonts/ProximaNovaCond-SemiboldIt.woff2") format("woff2"),
		url("../fonts/ProximaNovaCond-SemiboldIt.woff") format("woff");
	font-weight: 600;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "Proxima Nova Condensed";
	src:
		url("../fonts/ProximaNovaCond-Semibold.woff2") format("woff2"),
		url("../fonts/ProximaNovaCond-Semibold.woff") format("woff");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Proxima Nova Condensed";
	src:
		url("../fonts/ProximaNovaCond-Bold.woff2") format("woff2"),
		url("../fonts/ProximaNovaCond-Bold.woff") format("woff");
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Proxima Nova Condensed";
	src:
		url("../fonts/ProximaNovaCond-BoldIt.woff2") format("woff2"),
		url("../fonts/ProximaNovaCond-BoldIt.woff") format("woff");
	font-weight: bold;
	font-style: italic;
	font-display: swap;
}

/* ----------------------------------
   BASIC RESET
-------------------------------------*/
body {
	/* letter-spacing: -0.2px; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 700;
}

h1,
.h1 {
	font-size: clamp(2rem, 1.0278rem + 3.1111vw, 3.75rem);
}

h2,
.h2 {
	font-size: clamp(1.5rem, 1.0833rem + 1.3333vw, 2.25rem);
}

h3,
.h3 {
	font-size: clamp(1.25rem, 0.9722rem + 0.8889vw, 1.75rem);
}

h4,
.h4 {
	font-size: clamp(1.125rem, 0.9167rem + 0.6667vw, 1.5rem);
}

h5,
.h5 {
	font-size: clamp(1rem, 0.8611rem + 0.4444vw, 1.25rem);
}

h6,
.h6 {
	font-size: clamp(0.875rem, 0.7361rem + 0.4444vw, 1.125rem);
}

p {
	margin: 0;
}

/* Links */
a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}

/* Images */
img {
	max-width: 100%;
}

/* Section Space */
.section-space {
	padding-block: var(--section-space);
}

/* Container override */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	--bs-gutter-x: 2.5rem;
}

/* ----------------------------------
   UTILITIES
-------------------------------------*/

.fade-up {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.7s ease;
}

.fade-up.active {
	opacity: 1;
	transform: translateY(0);
}

.bg-accent {
	background: var(--color-accent);
}

.text-accent {
	color: var(--color-accent);
}

.fs-sm {
	font-size: var(--font-size-sm);
}
/* ----------------------------------
   COMPONENTS
-------------------------------------*/
.btn {
	--bs-btn-padding-x: 2rem;
	--bs-btn-padding-y: 0.75rem;
	--bs-btn-font-size: 1rem;
	--bs-btn-font-weight: 600;
	--bs-btn-border-radius: var(--bs-border-radius);
	--bs-btn-focus-box-shadow: 0 0 0 0.2rem var(--btn-focus-shadow);
	transition: all 0.3s ease-in-out;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
}

.btn-primary {
	--bs-btn-color: var(--bs-secondary);
	--bs-btn-bg: var(--bs-primary);
	--bs-btn-border-color: var(--bs-primary);
	--bs-btn-hover-color: var(--bs-dark);
	--bs-btn-hover-bg: var(--bs-secondary);
	--bs-btn-hover-border-color: var(--bs-secondary);
	--bs-btn-focus-shadow-rgb: 49, 132, 253;
	--bs-btn-active-color: var(--bs-dark);
	--bs-btn-active-bg: var(--bs-secondary);
	--bs-btn-active-border-color: var(--bs-secondary);
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: var(--bs-white);
	--bs-btn-disabled-bg: var(--bs-primary);
	--bs-btn-disabled-border-color: var(--bs-primary);

	--btn-focus-shadow: color-mix(in srgb, var(--bs-primary), transparent 70%);
}

.btn-secondary {
	--bs-btn-color: var(--bs-black);
	--bs-btn-bg: var(--bs-secondary);
	--bs-btn-border-color: var(--bs-secondary);
	--bs-btn-hover-color: var(--bs-secondary);
	--bs-btn-hover-bg: var(--bs-primary);
	--bs-btn-hover-border-color: var(--bs-primary);
	--bs-btn-focus-shadow-rgb: 130, 138, 145;
	--bs-btn-active-color: var(--bs-secondary);
	--bs-btn-active-bg: var(--bs-primary);
	--bs-btn-active-border-color: var(--bs-primary);
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: var(--bs-secondary);
	--bs-btn-disabled-bg: var(--bs-secondary);
	--bs-btn-disabled-border-color: var(--bs-secondary);

	--btn-focus-shadow: color-mix(in srgb, var(--bs-secondary), transparent 70%);
}

.btn-dark {
	--bs-btn-color: var(--bs-secondary);
	--bs-btn-bg: var(--bs-dark);
	--bs-btn-border-color: var(--bs-dark);
	--bs-btn-hover-color: var(--bs-secondary);
	--bs-btn-hover-bg: var(--bs-primary);
	--bs-btn-hover-border-color: var(--bs-primary);
	--bs-btn-focus-shadow-rgb: var(--bs-dark-rgb);
	--bs-btn-active-color: var(--bs-secondary);
	--bs-btn-active-bg: var(--bs-primary);
	--bs-btn-active-border-color: var(--bs-primary);
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: var(--bs-secondary);
	--bs-btn-disabled-bg: var(--bs-dark);
	--bs-btn-disabled-border-color: var(--bs-dark);

	--btn-focus-shadow: color-mix(in srgb, var(--bs-dark), transparent 70%);
}

.btn-outline-dark {
	--bs-btn-color: var(--bs-dark);
	--bs-btn-border-color: var(--bs-dark);
	--bs-btn-hover-color: var(--bs-secondary);
	--bs-btn-hover-bg: var(--bs-dark);
	--bs-btn-hover-border-color: var(--bs-dark);
	--bs-btn-focus-shadow-rgb: 33, 37, 41;
	--bs-btn-active-color: var(--bs-secondary);
	--bs-btn-active-bg: var(--bs-dark);
	--bs-btn-active-border-color: var(--bs-dark);
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: var(--bs-dark);
	--bs-btn-disabled-bg: transparent;
	--bs-btn-disabled-border-color: var(--bs-dark);
	--bs-gradient: none;
}

/* Bullet Points styling */
.list-ticked {
	padding-left: 0;

	li {
		&::before {
			content: "✔";
			margin-right: 8px;
		}
	}
}

/* The dark background overlay */
.video-overlay {
	position: fixed;
	inset: 0;
	background: rgba(var(--bs-black-rgb), 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	z-index: 99999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(8px);
}

/* When the modal is active */
.video-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* The container for the video */
.video-container {
	width: min(90vw, 900px);
	position: relative;
	transform: scale(0.7);
	transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-overlay.active .video-container {
	transform: scale(1);
}

/* 16:9 Aspect Ratio */
.video-wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(var(--bs-black-rgb), 0.5);
	background: var(--bs-black);
}

.video-wrapper iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* Close Button */
.close-btn {
	position: absolute;
	top: -60px;
	right: 0;
	background: none;
	border: none;
	color: var(--bs-white);
	font-size: 35px;
	cursor: pointer;
	transition: transform 0.2s;
}

.close-btn:hover {
	transform: rotate(90deg);
}

/* Tablet */
@media (max-width: 991px) {
	.video-overlay {
		padding: 20px;
	}

	.video-container {
		width: min(94vw, 760px);
	}

	.close-btn {
		top: -42px;
		font-size: 26px;
		width: 38px;
		height: 38px;
	}

	.video-wrapper {
		border-radius: 10px;
	}
}

/* Mobile */
@media (max-width: 767px) {
	.video-overlay {
		padding: 16px;
		align-items: center;
	}

	.video-container {
		width: 100%;
		max-width: 100%;
	}

	.close-btn {
		top: -38px;
		right: 0;
		width: 34px;
		height: 34px;
		font-size: 22px;
	}

	.video-wrapper {
		border-radius: 8px;
		box-shadow: 0 14px 30px rgba(var(--bs-black-rgb), 0.45);
	}
}

/* Small mobile */
@media (max-width: 480px) {
	.video-overlay {
		padding: 12px;
	}

	.video-container {
		width: 100%;
	}

	.close-btn {
		top: -34px;
		width: 30px;
		height: 30px;
		font-size: 20px;
	}

	.video-wrapper {
		border-radius: 6px;
	}
}

/* ----------------------------------
   HEADER
-------------------------------------*/

html.menu-open,
body.menu-open {
	overflow: hidden;
	height: 100%;
}

.site-header {
	z-index: 99;
	transition: all 0.3s ease-in-out;
	padding: 1rem 0;
	background: var(--header-bg);

	&.scrolled {
		backdrop-filter: saturate(200%) blur(12px);
		background-color: var(--header-sticky-bg);
	}
}

.site-logo {
	img {
		max-height: 45px;
		width: auto;
		display: block;
	}

	.expo--meta-into {
		i {
			width: 1em;
			height: 1em;
			margin-top: 1px;
		}
	}
}

@media (min-width: 768px) {
	.site-logo {
		img {
			max-height: 60px;
		}
	}
}

.nav-item {
	position: relative;

	&:hover,
	&:focus-within {
		.nav-link {
			background: rgba(var(--bs-primary-rgb), 0.3);
			color: var(--bs-white);
		}
	}
}

.nav-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 14px;
	text-decoration: none;
	color: var(--bs-light);
	font-weight: 600;
	border-radius: 12px;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.nav-arrow {
	font-size: 11px;
}

.dropdown-menu-box {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	min-width: 270px;
	max-width: 320px;
	background: var(--bs-white);
	border-radius: 18px;
	box-shadow: 0 20px 55px rgba(var(--bs-primary-rgb), 0.16);
	padding: 14px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: all 0.28s ease;
	z-index: 20;
}

.nav-item:hover .dropdown-menu-box {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav-item:last-child .dropdown-menu-box,
.nav-item:nth-last-child(2) .dropdown-menu-box {
	left: auto;
	right: 0;
}

.dropdown-link {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	padding: 12px 14px;
	border-radius: 14px;
	color: var(--bs-black);
	font-weight: 500;
	transition: all 0.25s ease;
}

.dropdown-link i {
	width: 18px;
	text-align: center;
	color: inherit;
	font-size: 15px;
}

.dropdown-link:hover {
	background: rgba(var(--bs-primary-rgb), 0.09);
	color: var(--bs-black);
}

.header-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 20px;
	border-radius: 4px;
	text-decoration: none;
	font-size: 15px;
	font-weight: 700;
	transition: all 0.3s ease;
	white-space: nowrap;
}

@media (max-width: 1199px) {
	.nav-link {
		font-size: 14px;
		padding: 12px 10px;
	}

	.header-btn {
		padding: 0 16px;
		font-size: 14px;
	}
}

/* ===== Mobile Menu Toggler (offcanvas) ===== */
.mobile-menu-toggler {
	display: flex;
	flex-direction: column;
	align-items: end !important;
	justify-content: center;
	gap: 6px !important;
	border: 0;
	width: 40px;
	height: 40px;
	background: transparent;
	padding: 8px;
	box-shadow: none !important;
	background: rgba(var(--bs-white-rgb), 0.1);

	span {
		width: 100%;
		height: 2px;
		background: var(--bs-secondary);
		display: block;
		border-radius: 100px;
		transition: all 0.2s;
	}
}

.mobile-menu-offcanvas {
	max-height: 100vh;

	.navbar-brand {
		img {
			height: 40px;
		}
	}
}

.mobile-menu {
	a {
		color: var(--bs-dark);
		text-decoration: none;

		display: flex;
		align-items: center;
		justify-content: space-between;
		transition: all 0.2s;

		&[aria-expanded="true"] {
			color: var(--bs-primary);

			.dropdown-arrow {
				transform: rotate(180deg);
			}
		}
	}

	> li {
		padding: 0.5rem 1rem;
		border-radius: var(--bs-border-radius);
		border: 1px solid var(--bs-border-color);
		background: rgba(var(--bs-primary-rgb), 0.02);

		> a {
			font-size: 1.25rem;
			font-weight: 600;
		}

		&:hover {
			> a {
				color: var(--bs-primary);
			}
		}
	}

	.dropdown-arrow {
		width: 0.7em;
		height: 0.7em;
		transition: all 0.2s;
	}

	.offcanvas-dropdown-menu {
		li {
			a {
				justify-content: flex-start;
				gap: 10px;
				padding: 8px 0;

				[class^="fa-"] {
					color: var(--bs-primary);
				}
			}

			&:hover {
				a {
					color: var(--bs-primary);
				}
			}
		}
	}
}

/* =========================
   HERO SECTION
========================= */
.hero-section {
	background-image: url(../img/hero-bg-2.webp);
	background-size: cover;
	background-position: center center;
}

.hero-logo img {
	width: 200px;
}

@media (min-width: 768px) {
	.hero-logo img {
		width: 350px;
	}
}

/* New Slider CSS */
.highlight-slider {
	display: inline-flex;
	vertical-align: baseline;
	height: 1.15em;
	overflow: hidden;
	transition: width 1.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.highlight-slider-track {
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: transform 1.25s cubic-bezier(0.22, 1, 0.36, 1);
	width: max-content;
}

.highlight-slide {
	display: block;
	height: 1.15em;
	line-height: 1.15em;
	white-space: nowrap;
}

.hero-activate-box {
	padding: clamp(1.25rem, -0.2744rem + 4.878vw, 3.75rem);
	box-shadow: var(--color-box-shadow);
}

.activate-card {
	border: 1px solid var(--bs-border-color);
	background-color: var(--bs-white);
	box-shadow: 0px 8px 16px color-mix(in srgb, var(--bs-primary), transparent 90%);
	min-height: 250px;
	transition: all 0.3s ease;

	.activate-card--icon {
		width: 60px;
		height: 60px;
		font-size: 30px;
		color: var(--bs-primary);
		background: rgba(var(--bs-primary-rgb), 0.1);
		transition: all 0.3s ease;
		will-change: transform;
	}

	.btn {
		min-width: 166px;
		will-change: transform;

		&:hover {
			transform: translateY(-1px);
		}
	}

	&:hover {
		border-color: var(--bs-primary);
		background-color: color-mix(in srgb, var(--bs-primary) 2%, white);
		box-shadow: 0px 12px 28px color-mix(in srgb, var(--bs-primary), transparent 80%);
		transform: scale(1.03);

		.activate-card--icon {
			color: var(--bs-secondary);
			background-color: var(--bs-primary);
			transform: translateY(-8px);
		}
	}
}

/* =========================
   Second Section
========================= */

.landing-tab-btn-container {
	top: 101px;
	scroll-behavior: smooth;
	scrollbar-width: none;
	overflow-x: auto;
	gap: 20px;

	.tab-btn {
		width: 100%;
		padding: 1rem 1.5rem;
		background-color: var(--bs-white);
		border-radius: 10px;
		text-align: left;
		display: flex;
		align-items: center;
		gap: 1rem;
		transition: all 0.2s ease-in-out;
		border: 0 none;
		border: 1px solid var(--bs-border-color);
		box-shadow: 0px 8px 16px 0px rgba(var(--bs-primary-rgb), 0.06);
		white-space: nowrap;
		position: relative;

		&::before {
			content: "";
			position: absolute;
			top: 0;
			left: -1px;
			width: 100%;
			height: 100%;
			border-left: 5px solid var(--bs-primary);
			opacity: 0;
			visibility: hidden;
			transition: all 0.3s ease-in-out;
			border-radius: inherit;
		}

		.icon {
			width: 40px;
			height: 40px;
			font-size: 20px;
			flex-shrink: 0;
			background: rgba(var(--bs-primary-rgb), 0.1);
			transition: all 0.3s ease-in-out;
		}

		&:hover {
			background-color: rgba(var(--bs-primary-rgb), 0.1);
		}

		&.active {
			color: var(--bs-secondary);
			background-color: var(--bs-primary);
			border-color: var(--bs-primary);
			box-shadow: 0px 10px 30px -5px rgba(var(--bs-primary-rgb), 0.1);

			&::before {
				opacity: 1;
				visibility: visible;
			}

			.icon {
				background: var(--bs-secondary);
				color: var(--bs-dark);
			}
		}
	}
}

@media (min-width: 992px) {
	.landing-tab-btn-container {
		overflow-x: initial;

		.tab-btn {
			white-space: initial;
			padding: 2rem 1.5rem;

			.icon {
				width: 70px;
				height: 70px;
				font-size: 30px;
			}
		}
	}
}

.landing-buttons {
	.btn {
		min-width: 130px;
	}
}

/* Testimonial Section */
.testimonial-card {
	/* background: linear-gradient(91.92deg, #525252 -20.26%, #3b3b3b 50.38%, #242424 121.02%); */
	padding: clamp(1.25rem, 0.8594rem + 1.25vw, 1.875rem);
}

/* Social Sharing Section */
.social-btn {
	--bs-btn-padding-x: clamp(1.25rem, 0.7143rem + 1.7143vw, 2rem);
	--bs-btn-padding-y: clamp(1.25rem, 0.7143rem + 1.7143vw, 2rem);
	--bs-btn-font-size: 1rem;
	--bs-btn-font-weight: 600;
	--bs-btn-focus-box-shadow: 0 0 0 0.2rem var(--btn-focus-shadow);
	--bs-btn-color: var(--bs-body-color);
	--bs-btn-bg: var(--bs-white);
	--bs-btn-border-color: var(--bs-border-color);
	--bs-btn-hover-border-color: var(--bs-primary);
	box-shadow: var(--bs-box-shadow-sm);
	will-change: transform, box-shadow, background-color;

	.social-icon {
		width: 60px;
		height: 60px;
		font-size: 30px;
		transition: all 0.3s ease;
		will-change: transform;
		background: rgba(var(--bs-primary-rgb), 0.1);
	}

	&:hover {
		background-color: rgba(var(--bs-primary-rgb), 0.1);
		box-shadow: var(--bs-box-shadow);
		transform: scale(1.03);

		.social-icon {
			background: var(--bs-primary);
			color: var(--bs-secondary);
			transform: translateY(-8px);
		}
	}
}
/* Promo Code */

.promo-code-wrap {
	background: var(--bs-primary);
	padding: 30px 30px;
}
.promo-code-wrap h2 {
	color: var(--bs-white);
	text-align: center;
}
.promo-code-wrap h2 span {
	padding: 5px 15px;
	background: var(--bs-secondary);
	color: var(--bs-dark);
	border-radius: 4px;
}
#code-alert p {
	text-align: center;
    font-size: 20px;
	margin-top: 25px;
    margin-bottom: 0px;
    color: var(--bs-white);
}
#code-alert a {
	color: var(--bs-white);
	text-decoration: underline;
}
#code-alert a:hover {
	text-decoration: underline;
}
.lead-btn {
   display: inline-block;
   text-align: center;
   border: 1px solid var(--bs-white);
   padding: 15px 30px;
   font-weight: 600;
   text-transform: uppercase;
   color: var(--bs-dark);
   border-radius: 6px;
   font-size: 16px;
   background: transparent;
}
.lead-btn:hover,
.lead-btn:focus {
   border: 1px solid var(--bs-secondary);
   background: var(--bs-secondary);
   color: var(--bs-dark);

}
/* FAQ Section Styling */
.faq-tab-btn-container {
	flex-wrap: nowrap;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;

	.tab-btn {
		--bs-btn-active-color: var(--bs-secondary);
		--bs-btn-active-bg: var(--bs-primary);
		--bs-btn-active-border-color: var(--bs-primary);
		--bs-btn-border-radius: 100rem;
		white-space: nowrap;
		will-change: transform;
		flex: 1;

		&:hover,
		&.active {
			transform: scale(1.1);
		}
	}
}

.faq-accordion {
	--bs-accordion-color: var(--bs-body-color);
	--bs-accordion-bg: var(--bs-body-bg);
	--bs-accordion-btn-color: var(--bs-body-color);
	--bs-accordion-btn-bg: var(--bs-accordion-bg);
	--bs-accordion-active-color: var(---bs-body-color);
	--bs-accordion-active-bg: var(--bs-white);
	--bs-accordion-body-padding-x: 1.25rem;
	--bs-accordion-body-padding-y: 1.5rem;

	.accordion-item {
		border: 0;
		border-radius: 10px;
		box-shadow: 0px 0px 20px 0px #10182814;
		overflow: hidden;
	}

	.accordion-button {
		display: flex;
		justify-content: space-between;
		gap: 10px;
		box-shadow: none;

		&::after {
			display: none;
		}

		.icon {
			width: 40px;
			height: 40px;
			display: flex;
			align-items: center;
			justify-content: center;
			border: 1px solid var(--bs-border-color);
			border-radius: 100rem;
			flex-shrink: 0;

			&::before,
			&::after {
				content: "";
				background-color: var(--bs-body-color);
				position: absolute;
				transition: all 0.3s ease;
			}

			&::before {
				width: 16px;
				height: 2px;
			}

			&::after {
				width: 2px;
				height: 16px;
			}
		}

		&:not(.collapsed) {
			color: var(--bs-accordion-active-color);
			background-color: var(--bs-accordion-active-bg);
			box-shadow: none;

			.icon {
				&::after {
					opacity: 0;
					visibility: hidden;
					transform: rotate(90deg);
				}
			}
		}
	}

	.accordion-body {
		padding-top: 0;
		font-size: clamp(0.875rem, 0.6964rem + 0.5714vw, 1.125rem);
	}
}

@media (min-width: 992px) {
	.faq-accordion {
		.accordion-button {
			.icon {
				width: 50px;
				height: 50px;

				&::before {
					width: 18px;
				}

				&::after {
					height: 18px;
				}
			}
		}
	}
}

.inner-img img {
	max-width: 100%;
	border: 1px solid var(--bs-black);
	padding: 10px;
	border-radius: 10px;
}

.ins-img .inner-img img {
	max-width: 200px;
}

@media (min-width: 768px) {
	.inner-img img {
		max-width: 750px;
	}

	.ins-img .inner-img img {
		max-width: 320px;
	}
}

/* Footer */
.site-footer {
	background: var(--footer-bg);
}

.footer-logo img {
	max-height: 70px;
	width: auto;
}

.social-list a {
	color: var(--bs-secondary);
	background: var(--bs-primary);
	width: 50px;
	height: 50px;
	text-align: center;
	border-radius: 50%;
	font-size: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;

	&:hover {
		color: var(--bs-black);
		background-color: var(--bs-secondary);
	}
}
