/* #region page banner */

.page-banner {
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-alt);
	background-image: radial-gradient(ellipse at top right, var(--theme-secondary-light) 20%, var(--theme-secondary-dark) 110%);
	/* background-position: bottom left; */
	position: relative;
}

.page-banner-content {
	height: 250px;
	display: grid;
	align-items: center;
	text-align: center;
	align-content: center;
	line-height: 1.2;
}

.page-banner-title {
	font-size: 3.5rem;
	font-weight: 200;
	margin-bottom: 0.5rem;
	word-break: break-word;
}

.page-banner-crumbs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
}

.page-banner-crumb-arrow {
	/* margin-right: 0.5rem; */
}

.page-banner-crumb-arrow::before {
	content: ">";
}

@media (max-width: 768px) {
	.page-banner-title {
		font-size: 1.8rem;
	}

	.page-banner-content {
		height: 110px;
	}
}

/* #endregion page banner */

/* #region about us */

.about-row {
	display: flex;
	gap: 1.5rem 4rem;
}

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

.about-text-col,
.about-img-col {
	flex: 1 1 50%;
}

.about-img {
	border-radius: 1rem;
	overflow: hidden;
}

@media (min-width: 768px) {
	.about-row + .about-row {
		flex-direction: row-reverse;
	}
}

@media (max-width: 768px) {
	.about-row {
		flex-direction: column;
	}

	.about-row-resp-reverse {
		flex-direction: column-reverse;
		margin-top: 1.5rem;
	}
}

/* #region team */

.about-team-row {
	display: flex;
	gap: 1.5rem;
	margin-top: 2rem;
	flex-wrap: wrap;
}

.about-team-col {
	flex: 1 1 20%;
	overflow: hidden;
	position: relative;
	cursor: pointer;
}

.about-team-img {
	border: 1px solid #dadada;
}

.about-team-info {
	padding: 1rem;
	text-align: center;
}

.about-team-title {
	color: var(--theme-primary-dark);
	font-weight: 400;
	font-size: 1.4rem;
	margin-bottom: 0.3rem;
}

.about-team-designation {
	color: var(--theme-secondary);
	font-weight: 500;
}

.about-team-overview {
	width: 600px;
	max-width: 90%;
	/* background-color: var(--theme-primary); */
	/* color: var(--theme-secondary-alt); */
	padding: 1rem;
	border: 4px solid #fff;
	border-radius: 1rem;
	text-align: center;
	margin: auto;
	transition: ease 0.4s transform;
	animation: fade-out 0.3s ease-out;
	gap: 1rem;
	align-items: center;
}

.about-team-overview[open] {
	display: flex;
}

.about-team-overview .about-team-title {
	color: inherit;
	margin-bottom: 0;
	margin-top: 0.5rem;
	font-size: 1.2rem;
}

.about-team-overview-img {
	width: 40%;
}

.about-team-overview-desc {
	width: 60%;
	text-align: left;
	padding-block: 1rem;
}

.about-team-close {
	position: absolute;
	display: block;
	margin-left: auto;
	margin-bottom: -2.5rem;
	/* transform: translate(35%, -35%); */
	right: 0rem;
	top: 0rem;
	line-height: 1;
	padding: 0.5rem;
	font-size: 1.6rem;
	z-index: 2;
}

.about-team-overview[open] {
	animation: fade-in 0.3s ease-out;
}

.about-team-overview[open]::backdrop {
	animation: backdrop-fade-in 0.3s ease-out forwards;
}

@keyframes fade-in {
	0% {
		opacity: 0;
		transform: translateY(2rem);
		/* display: none; */
	}

	100% {
		opacity: 1;
		transform: translateY(0);
		/* display: block; */
	}
}

@keyframes fade-out {
	0% {
		opacity: 1;
		transform: translateY(0);
		/* display: block; */
	}

	100% {
		opacity: 0;
		transform: translateY(2rem);
		/* display: none; */
	}
}

@keyframes backdrop-fade-in {
	0% {
		background-color: rgb(0 0 0 / 0);
	}

	100% {
		background-color: rgb(0 0 0 / 0.25);
	}
}

/* .about-team-col:hover .about-team-overview {
	transform: none;
} */

@media (max-width: 768px) {
	.about-team-col {
		flex: 1 1 100%;
	}

	.about-team-info {
		padding: 0.5rem;
	}

	.about-team-title {
		font-size: 1.2rem;
	}

	.about-team-row {
		max-width: 17rem;
		margin-inline: auto;
	}

	.about-team-overview {
		flex-direction: column;
		padding: 2rem;
	}

	.about-team-overview-img,
	.about-team-overview-desc {
		width: 100%;
	}
}

/* #endregion team */

/* #region certifications */

.about-certifications-text {
	max-width: 800px;
	margin-inline: auto;
	margin-top: 2rem;
}

