/* #region setup */

:root {
	--text-color: #000;
	--dark-color: #141414;
	--theme-primary: #fac900;
	--theme-primary-dark: #d4aa00;
	--theme-primary-light: #ffe169;
	--theme-primary-bg-light: #fff9e5;
	--theme-primary-bg-lighter: #fffdf6;
	--theme-primary-fade: rgba(250, 200, 0, 0.3);
	--theme-primary-alt: #000;
	--theme-secondary: #c98558;
	--theme-secondary-alt: #000;
	--container-width: 1290px;
	--container-sm-width: 1120px;
	--container-lg-width: 1440px;
	--column-gutter: 10px;

	/* https://angel-rs.github.io/css-color-filter-generator/ */
	/* --primary-filter: brightness(0) saturate(100%) invert(20%) sepia(99%) saturate(2341%) hue-rotate(184deg) brightness(95%) contrast(101%);
	--secondary-filter: brightness(0) saturate(100%) invert(26%) sepia(51%) saturate(5261%) hue-rotate(330deg) brightness(76%) contrast(111%); */
	--white-filter: brightness(0) saturate(100%) invert(100%);
	--black-filter: brightness(0) saturate(100%) invert(0%);
	--header-height: 120px;
	--min-header-height: 80px;
	--logo-width: 170px; /*110px;*/
	--section-gap: 4rem;
	--swiper-theme-color: var(--theme-primary);
	--nav-hover-color: var(--theme-primary);
}

*,
*::before,
*::after {
	box-sizing: inherit;
	margin: 0;
	padding: 0;
}

html {
	box-sizing: border-box;
	font-size: 18px;
	scroll-padding-top: var(--header-height);
	scroll-behavior: smooth;
	scrollbar-gutter: stable;
	overflow-x: hidden;
}

body {
	color: var(--text-color);
	font-family: var(--font-family);
	/* overflow-x: hidden; */
	line-height: 1.8;
	/* font-weight: 500; */
	/* padding-top: var(--header-height); */
	background-color: var(--theme-primary-bg-lighter);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family-alt);
	line-height: 1.3;
}

input,
button,
select,
textarea {
	font: inherit;
	color: inherit;
	border: 0;
	background: none;
	outline: none;
	font-size: 14px;
}

input,
select,
textarea {
	display: block;
	width: 100%;
}

button {
	cursor: pointer;
}

img {
	display: block;
	max-width: 100%;
	max-height: 100%;
}

ul,
ol {
	list-style: none;
}

a {
	text-decoration: none;
	color: inherit;
	transition: ease 0.25s;
	transition-property: color, background-color, border-color;
}

label.error {
	color: red;
	font-size: 0.9em;
}

::selection {
	background-color: var(--theme-primary-fade);
	/* color: var(--theme-primary-alt); */
}

@media (max-width: 760px) {
	:root {
		--header-height: 80px;
		--logo-width: 150px;
		--column-gutter: 20px;
		--min-header-height: 65px;
	}

	html {
		font-size: 16px;
	}
}

/* #endregion setup */

/* #region layout */

.menu-active {
	overflow: hidden;
}

.container {
	width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--column-gutter);
	max-width: 100%;
}

.container-sm {
	width: var(--container-sm-width);
}

.container-lg {
	width: var(--container-lg-width);
}

.light-bg {
	position: relative;
	background-color: var(--theme-primary-bg-light);
}

.section-gap {
	padding-block: var(--section-gap);
}

.section-subtitle {
	font-weight: 500;
	/* letter-spacing: 2px; */
	font-size: 1.3rem;
	font-family: var(--font-family);
	/* opacity: 0.3; */
	/* line-height: 2; */
	/* text-transform: uppercase; */
	color: var(--theme-primary);
	margin-top: 1.5rem;
}

.section-title {
	font-weight: 300;
	font-size: 2.2rem;
	line-height: 1.3;
}

.banner-swiper-nav {
	width: auto;
	background-color: #fff;
	color: #000;
	padding: 40px 15px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	font-weight: 600;
	--swiper-navigation-size: 24px;
	margin-top: 0;
	transform: translateY(-50%);
}

.banner-swiper-nav.swiper-button-prev {
	left: 0;
	border-radius: 0 5px 5px 0;
}

.banner-swiper-nav.swiper-button-next {
	right: 0;
	border-radius: 5px 0 0 5px;
}

.swiper-nav-btn {
	--swiper-navigation-sides-offset: 1rem;
	--swiper-navigation-size: 1.6rem;
	width: calc(var(--swiper-navigation-size) + 1rem);
	height: calc(var(--swiper-navigation-size) + 1rem);
	border-radius: 50rem;
	border: 2px solid var(--swiper-theme-color);
	background-color: rgb(255 255 255 / 70%);
}

.header-banner {
	padding-top: 2rem;
	padding-bottom: 2rem;
	/* background-color: #f9f9f9; */
	color: #000;
	text-align: center;
}

.header-banner .section-header {
	margin-bottom: 2rem;
	margin-top: 2rem;
}

.section-header-crumbs {
	margin-top: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	line-height: 1.8;
}

