/* Branding */
:root {

	/* Color Variable */
	--theme-primary-dark: #212121;
	--theme-secondary-dark: #2F2F2F;
	--theme-golden: #A97E00;

	--text-color: #F9F9F9;
	--headding-color: #ffffff;

	/* Linear Gradient Variable */
	/* --technology-icon-linear: linear-gradient(#e7e5ff1a 0%, #e7e5ff00 100%); */

	/* Font Size Variable */
	--h1-fs: 52px;
	--h2-fs: 40px;
	--h3-fs: 32px;
	--h4-fs: 24px;
	--h5-fs: 20px;
	--h6-fs: 18px;
	--p-fs: 16px;

	/* Spacing Variable */
	--section-padding: 100px;
	--section-title-bottom: 40px;
	--content-space: 30px;
	--headding-lh: 1.2em;

	/* Font Family Variable */
	--theme-font: "Trebuchet MS", Tahoma, sans-serif;

}

html.lenis {
	height: auto;
}
.lenis.lenis-smooth {
	scroll-behavior: auto;
} 
.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}
.lenis.lenis-stopped {
	overflow: hidden;
}
.lenis.lenis-scrolling iframe {
	pointer-events: none;
} 


/* Common CSS */
body {
	font-size: var(--p-fs);
	font-weight: 400;
	color: var(--text-color);
	font-family: var(--theme-font);
	background-color: var(--theme-primary-dark);
}
a {
	color: inherit;
	text-decoration: none;
	background-color: transparent;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
a:focus {
	outline: none;
	text-decoration: none;
	color: var(--theme-golden);
}
a:hover {
	text-decoration: none;
	color: var(--theme-golden);
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
	border: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 30px white inset !important;
}
:focus {
  outline: none;
}
:focus-visible {
  box-shadow: none !important;
}

/* number field arrow remove */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}


/* Placeholder color change */
input::placeholder,
textarea::placeholder {
	color: color-mix(in srgb, var(--text-color) 70%, transparent) !important;
	opacity: 1;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
	color:  color-mix(in srgb, var(--text-color) 70%, transparent) !important;
	opacity: 1;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color:  color-mix(in srgb, var(--text-color) 70%, transparent) !important;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
	color:  color-mix(in srgb, var(--text-color) 70%, transparent) !important;
}


/* Headings */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	margin: 0;
	font-weight: bold;
	color: var(--headding-color);
	line-height: var(--headding-lh);
}
h1, .h1 {
	font-size: var(--h1-fs);
}
h2, .h2 {
	font-size: var(--h2-fs);
}
h3, .h3 {
	font-size: var(--h3-fs);
}
h4, .h4 {
	font-size: var(--h4-fs);
}
h5, .h5 {
	font-size: var(--h5-fs);
}
h6, .h6 {
	font-size: var(--h6-fs);
}
p {
	font-size: var(--p-fs);
	line-height: 1.4em;
	margin-bottom: 0;
}
p:not(:last-of-type) {
  margin-bottom: 12px;
}

/* Section CSS */
.sec-padding {
  padding-block: var(--section-padding);
}
.sec-bg {
	background-color: var(--theme-secondary-dark);
}

/* Theme Title CSS */
.theme-title {
	padding-bottom: 25px;
	margin-bottom: var(--section-title-bottom);
}
.theme-title::after {
	content: '';
    width: 280px;
    height: 1px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
	border-bottom: 2px dashed var(--theme-golden);
}
.theme-title ul {
    width: max-content;
    margin-block: 20px 0;
}

/* Button CSS */
.theme-btn {
	font-size: 16px;
	font-weight: 600;
    padding: 10px 20px;
    border-radius: 22px;
	color: var(--text-color);
	border: 1px solid var(--text-color);
	background-color: var(--theme-golden);
}
.theme-btn:active {
	background-color: var(--theme-primary-dark) !important;
}
.theme-btn:focus,
.theme-btn:hover {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	transform: scale(1.1);
	color: var(--text-color);
	border: 1px solid var(--text-color);
	background-color: var(--theme-primary-dark);
	box-shadow: var(--text-color) 0px 1px 5px 0px;
}

/* FAQ CSS */
.accordion .accordion-item .accordion-header .accordion-button {
    padding-block: 12px;
    font-weight: 900;
	line-height: 2;
}
.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    color: var(--theme-golden);
    background-color: color-mix(in srgb, var(--theme-golden) 10%, transparent);
}
.accordion .accordion-item .accordion-header .accordion-button::after {
	transform: rotate(-90deg);
}
.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
	transform: rotate(0deg);
	color: var(--theme-golden);
}
.accordion .accordion-item .accordion-header .accordion-button:focus{
	box-shadow: none;
}



.whatsapp i,
.call i {
	z-index: 2;
	width: 58px;
	height: 58px;
	color: #fff;
    position: fixed;
	right: 30px;
	border-radius: 50%;
	border: 2.5px solid #fff;
    box-shadow: #00000029 0px 3px 6px, #0000003b 0px 3px 6px;
}
.whatsapp i {
	bottom: 110px;
	font-size: 30px;
    padding: 12px 14px;
    background: #1c9329;
}
.call i {
	bottom: 30px;
	font-size: 25px;
    padding: 14px 14px;
    background: #de2321;
}

@media (max-width: 992px) {
	:root {
		--h1-fs: 42px;
		--h2-fs: 36px;
		--h3-fs: 26px;
		--section-padding: 80px;
	}
	.theme-title::after {
    	width: 230px;
	}
	
}
@media (max-width: 767px) {
	:root {
		--h2-fs: 28px;
		--h3-fs: 24px;
		--section-padding: 60px;
		--section-title-bottom: 40px;
		--content-space: 20px;
	}
	.theme-title::after {
    	width: 180px;
	}
}
@media (max-width: 576px) {
	:root {
		--h2-fs: 24px;
		--h3-fs: 22px;
		--section-title-bottom: 30px;
		--section-padding: 50px;
	}
	.theme-title {
    	padding-bottom: 20px;
	}
	.theme-btn {
		white-space: nowrap;
    	padding: 8px 16px 8px 18px;
	}
}
@media (max-width: 480px) {}