/* #region markup content */
body {
	background-color: rgb(251, 250, 248);
}

main {
	min-height: calc(100vh - (var(--header-height) + var(--top-header-height) + 14rem));
}

.markup-content {
	font-size: 1rem;
	clear: right;
	line-height: 1.3rem;
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-style: normal;
}

.about-page {
	background-color: rgb(251, 250, 248);
}

.markup-content p {
	margin-bottom: 1em;
}

.career-modal-heading {
	font-size: 2rem;
}

.markup-content a {
	color: var(--theme-primary);
	text-decoration: underline;
}

.markup-content h1 {
	font-size: 2em;
	margin-bottom: 0.6em;
}

.markup-content h2 {
	font-size: 1.5em;
	margin-bottom: 0.8em;
}

.markup-content h3 {
	font-size: 1.17em;
	margin-bottom: 1em;
}

.markup-content h4 {
	font-size: 1.1em;
	margin-bottom: 1em;
}

.markup-content strong {
	font-weight: 600;
}

.markup-content em {
	font-style: italic;
}

.markup-content hr {
	margin-top: 1.2rem;
	margin-bottom: 1.2rem;
	border-bottom: 0;
}

.markup-content .marker {
	background-color: Yellow;
}

.markup-content ul,
.markup-content ul {
	padding-left: 1.5em;
	margin-bottom: 1em;
	/* list-style-position: inside; */
}

.markup-content li {
	margin-bottom: 0.5em;
}

.markup-content ul {
	list-style-type: disc;
}

.markup-content ol {
	list-style: decimal;
	padding-left: 1.3em;
}



/* #endregion markup content */

/* #region services */

.service-page-banner {
	margin-bottom: var(--section-gap);
	border-radius: 1rem;
	overflow: hidden;
}

.service-page-banner::before {
	padding-top: 25%;
}

.service-page-header-row {
	display: flex;
	align-items: flex-start;
	gap: 2rem;
}

.service-page-header-img {
	flex: 1 1 45%;
}

.service-page-header-img img {
	border-radius: 0.5rem;
}

.service-page-header-content {
	/* padding-block: 1rem; */
	flex: 1 1 55%;
}

.service-page-header-title {
	font-size: 2rem;
	margin-bottom: 0.5rem;
	color: var(--theme-primary);
	font-weight: 300;
}

.service-page-header-desc {
	font-size: 1.1rem;
	max-width: 75%;
}

.service-page-header-link {
	margin-top: 1.5rem;
}

.service-page-gallery {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 2rem;
	justify-content: center;
}

.center-header {
	max-width: 896px;
}

.section-desc p {
	margin-bottom: 1rem;
}

.home-whyus-card {
	padding: 1.25rem;
}

.home-whyus-img {
	padding: 1.125rem;
}

.home-whyus-title {
	font-size: 1.25rem;
	color: #000;
	font-weight: 600;
}

:root {
	--pole-width: 4px;
	--center-gap: 48px;
	/* space for circle/pole column */
	--circle-size: 18px;
	--max-width: 900px;
}

.milestones {
	position: relative;
	gap: 1rem;
	display: grid;
	grid-template-columns: 1fr 2px 1fr;
}

.milestone {
	display: flex;
	align-items: flex-start;
	column-gap: 2rem;
	position: relative;
	z-index: 1;
	margin-bottom: 2rem;
}

.middleLine {
	/* background-color: rgba(231, 226, 218, 0.5); */
	transform: translateY(4rem);
	max-height: calc(100% - 4rem);
}

.milestones::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	background: linear-gradient(to top,
			#cfcfcf 0%,
			#59b464 45%,
			#069715 100%);
	border-radius: 2px;
}

.milestone.l {
	flex-direction: row-reverse;
	transform: translateX(49px);
}

.milestone.r {
	transform: translateX(-49px);
}


.milestone::before {
	/* content: ''; */
	position: absolute;
	max-width: 1px;
	max-height: calc(100% - 4rem);
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: rgba(231, 226, 218, 0.5);
	z-index: -1;
	left: 2rem;
	top: 4rem;

}

.milestone .icon {
	border-radius: 50%;
	background-color: rgb(255 235 220);
	max-width: 4rem;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgb(217, 113, 38);
}

.milestone .icon i {
	font-size: 1.75rem;
}

/* Left content placed in left column */
.milestone .content {
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgb(247, 246, 242);
	border: 1px solid rgba(231, 226, 218, 0.5);
	padding: 2rem;
	transition: 0.3s ease-in-out;
}

.milestone:hover .content {
	transform: translateY(-4px);
	box-shadow: rgba(23, 33, 54, 0.15) 0px 20px 60px -15px;
	position: relative;
}

/* Content card look */

.milestone .content .year {
	display: inline-block;
	border-radius: 5rem;
	padding: 0.25rem 1rem;
	background-color: rgba(217, 113, 38, 0.1);
	color: rgb(217, 113, 38);
	margin-bottom: 0.75rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-family: var(--font-family-outfit);
	font-weight: 400;
}

.milestone .content .title {
	font-size: 1.5rem;
	line-height: 2rem;
	font-family: var(--font-family-garamond);
	color: rgb(23, 33, 54);
	margin-bottom: 1rem;
}

.milestone .content .icon {
	display: none;
	position: absolute;
	top: 2rem;
	right: 2rem;
}

.milestone .content .description {
	font-size: 1rem;
	line-height: 1.5rem;
	color: rgb(92, 107, 138);
	font-family: var(--font-family-outfit);
}

.milestone .content .description span {
	color: rgb(23, 33, 54);
}

.awardCard {
	background-color: #fff;
	border-radius: 0.5rem;
	padding: 1rem;
}

