@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

:root {
	--primary-font: "Roboto", sans-serif;
	--primary-color: #313780;
	--secondary-color: #383838;
	--blue-color: #0660da;
	--cyan-color: #4aa6fb;
	--grey-color: #aeb0d1;
	--dark-grey-color: #252738;
	--black-color: #5d5b5b;
	--white-color: #ffffff;
	--text-color: #525252;
	--blue-text-color: #4aa6fb;
	--yellow-color: #fce806;
	--primary-transition: all 0.5s ease-in-out 0s;
	--box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
	--base-border-radius: 20px;
	--fw-400: 400;
	--fw-500: 500;
	--fw-600: 600;
	--fw-700: 700;
}

* {
	scrollbar-color: #e9ebf3 #efefef;
	scrollbar-width: thin;
}

ol,
ul {
	padding: 0;
	margin: 0;
}

textarea {
	resize: none;
}

p:last-child {
	margin-bottom: 0;
}

/* width */
::-webkit-scrollbar {
	width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #5964aa;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #9299c7;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: var(--primary-color);
}

body {
	font-family: var(--primary-font);
	font-size: 14px;
	color: var(--text-color);
	background: #ffffff;
	line-height: 1.5;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

/* Default for mobile */
.container-fluid {
	padding-left: 15px;
	padding-right: 15px;
}

.btn-holder {
	display: flex;
	gap: 10px;
}

.btn-solid {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 10px 30px;
	font-size: 18px;
	border-radius: 10px;
	background: var(--primary-color);
	color: var(--white-color);
	font-weight: 600;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	text-decoration: none;
	height: auto;
	box-sizing: border-box;
	border: 1px solid var(--yellow-color);
	position: relative;
	overflow: hidden;
	letter-spacing: 1px;
	z-index: 1;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.btn-solid::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--yellow-color);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
	z-index: -1;
}

