@font-face {
	font-family: 'icomoon';
	src: url('../fonts/icomoon.eot?rni7yd');
	src: url('../fonts/icomoon.eot?rni7yd#iefix') format('embedded-opentype'),
		url('../fonts/icomoon.ttf?rni7yd') format('truetype'), url('../fonts/icomoon.woff?rni7yd') format('woff'),
		url('../fonts/icomoon.svg?rni7yd#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

[class^='icon-'],
[class*=' icon-'] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: 'icomoon' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-close:before {
	content: "\e90f";
}

.icon-bar:before {
	content: "\e90e";
}

.icon-arrow:before {
	content: '\e90c';
}

.icon-download:before {
	content: '\e90d';
}

.icon-address:before {
	content: '\e908';
}

.icon-clock:before {
	content: '\e909';
}

.icon-chevron-down:before {
	content: '\e90a';
}

.icon-more:before {
	content: '\e90b';
}

.icon-facebook:before {
	content: '\e900';
}

.icon-linkedin:before {
	content: '\e901';
}

.icon-twitter:before {
	content: '\e902';
}

.icon-instagram:before {
	content: '\e903';
}

.icon-search:before {
	content: '\e904';
}

.icon-email:before {
	content: '\e905';
}

.icon-phone:before {
	content: '\e906';
}

.icon-marker:before {
	content: '\e907';
}


@font-face {
	font-family: 'Prata';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/Prata-Regular.ttf') format('truetype');

}

@font-face {
	font-family: 'Hind';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('../fonts/Hind-Medium.ttf') format('truetype');

}

html {
	scroll-behavior: smooth;
}

/* Global Fonts Start */
:root {
	/* Font Sizes with clamp() - REM based */
	--font-size-h1: clamp(1.875rem, 4vw, 4rem);
	/* 30px ~ 64px */
	--font-size-h2: clamp(1.875rem, 4vw, 2.75rem);
	/* 20px ~ 44px */
	--font-size-h3: clamp(1.75rem, 4vw, 2.5rem);
	/* 18px ~ 40px */
	--font-size-h4: clamp(1.5rem, 3vw, 1.875rem);
	/* 16px ~ 30px */
	--font-size-h5: clamp(1.25rem, 2.5vw, 1.5rem);
	/* 16px ~ 24px */
	--font-size-h6: clamp(1.125rem, 2vw, 1.25rem);
	/* 16px ~ 20px */
	--font-size-h7: clamp(1.125rem, 1.8vw, 1.125rem);
	/* 16px ~ 18px */

	/* Body Text */
	--font-size-body1: clamp(1rem, 2vw, 1.25rem);
	/* 16px ~ 20px */
	--font-size-body2: clamp(0.875rem, 1.8vw, 1rem);
	/* 14px ~ 16px */
	--font-size-body3: 0.75rem;
	/* 12px fixed */

	/* Button Text */
	--font-size-button: clamp(0.875rem, 1.8vw, 1rem);
	/* 14px ~ 16px */

	/* Font Families */
	--font-family-title: 'Prata', serif;
	--font-family-body: 'Hind', sans-serif;

	/* Font Weights */
	--font-weight-h1: 600;
	--font-weight-h2: 600;
	--font-weight-h3: 600;
	/* Semi-Bold */
	--font-weight-h4: 500;
	--font-weight-h5: 500;
	--font-weight-h6: 500;

	--font-weight-body1: 500;
	/* Medium */
	--font-weight-body2: 400;
	/* Regular */
	--font-weight-body3: 400;
	--font-weight-button: 600;
	/* Semi-Bold */

	/* Letter Spacing (in ems) */
	--letter-spacing-title: -0.02em;
	--letter-spacing-button: 0.03em;

	/* Line Heights */
	--line-height-body1: 1.4;
	--line-height-body2: 1.4;
	--line-height-body3: 1.4;
}

/* Global Fonts End */

/* Global Colors Start */
:root {
	--color-black: hsl(0, 0%, 0%);
	--color-white: hsl(0, 0%, 100%);
	--color-primary: #1c2964;
	--color-secondary: #1f2a44;
	--color-tertiary: #4b5563;
	--color-quaternary: #b3b3b3;
	--color-quinary: #f1e6da;
	--color-senary: #c19a6b;
	--color-septenary: #c03951;
	--color-octonary: #be202f;
	--color-nonary: #4b2e39;
	--color-transparent: hsla(0, 0%, 0%, 0);
	--pl-blue: #052e44;
}

/* Global Colors End */

/* Typography for Headings Start */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family-title);
}