.section-header-crumbs span {
	display: inline-block;
	max-width: 400px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.section-header-crumbs span:not(:last-child) {
	margin-right: 0.5em;
}

.section-header-crumbs span:not(:last-child)::after {
	font: var(--icon-font);
	content: "\f105";
	font-size: 1em;
	margin-left: 0.5em;
}

.crumb-active {
	color: var(--theme-primary);
}

.site-page > .header-banner + .page-section {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.cta-btn {
	display: inline-block;
	padding: 1rem 5rem;
	font-size: 1.25rem;
	line-height: 1.4;
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	position: relative;
	padding-right: 8rem;
	overflow: hidden;
}

.cta-btn:hover {
	background-color: var(--theme-primary-dark);
	/* color: var(--theme-primary-bg-lighter); */
}

.cta-btn::before,
.cta-btn::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	padding: 1rem;
	width: 4rem;
}

.cta-btn::after {
	content: "\f061";
	font: var(--icon-font);
	font-size: 1.75rem;
	display: grid;
	place-content: center;
}

.cta-btn::before {
	content: "";
	background-color: #fff;
	opacity: 0.5;
}

.cta-btn:hover::after {
	animation: cta-spin 1s ease-in-out alternate;
	/* animation-iteration-count: 2; */
}

@keyframes cta-spin {
	0% {
		transform: rotateX(0deg);
	}
	100% {
		transform: rotateX(720deg);
	}
}

.application-link {
	--content-width: 7rem;
	--icon-size: 2.2rem;
	--padding: 4px;
	--btn-width: calc(var(--content-width) + var(--icon-size) + (var(--padding) * 2));
	background-color: var(--theme-primary);
	border-radius: 100px;
	display: inline-flex;
	padding: var(--padding);
	align-items: center;
	cursor: pointer;
	text-decoration: none;
	width: var(--btn-width);
	transition: ease-in-out 0.25s box-shadow;
}

.application-link::after {
	content: "\f061";
	font: var(--icon-font);
	padding: 8px;
	width: var(--icon-size);
	height: var(--icon-size);
	display: grid;
	place-items: center;
	font-size: 1.25rem;
	background-color: #fff;
	color: #000;
	line-height: 1;
	border-radius: 50%;
	pointer-events: none;
}

.application-link-content,
.application-link::after {
	transition: ease-in-out 0.3s transform;
}

.application-link .hover-text {
	transition: ease-in-out 0.3s color;
}

/* .application-link::after i {
	width: 20px;
	text-align: center;
} */

.application-link-content {
	overflow: hidden;
	/* height: 100%; */
	width: var(--content-width);
	pointer-events: none;
}

.application-link:hover::after {
	transform: translateX(calc(var(--content-width) * -1));
}

.application-link:hover .application-link-content {
	transform: translateX(var(--icon-size));
}

.application-link .hover-text {
	white-space: nowrap;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0.3rem 0.8rem;
	font-size: 0.85rem;
	color: #fff;
}

.application-link:hover {
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.pagination-wrapper {
	margin-top: 2rem;
}

.page-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.page-pagination .page-numbers {
	display: block;
	padding: 0.2rem 1rem;
	font-size: 1rem;
	border: 2px solid var(--theme-primary);
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	border-radius: 0.5rem;
	font-weight: 500;
}

.page-pagination .page-numbers:hover {
	background-color: var(--theme-primary-alt);
	color: var(--theme-primary);
}

.glightbox-open {
	scrollbar-gutter: auto;
}

.glightbox-container.glightbox-default {
	padding-left: 1rem;
	padding-right: 1rem;
}

.glightbox-container.glightbox-default .goverlay {
	background-color: rgba(0, 0, 0, 0.7);
}

.glightbox-container.glightbox-default .ginner-container {
	border-radius: 0.5rem;
}

.glightbox-container.glightbox-default .gslide-media {
	background-color: #fff;
}

.glightbox-container.glightbox-default .gslide-title {
	font-family: var(--font-family-alt);
	font-size: 1.5rem;
	margin-bottom: 0.5em;
}

.glightbox-container.glightbox-default .gslide-desc {
	font-family: var(--font-family);
	font-size: 1rem;
	white-space: pre-line;
}

.popup-container,
.popup-slide-in .popup-container {
	padding: 2rem;
}

.popup-container .popup-close {
	top: 2.5rem;
	right: 2.5rem;
}

.popup-title {
	font-size: 1.5rem;
	font-family: var(--font-family);
	font-weight: 400;
}

.hlt {
	color: var(--theme-primary);
}

.section-header {
	/* margin-bottom: 1rem; */
	/* text-align: center; */
	position: relative;
}

.section-header.left-header {
	text-align: left;
}

.section-title-sm {
	/* text-transform: uppercase; */
	/* letter-spacing: 3px; */
	font-weight: 400;
	/* color: var(--theme-primary); */
	margin-top: 1em;
	font-size: 1.3rem;
	line-height: 1.3;
}

.section-title {
	font-weight: 200;
	font-size: 2rem;
	line-height: 1.2;
	/* padding-bottom: 3.5rem; */
	position: relative;
}

.center-header .section-title {
	text-align: center;
}

[data-bg-shadow] {
	position: relative;
	/* overflow: hidden; */
}

[data-bg-shadow]::before {
	content: attr(data-bg-shadow);
	position: absolute;
	top: -3rem;
	left: -3rem;
	font-size: 18rem;
	opacity: 0.05;
	font-weight: 800;
	line-height: 0.5;
	white-space: nowrap;
	text-transform: uppercase;
}

.bg-cover {
	background-size: cover;
	background-position: center bottom;
}

.bg-cover > * {
	position: relative;
	z-index: 1;
}

.scale-img {
	position: relative;
}

.scale-img::before {
	content: "";
	display: block;
	padding-top: 100%;
}

.scale-img > img,
.scale-img > iframe,
.scale-img > svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swiper-slide {
	box-sizing: border-box;
}

.padded-swiper {
	padding: var(--column-gutter);
	margin-left: calc(var(--column-gutter) * -1);
	margin-right: calc(var(--column-gutter) * -1);
}

@media (max-width: 760px) {
	.section-gap {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}

	.site-page > .header-banner + .page-section {
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}

	.section-subtitle {
		font-size: 0.85rem;
	}

	.section-title {
		font-size: 1.6rem;
	}

	.banner-swiper-nav {
		--swiper-navigation-size: 20px;
		padding: 30px 10px;
	}

	.header-banner .section-header {
		margin-top: 0.5rem;
		margin-bottom: 0.5rem;
	}

	.glightbox-container.glightbox-default .goverlay {
		background-color: rgb(255, 255, 255);
	}

	.glightbox-mobile .glightbox-container.glightbox-default .gslide-description {
		background: #fff;
	}

	.glightbox-mobile .glightbox-container.glightbox-default .gslide-title {
		color: #000;
	}

	.header-cta-btn {
		font-size: 0.9rem;
	}

	.application-link {
		--icon-size: 2rem;
	}

	.application-link::after {
		padding: 4px;
	}

	.cta-btn {
		font-size: 1rem;
		padding-inline: 3rem;
		padding-right: 7rem;
	}
}

@media (min-width: 761px) {
	.glightbox-container.glightbox-default .goverlay {
		background-color: rgba(0, 0, 0, 0.9);
	}

	.glightbox-container.glightbox-default .gslide-description {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
		overflow: hidden;
	}

	.glightbox-container.glightbox-default .gslide-media {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
		overflow: hidden;
	}
}

@media print {
	.top-header,
	.page-header,
	.page-menu,
	.header-banner,
	.page-footer {
		display: none;
	}

	.site-page > .header-banner + .page-section {
		padding: 0;
	}
}

/* #endregion layout */

/* #region header */

.top-header {
}

.main-header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 45;
	font-family: var(--font-family-alt);
	transition: ease 0.3s;
	transition-property: background-color, box-shadow;
	border-block: 1px solid rgb(0 0 0 / 10%);
	background-color: #fff;
}

.scroll-down .main-header-row,
.menu-active .main-header-row {
	--logo-width: 110px;
	--header-height: var(--min-header-height);
}

.scroll-down .main-header {
	background-color: #fff;
	box-shadow: 0px 0px 8px rgb(0 0 0 / 20%);
}

.main-header-row {
	display: flex;
	height: var(--header-height);
	/* padding-top: 10px; */
	/* padding-bottom: 10px; */
	padding-block: 0.5rem;
	align-items: center;
	/* color: var(--theme-secondary-alt); */
	align-items: center;
	position: relative;
	transition: ease 0.3s;
	transition-property: height, box-shadow;
}

.scroll-down .main-header-row {
	/* height: var(--min-header-height); */
}

.header-logo {
	/* height: calc(var(--header-height) + var(--small-header-height)); */
	width: var(--logo-width);
	/* position: absolute; */
	left: 0;
	bottom: 0;
	transition: ease 0.3s width;
	margin-right: 3rem;
}

.header-logo img {
	height: 100%;
	width: 100%;
	object-fit: contain;
}

.header-contact {
	/* padding-left: 1rem; */
	/* padding-block: 0.5rem; */
	/* border-left: 1px solid #dadada; */
	display: flex;
	align-items: center;
	padding-block: 0.5rem;
	gap: 0 1.5rem;
	flex-wrap: wrap;
	justify-content: center;
}

.header-contact a {
	font-size: 1.1rem;
	font-weight: 300;
	display: flex;
	align-items: center;
	gap: 0.3rem;
	line-height: 1.3;
	transition: ease 0.3s;
}

.header-contact i {
	font-size: 1.3em;
}

.scroll-down .header-contact a {
	font-size: 1.4rem;
}

.header-contact p {
	font-size: 0.9rem;
	line-height: 1;
	transition: ease 0.3s;
	color: var(--theme-secondary);
	text-align: center;
	/* padding-left: 2.3rem; */
}

.scroll-down .header-contact p {
	font-size: 0.7rem;
	/* padding-left: 0; */
	text-align: left;
}

.header-nav .nav-active {
	text-decoration: underline;
	text-underline-offset: 0.5rem;
}

/* .header-nav .nav-active,
.header-nav a:hover {
	color: var(--theme-secondary);
} */

.page-header-links {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.resp-menu-btn {
	font-size: 1.8rem;
	line-height: 1;
	padding: 0.3rem;
}

.menu-active {
	overflow: hidden;
}

.header-resp-action {
	margin-left: auto;
	position: relative;
	z-index: 201;
}

.scroll-down .header-nav {
	/* top: var(--min-header-height); */
}

.menu-active,
.menu-active .main-header {
	background-color: var(--theme-primary);
}

.header-menu-open-icon {
	display: block;
}

.header-menu-close-icon {
	display: none;
}

.menu-active .header-menu-open-icon {
	display: none;
}

.menu-active .header-menu-close-icon {
	display: block;
}

@media (min-width: 760px) {
	.header-resp-nav,
	.header-resp-action {
		display: none;
	}

	.header-nav {
		margin-left: auto;
		padding-inline: 1rem;
	}

	.header-nav > ul {
		display: flex;
		gap: 0 1.3rem;
	}
}

@media (max-width: 768px) {
	.top-header {
		display: none;
	}

	.header-logo {
		margin-right: 1.5rem;
	}

	.header-contact a {
		font-size: 1.5rem;
	}

	.header-contact p {
		padding-left: 2.5em;
	}

	.header-resp-nav {
		text-align: center;
	}

	.header-resp-nav a {
		font-size: 1.9rem;
		font-weight: 300;
		display: flex;
		align-items: center;
		gap: 0.3rem;
		line-height: 1.3;
		transition: ease 0.3s;
		justify-content: center;
	}

	.header-resp-nav p {
		font-size: 0.9rem;
		line-height: 1;
		transition: ease 0.3s;
		color: #000;
		/* text-align: left; */
		/* padding-left: 10px; */
	}

	.header-nav {
		position: fixed;
		right: 0;
		bottom: 0;
		top: calc(var(--header-height) + 0px);
		top: 0;
		width: 100%;
		background-color: var(--theme-primary);
		padding: 2rem;
		z-index: 200;
		transform: translateX(100%);
		transition: ease 0.35s transform;
		font-weight: 600;
		overflow: auto;
		display: grid;
	}

	.header-nav::before {
		/* content: "menu"; */
		text-transform: uppercase;
		font-size: 15rem;
		line-height: 1;
		font-weight: 600;
		position: absolute;
		top: 0;
		left: 0;
		color: #000;
		opacity: 0.1;
	}

	.header-nav > ul {
		display: flex;
		gap: 1rem;
		font-weight: 300;
		font-size: 1.4rem;
		text-transform: uppercase;
		flex-direction: column;
		color: var(--dark-color);
		width: 100%;
		max-width: var(--container-width);
		margin: auto;
		margin-bottom: 1.5rem;
	}

	.menu-active .header-nav {
		transform: translateX(0);
	}
}

/* #endregion header */

/* #region banner */

.home-banner-row {
	position: relative;
}

.home-banner-row::before {
	content: "";
	padding-top: 40%;
	display: block;
}

.home-banner-content {
	position: absolute;
	top: 50%;
	left: 0;
	max-width: 650px;
	width: 100%;
	transform: translateY(-50%);
	z-index: 2;
}

.home-banner-title {
	font-size: 2.4rem;
	line-height: 1.1;
	font-weight: 200;
	margin-bottom: 2rem;
}

.home-banner-text {
	font-size: 1.6rem;
	line-height: 1.3;
	width: clamp(80%, 550px, 100%);
	color: var(--theme-secondary);
	font-weight: 500;
}

.home-banner-content .cta-btn {
	margin-top: 3rem;
}

.home-banner-img {
	position: absolute;
	top: 42%;
	right: 0;
	max-width: 500px;
	width: 50%;
	transform: translateY(-50%);
	z-index: 1;
	animation: banner-img 5s ease infinite;
}

@keyframes banner-img {
	0% {
		transform: translateY(calc(-50% - 0.5rem));
	}
	50% {
		transform: translateY(calc(-50% + 0.5rem));
	}
	100% {
		transform: translateY(calc(-50% - 0.5rem));
	}
}

@media (max-width: 768px) {
	.home-banner-row {
		display: flex;
		flex-direction: column-reverse;
		gap: 0rem;
		padding-top: 2rem;
	}

	.home-banner-row::before {
		content: none;
	}

	.home-banner-content {
		position: static;
		transform: none;
	}

	.home-banner-img {
		top: auto;
		bottom: 0;
		left: 0;
		width: 100%;
		position: static;
	}

	@keyframes banner-img {
		0% {
			transform: translateY(calc(-1rem - 0.5rem));
		}
		50% {
			transform: translateY(calc(-1rem + 0.5rem));
		}
		100% {
			transform: translateY(calc(-1rem - 0.5rem));
		}
	}

	.home-banner-title {
		font-size: 1.3rem;
		margin-bottom: 1.5rem;
	}

	.home-banner-text {
		font-size: 1.1rem;
	}

	.home-banner-content .cta-btn {
		margin-top: 2rem;
	}
}

/* #endregion banner */

/* #region trust */

.home-trust {
	text-align: center;
}

.home-trust-title {
	font-size: 2rem;
	font-weight: 200;
}

.home-trust-brands {
	margin-top: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	gap: 2rem;
}

.home-trust-img {
	/* width: 7.5rem; */
	max-width: 50%;
	height: auto;
}

.home-trust-img::before {
	padding-top: 50%;
}

.home-trust-img img {
	object-fit: contain;
}

@media (max-width: 768px) {
	.home-trust-title {
		font-size: 1.6rem;
	}
}

/* #endregion trust */

/* #region services */

.home-services-grid {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	margin-top: 3rem;
	/* text-align: center; */
}

.home-services-item {
	padding: 1.5rem;
	background-color: #f9f8f6;
	text-align: center;
	border-radius: 1rem;
	/* box-shadow: 0 0 0.5rem rgba(0,0,0,0.2); */
	border: 1px solid #dadada;
}

.home-services-icon {
	line-height: 1;
	font-size: 2.5rem;
	color: var(--theme-primary);
	margin-bottom: 1.2rem;
	/* padding: 0.5rem; */
}

.home-service-icon-svg {
	width: 100%;
	height: 100%;
	display: block;
	/* padding: 1rem; */
}

.home-service-icon-svg * {
	fill: var(--theme-primary);
}

.home-service-icon-svg use {
	width: 100%;
	height: 100%;
	display: block;
}

.home-services-content {
}

.home-services-title {
	font-size: 1rem;
	font-weight: normal;
	/* margin-bottom: 0.5rem; */
}

.home-services-text {
}

@media (max-width: 768px) {
	.home-services-grid {
		margin-top: 2rem;
		gap: var(--column-gutter);
	}

	.home-services-title {
		font-size: 1.3rem;
	}
}

/* #endregion services */

/* #region about */

.home-about-row {
	display: flex;
	gap: 2.5rem 5.5rem;
	align-items: center;
}

.home-about-img {
	width: 40%;
}

.home-about-content {
	width: 50%;
}

.home-about-text {
	margin-top: 1.5rem;
	display: grid;
	gap: 1.5rem;
	justify-items: start;
}

@media (max-width: 768px) {
	.home-about-row {
		flex-direction: column;
	}

	.home-about-img,
	.home-about-content {
		width: 100%;
	}
}

/* #endregion about */

/* #region stats */

.home-stats-row {
	display: flex;
	gap: 2.5rem;
	align-items: center;
	margin-top: 2rem;
}

.home-stats-text,
.home-stats-img {
	width: 50%;
}

.home-stats-list {
	margin-top: 1.5rem;
	display: grid;
	gap: 0.7rem;
	font-size: 1.2rem;
	font-weight: 300;
}

.home-stats-list li {
	/* background-color: var(--theme-primary); */
	display: flex;
	gap: 0.5em;
	align-items: center;
}

.home-stats-list li::before {
	content: "\f058";
	font: var(--icon-font);
	font-size: 1.7rem;
	color: var(--theme-secondary);
}

.home-stats-nums {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 1rem;
}

.home-stats-num {
	--bg: var(--theme-primary);
	--color: var(--theme-primary-alt);
	--color2: var(--theme-primary-alt);
	padding: 1.5rem 1rem;
	background-color: var(--bg);
	color: var(--color);
}

.home-stats-num-title {
	font-size: 3.3rem;
	line-height: 1.1;
	font-weight: 700;
}

.home-stats-num-text {
	font-size: 1rem;
	font-weight: 500;
	color: var(--color2);
}

@media (max-width: 768px) {
	.home-stats-row {
		flex-direction: column;
	}

	.home-stats-img,
	.home-stats-text {
		width: 100%;
	}
}

/* #endregion stats */

/* #region faqs */

.home-faqs-list {
	margin-top: 3rem;
}

.home-faqs-item {
	/* max-width: 500px; */
	overflow: hidden; /* Keep this line to prevent an odd blue outline around the element in Safari. */
}

.home-faqs-header {
	display: block;
}

.home-faqs-header::-webkit-details-marker {
	display: none;
}

.home-faqs-title {
	position: relative;
	display: flex;
	align-items: center;
	padding-block: 1rem;
	padding-right: 2.5rem;
	font-size: 1.3rem;
	font-weight: 400;
	transition: ease 0.3s color;
	position: relative;
	color: #777;
}

.home-faqs-title:hover {
	cursor: pointer;
}

.home-faqs-title::after {
	content: "\f107";
	font: var(--icon-font);
	font-size: 1.3rem;
	position: absolute;
	right: 0;
	z-index: 1;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: ease 0.3s transform;
}

.home-faqs-item[open] .home-faqs-title::after {
	transform: translate(-50%, -50%) rotate(180deg);
}

.home-faqs-content {
	box-sizing: border-box;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.6s ease-out;
	font-size: 0.9rem;
}

.home-faqs-item[open] + .home-faqs-content {
	max-height: 400px;
	transition-duration: 1s;
}

.home-faqs-item[open] .home-faqs-title {
	/* color: var(--theme-primary); */
	color: var(--text-color);
	font-weight: 500;
}

.home-faqs-content::after {
	content: "";
	display: block;
	padding-top: 1.5rem;
}

.home-faqs-list li:not(:last-child) {
	border-bottom: 1px solid #ccc;
}

@media (max-width: 768px) {
	.home-faqs-title {
		font-size: 1rem;
	}
}

/* #endregion faqs */

/* #region testimonials */

.home-testimonials-row {
	display: grid;
	gap: 2rem 10rem;
	align-items: center;
	grid-template-columns: 3fr 4fr;
}

.home-testimonials-img {
}

.home-testimonials-img img {
}

.home-testimonials-content {
	min-width: 0;
}

.home-testimonials-wrapper {
	margin-top: 2rem;
}

.home-testimonials-swiper {
}

.home-testimonials-swiper .swiper-pagination {
	margin-top: 2rem;
	position: relative;
	text-align: left;
	--swiper-pagination-bullet-width: 1.5rem;
	--swiper-pagination-bullet-height: 0.7rem;
	--swiper-pagination-bullet-border-radius: 5rem;
	--swiper-pagination-bullet-inactive-color: #eee;
	--swiper-pagination-bullet-inactive-opacity: 1;
	--swiper-pagination-bullet-horizontal-gap: 0;
	display: flex;
	gap: 0.8rem;
}

.home-testimonials-swiper .swiper-pagination-bullet {
	transition: ease 0.3s;
}

.home-testimonial-stars {
	color: #f6ca67;
	margin-top: 1rem;
	margin-bottom: 0.5rem;
	font-size: 2rem;
	line-height: 1;
	letter-spacing: 0.4rem;
	display: none;
}

.home-testimonial-stars::before {
	content: "\2605 \2605 \2605 \2605 \2605";
}

.home-testimonial-text {
	font-size: 0.9rem;
	line-height: 1.6;
	display: block;
	margin-bottom: 0.6rem;
}

.home-testimonial-name {
	font-size: 0.9rem;
	font-weight: 500;
	/* color: var(--theme-primary); */
	font-family: var(--font-family-alt);
}

@media (max-width: 768px) {
	.home-testimonials-row {
		grid-template-columns: 1fr;
	}
}

/* #endregion testimonials */

/* #region gallery */

.home-gallery-container {
	margin-top: var(--section-gap);
}

.gallery-card {
	padding: 10px;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
	border-radius: 6px;
	background-color: #fff;
	text-align: center;
	cursor: pointer;
}

.swiper-slide.gallery-card {
	/* margin-block: 2rem; */
	border: 1px solid #eaeaea;
	box-shadow: none;
}

.gallery-card-img {
	margin-bottom: 10px;
}

.gallery-card-img::before {
	padding-top: 75%;
}

.gallery-hover-label {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	transform: translateY(1rem);
	text-align: center;
	font-size: 1.4rem;
	font-weight: 300;
	opacity: 0;
	pointer-events: none;
	transition: ease 0.5s;
	color: #fff;
	z-index: 2;
}

.gallery-card:hover .gallery-hover-label {
	opacity: 1;
	transform: translateY(-50%);
}

.gallery-card-img::after {
	content: "";
	position: absolute;
	inset: 0;
	background-color: #000;
	z-index: 1;
	transform: scale(0);
	opacity: 0.4;
	transition: ease 0.5s;
}

.gallery-card:hover .gallery-card-img::after {
	transform: scale(1);
}

.gallery-caption {
	font-weight: 500;
}

@media (max-width: 768px) {
}

/* #endregion gallery */

/* #region careers */

.home-career-swiper {
	margin-top: var(--section-gap);
}

.home-career-slide {
	border: 1px solid #dadada;
	padding: 1.5rem;
	height: auto;
	border-radius: 0.3rem;
}

.home-career-title {
	/* font-size: 22px; */
	font-weight: 400;
	/* color: var(--theme-primary); */
	margin-bottom: 1rem;
	overflow: hidden;
	display: box;
	line-clamp: 2;
	box-orient: vertical;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.home-career-desc {
	margin-bottom: 1rem;
	line-height: 1.4;
}

.home-career-link {
	border: 2px solid var(--theme-primary);
	display: inline-block;
	padding: 0.5rem 1rem;
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	border-radius: 0.3rem;
}

.home-career-link:hover {
	background-color: var(--theme-primary-bg-light);
	/* color: var(--theme-primary); */
}

.career-explore-slide {
	background-color: var(--theme-primary-bg-lighter);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-color: var(--theme-primary);
	overflow: hidden;
}

.career-explore-text {
	color: var(--theme-primary);
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	position: relative;
	z-index: 2;
}

.career-explore-icon {
	width: 3rem;
	height: 3rem;
	line-height: 1.8rem;
	text-align: center;
	border-radius: 5rem;
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	font-size: 1.6rem;
	padding: 0.7rem;
	position: relative;
	z-index: 0;
}

.career-explore-icon i {
	position: relative;
	z-index: 1;
}

.career-explore-icon::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	background-color: var(--theme-primary);
	transform: translate(-50%, -50%);
	transition: ease 0.7s transform;
	transform-origin: center;
	z-index: 0;
	border-radius: 50%;
}

.career-explore-slide:hover .career-explore-text {
	color: var(--theme-primary-alt);
}

.career-explore-slide:hover .career-explore-icon::before {
	transform: scale(15);
}

@media (max-width: 768px) {
}

/* #endregion careers */

/* #region form */

.contact-form-row {
	display: flex;
}

.contact-form-col {
	width: 50%;
}

.contact-form-wide-col {
	width: 100%;
}

.contact-form-group {
	margin-bottom: 10px;
	padding: 10px;
}

.contact-form-label {
	font-size: 14px;
	color: #333;
	font-weight: 500;
}

.contact-form-input {
	display: block;
	width: 100%;
	border-bottom: 2px solid #e0e0e6;
	padding: 7px 0;
	transition: ease 0.3s border-color;
}

textarea.contact-form-input {
	resize: vertical;
	min-height: 100px;
}

.contact-form-group label.error {
	color: red;
	font-size: 0.85em;
	margin-top: 5px;
}

.contact-form-file {
	display: block;
	width: 100%;
	padding: 13px 0;
}

.contact-form-input:focus {
	border-color: var(--theme-primary);
}

.contact-from-actions {
	text-align: right;
	padding: 10px;
}

.contact-form-btn {
	display: inline-block;
	padding: 12px 25px;
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	font-weight: 500;
	cursor: pointer;
	transition: ease 0.5s color;
	position: relative;
	transition: ease 0.4s background-color;
}

.contact-form-btn span {
	position: relative;
	z-index: 1;
}

.contact-form-btn:hover {
	background-color: var(--theme-primary-dark);
}

@media (max-width: 768px) {
}

/* #endregion form */

/* #region career page */

.career-page,
.career-modal {
	color: #333;
}

.career-content {
	padding-top: 60px;
	padding-bottom: 60px;
}

.career-banner-text {
	font-size: 18px;
	margin-bottom: 1em;
}

.career-listings {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 50px;
	gap: 20px;
}

.career-option {
	border: 1px solid #dadada;
	padding: 30px;
}

.career-option-title {
	font-size: 25px;
	font-weight: 500;
	margin-bottom: 10px;
	color: var(--theme-text-color);
}

.career-option-desc {
	margin-bottom: 15px;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.career-option-actions {
	text-align: right;
}

.career-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-height: 100vh;
	z-index: 50;
	place-items: center;
	padding: 10px;
	display: none;
	overflow-y: auto;
}

.career-modal-active {
	overflow: hidden;
}

.career-modal-active .career-modal {
	display: grid;
}

.career-modal-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0;
	transition: ease 0.25s opacity;
}

.career-modal-visible .career-modal-bg {
	opacity: 0.4;
}

.career-modal-container {
	background: #fff;
	box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
	width: 1040px;
	max-width: 100%;
	position: relative;
	z-index: 1;
	opacity: 0;
	transform: translateY(100px);
	transition: ease 0.3s;
	transition-property: opacity, transform;
}

.career-modal-visible .career-modal-container {
	opacity: 1;
	transform: none;
}

.career-modal-header {
	padding: 10px 20px;
	border-bottom: 1px solid #eaeaea;
	position: relative;
}

.career-modal-heading {
	font-size: 22px;
	font-weight: 500;
	padding-right: 30px;
}

.career-modal-btn {
	position: absolute;
	top: 50%;
	right: 10px;
	padding: 7px;
	line-height: 0.5;
	background-color: transparent;
	transform: translate(0, -50%);
	font-size: 22px;
	color: #666;
	font-weight: 300;
	cursor: pointer;
}

.career-modal-body {
	display: flex;
	padding: 20px;
}

.career-modal-info {
	width: 50%;
	padding-right: 30px;
	max-height: 470px;
	overflow-y: auto;
}

.career-modal-title {
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 10px;
}

.career-modal-description {
	font-size: 15px;
	font-weight: 300;
	white-space: pre-line;
	line-height: 1.6;
	color: #666;
}

.career-modal-description p {
	margin-bottom: 0.5em;
}

.career-modal-form {
	width: 50%;
}

.career-form-actions {
	text-align: right;
	padding: 0px 10px;
}

/* #endregion career page */

/* #region footer */

.page-footer {
	padding-top: 2rem;
	/* background-color: var(--theme-primary); */
	/* color: var(--theme-primary-alt); */
}

.footer-row {
	display: flex;
	gap: 2rem 4rem;
	flex-wrap: wrap;
}

.footer-col {
	padding-right: 2rem;
	flex: auto;
	max-width: 30%;
}

.footer-col-icon {
	font-size: 2.5rem;
	line-height: 1.3;
	color: var(--theme-primary);
}

.footer-col-title {
	font-size: 1.1rem;
	font-weight: 500;
	margin-bottom: 0.3rem;
}

.footer-col-item {
	font-size: 0.9rem;
	font-weight: 400;
}

.copy-footer {
	margin-top: 2rem;
	border-top: 1px solid rgb(0 0 0 / 30%);
	padding-top: 1rem;
	padding-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 400;
	font-size: 0.9rem;
}

.footer-social-links {
	display: flex;
	gap: 0.5rem;
}

.footer-social-links a {
	display: grid;
	width: 2.1rem;
	height: 2.1rem;
	place-content: center;
	font-size: 1.3rem;
	border: 1px solid var(--theme-primary);
	border-radius: 50rem;
}

.footer-social-links a:hover {
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
}

@media (max-width: 768px) {
	.footer-col {
		max-width: 100%;
	}
}

/* #endregion footer */

/* #region popup form */

.popup-form {
	width: 100%;
	/* max-width: 300px; */
}

.popup-form-title {
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

.popup-form-group {
	margin-bottom: 1rem;
	display: grid;
	gap: 0.2rem;
	font-size: 0.85rem;
}

.popup-form-label {
	line-height: 1.3;
}

.popup-form-control {
	border: 1px solid #dadada;
	padding: 0.3rem 1rem;
	border-radius: 0.3rem;
	line-height: 1.5;
	box-sizing: border-box;
	font-size: 1em;
	appearance: none;
}

.popup-form-group label.error {
	display: block;
	line-height: 1.2;
}

.popup-form-action {
	text-align: center;
}

.popup-form-submit {
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
	line-height: 1.3;
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	border: 2px solid var(--theme-primary);
	border-radius: 0.3rem;
	transition: ease 0.3s;
}

.popup-form-submit:hover {
	background-color: var(--theme-primary-bg-light);
	color: var(--theme-primary-dark);
}

@media (max-width: 768px) {
}

/* #endregion popup form */


/*partner form*/
/* Partner Form Container */
.partner-form {
    max-width: 30rem;
    max-height: 75rem;/* Increased form width */
    width: 90%; /* Responsive width */
    height: auto;
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Scrollable Form Content */
.partner-form-scroll {
    max-height: 50vh; /* Increased height for better scrollability */
    overflow-y: auto; /* Enables vertical scrolling */
    padding-right: 1rem; /* Space for scrollbar */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

/* Hide scrollbar for WebKit browsers */
.partner-form-scroll::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}


/* Scrollable Form Content */
.cibil-form-scroll {
    max-height: 75vh; /* Increased height for better scrollability */
    overflow-y: auto; /* Enables vertical scrolling */
    padding-right: 1rem; /* Space for scrollbar */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
	overflow: auto;
    height: 270px;
    overflow-x: hidden;
}

/* Hide scrollbar for WebKit browsers */
.cibil-form-scroll::-webkit-scrollbar {
    width: 2px;
    background: #ccc;
}
/* Form Groups */
.partner-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem; /* Reduced gap */
}

/* Labels */
.partner-form-group label {
    font-weight: 500;
    font-size: 0.8rem; /* Decreased font size */
    margin-bottom: 0.2rem; /* Reduced margin */
    color: #333;
}

/* Inputs & Textarea */
.partner-form-group input,
.partner-form-group textarea {
    width: 100%;
    padding: 0.4rem; /* Slightly reduced padding */
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 0.8rem; /* Decreased font size */
    transition: border 0.3s ease-in-out;
}

/* Input Focus */
.partner-form-group input:focus,
.partner-form-group textarea:focus {
    border-color: var(--theme-primary);
    outline: none;
}

/* Textarea */
.partner-form-group textarea {
    resize: none;
    height: 3rem; /* Reduced height */
}

/* Submit Button */
.partner-form-action {
    display: flex;
    justify-content: center; /* Center button */
    margin-top: 0.5rem; /* Reduced margin */
}

.partner-form-submit {
    width: 60%; /* Increased width */
    padding: 0.6rem; /* Slightly reduced padding */
    background: var(--theme-primary);
    color: white;
    font-size: 0.8rem; /* Decreased font size */
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.partner-form-submit:hover {
    background: var(--theme-primary-dark);
}

/* Submit Button */
.cibil-form-action {
    display: flex;
    justify-content: center; /* Center button */
    margin-top: 2rem; /* Reduced margin */
}

.cibil-form-submit {
    width: 60%; /* Increased width */
    padding: 0.6rem; /* Slightly reduced padding */
    background: var(--theme-primary);
    color: white;
    font-size: 0.8rem; /* Decreased font size */
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.cibil-form-submit:hover {
    background: var(--theme-primary-dark);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .partner-form {
        width: 90%; /* Adjust width for mobile */
        max-width: 25rem; /* Keep it proportional */
        padding: 1.2rem;
    }
    .partner-form-scroll {
        max-height: 70vh; /* More space for mobile scrolling */
    }

	.cibil-form-scroll {
        max-height: 80vh; /* More space for mobile scrolling */
    }
}


/*partner button*/
/* Original Partner Button (Hidden on Mobile) */
.partner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 1.2rem; /* Compact padding */
    font-size: 0.9rem;
    line-height: 1.2;
    background-color: var(--theme-primary);
    color: var(--theme-primary-alt);
	border: 1px solid var(--theme-primary);
    border-radius: 0px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.partner-btn::after {
    content: "\f061"; /* Icon */
    font: var(--icon-font);
    font-size: 1.2rem;
    margin-left: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease-in-out;
}

.partner-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

.partner-btn:hover {
    color: #753e16;
	background-color: #fff;
	border: 1px solid #753e16;
}

.partner-btn:hover::before {
    transform: translateY(-50%) scaleX(1);
}

.partner-btn:hover::after {
    transform: rotate(360deg);
}

/* Larger Partner Button (Visible Only on Mobile) */
.partner-btn-lg {
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem; /* Slightly larger padding */
    font-size: 1.1rem; /* Bigger font */
    background-color: var(--theme-primary);
    color: var(--theme-primary-alt);
    border-radius: 0px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.partner-btn-lg::after {
    content: "\f061"; /* Icon */
    font: var(--icon-font);
    font-size: 1.4rem; /* Bigger icon */
    margin-left: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease-in-out;
}

.partner-btn-lg::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

.partner-btn-lg:hover {
    background-color: var(--theme-primary-dark);
}

.partner-btn-lg:hover::before {
    transform: translateY(-50%) scaleX(1);
}

.partner-btn-lg:hover::after {
    transform: rotate(360deg);
}


.partner-btn-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 1.2rem; /* Compact padding */
    font-size: 0.9rem;
    line-height: 1.2;
    background-color: var(--theme-primary);
    color: var(--theme-primary-alt);
	border: 1px solid var(--theme-primary);
    border-radius: 0px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.partner-btn-new::after {
    content: "\f061"; /* Icon */
    font: var(--icon-font);
    font-size: 1.2rem;
    margin-left: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease-in-out;
}

.partner-btn-new::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

.partner-btn-new:hover {
     color: #753e16;
	background-color: #fff;
	border: 1px solid #753e16;
}

.partner-btn-new:hover::before {
    transform: translateY(-50%) scaleX(1);
}

.partner-btn-new:hover::after {
    transform: rotate(360deg);
}

/* Mobile View Adjustments */
@media (max-width: 767px) {
    .partner-btn {
        display: none; /* Hide smaller button on mobile */
    }

	.partner-btn-new {
        padding: 0.4rem;
        font-size: 0.8rem;
    }
    
    .partner-btn-lg {
        display: inline-flex; /* Show larger button on mobile */
    }

    .header-nav .nav-active {
        text-decoration: underline;
        text-underline-offset: 0.5rem;
    }

    /* .header-nav .nav-active,
    .header-nav a:hover {
        color: var(--theme-secondary);
    } */
	.web-terms {
		display: none !important;
	}
	.table-bordered {
		width: 100% !important; 
	}
	.report-box {
		width: 100% !important; 
		align-items: center;
		padding-top: 2rem !important;
	}
	.table-bordered th, td {
		font-size: 11px !important;
	}
	.resp-h1 {
		font-size:20px !important;
	}
	.note-box {
		width: 100% !important;
	}
	.top-section {
		padding: 1rem !important;
	}
	ul.home-banner-list li {
		line-height: 1.2;
	}
	.sub_text, .imporve-list p, .section_description, .note-box, .secure, .table-bordered th, td{
		line-height: 1.5;
	}
	.cibil-form-scroll {
		height: 240px !important;
	}
	p {
		line-height: 1.5;
	}
	
}

@media (min-width: 768px) {
	.resp-terms {
		display: none; /* Hide larger button on desktop */
	}
	.web-cibil {
		display: none;
	}
}
.cibil-form {
	width: 640px !important;
	height: auto !important;
}
label.error {
    color: red;
}
#cibil_consent{
	width: 3%;
    margin-right: 0.5rem;
}
/* label#cibil_consent-error {
    position: absolute;
    margin-left: 7rem;
} */
input[readonly]{
	background-color: #ccc;
}
.designed_by {
	display: flex;
    flex-direction: row;
    align-items: center;
}
.designed_by img {
	width: 1.5rem;
	height: 1.5rem;
	margin-right: 0.5rem;
}