.awardCard figure {
	max-width: 40px;
	width: 100%;
	margin: 0 auto 1.5rem;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.awardCard figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.awardCard .title {
	font-size: 1rem;
	line-height: 1.5rem;
	text-align: center;
	margin: 0;
}

.company-group-card {
	background-color: rgb(247, 246, 242);
	border: 1px solid rgba(231, 226, 218, 0.5);
	border-radius: 0.25rem;
	padding: 2rem;
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	transition: 0.3s ease-in-out;
}

.company-group-card:hover {
	box-shadow: rgba(23, 33, 54, 0.15) 0px 20px 60px -15px;
}

.company-group-card .icon {
	max-width: 4rem;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	display: inline-block;
	background-color: rgba(217, 113, 38, 0.1);
	color: rgb(217, 113, 38);
	border-radius: 0.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
}

.company-group-card .content .title {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-family: var(--font-family-garamond);
	margin-bottom: 0.75rem;
	color: rgb(23, 33, 54);
	position: relative;
}

.company-group-card .content .title::after {
	content: '\f08e';
	font: 900 1rem "Font Awesome 6 Free";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	color: rgb(92, 107, 138);
}

.company-group-card .content .description {
	color: rgb(92, 107, 138);
	font-family: var(--font-family-outfit);
	font-size: 1rem;
	line-height: 1.5rem;
	margin-bottom: 1rem;
}

.company-group-card .content .location {
	position: relative;
	padding-left: 1rem;
	color: rgb(217, 113, 38);
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.company-group-card .content .location::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background-color: rgb(217, 113, 38);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.good-tabs .nav-link {
	text-wrap: nowrap;
	max-width: max-content;
	font-size: 0.875rem;
	line-height: 1.5rem;
	border-radius: 5rem;
	color: rgb(23, 33, 54);
	font-weight: 500;
	font-family: var(--font-family-outfit);
}

.good-tabs .nav-link.active {
	background: rgb(26, 51, 102);
}

.productSearchBox {
	max-width: 576px;
	width: 100%;
	position: relative;
	margin-bottom: 1rem;
}

.search-input {
	padding: 0.75rem 0.75rem 0.75rem 3rem;
	border-radius: 0.125rem;
	border: 1px solid rgba(231, 226, 218, 0.5);
	background-color: rgb(247, 246, 242);
}

.productSearchBox::before {
	content: '\f002';
	font: 900 1rem "Font Awesome 6 Free";
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
}

.search-input:focus {
	outline: 2px solid rgb(217, 113, 38);
}

.service-page-gallery-item {
	background-color: #fff;
	box-shadow: 1px 1px 0.8rem rgba(0, 0, 0, 0.1);
	border-radius: 0.5rem;
	overflow: hidden;
	width: 25rem;
	max-width: 100%;
}

.service-page-gallery-img::before {
	padding-top: 65%;
}

.service-page-gallery-content {
	padding: 0.5rem;
	text-align: center;
	font-size: 1.3rem;
	line-height: 1.3;
	font-weight: 600;
}

.service-page-gallery-content:empty {
	display: none;
}

.service-page-sections-row {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
	align-items: flex-start;
	padding: 1rem;
	border-radius: 1.5rem;
	background-color: #fff;
	box-shadow: 1px 1px 0.8rem rgba(0, 0, 0, 0.1);
}

.service-page-section-img {
	flex: 1 1 35%;
}

.service-page-section-img img {
	border-radius: 0.5rem;
}

.service-page-section-content {
	flex: 1 1 65%;
}

.service-page-section-title {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
}

.service-page-section-desc {
	line-height: 1.5;
}

.service-page-sections-row+.service-page-sections-row {
	margin-top: 2rem;
}

.service-page-contact-form {
	margin-top: 2rem;
}

.service-page-contact-form .home-contact-form-field {
	margin-bottom: 0;
}

.service-page-contact-form .contact-form-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
	gap: 1rem 2rem;
}

.service-page-contact-form .field-lg,
.home-contact-form-action {
	grid-column: 1 / -1;
}

.home-contact-form-action {
	text-align: center;
}

@media (min-width: 761px) {
	.service-page-sections-row:nth-child(even) {
		/* flex-direction: row-reverse; */
	}
}

@media (max-width: 768px) {
	.service-page-header-row {
		flex-wrap: wrap;
	}

	.service-page-header-desc {
		max-width: 100%;
	}
}

/* #endregion services */

/* #region careers */

.careers-page-grid {
	display: grid;
	grid-template-columns: 15rem 1fr;
	align-items: start;
	gap: 1.5rem;
}

.career-categories-col {
	/* background-color: #f3f3f3; */
	background-color: #fff;
	border-radius: 0.7rem;
	position: sticky;
	top: calc(var(--header-height) + 2rem);
	/* box-shadow: 0.2rem 0.2rem 0.8rem rgb(0 0 0 / 15%); */
	border: 1px solid #eaeaea;
	overflow: hidden;
}

.career-category-header {
	padding: 0.8rem;
	font-size: 1.2rem;
	font-weight: normal;
	background-color: #dadada;
}

.career-category-form {
	/* display: contents; */
	border-top: 1px solid #eaeaea;
}

.career-category-items {
	padding: 0.8rem;
	display: grid;
	gap: 1rem;
}

.career-category {
	display: grid;
	grid-template-columns: 1.5rem auto;
	gap: 0.5rem;
	position: relative;
	align-items: center;
}

.career-category-checkbox {
	opacity: 0;
	height: 1.5rem;
}

.career-category-label {
	line-height: 1.2;
	user-select: none;
	cursor: pointer;
}

.career-category-label::before,
.career-category-label::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 1.3rem;
	height: 1.3rem;
	border-radius: 0.3rem;
}

.career-category-label::before {
	content: "";
	transition: ease 0.3s;
	border: 1px solid #c5c5c5;
}

.career-category-label::after {
	content: "\2713";
	text-align: center;
	font-weight: 600;
	color: transparent;
	display: grid;
	place-content: center;
	font-size: 1.2rem;
	font-family: monospace;
	pointer-events: none;
}

.career-category-checkbox:checked+.career-category-label::before {
	background-color: var(--theme-primary);
	border-color: var(--theme-primary);
}

.career-category-checkbox:checked+.career-category-label::after {
	color: var(--theme-primary-alt);
}

.career-categories-actions {
	border-top: 1px solid #eaeaea;
	padding: 0.5rem;
	display: flex;
	gap: 0.5rem;
	justify-content: center;
}

.career-category-btn {
	padding: 0.4rem 1rem;
	border-radius: 0.3rem;
	/* border: 2px solid; */
	transition: ease 0.3s;
	font-weight: 400;
}

.career-category-submit-btn {
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	border-color: var(--theme-primary);
}

.career-category-submit-btn:hover {
	background-color: var(--theme-primary-dark);
	/* color: var(--theme-primary); */
}

.career-category-clear-btn {
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-alt);
	border-color: var(--theme-secondary);
}

.career-category-clear-btn:hover {
	background-color: var(--theme-secondary-dark);
	/* color: var(--theme-secondary); */
}

.career-listings {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
}

.career-option {
	padding: 1rem;
	/* box-shadow: 0.2rem 0.2rem 0.8rem rgb(0 0 0 / 15%); */
	border: 1px solid #eaeaea;
	border-radius: 0.5rem;
	background-color: #fff;
}

.career-option-title {
	font-size: 1.2rem;
	line-height: 1.5rem;
	font-weight: 500;
	/* margin-bottom: 0.5rem; */
}

.career-option-subtitle {
	font-size: 1.1rem;
	font-weight: 300;
	margin-top: 0.5rem;
}

.career-option-category {
	margin-top: 0.3rem;
	font-weight: 600;
	color: var(--theme-primary);
}

.career-option-desc {
	line-height: 1.5;
	font-weight: 300;
}

.career-option-actions {
	margin-top: 1rem;
}

.career-select-btn {
	--content-width: 6.5rem;
}

.career-form {
	padding-bottom: 1.5rem;
}

.career-form-title {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 400;
	font-family: var(--font-family-garamond);
	margin-bottom: 1.5rem;
}

.career-form-group {
	margin-bottom: 1rem;
}