.title-h1 {
	font-family: var(--font-family-title);
	font-size: var(--font-size-h1) !important;
	font-weight: var(--font-weight-h1);
	letter-spacing: var(--letter-spacing-title);
	line-height: 1.2;
	margin-bottom: 1rem;
}

.heading-2 {
	font-family: var(--font-family-title);
	font-size: var(--font-size-h2) !important;
	font-weight: var(--font-weight-h2);
	letter-spacing: var(--letter-spacing-title);
	line-height: 1.25;
	margin-bottom: 1rem;
}

.heading-3 {
	font-family: var(--font-family-body);
	font-size: var(--font-size-h3) !important;
	font-weight: var(--font-weight-h3);
	letter-spacing: var(--letter-spacing-title);
	line-height: 1.3;
	margin-bottom: 1rem;
}

.heading-4 {
	font-family: var(--font-family-title);
	font-size: var(--font-size-h4) !important;
	font-weight: var(--font-weight-h4);
	letter-spacing: var(--letter-spacing-title);
	line-height: 1.35;
	margin-bottom: 1rem;
}

.heading-5 {
	font-family: var(--font-family-title);
	font-size: var(--font-size-h5) !important;
	font-weight: var(--font-weight-h5);
	letter-spacing: var(--letter-spacing-title);
	line-height: 1.4;
	margin-bottom: 1rem;
}

.heading-6 {
	font-family: var(--font-family-title);
	font-size: var(--font-size-h6) !important;
	font-weight: var(--font-weight-h6);
	letter-spacing: var(--letter-spacing-title);
	line-height: 1.4;
	margin-bottom: 1rem;
}

.heading-7 {
	font-family: var(--font-family-title);
	font-size: var(--font-size-h7) !important;
	font-weight: var(--font-weight-h6);
	letter-spacing: var(--letter-spacing-title);
	line-height: 1.4;
	margin-bottom: 1rem;
}

/* Typography for Headings End */

/* Typography for Body Text Start */
.body-text-1 {
	font-family: var(--font-family-body);
	font-size: var(--font-size-body1);
	font-weight: var(--font-weight-body1);
	line-height: var(--line-height-body1);
	margin-bottom: 1rem;
}

.body-text-2,
p.body-text-2 {
	font-family: var(--font-family-body);
	font-size: var(--font-size-body2);
	font-weight: var(--font-weight-body2);
	line-height: var(--line-height-body2);
	margin-bottom: 1rem;
}

.body-text-3,
p.body-text-3 {
	font-family: var(--font-family-body);
	font-size: var(--font-size-body3);
	font-weight: var(--font-weight-body3);
	line-height: var(--line-height-body3);
	margin-bottom: 1rem;
}

/* Typography for Body Text End */

/* Typography for Button Text Start */
.button-text {
	font-family: var(--font-family-body);
	font-size: var(--font-size-button);
	font-weight: var(--font-weight-button);
	letter-spacing: var(--letter-spacing-button);
	text-transform: uppercase;
}

/* Typography for Button Text End */

/* Font Weights Start */
.font-weight-100 {
	font-weight: 100 !important;
}

.font-weight-200 {
	font-weight: 200 !important;
}

.font-weight-300 {
	font-weight: 300 !important;
}