.about-certifications-images {
	display: grid;
	gap: 2rem;
	margin-top: 3rem;
}

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

.certification-group .certification-slide-title {
	font-size: 1.6rem;
	font-weight: 300;
}

.certification-group .certification-slide-row {
	justify-content: center;
}

.certification-group .certification-slide-img {
	height: auto;
	background-color: #fff;
	width: 9.5rem;
}

.certification-group img {
	height: 100%;
	object-fit: contain;
	padding: 0.5rem;
}

.certification-group .certification-label {
	flex: 0 1 auto;
	font-size: 1rem;
	font-weight: 300;
}

@media (max-width: 768px) {
}

/* #endregion certifications */

/* #region quality */

.about-quality-list {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	margin-top: 3rem;
}

.about-quality-item {
	padding: 1rem;
	text-align: center;
	border: 1px solid #eaeaea;
	border-radius: 1rem;
	width: 20rem;
}

.about-quality-icon {
	margin-bottom: 1rem;
	font-size: 3rem;
	color: var(--theme-secondary);
	line-height: 1;
}

.about-quality-details {
}

.about-quality-title {
	font-size: 1.3rem;
	font-weight: 400;
	margin-bottom: 0.5rem;
}

.about-quality-text {
	font-size: 0.9rem;
	font-weight: 500;
	color: #555;
}

.about-info {
	padding: 2rem;
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-alt);
	margin-top: 2rem;
	border-radius: 1rem;
}

.about-info-title {
	font-size: 1.5rem;
	font-weight: 400;
	margin-bottom: 1.5rem;
}

.about-info-list {
	list-style-type: disc;
	padding-left: 1.5em;
	list-style-position: outside;
	line-height: 1.4;
}

.about-info-list li {
	margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
}

/* #endregion quality */

/* #region rnd */

.about-rnd-images {
	display: flex;
	gap: 3rem;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-block: 3rem;
}

.about-rnd-image {
	width: 25rem;
	max-width: 100%;
	border-radius: 1rem;
	overflow: hidden;
}

.about-rnd-image::before {
	padding-top: 65%;
}

.about-rnd-text {
	max-width: 900px;
	margin-inline: auto;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.5;
	/* color: var(--theme-secondary); */
}

@media (max-width: 768px) {
}

/* #endregion rnd */

/* #region clients */

.about-clients-row {
	display: flex;
	margin-top: 3rem;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

.about-clients-row .client-slide {
	flex: 0 0 20rem;
	box-shadow: 0 0 0.5rem rgb(0 0 0 / 10%);
}

@media (max-width: 768px) {
}

/* #endregion clients */

/* #endregion about us */

/* #region services */

.services-grid {
	display: grid;
	gap: 5rem;
	max-width: 1000px;
	margin-inline: auto;
}

.service-item {
	display: flex;
	gap: 2rem;
	/* align-items: center; */
}

.service-img {
	width: 22rem;
	border-radius: 1rem;
	overflow: hidden;
	margin-bottom: auto;
}

.services-content {
	flex: 1 1 0;
}

.service-title {
	/* font-size: 1.6rem; */
	/* font-weight: 500; */
	margin-bottom: 0.5rem;
}

.service-text {
	font-size: 1.1rem;
	margin-top: 0.5rem;
	line-height: 1.4;
}

@media (min-width: 768px) {
	.service-item:nth-child(even) {
		flex-direction: row-reverse;
	}
}

@media (max-width: 768px) {
	.service-item {
		flex-direction: column;
	}

	.service-img,
	.services-content {
		/* width: 100%;
		flex: auto; */
	}
}

/* #endregion services */

/* #region products */

.product-category-details {
	display: flex;
	gap: 2rem;
	margin-top: 2rem;
	background-color: var(--theme-secondary-bg-light);
	padding: 1rem;
	border-radius: 2rem;
}

.product-category-img {
	width: 10rem;
	background-color: #fff;
	border-radius: 1rem;
	overflow: hidden;
}

.product-category-img img {
	padding: 0.5rem;
}

.product-category-info {
	flex: auto;
}

.product-category-title {
	font-size: 2rem;
	font-weight: 400;
}

.products-row {
	display: flex;
	gap: 2rem;
	align-items: flex-start;
	--section-gap: 3rem;
}

.products-category-container {
	flex: 0 0 15rem;
	border-radius: 0.5rem;
	border: 1px solid #eaeaea;
	position: sticky;
	top: calc(var(--header-height) + 1rem);
	bottom: 1rem;
	max-height: calc(100vh - var(--header-height) - 2rem);
	overflow: auto;
	box-sizing: content-box;
	background-color: #fff;
}

.products-category-col {
	padding: 0.5rem;
	display: grid;
	align-content: flex-start;
	gap: 0.3rem;
}

.products-category {
	display: block;
	padding: 0.3rem 1rem;
	background-color: #f7f7f7;
	border-radius: 0.5rem;
}

.products-category:hover,
.products-category.active {
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
}

.products-list-col {
	flex: auto;
}

.products-items-list {
	/* display: grid; */
	grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
	gap: 0.5rem 0.5rem;
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
	/* text-align: center; */
	border-radius: 1rem;
	overflow: hidden;
}

.products-items-list thead {
	white-space: nowrap;
}

.products-items-list th {
	font-weight: 500;
	/* background-color: #f1f1f1; */
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-alt);
}