/* Hide the actual input but keep it functional */
.input-file-hidden {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

.file-drop-zone {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	border: 2px dashed #ddd;
	border-radius: 0.5rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.file-drop-zone:hover,
.file-drop-zone.dragover {
	border-color: rgba(217, 113, 38, 0.5);
	background-color: rgba(217, 113, 38, 0.05);
}

.file-upload-icon {
	margin-bottom: 0.25rem;
	color: rgb(92, 107, 138);
	font-size: 1.25rem;
	line-height: 1;
}

.file-upload-text {
	text-align: center;
	pointer-events: none;
}

.main-text {
	display: block;
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: rgb(92, 107, 138);
	margin-bottom: 0;
}

.sub-text {
	display: block;
	font-size: 0.75rem;
	line-height: 1rem;
	color: rgba(92, 107, 138, 0.7);
}

.file-name-hint {
	margin-top: 10px;
	font-size: 13px;
	color: #28a745;
	font-weight: bold;
}

.career-form-group .label {
	font-size: 0.875rem;
	line-height: 1;
	font-weight: 400;
	color: rgb(23, 33, 54);
}

.career-form-group .input {
	padding: 0.5rem 0.75rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 400;
	color: rgb(23, 33, 54);
	border-radius: 0.125rem;
	border: 1px solid rgb(231, 226, 218);
}

.career-form-group .input:focus {
	box-shadow: rgb(251, 250, 248) 0px 0px 0px 2px, rgb(217, 113, 38) 0px 0px 0px 4px, rgba(0, 0, 0, 0) 0px 0px 0px 0px;
}

.simplebar-content-wrapper {
	scrollbar-width: thin;
	scrollbar-color: #9d9d9d;
}

.career-modal .career-modal-body {
	max-width: 1000px;
	max-height: 90dvh;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	background-color: rgb(251, 250, 248);
	padding: 0;
}

.career-modal .career-modal-header .popup-close i {
	font-size: 1rem;
	line-height: 1;
}

.career-modal-header {
	margin-bottom: 1rem;
}

.career-modal-container {
	display: flex;
	gap: 0.5rem;
	height: 100%;
	flex: 1 1 0%;
	height: 0;	
	scrollbar-width: thin;
}

.career-modal-info {
	padding: 1.25rem;
	background-color: rgba(241, 238, 234, 0.3);
	border-right: 1px solid rgb(231, 226, 218);
}

.career-modal-info .simplebar-content-wrapper {
	padding-bottom: 0;
}

.career-modal-form {
	padding: 1.25rem;
	overflow: auto;
	scrollbar-width: thin;
}

.career-modal-title {
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 600;
	font-family: var(--font-family-garamond);
}

.career-modal-description * {
	all: revert;
}

.career-modal-description h1,
.career-modal-description h2,
.career-modal-description h3,
.career-modal-description h4,
.career-modal-description h5,
.career-modal-description h6 {
	font-family: var(--font-family-outfit);
	font-weight: 400;
}

.career-modal-description p,
.career-modal-description ul li {
	font-family: var(--font-family-outfit);
	color: rgb(57, 66, 83);
}

.contact-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.8rem;
	margin-bottom: 0.8rem;
}

.contact-form-wide-col {
	grid-column: 1 / -1;
}

.contact-form-label {
	font-weight: 500;
	font-size: 0.9rem;
}

.contact-form-input {
	border: 1px solid #dadada;
	border-radius: 0.3rem;
	padding: 0.4rem 0.8rem;
}

textarea.contact-form-input {
	resize: vertical;
}

.contact-form-btn {
	--content-width: 4rem;
}

.md-section {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
	align-items: center;
	gap: 2.5rem;
}

.md-section figure {
	max-width: 100%;
	width: 100%;
	aspect-ratio: 1 / 1.33;
	overflow: hidden;
	border-radius: 1rem;
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.md-section article .md-name {
	font-size: 2.25rem;
	line-height: 2.5rem;
	font-weight: 400;
	font-family: var(--font-family-garamond);
	color: rgb(23, 33, 54);
	margin-bottom: 0.5rem;
}

.md-section article .md-designation {
	color: rgb(217, 113, 38);
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: 500;
	position: relative;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}

.md-section article .md-designation::before {
	content: '';
	width: 4rem;
	height: 4px;
	position: absolute;
	background-color: rgb(217, 113, 38);
	left: 0;
	bottom: 0;
}

.md-section article .quotes {
	position: relative;
}

.md-section article .quotes .icon {
	font-size: 2.5rem;
	line-height: 1;
	color: rgba(217, 113, 38, 0.2);
	position: absolute;
	left: 0;
	top: 0;
}

.md-section article .quotes .content {
	padding-top: 2.5rem;
	padding-left: 1.5rem;
	font-size: 1.125rem;
	line-height: 1.875rem;
	color: rgb(92, 107, 138);
	margin-bottom: 1rem;
}

.md-section article .description {
	color: rgb(92, 107, 138);
	font-size: 1rem;
	line-height: 1.625rem;
	font-weight: 400;
}

.md-section article .description p {
	margin-bottom: 1.5rem;
}

.md-section article .md-social-links {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 1rem;
}

.md-section article .md-social-links .link {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	max-width: 3rem;
	width: 100%;
	background-color: rgba(26, 51, 102, 0.1);
	color: rgb(23, 33, 54);
}

.md-section article .md-social-links .link i {
	font-size: 1.5rem;
}

@media (max-width: 768px) {

	.md-section {
		grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	}

	.careers-page-grid {
		grid-template-columns: 1fr;
	}

	.career-modal-container {
		flex-direction: column;
		overflow: auto;
	}

	.career-modal .career-modal-body {
		height: 100%;
	}

	.career-modal-info,
	.career-modal-form {
		width: 100%;
		height: auto;
	}

	.contact-form-row {
		grid-template-columns: 1fr;
	}

	.career-categories-col {
		box-shadow: 0.2rem 0.2rem 0.8rem rgb(0 0 0 / 5%);
	}

	.career-category-form {
		display: none;
	}

	.career-category-header {
		position: relative;
		z-index: 1;
	}

	.career-category-header::after {
		content: "\f107";
		font: var(--icon-font);
		position: absolute;
		top: 50%;
		right: 0;
		transform: translate(-50%, -50%);
	}
}

/* #endregion careers */

/* #region blogs list page */

.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
	margin-block: 2rem;
}

.blog-grid-item {
	/* box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2); */
	/* border-radius: 0.5rem; */
	overflow: hidden;
	background-color: #fff;
}

.blog-grid-img {
	position: relative;
	display: block;
	overflow: hidden;
}

.blog-grid-item:hover .blog-grid-img img {
	transform: scale(1.05);
}

.blog-grid-img::before {
	content: "";
	padding-top: 62.5%;
	display: block;
}

.blog-grid-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s;
}

.blog-grid-content {
	padding: 1rem;
}

.blog-grid-title {
	font-size: 1.3rem;
	margin-bottom: 0.3em;
	line-height: 1.3;
	font-family: var(--font-faimly-alt);
}

.blog-grid-title a:hover {
	color: var(--theme-primary);
}

.blog-grid-meta {
	margin-bottom: 0.5rem;
	font-size: 0.85rem;
	color: #555;
	font-weight: 500;
}

.blog-grid-desc {
	line-height: 1.3;
	font-size: 0.95rem;
}

/* #endregion blogs list page */

/* #region blog view page */

.blog-page {
	display: flex;
	gap: 2rem;
	line-height: 1.3;
	margin-block: 2rem;
}

.blog-main {
	position: relative;
	width: 70%;
}

.blog-main .blog-content::before {
	content: none;
}

.blog-extra {
	width: 30%;
	position: sticky;
	top: calc(var(--header-height) + 1rem);
	height: 100%;
}

.blog-tags {
	font-size: 0.9rem;
	color: var(--theme-secondary);
	margin-bottom: 0.5rem;
}