.font-weight-400 {
	font-weight: 400 !important;
}

.font-weight-500 {
	font-weight: 500 !important;
}

.font-weight-600 {
	font-weight: 600 !important;
}

.font-weight-700 {
	font-weight: 700 !important;
}

.font-weight-800 {
	font-weight: 800 !important;
}

.font-weight-900 {
	font-weight: 900 !important;
}

/* Font Weights End */

/* Text Alignment Start */
.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-balance {
	text-wrap: balance;
}

@media (min-width: 992px) {
	.text-lg-left {
		text-align: left;
	}

	.text-lg-center {
		text-align: center;
	}

	.text-lg-right {
		text-align: right;
	}
}

/* Text Alignment End */

/* Text Colors Start */
.text-primary {
	color: var(--color-primary) !important;
}

.text-secondary {
	color: var(--color-secondary) !important;
}

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

.text-black {
	color: var(--color-black) !important;
}

.text-tertiary {
	color: var(--color-tertiary) !important;
}

.text-quinary {
	color: var(--color-quinary) !important;
}

.text-dark {
	color: #0e151d !important;
}

.text-quaternary {
	color: var(--color-quaternary) !important;
}

.text-octonary {
	color: var(--color-octonary) !important;
}

.text-pl-blue {
	color: var(--pl-blue) !important;
}

/* Text Colors End */

/* Background Colors Start */
.bg-primary {
	background-color: var(--color-primary) !important;
}

.bg-secondary {
	background-color: var(--color-secondary) !important;
}

.bg-white {
	background-color: var(--color-white) !important;
}

.bg-black {
	background-color: var(--color-black) !important;
}

.bg-tertiary {
	background-color: var(--color-tertiary) !important;
}

.bg-quinary {
	background-color: var(--color-quinary) !important;
}

.bg-dark {
	background-color: #0e151d;
}

.bg-pl-blue {
	background-color: var(--pl-blue) !important;
}

.bg-octonary {
	background-color: var(--color-octonary) !important;
}

.bg-transparent {
	background-color: var(--color-transparent) !important;
}

/* Background Colors End */

/* Border Colors Start */
.border-primary {
	border-color: var(--color-primary) !important;
}

.border-secondary {
	border-color: var(--color-secondary) !important;
}

.border-white {
	border-color: var(--color-white) !important;
}

.border-black {
	border-color: var(--color-black) !important;
}

.border-tertiary {
	border-color: var(--color-tertiary) !important;
}

.border-quinary {
	border-color: var(--color-quinary) !important;
}

.border-quaternary {
	border-color: var(--color-quaternary) !important;
}

.border-octonary {
	border-color: var(--color-octonary) !important;
}

/* Border Colors End */

.rounded {
	border-radius: 1.25rem;
}

.rounded-circle {
	border-radius: 50%;
}

.rounded-sm {
	border-radius: 0.25rem;
}

.rounded-md {
	border-radius: 0.5rem;
}

.rounded-lg {
	border-radius: 0.75rem;
}

.rounded-xl {
	border-radius: 1rem;
}

/* Width and Height Start */
.w-25 {
	width: 25% !important;
}

.w-50 {
	width: 50% !important;
}

.w-75 {
	width: 75% !important;
}

.w-100 {
	width: 100% !important;
}

.w-auto {
	width: auto !important;
}

.h-25 {
	height: 25% !important;
}

.h-50 {
	height: 50% !important;
}

.h-75 {
	height: 75% !important;
}

.h-100 {
	height: 100% !important;
}

.h-auto {
	height: auto !important;
}

/* Width and Height End */

html,
body {
	font-family: var(--font-family-body);
}

.row-reverse {
	flex-direction: row-reverse;
}

.heading-section__desc {
	text-transform: capitalize;
}

.heading-section__title span,
.heading-section__desc span,
.title-red {
	color: var(--color-octonary);
}

.sw-pg--center {
	justify-content: center;
	align-items: center;
	display: flex;
}