.products-items-list th,
.products-items-list td {
	padding: 0.5rem 1rem;
	border: 1px solid #eaeaea;
}

.products-item-sl,
.products-item-composition,
.products-item-packaging {
	text-align: center;
}

.products-item-header {
	/* grid-column: 1 / -1; */
	/* margin-top: 1rem; */
	font-weight: 500;
	font-size: 1rem;
	/* line-height: 1.2; */
	background-color: var(--theme-primary-bg-light);
	/* color: var(--theme-secondary-alt); */
	text-align: center;
}

.products-item {
	/* border: 1px solid #eaeaea; */
	/* border-radius: 0.5rem; */
	/* padding: 0.5rem 1rem; */
	/* background-color: var(--theme-primary-bg-light); */
}

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

@media (max-width: 768px) {
	.product-category-title {
		font-size: 1.5rem;
	}

	.products-row {
		flex-direction: column;
		--section-gap: 2rem;
	}

	.products-category-container,
	.products-list-col {
		width: 100%;
		flex: auto;
	}

	.products-category-container {
		top: calc(var(--header-height) + 0rem);
	}

	.products-list-col {
		overflow: auto;
	}

	.products-items-list {
		font-size: 0.8rem;
	}

	.products-item-header {
		font-size: 0.9rem;
	}

	.products-items-list th,
	.products-items-list td {
		padding: 0.2rem 0.3rem;
	}
}

/* #endregion products */

/* #region infrastructure */

.infrastructure-section .section-header {
	margin-bottom: 3rem;
}

.infrastructure-section .section-header .hlt {
	font-weight: 500;
}

.infrastructure-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
	gap: 1.5rem;
	max-width: 100%;
	min-width: 0;
}

.infrastructure-list-item {
	border-radius: 0.5rem;
	overflow: hidden;
	border: 1px solid #eaeaea;
	display: flex;
	flex-direction: column;
}

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

.infrastructure-item-desc {
	text-align: center;
	padding: 1rem;
	background-color: var(--theme-primary-bg-light);
	flex: auto;
	line-height: 1.4;
}

.infrastructure-bullet-list {
	/* margin-top: 2rem; */
	display: grid;
	gap: 0.5rem;
	line-height: 1.4;
}

.infrastructure-bullet-list li {
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
}

.infrastructure-info-row {
	display: flex;
	gap: 3rem;
	align-items: center;
}

.infrastructure-info-col {
	width: 45%;
}

.infrastructure-img-col {
	width: 55%;
	/* padding-inline: 4rem; */
}

.infrastructure-info-img {
	border-radius: 1rem;
	overflow: hidden;
}

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

@media (max-width: 768px) {
	.infrastructure-section .section-header {
		margin-bottom: 2rem;
	}

	.infrastructure-list {
		display: flex;
		flex-direction: column;
	}

	.infrastructure-info-row {
		flex-direction: column-reverse;
		gap: 2rem;
	}

	.infrastructure-info-col,
	.infrastructure-img-col {
		width: 100%;
		flex: auto;
	}
}

/* #endregion infrastructure */

/* #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;
}

.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: 2rem;
	/* font-weight: normal; */
	/* 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 {
	margin-top: 1rem;
	line-height: 1.5;
}

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

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

.career-modal .career-modal-body {
	width: 60rem;
	height: 40rem;
	display: flex;
	flex-direction: column;
}

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

.career-modal-container {
	display: flex;
	gap: 1.5rem;
	height: 100%;
	flex: 1 1 0%;
	height: 0;
}

.career-modal-info,
.career-modal-form {
	width: 50%;
}

.career-modal-info {
	padding-right: 1.5rem;
}

.career-modal-title {
	margin-bottom: 0.5rem;
}

.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;
}

@media (max-width: 768px) {
	.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 gallery */

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
}

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

.gallery-card {
	padding: 10px;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
	border-radius: 6px;
	background-color: #fff;
}

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

.gallery-card-img::before {
	content: "";
	display: block;
	width: 100%;
	padding-top: 75%;
}

.gallery-card-img img {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery-card .gallery-caption {
	margin-top: 10px;
}

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

/* #endregion gallery */