.blog-title {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.blog-meta {
	color: var(--theme-secondary);
	font-weight: 500;
}

.blog-content {
	margin-top: 1.3rem;
	position: relative;
	padding: 1.2rem;
	box-shadow: 0 0 1rem rgb(0 0 0 / 15%);
	border-radius: 0.5rem;
}

.blog-content::after {
	content: "";
	display: block;
	clear: both;
}

.blog-main-img {
	/* width: 40%; */
	/* width: 500px; */
	/* float: left; */
	/* margin-right: 1.7rem; */
	margin-bottom: 1.5rem;
	min-width: 50%;
	max-width: 100%;
}

.blog-main-img img {
	width: 100%;
}

.blog-share-title {
	font-weight: 500;
	font-size: 1.4rem;
}

.blog-share-list {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
	margin-top: 0.5rem;
}

.blog-share-link {
	width: 2.2rem;
	height: 2.2rem;
	display: grid;
	place-items: center;
	background-color: var(--theme-primary);
	color: #fff;
	border-radius: 5rem;
	border: 2px solid var(--theme-primary);
	font-size: 1.3rem;
}

.blog-share-link:hover {
	background-color: #fff;
	color: var(--theme-primary);
}

.blog-list-banner-title {
	/* text-align: center; */
	font-weight: 500;
	font-size: 1.6rem;
	margin-bottom: 0.7rem;
}

.blog-list {
	display: grid;
	/* grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); */
	gap: 1.2rem;
	/* margin-bottom: 2rem; */
	padding: 1.2rem;
	box-shadow: 0 0 1rem rgb(0 0 0 / 15%);
	border-radius: 0.5rem;
}

.blog-list .blog-grid-item {
	display: flex;
}

.blog-list .blog-grid-img {
	flex: 0 0 30%;
}

.blog-list .blog-grid-content {
	flex: 1;
	padding: 0.5rem 0.75rem;
}

.blog-list .blog-grid-title {
	font-size: 1rem;
	/* line-clamp: 2; */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.blog-list .blog-grid-meta {
	margin-bottom: 0;
}

@media (max-width: 760px) {
	.blog-page {
		flex-direction: column;
	}

	.blog-main,
	.blog-extra {
		width: 100%;
	}
}

@media print {
	.blog-content {
		padding: 0;
		box-shadow: none;
	}

	.blog-extra,
	.header-banner,
	.brand-header,
	.main-header {
		display: none !important;
	}
}

.header-banner {
	position: relative;
}

.header-banner::before,
.header-banner::after {
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-repeat: no-repeat;
}

.header-banner::before {
	background-image: url('../images/bg/circles.png');
	background-size: 250px 500px;
	background-position: left 0px top -250px;

}

.header-banner::after {
	background-image: url('../images/bg/circles.png');
	background-size: 250px 500px;
	transform: rotateY(180deg);
	background-position: left 0 top -250px;
}

/* #endregion blog view page */

/* #region about */
.about-section .section-title {
	color: rgb(23, 33, 54);
	font-family: var(--font-family-garamond);
	margin-bottom: 1.5rem;
}

.about-section .section-desc {
	font-size: 1rem;
	line-height: 1.625rem;
	font-family: var(--font-family-outfit);
	color: rgb(92, 107, 138);
	font-weight: 400;
	max-width: calc(100% - 5rem);
}

.about-row {
	/* display: flex; */
	/* gap: 3rem; */
	clear: both;
}

.about-row::after {
	content: "";
	display: block;
	clear: both;
}

.about-col-content .section-header {
	margin-bottom: 1rem;
	float: left;
	width: calc(100% - 500px - 1.5rem);
	clear: right;
}

.about-col-img {
	/* flex: 1 1 50%; */
	float: left;
	width: 500px;
	max-width: 100%;
	margin-right: 1.5rem;
	margin-bottom: 1rem;
	/* border-radius: 2rem; */
	overflow: hidden;
}

.about-col-img .big-figure {
	width: 80%;
	height: 350px;
}

.about-col-img .small-figure {
	width: 70%;
}

.about-mission-row {
	display: flex;
	gap: 2rem 6rem;
	align-items: flex-start;
}

.about-mission-row+.about-mission-row {
	margin-top: var(--section-gap);
}

.about-mission-img {
	flex: 1 0 40%;
	max-width: 360px;
	overflow: hidden;
	border-radius: 2rem;
}

.about-mission-img img {
	width: 100%;
	height: 450px;
	object-fit: cover;
}

.about-mission-content {
	flex: auto;
	margin: 0 auto;
	max-width: 380px;
}

.about-mission-content ul .section-subtitle {
	margin-bottom: 0;
}

.about-mission .section-header {
	margin-bottom: 1rem;
}

.about-mission-text ul {
	padding-left: 0;
}

.about-mission-text li {
	margin-bottom: 0;
	list-style-type: none;
	position: relative;
	padding-left: 2em;
}

.about-mission-text li::before {
	content: "\f058";
	position: absolute;
	top: 0;
	left: 0;
	color: var(--theme-primary);
	display: inline-block;
	font: var(--icon-font);
	line-height: 1.1;
	font-size: 1.5em;
}

.core-value-card {
	padding: 2rem;
	background-color: rgb(247, 246, 242);
	border: 1px solid rgba(231, 226, 218, 0.5);
	height: 100%;
	border-radius: 0.25rem;
	transition: 0.3s ease-in-out;
	text-align: center;
}

.core-value-card .icon {
	max-width: 4rem;
	margin: auto;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	padding: 1rem;
	overflow: hidden;
	margin-bottom: 1.5rem;
	background-color: rgb(231, 226, 218);
	color: rgb(217, 113, 38);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2rem;
	line-height: 1;
}

.core-value-card .title {
	color: rgb(23, 33, 54);
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-family: var(--font-family-garamond);
	margin-bottom: 0.75rem;
}

.core-value-card .description {
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-family: var(--font-family-outfit);
	color: rgb(92, 107, 138);
}

.core-value-card:hover {
	box-shadow: rgba(23, 33, 54, 0.15) 0px 20px 60px -15px;
}

.vision-box,
.mission-box {
	overflow: hidden;
}

.vision-box .row,
.mission-box .row {
	border-radius: 0.25rem;
	border: 1px solid rgba(231, 226, 218, 0.5);
}

.vision-card {
	background-color: rgb(26, 51, 102);
	height: 100%;
	padding: 4rem;
}

.mission-card {
	background-color: rgb(247, 246, 242);
}

.vismis-figure {
	aspect-ratio: 1.7 / 1;
	max-width: 100%;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: rgba(217, 113, 38, 0.1);
}

.vismis-figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vision-card .icon {
	background-color: rgba(217, 113, 38, 0.2);
	color: rgb(217, 113, 38);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 4rem;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	padding: 1rem;
	overflow: hidden;
	font-size: 1.5rem;
	line-height: 1;
	margin-bottom: 2rem;
}

.vision-card .title {
	color: rgb(251, 250, 248);
	font-family: var(--font-family-garamond);
	font-size: 2.25rem;
	line-height: 2.5rem;
	font-weight: 400;
	margin-bottom: 1.5rem;
}

.vision-card .description {
	font-size: 1.125rem;
	line-height: 1.875rem;
	color: rgba(251, 250, 248, 0.8);
}

.mission-card .title {
	color: rgb(23, 33, 54);
}

.mission-card .description {
	color: rgb(92, 107, 138);
}

.mission-card .vismis-figure {
	aspect-ratio: 1.21 / 1;
}

.mission-card .description>* {
	all: revert;
}

.numbers-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.numbers-grid .number-card {
	background-color: rgb(247, 246, 242);
	padding: 2rem;
	text-align: center;
	border: 1px solid rgba(231, 226, 218, 0.5);
}


.numbers-grid .number-card .value {
	font-family: var(--font-family-garamond);
	font-size: 3rem;
	line-height: 1;
	color: rgb(217, 113, 38);
	margin-bottom: 0.5rem;
}

.numbers-grid .number-card .title {
	color: rgb(92, 107, 138);
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-family: var(--font-family-outfit);
	text-transform: uppercase;
}

.why-choose-desc {
	text-align: center;
}

.why-choose-list {
	display: flex;
	gap: 1rem 2rem;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
	justify-content: center;
}

.why-choose-list li {
	list-style-type: none;
	padding: 0.5rem 2.5rem;
	border-radius: 5rem;
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
}

.why-choose-list i {
	font-size: 3em;
	line-height: 1.2;
}

.why-choose-list p {
	margin-bottom: 0.5rem;
}

.team-figure {	
	max-width: 1024px;
	width: 100%;
	aspect-ratio: 1.5 / 1;
	overflow: hidden;
	border-radius: 1rem;
	margin-inline: auto;
}

.team-figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.teamCard {
	border: 1px solid rgba(231, 226, 218, 0.5);
	background-color: rgb(247, 246, 242);
	transition: 0.3s ease-in-out;
}

.teamCard:hover {
	transform: translateY(-4px);
}

.teamCard figure {
	max-width: 100%;
	width: 100%;
	aspect-ratio: 1 / 1.25;
	overflow: hidden;
	position: relative;	
}

.teamCard figure .overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(26, 51, 102, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	opacity: 0;
	transition: 0.3s ease-in-out;

}

.teamCard:hover figure .overlay {
	opacity: 1;
}

.teamCard figure .overlay a {
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	max-width: 3rem;
	width: 100%;
	padding: 0.5rem;
	background-color: rgba(217, 113, 38, 0.2);
	color: rgb(217, 113, 38);
	font-size: 1.25rem;
}

.teamCard figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.teamCard article {
	text-align: center;
	padding: 1.5rem;
}

.teamCard article .name {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-family: var(--font-family-garamond);
	color: rgb(23, 33, 54);
	margin-bottom: 0.25rem;
}

.teamCard article .designation {
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-family: var(--font-family-outfit);
	color: rgb(217, 113, 38);
}

.certifications-swiper .swiper-wrapper {
	overflow-y: visible;
}

.certifications-swiper,
.certifications-swiper .swiper-slide {
	height: auto;
}

.certificationCard {
	border: 1px solid rgba(231, 226, 218, 0.5);
	background-color: rgb(247, 246, 242);
	text-align: center;
	padding: 2rem;
	border-radius: 0.25rem;
	transition: 0.3s ease-in-out;
	height: 100%;
}

.certificationCard:hover {
	box-shadow: rgba(23, 33, 54, 0.15) 0px 20px 60px -15px;
}

.certificationCard .icon {
	max-width: 80px;
	margin: auto;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	padding: 1rem;
	overflow: hidden;
	margin-bottom: 1.5rem;
	background-color: rgb(231, 226, 218);
	color: rgb(217, 113, 38);
	display: flex;
	align-items: center;
	justify-content: center;
}

.certificationCard .icon i {
	font-size: 2rem;
}

.certificationCard .title {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-family: var(--font-family-garamond);
	color: rgb(23, 33, 54);
	margin-bottom: 0.5rem;
}

.certificationCard .description {
	color: rgb(92, 107, 138);
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-family: var(--font-family-outfit);
}

.accreditation {
	background-color: rgb(26, 51, 102);
	padding: 3rem;
	color: #fff;
}

.accreditation .section-header .title {
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 400;
	font-family: var(--font-family-garamond);
}

.accreditationBody {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.accreditationBody i {
	color: rgb(217, 113, 38);
}

.accreditationBody .title {
	font-size: 1rem;
	line-height: 1.5rem;
	font-family: var(--font-family-outfit);
	margin-bottom: 0;
	color: rgba(251, 250, 248, 0.8);
}

.team-grid {
	text-align: center;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.team-grid .blog-grid-img {
	width: 100%;
	aspect-ratio: 1 / 1.2;
	overflow: hidden;
}

.team-grid .blog-grid-img::before {
	content: unset;
}

.team-grid .blog-grid-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: static;
}

.team-grid-name {
	font-size: 1.5rem;
	line-height: 1.8rem;
	font-weight: 500;
	color: var(--theme-primary);
	margin-bottom: 0.5rem;
}

.team-grid .blog-grid-item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	/* box-shadow: 1px 4px 8px rgba(0, 0, 0, 0.08); */
	border: 1px solid #ccc;
	transition: 0.5s;
	cursor: pointer;
}

.team-grid .blog-grid-item article {
	line-height: 24px;
}

@media (min-width: 768px) {
	.about-mission .about-mission-row:nth-child(odd) {
		flex-direction: row-reverse;
	}

}

@media (max-width: 768px) {
	.about-section .section-desc {
		max-width: 100%;
		font-size: 1.125rem;
	}

	.about-mission-row {
		flex-direction: column;
		grid-template-columns: repeat(1, 1fr) !important;
	}

	.core-value-card .title {
		font-size: 1.5rem;
		line-height: 1.875rem;
	}

	.core-value-card .description {
		font-size: 1rem;
		line-height: 1.25rem;
	}
}

/* #endregion about */

/* #region form */

.contact-form-container {
	padding: 2.5rem;
	background-color: #fff;
	border-radius: 1rem;
	/* box-shadow: 0.2rem 0.3rem 1rem rgb(0 0 0 / 10%); */
	border: 1px solid #dadada;
	margin-top: 1rem;
}

.home-contact-form-field {
	margin-bottom: 1.5rem;
	position: relative;
}

.home-contact-form-input {
	padding-block: 1rem 0.3rem;
	border-bottom: 1px solid #eaeaea;
	font-size: 1rem;
	transition: ease 0.25s;
	transition-property: color, border-color;
}

.home-contact-form-input::placeholder {
	color: transparent;
	opacity: 0;
}

.header-banner .section-header .section-title {
	color: #fff;
}

.home-contact-form-label {
	position: absolute;
	top: 1rem;
	left: 0.75rem;
	font-size: 0.9rem;
	/* pointer-events: none; */
	transition: ease 0.25s;
	transform-origin: left;
	opacity: 0.8;
	font-weight: 500;
}

.home-services-swiper .swiper-wrapper {
	padding: 1.5rem 0 0;
}

.home-contact-form-input:focus,
.home-contact-form-input[required]:valid,
.home-contact-form-input:not([required]):not(:placeholder-shown) {
	border-color: var(--theme-primary);
}

.home-contact-form-input:invalid:not(:placeholder-shown):not(:focus) {
	border-color: red;
}

.home-contact-form-input:focus~.home-contact-form-label,
.home-contact-form-input:not(:placeholder-shown)~.home-contact-form-label {
	transform: translateY(-1rem) scale(0.8);
	opacity: 1;
}



/* #endregion form */

/* #region gallery */
.galleryCard {
	display: block;
	width: 100%;
	height: 100%;
}

.galleryCard figure {
	position: relative;
	max-width: 100%;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.galleryCard.videoCard figure {
	aspect-ratio: 1.75 / 1;
}

.galleryCard figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s ease-in-out;
}

.galleryCard figure iframe {
	width: 100%;
	height: 100%;
}

.galleryCard:hover figure img {
	transform: scale(1.1);
}

.galleryCard .title {
	padding: 0.5rem 1rem;
	color: rgb(23, 33, 54);
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: 400;
	font-family: var(--font-family-garamond);
	background-color: #f1eeeacb;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	margin-bottom: 0;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
	/* align-items: start; */
	margin-top: 2rem;
}

.gallery-grid-sm {
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 20px;
}

.gallery-card {
	padding: 0;
	border-radius: 6px;
	transition: 0.3s;
}

.gallery-card figure {
	max-width: 100%;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	position: relative;
	border-radius: 0.5rem;
}

.gallery-card figure .overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(26, 51, 102, 0.8);
	opacity: 0;
	transition: 0.3s ease-in-out;
}

.gallery-card:hover figure .overlay {
	opacity: 1;
}

.gallery-card article {
	padding-top: 1rem;
}

.gallery-card article .gallery-caption {
	margin: 0;
	margin-bottom: 0.25rem;
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: 400;
	font-family: var(--font-family-garamond);
	color: rgb(23, 33, 54);
}

.gallery-card article .counts {
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-family: var(--font-family-outfit);
	color: rgb(92, 107, 138);
}

.gallery-card figure .overlay button {
	color: #fff;
}

.gallery-card figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s ease-in-out;
}