.aic {
	align-items: center;
}

.button {
	background-color: var(--pl-blue);
	color: #fff;
	font-weight: 600;
	font-size: 1rem;
	height: 3rem;
	padding: 0.75rem 1rem;
	border-radius: 1.25rem;
	transition: 0.5s;
	display: flex;
	min-width: 10rem;
	width: fit-content;
	align-items: center;
	justify-content: center;text-transform: capitalize;
}

.button:hover {
	background-color: var(--color-octonary);
}

.button-link {
	background-color: var(--color-transparent);
	color: var(--color-octonary);
	font-size: 1rem;
	font-weight: 600;
	line-height: normal;
	text-transform: capitalize;
	transition: 300ms;

	&:hover {
		color: var(--color-octonary);
		text-decoration: underline;
	}
}

.button-white {
	background-color: var(--color-white);
	color: var(--color-black);
	font-weight: 600;
	font-size: 1rem;
	padding: 1rem 2rem;
	border-radius: 1.25rem;
	transition: 300ms;
	border: 1px solid var(--color-white);

	&:hover {
		background-color: var(--pl-blue);
		color: var(--color-white);
	}
}

.bg-pattern {
	background-image: url(../../assets/img/pattern2.png);
	background-size: 100%;
	background-position: center center;
	background-repeat: no-repeat;
}

/* Header Start */
nav ul.nav {
	position: relative;
	color: var(--pl-blue);

	& *,
	& *::before,
	& *::after {
		transition: 100ms;
	}

	& > .menu-item.nav-item {
		--indicator-offset: 0.25rem;
		margin-inline: calc(4 * var(--indicator-offset));
		position: relative;

		&::before {
			content: '';
			width: 0px;
			height: 2px;
			position: absolute;
			background-color: currentcolor;
			bottom: -2px;
			left: calc(-1 * var(--indicator-offset));
		}

		&:hover::before {
			width: calc(100% + calc(2 * var(--indicator-offset)));
		}
	}

	& ul > .menu-item {
		color: var(--pl-blue);
	}

	& .dropdown {
		& .dropdown-toggle::after {
			content: '';
			background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjUiIHZpZXdCb3g9IjAgMCA4IDUiIGZpbGw9Im5vbmUiPgogIDxwYXRoIGQ9Ik0xLjAwNzgxIDEuMTgxNEw0LjAwNzgxIDQuMTgxNEw3LjAwNzgxIDEuMTgxNCIgc3Ryb2tlPSIjQkUyMDJGIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+');
			--arrow-size: 0.75rem;
			width: var(--arrow-size);
			height: var(--arrow-size);
			background-size: var(--arrow-size);
			display: inline-block;
			margin-left: 0.5rem;
			background-position: center;
			background-repeat: no-repeat;
		}

		& .dropdown-menu {
			opacity: 0;
			visibility: hidden;
			transition: 300ms;
			position: absolute;
			top: 2rem;
			padding: 0rem;
			border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
			background-color: #ffffff;

			& .menu-item {
				padding-inline: 0.5rem;
				padding-block: 0.325rem;
				font-size: 90%;
				/* min-width: max-content; */

				&:hover {
					background-color: var(--pl-blue);
					color: var(--color-white);
				}

				&:first-child {
					border-radius: 0.5rem 0.5rem 0rem 0rem;
				}

				&:last-child {
					border-radius: 0rem 0rem 0.5rem 0.5rem;
				}
			}
		}

		& .dropdown-item {
			display: block;
			white-space: nowrap;
		}

		&:hover .dropdown-menu {
			opacity: 1;
			visibility: visible;
			box-shadow: 0 0 2px 0px #00000040;
			border: 1px solid #052e4440;
			z-index: 100;
		}
	}
}

/* Header End */

/* Footer Start */
footer {
	background-image: url(../img/pattern3.png);
	background-size: cover;
	background-position: center center;

	& .menu .menu-item {
		margin-block: 0.25rem;
		padding-block: 0.25rem;
	}
}