.btn-solid:hover {
	color: var(--black-color) !important;
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-solid:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

.btn-solid.btn-sm {
	padding: 8px 22px;
	font-size: 14px;
	gap: 8px;
}

.btn-solid.btn-yellow {
	background: var(--yellow-color);
	color: var(--black-color);
}

.btn-solid.btn-yellow::before {
	background: var(--primary-color);
}

.btn-solid.btn-yellow:hover {
	color: var(--white-color) !important;
}

.btn-bordered {
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
	padding: 10px 30px;
	border-radius: 10px;
	font-weight: 700;
	text-decoration: none;
	transition: 0.3s;
	margin-right: 22px;
}

.btn-bordered:hover {
	background: var(--primary-color);
	color: #fff;
}

a {
	color: var(--text-color);
}

a:hover {
	color: var(--secondary-color);
}

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

ul li,
ol li {
	list-style: none;
}

img {
	max-width: 100%;
}

section:has(.fadeInRight),
section:has(.fadeInLeft),
section:has(.fadeInLeftShort),
section:has(.fadeInRightShort) {
	overflow-x: hidden;
}

.slick-dotted.slick-slider {}

.slick-dots {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.slick-dots li {
	width: 8px;
	height: 8px;
	margin: 0 6px;
}

.slick-dots li button {
	width: 8px;
	height: 8px;
	padding: 0;
}

.slick-dots li button:before {
	content: "";
	width: 8px;
	height: 8px;
	background: rgba(80, 80, 80, 0.5);
	border-radius: 50%;
	opacity: 1;
	transition: 0.3s;
}

.slick-dots li.slick-active button:before {
	background: var(--primary-color);
	transform: scale(1.1);
	opacity: 1;
}


.slick-prev,
.slick-next {
	font-size: 15px;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	color: var(--text-color);
}

.slick-arrow.slick-hidden {
	display: block;
}

h1 {
	font-size: 44px;
}

h2 {
	font-size: 38px;
}

h3 {
	font-size: 32px;
}

h4 {
	font-size: 28px;
}

h5 {
	font-size: 24px;
}

h6 {
	font-size: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.2;
	font-family: var(--primary-font);
	color: var(--secondary-color);
	margin-bottom: 1.2rem;
	font-weight: 500;
}

.section-title {
	margin-bottom: 50px;
	display: flex;
	align-items: center;
	gap: 12px;
	line-height: 1.1;
	color: var(--blue-color);
	position: relative;
}

.section-title span {
	color: var(--black-color);
}

.section-title-link {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 5px;
	text-decoration-thickness: 2px;
	transition: var(--primary-transition);
}

.section-title-link:hover {
	color: var(--primary-color);
	text-decoration: underline;
	text-decoration-color: var(--yellow-color);
}

.section-title::after {
	content: "";
	background: var(--yellow-color);
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 30px;
	height: 6px;
}

.section-title.text-white {
	color: var(--white-color) !important;
}

.section-title.text-white span {
	color: var(--cyan-color) !important;
}

.section-title.text-white span.text-highlight {
	color: var(--yellow-color) !important;
}

.text-center .section-title {
	display: inline-block;
}

.text-center .section-title::after {
	left: 50%;
	transform: translateX(-50%);
}

.inner-banner .section-title {
	color: var(--text-color);
	padding-left: 20px;
	display: inline-block;
	border-bottom: 1px solid #dadbdd;
	margin-bottom: 0;
}

.inner-banner .section-title::after {
	left: 0;
	bottom: inherit;
	width: 6px;
	height: calc(100% - 15px);
	top: 7px;
}

textarea {
	resize: none;
}

.fs-54 {
	font-size: 50px;
}

.fs-48 {
	font-size: 44px;
}

.fs-38 {
	font-size: 32px;
}

.fs-35 {
	font-size: 31px;
}

.default-page-sec h2,
.fs-32 {
	font-size: 28px;
}

.default-page-sec h3,
.fs-28 {
	font-size: 24px;
}

.default-page-sec h5,
.fs-24 {
	font-size: 20px;
}

.default-page-sec h6,
.fs-20 {
	font-size: 18px;
}

.fs-18 {
	font-size: 15px;
}

.fs-16 {
	font-size: 14px;
}

.fs-14 {
	font-size: 12px;
}


p:not(:last-child) {
	margin-bottom: 1.5rem;
}

/* =========================================
   DEFAULT PAGE CONTENT STYLES
   ========================================= */
.default-page-sec {
	min-height: 400px;
}

.default-page-sec h1,
.default-page-sec h2,
.default-page-sec h3,
.default-page-sec h4,
.default-page-sec h5,
.default-page-sec h6 {
	color: var(--primary-color);
	margin-bottom: 20px;
	font-weight: 600;
}

.default-page-sec p {
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.default-page-sec ul,
.default-page-sec ol {
	margin-bottom: 1.5rem;
	padding-left: 5px;
}

.default-page-sec ul li {
	list-style: none;
	position: relative;
	padding-left: 25px;
	margin-bottom: 12px;
	line-height: 1.4;
}

.default-page-sec ul li::before {
	content: "\f111";
	font-family: "FontAwesome";
	position: absolute;
	left: 0;
	top: 6px;
	font-size: 8px;
	color: var(--cyan-color);
}

.default-page-sec ol {
	counter-reset: my-counter;
}

.default-page-sec ol li {
	list-style: none;
	position: relative;
	padding-left: 30px;
	margin-bottom: 12px;
	line-height: 1.6;
	counter-increment: my-counter;
}

.default-page-sec ol li::before {
	content: counters(my-counter, ".") ". ";
	position: absolute;
	left: 0;
	top: 0;
	font-weight: 700;
	color: var(--primary-color);
}

/* Secondary Level Lists (Nested) */
.default-page-sec ul ul,
.default-page-sec ul ol,
.default-page-sec ol ul,
.default-page-sec ol ol {
	margin-bottom: 0;
	margin-top: 10px;
	padding-left: 20px;
}

.default-page-sec ul ul li::before,
.default-page-sec ol ul li::before {
	content: "\f10c";
	/* Open circle for sub-list */
	font-weight: 400;
	font-size: 10px;
	top: 7px;
}

.default-page-sec ul ol li::before,
.default-page-sec ol ol li::before {
	font-family: var(--primary-font);
	font-size: 16px;
	top: 0;
}


.sc-pt-140 {
	padding-top: 140px;
}

.sc-pb-140 {
	padding-bottom: 140px;
}

.sc-pt-120 {
	padding-top: 120px;
}

.sc-pb-120 {
	padding-bottom: 120px;
}

.sc-pt-100 {
	padding-top: 100px;
}

.sc-pb-100 {
	padding-bottom: 100px;
}

.sc-pt-90 {
	padding-top: 90px;
}

.sc-pb-90 {
	padding-bottom: 90px;
}

.sc-pt-80 {
	padding-top: 80px;
}

.sc-pb-80 {
	padding-bottom: 80px;
}

.sc-pt-70 {
	padding-top: 70px;
}

.sc-pb-70 {
	padding-bottom: 70px;
}

.sc-pt-60 {
	padding-top: 60px;
}

.sc-pb-60 {
	padding-bottom: 60px;
}

.sc-pt-50 {
	padding-top: 50px;
}

.sc-pb-50 {
	padding-bottom: 50px;
}

.sc-pt-40 {
	padding-top: 40px;
}

.sc-pb-40 {
	padding-bottom: 40px;
}

.sc-pt-30 {
	padding-top: 30px;
}

.sc-pb-30 {
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.sc-pt-20 {
	padding-top: 20px;
}

.sc-pb-20 {
	padding-bottom: 20px;
}

/* =========================================
   GENERIC UTILITIES
   ========================================= */
.bg-navy {
	background-color: var(--primary-color) !important;
}

.bg-light {
	background-color: #f8f9fa !important;
}

.form-control:focus {
	box-shadow: inherit;
	border: 0;
	outline: none;
}

section {
	overflow: hidden;
}

/* =========================================
   COMMON RESPONSIVE STYLES
   ========================================= */

/* UPWARD SCALING (Growth Steps) */
@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}

	.container-fluid {
		padding-left: 50px;
		padding-right: 50px;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1140px;
	}
}

@media (min-width: 1281px) {
	.container {
		max-width: 1170px;
	}
}

@media (min-width: 1371px) {
	.container {
		max-width: 1240px;
	}
}

@media (min-width: 1401px) {
	.container {
		max-width: 1300px;
	}
}

@media (min-width: 1541px) {
	.container {
		max-width: 1320px;
	}
}

@media (min-width: 1601px) {
	.container {
		max-width: 1480px;
	}
}

/* MOBILE REFINEMENTS (Shrinkage Steps) */
@media (max-width: 1199px) {
	.fs-54 {
		font-size: 44px;
	}

	.fs-48 {
		font-size: 38px;
	}

	.fs-38 {
		font-size: 32px;
	}

	.fs-35 {
		font-size: 30px;
	}

	h1 {
		font-size: 42px;
	}

	h2 {
		font-size: 36px;
	}

	h3 {
		font-size: 30px;
	}

	h4 {
		font-size: 24px;
	}

	h5 {
		font-size: 20px;
	}

	h6 {
		font-size: 20px;
	}
}

@media (max-width: 991px) {
	.fs-54 {
		font-size: 38px;
	}

	.fs-48 {
		font-size: 32px;
	}

	.fs-38 {
		font-size: 28px;
	}

	.fs-35 {
		font-size: 26px;
	}

	.fs-24 {
		font-size: 20px;
	}

	h1 {
		font-size: 36px;
	}

	h2 {
		font-size: 32px;
	}

	h3 {
		font-size: 28px;
	}

	h4 {
		font-size: 22px;
	}

	h5 {
		font-size: 18px;
	}

	h6 {
		font-size: 18px;
	}

	.sc-pt-140 {
		padding-top: 70px;
	}

	.sc-pb-140 {
		padding-bottom: 80px;
	}

	.sc-pt-120 {
		padding-top: 70px;
	}

	.sc-pb-120 {
		padding-bottom: 70px;
	}

	.sc-pt-100 {
		padding-top: 60px;
	}

	.sc-pb-100 {
		padding-bottom: 60px;
	}

	.sc-pt-70 {
		padding-top: 50px;
	}

	.sc-pb-70 {
		padding-bottom: 50px;
	}
}

@media (max-width: 767px) {
	.fs-54 {
		font-size: 32px;
	}

	.fs-48 {
		font-size: 28px;
	}

	.fs-38 {
		font-size: 24px;
	}

	.fs-35 {
		font-size: 22px;
	}

	.fs-28 {
		font-size: 20px;
	}

	.fs-24 {
		font-size: 18px;
	}

	.fs-20 {
		font-size: 16px;
	}

	h1 {
		font-size: 32px;
	}

	h2 {
		font-size: 26px;
	}

	.sc-pt-140,
	.sc-pt-120,
	.sc-pt-100,
	.sc-pt-80,
	.sc-pt-70 {
		padding-top: 30px;
	}

	.sc-pb-140,
	.sc-pb-120,
	.sc-pb-100,
	.sc-pb-80,
	.sc-pb-70 {
		padding-bottom: 30px;
	}

	.sc-pt-60,
	.sc-pt-50,
	.sc-pt-40 {
		padding-top: 20px;
	}

	.sc-pb-60,
	.sc-pb-50,
	.sc-pb-40 {
		padding-bottom: 20px;
	}

	.section-title {
		justify-content: center;
		text-align: center;
		font-size: 24px;
		margin-bottom: 25px;
	}

	.section-title::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.inner-banner .section-title {
		text-align: left;
		justify-content: flex-start;
	}

	.inner-banner .section-title::after {
		left: 0;
		transform: none;
	}

	h1.section-title {
		font-size: 30px;
	}

	.inner-banner .section-title {
		font-size: 30px;
	}

	.btn-solid {
		font-size: 16px;
		padding: 10px 20px;
	}
}

@media (max-width: 359px) {
	.fs-38 {
		font-size: 22px;
	}

	.fs-35 {
		font-size: 20px;
	}

	.btn-solid {
		padding: 8px 15px;
		font-size: 14px;
	}
}