.gallery-card:hover img,
.gallery-card:hover iframe {
	transform: scale(1.1);
}

.gallery-card-img {
	position: relative;
	overflow: hidden;
}

.gallery-media-img {
	/* margin-bottom: 0; */
}

.gallery-card-img img,
.gallery-card-img iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s;
}

.gallery-caption {
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.5;
	/* line clamp 3 */
	margin-top: 0.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.gallery-caption:empty {
	display: none;
}

.sl-overlay {
	background-color: #000;
}

.sl-wrapper .sl-close {
	font-size: 2.8em;
	top: 15px;
	right: 15px;
}

.sl-wrapper .sl-navigation button,
.sl-wrapper .sl-counter,
.sl-wrapper .sl-close {
	color: var(--theme-fore-color);
}

.sl-wrapper .sl-image .sl-caption {
	text-align: center;
}

.sl-wrapper .sl-image {
	position: relative;
	transform: translateX(0);
}



/* #endregion gallery */

/* #region infrastructure */

.infrastructure-page {
	background-color: #f9f9f9;
}

.infra-section {
	background-size: cover;
	background-position: bottom center;
}

.infrastructure-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 2rem;
}

.infrastructure-item {
	position: relative;
	box-shadow: 0 0 0.5rem rgb(0 0 0 / 10%);
	text-align: center;
	background-color: #fff;
}