/* Footer End */

.heading-section {
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	margin-bottom: 3.75rem;
}

.heading-section__desc {
	text-align: center;
	text-wrap-style: balance;
	font-size: 1rem;
	color: #4b5563;
	line-height: 1.25;
}

.heading-section__title {
	text-align: center;
	text-wrap-style: balance;
	font-size: 2.75rem;
	color: #052e44;
	line-height: 1.25;
}


.heading-section__btn {
	color: #be202f;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-size: 1rem;
	font-weight: 600;
	transition: color .5s;text-transform: capitalize;
}


.heading-section__btn:hover {
	color: #052e44;
}

.heading-section__btn i {
	transition: transform .5s;
}

.heading-section__btn:hover i {
	transform: rotate(45deg);
}

.space--lg {
	margin-block: 7.5rem;
}

.btns__wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
}

@media (max-width: 991.98px) {
	.heading-section {
		margin-bottom: 1.75rem;
	}

	.heading-section__title {
		font-size: 1.75rem;
	}

	.space--lg {
		margin-block: 3.5rem;
	}
}

.related-posts-section {
	& .related-posts-section--posts {
		& .card {
			box-shadow: 0px 4px 16px 0px rgba(34, 34, 34, 0.08);
			border-radius: 1rem;
		}
	}
}

section.search #sidebar-search {
	border: 1px solid #aaaaaa;
	width: 100%;
	padding: 0.75rem;
	border-radius: 0.75rem;
	outline: none;
	font-size: 1rem;
}




.main-content {
	font-size: 1rem;
	line-height: 1.5;
	color: #4B5563;
}

.main-content img {
	display: block;
	margin: 1rem auto;
	border-radius: 1.25rem;
}


.main-content h1 {
	font-size: 4rem;
}



.main-content h2 {
	font-size: 2.75rem;
}



.main-content h3 {
	font-size: 2.5rem;
}



.main-content h4 {
	font-size: 1.875rem;
}



.main-content h5 {
	font-size: 1.5rem;
}


.main-content h6 {
	font-size: 1.25rem;
}


.main-content :is(h1, h2, h3, h4, h5, h6) {
	margin-block: 3.5rem 1.5rem;
}


#modular-page > div:first-child {
	margin-top: 3rem !important;
}


@media(max-width:991.98px) {
	.main-content :is(h1, h2, h3, h4, h5, h6) {
		margin-block: 3.5rem 1.5rem;
	}
}

.anchor-link {
	width: 1rem;
	position: absolute;
	left: 50%;
	top: -2.5rem;
}

@media (min-width: 1024px) {
	.anchor-link {
		top: -8rem;
	}
}


/* Swiper Styles */
span.swiper-pagination-bullet {
	--swiper-bullet-size: 0.675rem;
	width: var(--swiper-bullet-size);
	height: var(--swiper-bullet-size);
	border-radius: 1000px;
	transition: 300ms;

	&:hover {
		background-color: var(--color-octonary);
		);
	}

	&.swiper-pagination-bullet-active {
		width: calc(2 * var(--swiper-bullet-size));
	}
}





.main-top {
	padding-block-start: 3rem;
}

@media(max-width:991.98px) {
	.main-top {
		padding-block-start: 2rem;
	}
}



/* Global a Tag Style Start */
main article .main-content :is(p, ul, li) a {
	text-decoration: underline;
	text-decoration-color: var(--pl-blue);
	position: relative;
	transition: 300ms;

	&::before {
		content: '';
		position: absolute;
		width: 0%;
		background-color: var(--pl-blue);
		bottom: 2px;
		transition: 150ms;
		height: 4px;
		border-radius: 1rem;
	}

	&:hover {
		text-decoration: none;

		&::before {
			width: 100%;
		}
	}
}

/* Global a Tag Style End */