.infrastructure-img::before {
	padding-top: 65%;
}

.infrastructure-item-content {
	padding: 1rem;
}

.infrastructure-item-title {
	font-size: 1.3rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.infrastructure-item-text {
	line-height: 1.3;
}

.our-journey {
	overflow: hidden;
}

@media (max-width: 768px) {
	.numbers-grid {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 1rem;
	}

	.vision-card {
		padding: 1.5rem;
	}

	.vision-card .icon {
		margin-bottom: 1.5rem;
	}

	.vision-card .title {
		margin-bottom: 1rem;
		font-size: 1.875rem;
		line-height: 2.25rem;
	}

	.milestone>.icon {
		display: none;
	}

	.milestone .content .icon {
		display: flex;
		max-width: 3rem;
	}

	.milestone .content .icon i {
		font-size: 1.5rem;
	}

	.infrastructure-grid {
		grid-template-columns: 1fr;
	}

	.infrastructure-item-title {
		font-size: 1.1rem;
		font-weight: 600;
	}

	.infrastructure-item-text {
		font-size: 0.9rem;
	}
}

@media only screen and (min-width: 320px) and (max-width: 576px) {
	.about-col-content .section-header {
		width: 100%;
	}
}

/* #endregion infrastructure */
.productCard {
	height: 100%;
	background-color: rgb(247, 246, 242);
}

.productCard:hover {
	border-color: rgba(231, 226, 218, 0.5);
	box-shadow: rgba(23, 33, 54, 0.15) 0px 20px 60px -15px;
}

.productCard figure .content {
	display: none;
}

.productCard article .content {
	display: block;
	position: relative;
	background-color: transparent;
}

.productCard article .content .category {
	color: rgb(217, 113, 38);
	font-size: 0.75rem;
	line-height: 1rem;
	font-family: var(--font-family-outfit);
	margin-bottom: 0.5rem;
	text-transform: uppercase;
}

.productCard article .content .title {
	font-size: 1.875rem;
	line-height: 2.25rem;
	font-family: var(--font-family-garamond);
	color: rgb(23, 33, 54);
	margin-bottom: 0.5rem;
}

.productCard article .content .desc {
	font-size: 1rem;
	line-height: 1.5rem;
	font-family: var(--font-family-outfit);
	color: rgb(92, 107, 138);
	margin-bottom: 1rem;
}

.productCard article .content .button {
	display: block;
	width: 100%;
	padding: 0.5rem 1rem;
	font-family: var(--font-family-outfit);
	color: rgb(23, 33, 54);
	text-align: center;
	border: 1px solid rgb(231, 226, 218);
	font-size: 0.875rem;
	line-height: 1.25rem;
	transition: 0.3s ease-in-out;
}

.productCard article .content .button:hover {
	background-color: rgb(217, 113, 38);
	color: rgb(251, 250, 248);
}

.customMessage {
	background-color: rgb(26, 51, 102);
}

.customMessage .section-header .section-title {
	font-size: 1.875rem;
	line-height: 2.25rem;
	font-weight: 400;
	font-family: var(--font-family-garamond);
	color: rgb(247, 246, 242);
	margin-bottom: 1rem;
}

.customMessage .section-header .section-desc {
	color: rgba(251, 250, 248, 0.8);
}

.customMessage button.cta-btn {
	background: rgb(217, 113, 38);
	border-radius: 0.125rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 500;
	font-family: var(--font-family-outfit);
}

.products-grid {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.product-card {
	position: relative;
	display: block;
	background-color: #fff;
	border: 1px solid #dadada;
	border-radius: 0.5rem;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.product-img {
	width: 100%;
	aspect-ratio: 2 / 1;
	overflow: hidden;
	border-radius: 0.5rem;
}

.product-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.product-card:hover .product-img img {
	transform: scale(1.1);
}

.product-content {
	padding: 1rem;
}

.product-title {
	font-size: 1.2rem;
	line-height: 1.5rem;
	font-weight: 600;
	color: var(--theme-primary);
	margin-bottom: 0.5rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	min-height: 2lh;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.product-page .product-title {
	font-size: 2rem;
	line-height: 2.3rem;
	display: block;
	min-height: unset;
	text-overflow: initial;
	margin-bottom: 0.25rem;
	font-family: var(--font-family-garamond);
}

.product-page .product-subtitle {
	font-size: 1rem;
	line-height: 1.25rem;
	color: rgb(20, 41, 82);
	margin-bottom: 1rem;
}

.product-desc {
	font-size: 1rem;
	line-height: 1.3rem;
	color: #666;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	min-height: 3lh;
	-webkit-line-clamp: 3;
	overflow: hidden;
	margin-bottom: 0.5rem;
}

.gallery-figure {
	width: 100%;
	aspect-ratio: 1.25 / 1;
	overflow: hidden;
	position: relative;
	box-shadow: 0px 0px 88px 16px rgba(0, 0, 0, 0.08);
	background-color: #fff;
	border-radius: 0.5rem;
}

.gallery-figure figcaption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 0.5rem 1rem;
	background-color: #077c1194;
	color: #fff;
	text-align: center;
	font-size: 1.3rem;
	line-height: 1.5rem;
	text-overflow: ellipsis;
	overflow: hidden;
	text-transform: capitalize;
}

.gallery-figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.infra-figure {
	aspect-ratio: 1.75 / 1;
	position: relative;
}

.infra-figure .overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	color: #fff;
	background-color: rgba(26, 51, 102, 0.8);
	opacity: 0;
	transition: 0.3s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 0.5rem;
}

.infra-figure .overlay i {
	font-size: 2rem;
	line-height: 2rem;
}

.infra-figure .overlay figcaption {
	position: relative;
	color: rgb(251, 250, 248);
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 500;
	font-family: var(--font-family-outfit);
	background-color: transparent;
}

.infra-figure:hover .overlay {
	opacity: 1;
}

.enquiry-form {
	padding: 2rem;
	border: 1px solid #dadada;
	border-radius: 0.5rem;
	background-color: #fff;
}

.product-page .product-desc {
	font-size: 1.2rem;
	line-height: 1.5rem;
	display: block;
	min-height: unset;
	text-overflow: initial;
	margin-bottom: 1rem;
}

.volunteer-content {
	padding: 10px 15px;
}

.volunteer-content .title {
	font-size: 1rem;
	text-transform: capitalize;
	text-align: center;
}

.service-portfolio-title {
	margin: 15px 0px 5px;
}

.portfolio-figure {
	aspect-ratio: 2 / 1;
}

@keyframes splash-loaded {
	to {
		opacity: 0;
	}
}

.splash-img {
	position: absolute;
	top: 50%;
	left: 50%;
	height: auto;
	max-height: 180px;
	max-width: 100%;
	padding: 2rem;
	animation: splash 0.6s forwards;
}

@keyframes splash {
	from {
		opacity: 0;
		transform: translate(-50%, -30%);
	}

	to {
		opacity: 1;
		transform: translate(-50%, -50%);
	}
}

.loaded .splash-img {
	animation: splash-img-loaded 0.6s forwards;
}

@keyframes splash-img-loaded {
	from {
		opacity: 1;
		transform: translate(-50%, -50%);
	}

	to {
		opacity: 0;
		transform: translate(-50%, -30%);
	}
}

/* Testimonials Pagination */
.testimonials-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.testimonials-pagination .swiper-pagination-bullet {
	position: relative;
	border: 2px solid #d8d8d8;
	background: #fff;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	opacity: 1;
	transition: border-color 0.3s ease;
}

.testimonials-pagination .swiper-pagination-bullet-active {
	border-color: var(--theme-secondary);
}

.testimonials-pagination .swiper-pagination-bullet::after {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background-color: var(--theme-secondary);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.testimonials-pagination .swiper-pagination-bullet-active::after {
	opacity: 1;
}

.testimonials-pagination .swiper-pagination-bullet:not(:last-child)::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 100%;
	width: calc(100% + 10px);
	height: 2px;
	background-color: #d8d8d8;
	transform: translateY(-50%);
	z-index: -1;
}

.testimonials-pagination .swiper-pagination-bullet-active::before {
	background-color: var(--theme-secondary) !important;
}

#slider-nav .swiper-button-prev {
	width: 50px;
	height: auto;
	aspect-ratio: 1 / 2;
	overflow: hidden;
	border-radius: 0 0.5rem 0.5rem 0;
	left: 0;
	padding: 0;
}

#slider-nav .swiper-button-next {
	width: 50px;
	height: auto;
	aspect-ratio: 1 / 2;
	overflow: hidden;
	border-radius: 0.5rem 0 0 0.5rem;
	right: 0;
	padding: 0;
}

.other-products-section {
	position: relative;
}

.infoCard {
	text-align: center;
}

.infoCard .icon {
	background: linear-gradient(135deg, rgb(17, 126, 57) 0%, rgb(20, 41, 82) 100%);
	aspect-ratio: 1 / 1;
	max-width: 4rem;
	margin: 0 auto 1rem;
	width: 100%;
	padding: 1.25rem;
	color: #fff;
	font-size: 1.5rem;
	overflow: hidden;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.infoCard .title {
	font-size: 1.125rem;
	line-height: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.infoCard .description {
	font-size: 0.825rem;
	line-height: 1.25rem;
	color: rgb(108, 121, 147);
}

.pagesWorkSection {
	position: relative;
}

.enquiry-form-container {
	width: 768px;
}

.pagesWorkSection::after {
	content: '';
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right, #ffffff0a 1px, transparent 1px), linear-gradient(to bottom, #ffffff0a 1px, transparent 1px);
	background-size: 24px 24px;
	z-index: -1;
}

.map {
	max-width: 100%;
	width: 100%;
	height: 100%;
}

.map iframe {
	width: 100%;
	height: 100%;
	border-radius: 0.5rem;
}

.awards-swiper,
.awards-swiper .swiper-slide {
	height: auto;
}

.awardsrecogCard {
	overflow: hidden;
	background-color: #f0f0f0;
	border-radius: 0.5rem;
	/* box-shadow: ; */
	padding: 1.5rem;
	height: 100%;
	display: block;
}

.awardsrecogCard:focus {
	outline: none;
}

.awardsrecogCard figure {
	max-width: 100%;
	width: 100%;
	margin: 0 auto 1.5rem;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	margin-bottom: 1rem;
	position: relative;
	background-color: #fff;
}

.awardsrecogCard figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: 0.3s ease-in-out;
}

.awardsrecogCard:hover figure img {
	transform: scale(1.1);
}

.awardsrecogCard .title {
	font-size: 0.875rem;
	line-height: 1.25rem;
	text-align: center;
	margin: 0;
}

.appliances-header-banner {
	background: linear-gradient(to right bottom, rgba(227, 30, 36, 0.1), rgb(251, 250, 248), rgba(61, 45, 140, 0.05));
}

.appliances-header-banner .section-header .page {
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 500;
	color: rgb(227, 30, 36);
}

.appliances-header-banner .section-header .section-title {
	font-size: 6rem;
	line-height: 1;
	font-weight: 400;
	color: transparent;
	background-clip: text;
	background-image: linear-gradient(135deg, rgb(217, 113, 38), rgb(219, 153, 87));
}

.appliances-header-banner .section-header .section-title-logo {
	max-width: 22rem;
	margin-inline: auto;
	margin-bottom: 1rem;
	width: 100%;
	overflow: hidden;
}

.appliances-header-banner .section-header .section-title-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.appliances-header-banner .section-header .section-subtitle {
	color: rgb(92, 107, 138);
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 300;
	padding-left: 0;
	text-transform: capitalize;
	letter-spacing: normal;
}

.appliances-header-banner .section-header .section-subtitle::after {
	all: revert;
	display: block;
	content: '';
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(227, 30, 36), rgba(0, 0, 0, 0));
	height: 1px;
	width: 6rem;
	margin-inline: auto;
	position: absolute;
	bottom: -1rem;
	left: 50%;
	transform: translateX(-50%);
}

.appliances-header-banner .section-header .section-header-desc {
	color: rgba(23, 33, 54, 0.8);
	max-width: 672px;
	margin-inline: auto;
}

.pointers-section {
	background-color: rgba(227, 30, 36, 0.05);
}

.pointers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1rem;
}

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

.pointer-box .icon {
	max-width: 4rem;
	margin-inline: auto;
	margin-bottom: 1rem;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 50%;
	background-image: linear-gradient(to right bottom, rgb(227, 30, 36), rgb(61, 45, 140));
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.75rem;
}

.pointer-box .title {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 400;
	color: rgb(23, 33, 54);
	font-family: var(--font-family-garamond);
	margin-bottom: 0.5rem;
}

.pointer-box .desc {
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 400;
	color: rgb(92, 107, 138);
	max-width: 250px;
	margin-inline: auto;
}

.our-story {
	background-color: rgb(251, 250, 248);
}

.our-story .section-header .section-subtitle {
	color: rgb(227, 30, 36);
}

.our-story .section-header .section-subtitle::after {
	background-color: rgb(227, 30, 36);
}

.our-story .section-header .section-title {
	font-size: 2.25rem;
	line-height: 2.5rem;
	font-weight: 400;
}

.our-story .section-header .section-title span {
	color: rgb(227, 30, 36);
}

.our-story .section-header .section-desc {
	color: rgb(92, 107, 138);
	font-size: 1rem;
	line-height: 1.625rem;
	font-weight: 400;
}

.our-story .section-header .numbers-grid {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 1rem;
}

.our-story .section-header .numbers-grid .numbered {
	max-width: max-content;
	width: 100%;
}

.our-story .section-header .numbers-grid .numbered .number {
	font-size: 2.25rem;
	line-height: 2.5rem;
	font-family: var(--font-family-garamond);
	color: rgb(227, 30, 36);
	margin-bottom: 0;
}

.our-story .section-header .numbers-grid .numbered .number.purple {
	color: rgb(61, 45, 140);
}

.our-story .section-header .numbers-grid .numbered .number.yellow {
	color: rgb(247, 182, 20);
}

.our-story .section-header .numbers-grid .numbered .subtitle {
	color: rgb(92, 107, 138);
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.our-story figure {
	max-width: 100%;
	width: 100%;
	aspect-ratio: 1 / 1;
	position: relative;
	overflow: visible;
}

.our-story figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0.25rem;
}

.our-story figure figcaption {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	max-width: max-content;
	width: 100%;
	transform: translate(-20%, 50%);
	background-color: rgb(227, 30, 36);
	border-radius: 0.25rem;
	padding: 1.25rem;
}

.our-story figure figcaption .title {
	color: #fff;
	font-size: 1.5rem;
	line-height: 2rem;
	margin-bottom: 0;
	font-family: var(--font-family-garamond);
}

.our-story figure figcaption .desc {
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: #fff;
	opacity: 0.9;
}

.product-portfolio {
	background-color: rgba(227, 30, 36, 0.05);
}

.product-portfolio .section-header .section-subtitle {
	padding-inline: 4rem;
	color: rgb(227, 30, 36);
}

.product-portfolio .section-header .section-subtitle::after {
	background-color: rgb(227, 30, 36);
}

.product-portfolio .section-header .section-subtitle::before {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 3rem;
	height: 1px;
	background-color: rgb(227, 30, 36);
}

.productPortfolio-card {
	background-color: rgb(247, 246, 242);
	border: 1px solid rgba(231, 226, 218, 0.5);
	border-radius: 0.25rem;
	transition: 0.3s ease-in-out;
	border-radius: 0.25rem;
}

.productPortfolio-card:hover {
	box-shadow: rgba(23, 33, 54, 0.15) 0px 20px 60px -15px;
}

.productPortfolio-card figure {
	max-width: 100%;
	width: 100%;
	aspect-ratio: 1.33 / 1;
	overflow: hidden;
}

.productPortfolio-card figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s ease-in-out;
}

.productPortfolio-card:hover figure img {
	transform: scale(1.05);
}

.productPortfolio-card article {
	padding: 1.25rem;
}

.productPortfolio-card article .title {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 400;
	font-family: var(--font-family-garamond);
	color: rgb(23, 33, 54);
	margin-bottom: 0.5rem;
}

.productPortfolio-card article .desc {
	color: rgb(92, 107, 138);
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.experience-haato {
	background-image: linear-gradient(to right bottom, rgb(61, 45, 140), rgb(227, 30, 36));
	position: relative;
}

.experience-haato::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 10px, rgba(231, 226, 218, 0.3) 10px, rgba(231, 226, 218, 0.3) 11px);
}

.experience-haato .section-header {
	max-width: 768px;
}

.experience-haato .section-header .section-title {
	color: #fff;
}

.experience-haato .section-header .section-desc {
	font-size: 1.125rem;
	line-height: 1.75rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 2rem;
}

.experience-haato .section-header .shop-now {
	background-color: #fff;
	color: rgb(227, 30, 36);
	padding: 1rem 2rem;
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 500;
	transition: 0.3s ease-in-out;
}

.experience-haato .section-header .shop-now:hover {
	background-color: rgba(255, 255, 255, 0.9);
}

.experience-haato .section-header .shop-now i {
	margin-left: 0.25rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.header-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
		/* Horizontal lines (default to bottom) */
		linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px);
	background-size: 40px 40px;
	z-index: -1;
}

.header-banner::after {
	content: '';
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, #ffffff0a 1px, transparent 1px), linear-gradient(to bottom, #ffffff0a 1px, transparent 1px);
	background-size: 40px 40px;
	transform: rotate(0);
}

@media only screen and (max-width: 768px) {
	.pointers-grid {
		gap: 2rem;
	}

	.pointer-box .desc {
		font-size: 1rem;
	}

	.our-story figure figcaption {
		transform: translate(0, 30%);
	}

	.section-desc p {
		font-size: 1.125rem;
		line-height: 1.875rem;
	}

	.milestones {
		grid-template-columns: repeat(1, 1fr);
	}

	.milestone.l,
	.milestone.r {
		flex-direction: row;
		transform: translate(0);
	}


	.milestones::before {
		content: unset;
	}
}

@media only screen and (min-width: 320px) and (max-width: 576px) {

	#productTabs {
		flex-direction: row !important;
	}

	#productTabs .nav-link {
		width: max-content;
		white-space: nowrap;
	}

	.awardCard {
		padding: 1rem 0.5rem;
	}

	.good-tabs {
		justify-content: flex-start;
	}

}