@font-face {
	font-family: "Helvetica";
	src: url("./fonts/HelveticaRoundedLTStd-Black.ttf");
}

@font-face {
	font-family: "Montserrat";
	src: url("./fonts/Montserrat-Regular.ttf");
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Gilroy";
}

html,
body {
	width: 100%;
	height: 100%;
}

@import url("https://fonts.googleapis.com/css?family=Helvetica%20Rounded:700|Montserrat:400");

:root {
	--text: #09596d;
	--background: ##f6f6f6;
	--primary: #ff914c;
	--secondary: #16a286;
	--accent: #1a746a;
}

body {
	font-family: "Montserrat";
	font-weight: 400;
	margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: "Helvetica";
	font-weight: 700;
}

a,
small,
span {
	font-family: "Montserrat";
}

span {
	background: linear-gradient(180deg, rgb(209, 231, 222), rgb(2, 193, 123));
	background-clip: text;
	color: transparent;
}

html {
	font-size: 100%;
}

/* 16px */

h1 {
	font-size: 3.053rem;
	/* 48.8px */
}

h2 {
	font-size: 2.442rem;
	/* 39.04px */
}

h3 {
	font-size: 1.954rem;
	/* 31.2px */
}

h4 {
	font-size: 1.563rem;
	/* 24.96px */
}

h5 {
	font-size: 1.25rem;
	/* 20px */
}

small {
	font-size: 0.8rem;
	/* 12.8px */
}

button {
	font-family: "Montserrat";
	outline: none;
	border: 0;
	background-color: transparent;
	gap: 0.5rem;
	font-weight: 600;
	padding: 1rem 1.5rem;
	border-radius: 8rem;
	flex-wrap: wrap;
	transition: all ease-in-out 0.3s;

	>small,
	i {
		font-size: 1.2rem;
	}
}

#nav-items {
	>li>a {
		color: black;
	}
}

.rounded {
	border-radius: 100px;
}

button:hover {
	cursor: pointer;
	transform: scale(1);
	color: var(--background);
	background-color: var(--primary);
}

/* Homepage Hero Section  */
.home_hero {
	width: 100%;
	display: flex;
	flex-wrap: wrap-reverse;
	padding-top: 5rem;

	>* {
		width: 50%;
		padding: 0.5rem;
	}

	>.left {
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 2rem;
		width: 60%;
		padding: 1rem 4rem;

		>h1 {
			font-size: 2.5rem;
			font-weight: 600;
		}

		>article {
			font-size: 1rem;
			font-weight: 500;
			width: 90%;
			text-wrap: unset;
			text-align: left;
		}
	}

	>.left .button-wrapper {
		display: flex;
		align-items: center;
		gap: 1rem;

		>button:nth-child(1) {
			background-color: var(--primary);
		}

		button {
			position: relative;
			z-index: 33 !important;
			padding: 1rem 2rem;
			outline: none;
			transition: all 0.5s;
			border: none;
		}

		button::after {
			content: "";
			position: absolute;
			background-color: transparent;
			border-radius: 50px;
			background-color: #fff;
			height: 100%;
			width: 0;
			/* translate: -50% -50%; */
			top: 0%;
			left: 0%;
			z-index: -1;
		}

		button:hover {
			color: var(--primary);
		}

		button:hover::after {
			animation: slide 0.6s linear alternate forwards;
			color: #000;
		}
	}

	>.right {
		display: flex;
		align-items: center;
		justify-content: center;
		/* background-color: red; */
		width: 40%;

		>img {
			width: 90%;
			height: auto;
			/* width: 90%; */
			transition: all ease-in-out 0.3s;
		}

		>img:hover {
			transform: translateY(-1rem);
		}
	}
}


.nav-container1 {
	max-width: 1200px;
	width: 90%;
	margin: auto;
}


/*  CAROUSEL STYLES START  */

/* Carousel Container */
.main-container {
	padding-top: 50px;
	padding-bottom: 50px;
}

.carousel-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	/* background: linear-gradient(to bottom left, var(--accent) 0%, var(--background)); */
}

.carousel-wrapper {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.carousel-container .home_hero {
	min-width: 100%;
	flex-shrink: 0;
}

/* Navigation Arrows */
.carousel-nav {
	position: absolute;
	top: 50%;
	/* transform: translateY(-115%); */
	background: rgba(255, 145, 76, 0.8);
	color: white;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	z-index: 10;
	transition: all 0.3s;
	outline: none;
}

/* .carousel-nav:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
} */

/* .carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
} */

.carousel-nav.prev {
	left: 0px;
}

.carousel-nav.next {
	right: 0px;
}

/* Dots Indicator */
.carousel-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s;
	border: none;
	outline: none;
}

.dot:hover {
	background: rgba(255, 145, 76, 0.8);
}

.dot.active {
	background: var(--primary);
	width: 30px;
	border-radius: 6px;
}

/*  RESPONSIVE DESIGN FOR CAROUSEL  */
@media screen and (max-width: 400px) {
	.main-container {
		padding-top: 0px;
		padding-bottom: 0px;

	}
}

@media screen and (max-width: 768px) {
	.main-container {
		padding-top: 0px;
		padding-bottom: 0px;

	}

	.carousel-nav {
		width: 45px;
		height: 45px;
		font-size: 1.3rem;
	}

	.carousel-nav.prev {
		left: 15px;
	}

	.carousel-nav.next {
		right: 15px;
	}

	.carousel-dots {
		bottom: 15px;
	}

	.dot {
		width: 10px;
		height: 10px;
	}

	.dot.active {
		width: 25px;
	}
}

@media screen and (max-width: 520px) {
	.carousel-nav {
		width: 35px;
		height: 49px;
		font-size: 1rem;
	}

	.carousel-nav.prev {
		left: 10px;
	}

	.carousel-nav.next {
		right: 10px;
	}

	.carousel-dots {
		bottom: 10px;
		gap: 8px;
	}

	.dot {
		width: 8px;
		height: 8px;
	}

	.dot.active {
		width: 20px;
	}
}

@media screen and (max-width: 380px) {
	.carousel-nav {
		width: 35px;
		height: 49px;
		font-size: 1rem;
	}

	.carousel-nav.prev {
		left: 5px;
	}

	.carousel-nav.next {
		right: 5px;
	}
}

/*  CAROUSEL STYLES END */






@keyframes slide {
	0% {
		width: 0;
		opacity: 0;
	}

	100% {
		width: 100%;
		opacity: 1;
	}
}

@media screen and (max-width: 1030px) {
	.home_hero {
		padding-top: 5rem;
		flex-wrap: wrap;
		gap: 0;

		>.left {
			gap: 0rem;
			width: 60%;
			padding: 1rem 2rem;

			>h1 {
				font-size: 2rem;
				font-weight: 600;
				text-wrap: balance;

				>span {
					font-family: "Helvetica";
				}
			}

			>article {
				font-size: 1rem;
				font-weight: 500;
				text-wrap: unset;
			}
		}

		>.left .button-wrapper {
			>button:nth-child(1) {
				display: flex;
				align-items: center;
				gap: 1rem;
			}
		}

		>.right {
			>img {
				width: 100%;
			}
		}
	}
}

@media screen and (max-width: 940px) {
	.home_hero {
		>.left {
			padding: 1rem;

			>h1 {
				font-size: 2rem;
			}

			>article {
				font-size: 1rem;
			}
		}

		>.left .button-wrapper {
			flex-wrap: wrap;

			>button:nth-child(1) {
				font-size: 0.8rem;
				border-radius: 5px;
			}

			>button:nth-child(2) {
				font-size: 0.8rem;
				border-radius: 5px;
				padding: 1rem;

				&:hover {
					scale: 1;
				}
			}
		}

		>.right {
			>img {
				width: 99%;
			}
		}
	}
}

@media screen and (max-width: 839px) {
	.home_hero {
		flex-wrap: wrap;

		>.left {
			padding: 1rem;
			width: 100%;

			>h1 {
				font-size: 1.5rem;
				font-weight: 600;
				text-wrap: balance;
				text-align: center;
			}

			>article {
				font-size: 1rem;
				font-weight: 500;
				/* text-wrap: balance; */
				text-align: center;
				width: 80%;
				margin: 1rem auto;
			}
		}

		>.left .button-wrapper {
			flex-wrap: wrap;
			margin: 1rem auto;

			>button:nth-child(1) {
				display: flex;
				align-items: center;
				gap: 1rem;
				font-size: 0.8rem;
				border-radius: 5px;
			}

			>button:nth-child(2) {
				font-size: 1rem;
				border-radius: 5px;
				display: flex;
				align-items: center;
				gap: 1rem;
				padding: 1.2rem;

				&:hover {
					scale: 1;
				}
			}
		}

		>.right {
			width: 100%;

			>img {
				width: 60%;
			}
		}
	}
}

@media screen and (max-width: 520px) {
	.home_hero {
		flex-wrap: wrap;

		>.left {
			padding: 1rem;
			/* padding-top: 0rem; */
			width: 100%;

			>h1 {
				font-size: 1.2rem;
				font-weight: 600;
				text-wrap: unset;
				text-align: center;
			}

			>article {
				font-size: 0.7rem;
				font-weight: 500;
				/* text-wrap: balance; */
				text-align: center;
				width: 70%;
				margin: 1rem auto;
			}
		}

		>.left .button-wrapper {
			flex-wrap: wrap;
			margin: 1rem auto;
			flex-direction: column;

			>button:nth-child(1) {
				display: flex;
				align-items: center;
				gap: 0.5rem;
				font-size: 0.7rem;
				border-radius: 5px;
				padding: 0.6rem;
			}

			>button:nth-child(2) {
				font-size: 1rem;
				border-radius: 5px;
				display: flex;
				align-items: center;
				gap: 1rem;
				padding: 0.8rem;

				&:hover {
					scale: 1;
				}
			}
		}

		>.right {
			width: 100%;

			>img {
				width: 80%;
			}
		}
	}
}

@media (max-width: 1080px) {
	.responsive-two-columns>* {
		flex-direction: column;
		width: 50%;
	}

	.home_why_us {
		flex-direction: column;

		>.left,
		.right {
			width: 100%;
		}
	}
}

/* Home Why Us Css */

.home_why_us {
	width: 100%;
	padding: 3rem 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
	padding-bottom: 2rem;

	>.left,
	.right {
		width: 100%;
		display: flex;
		flex-direction: column;
		justify-content: start;
		align-items: flex-start;
		row-gap: 1rem;
	}

	>.left {
		>h1 {
			text-align: center;
			width: 100%;
			text-wrap: balance;
			font-size: 2.5rem;
			margin-bottom: 2rem;

			>span {
				font-family: "Helvetica";
			}
		}

		>article {
			font-size: 1.5rem;
			text-align: center;
			margin: 1rem auto;
		}

		>button {
			background-color: var(--primary);
			display: block;
			margin: 1rem auto;
		}
	}

	>.right {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		gap: 3rem;
		row-gap: 2rem;

		>.card {
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
			row-gap: 2rem;
			width: 26%;
			max-width: 300px;
			min-width: 200px;
			height: 16rem;
			/* row-gap: 3rem; */
			transition: all 0.6s;
			box-shadow: inset 0px 0px 2px 0px #aaa;

			>.img-container {
				display: flex;
				align-items: center;
				justify-content: center;
				font-size: 1.1rem;
				gap: 0.8rem;

				>img {
					width: 20%;
				}
			}

			>p {
				font-weight: normal;
				text-align: center;
				width: 90%;
			}

			>button {
				padding: 1rem 2rem;
				font-size: 1.2rem;
				transition: all 0.6s;
				display: flex;
				align-items: center;
			}
		}

		/* > .card:nth-child(1) {
			box-shadow: inset 0px 0px 4px 0px #aaa;
		} */

		>.card:nth-child(even) {
			margin-top: 1rem;
			scale: 1;
		}

		>.card:hover {
			/* margin-top: 3rem; */
			box-shadow: inset 0px 0px 3px 0px #aaa;
			scale: 1.1;
		}
	}
}

@media screen and (max-width: 940px) {
	.home_why_us {
		>.left {
			>h1 {
				font-size: 2.2rem;
				margin-bottom: 1rem;
			}

			>article {
				font-size: 1rem;
				text-align: center;
				width: 85%;
				margin: 1rem auto;
			}
		}

		>button {
			background-color: var(--primary);
			display: block;
			margin: 1rem auto;
		}
	}
}

@media screen and (max-width: 600px) {
	.home_why_us {
		>.left {
			>h1 {
				font-size: 1.5rem;
				margin-bottom: 1rem;
			}

			>article {
				font-size: 0.8rem;
				text-align: center;
				width: 85%;
				margin: 0rem auto;
			}
		}

		>button {
			background-color: var(--primary);
			display: block;
			margin: 1rem auto;
		}
	}
}

@media screen and (max-width: 600px) {
	.home_why_us {
		>.left {
			>h1 {
				font-size: 1.5rem;
				margin-bottom: 1rem;
			}

			>article {
				font-size: 0.8rem;
				text-align: center;
				width: 85%;
				margin: 0rem auto;
			}
		}

		>button {
			background-color: var(--primary);
			display: block;
			margin: 1rem auto;
			padding: 1rem;
			display: flex;
			align-items: center;
			gap: 1rem;
			font-size: 0.6rem !important;
		}

		>.right {

			>.card {
				row-gap: 2rem;
				width: 97%;
				max-width: 300px;
				min-width: 200px;
				height: 10rem;
				/* row-gap: 3rem; */
				transition: all 0.6s;
				box-shadow: inset 0px 0px 1px 0px #aaa;

				>.img-container {
					display: flex;
					align-items: center;
					justify-content: center;
					font-size: 1rem;
					gap: 0.5rem;

					>img {
						width: 16%;
					}
				}

				>p {
					font-weight: normal;
					text-align: center;
					width: 80%;
				}

				>button {
					padding: 1rem 2rem;
					font-size: 1.2rem;
					transition: all 0.6s;
					display: flex;
					align-items: center;
				}

			}
			
				align-items: center;
				justify-content: center;
			

			>.card:nth-child(even) {
				margin-top: 1rem;
				scale: 1;
			}

			>.card:hover {
				/* margin-top: 3rem; */
				box-shadow: inset 0px 0px 3px 0px #aaa;
				scale: 1.1;
			}
		}
	}
}

/* HOME CUSOTMIZE SECTION */

/* Customized And Control Your Own Credit Card */

.home_customize {
	width: 100%;
	display: flex;
	align-items: center;
	padding: 3rem 0rem;

	>.flex-left-content {
		width: 100%;
		padding-left: 1rem;

		>img {
			display: block;
			width: 30rem;
		}
	}

	>.flex-right {
		width: 100%;
		padding: 0 1rem;
		display: flex;
		align-items: flex-start;
		justify-content: flex-start;
		flex-direction: column;
		row-gap: 1rem;

		>h3 {
			text-align: left;
			text-wrap: balance;
			font-size: 2rem;
		}

		>.content {
			width: 90%;
			font-size: 1.1rem;
		}

		>.stats {
			display: flex;
			align-items: center;
			text-align: center;
			flex-direction: row;
			gap: 1rem;
			/* background-color: red; */

			>.stats-1 {
				margin-right: 1rem;
				margin-top: 0rem;
				margin-bottom: 0rem;
				padding: 1em;
				background-color: whitesmoke;
				border-radius: 10px;
				box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
			}
		}

		>button {
			background-color: var(--primary);
		}
	}
}

@media screen and (max-width: 1000px) {
	.home_customize {
		width: 100%;
		display: flex;
		align-items: center;
		padding: 3rem 0rem;
		gap: 2rem;

		>.flex-left-content {
			width: 40%;
			padding-left: 1rem;

			>img {
				display: block;
				width: 100%;
			}
		}

		>.flex-right {
			width: 60%;
			padding: 0 1rem;
			display: flex;
			align-items: flex-start;
			justify-content: flex-start;
			flex-direction: column;
			row-gap: 1rem;

			>h3 {
				text-align: left;
				text-wrap: balance;
				font-size: 2rem;
			}

			>.content {
				width: 90%;
				font-size: 1.1rem;
			}

			>.stats {
				display: flex;
				align-items: center;
				text-align: center;
				flex-direction: row;
				gap: 1rem;
				/* background-color: red; */

				>.stats-1 {
					margin-right: 1rem;
					margin-top: 0rem;
					margin-bottom: 0rem;
					padding: 1em;
					background-color: whitesmoke;
					border-radius: 10px;
					box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
				}
			}

			>button {
				background-color: var(--primary);
			}
		}
	}
}

@media screen and (max-width: 800px) {
	.home_customize {
		width: 100%;
		display: flex;
		align-items: center;
		padding: 4rem 0rem;
		gap: 2rem;
		flex-direction: column;

		>.flex-left-content {
			width: 80%;
			padding-left: 1rem;
			display: flex;
			align-items: center;
			justify-content: center;

			>img {
				display: block;
				width: 100%;
			}
		}

		>.flex-right {
			width: 100%;
			padding: 0 1rem;
			display: flex;
			align-items: center;
			justify-content: center;
			flex-direction: column;
			row-gap: 1rem;

			>h3 {
				text-align: center;
				text-wrap: balance;
				font-size: 2rem;
			}

			>.content {
				width: 90%;
				font-size: 1.1rem;
				text-align: center;
			}

			>.stats {
				display: flex;
				align-items: center;
				text-align: center;
				flex-direction: row;
				gap: 1rem;
				/* background-color: red; */

				>.stats-1 {
					margin-right: 1rem;
					margin-top: 0rem;
					margin-bottom: 0rem;
					padding: 1em;
					background-color: whitesmoke;
					border-radius: 10px;
					box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
				}
			}

			>button {
				background-color: var(--primary);
			}
		}
	}
}

/* Customized And Control Your Own Credit Card END */

/* HOME STEPS SECTION */

.home_steps {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 3rem 0;
	text-align: center;
	margin-bottom: 2rem;

	>h1 {
		font-size: 2.5rem;

		>span {
			font-family: "Helvetica";
		}
	}

	>p {
		font-size: 1.3rem;
		width: 70%;
		text-align: center;
	}

	>.cards {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 0rem;
		padding: 1rem 0rem;
		gap: 2rem;
		width: 100%;
		flex-wrap: wrap;

		>.simple-card {
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: space-between;
			width: 30%;
			max-width: 350px;
			min-width: 300px;


			>.circ {
				width: 5rem;
				height: 5rem;
				border-radius: 50%;
				display: flex;
				align-items: center;
				justify-content: center;
				font-weight: 900;
				font-size: 2rem;
				letter-spacing: 3px;
				background: linear-gradient(to bottom right, rgb(209, 231, 222) 0%, rgb(2, 193, 123));
				color: var(--background);
				margin: 0rem 0;
			}

			>.card-component {
				display: flex;
				flex-direction: column;
				align-items: center;
				justify-content: center;
				gap: 1rem;
				padding: 0 2rem;
				padding-bottom: 1rem;
				transition: all ease-in-out 0.3s;

				margin-top: 1rem;

				>img {
					width: 4rem;
				}

				>h3 {
					font-size: 1.4rem;
				}

				>h6 {
					font-weight: 500;
					text-align: center;
				}

				&:first-child {
					box-shadow: 0px 0px 10px 0px #aaa;
				}

				&:hover {
					transform: translateY(-1rem);
					box-shadow: 0px 0px 10px 0px #aaa;
				}
			}
		}
	}
}

@media screen and (max-width: 600px) {
	.home_steps {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 1rem;
		padding: 1rem 0;
		text-align: center;
		margin-bottom: 2rem;

		>h1 {
			font-size: 2rem;
			margin-bottom: 1rem;
		}

		>p {
			font-size: 1.2rem;
			width: 85%;
			text-align: center;
		}

		>.cards {
			gap: 2rem;
			justify-content: center;

			>.simple-card {
				>.card-component {
					>img {
						width: 4rem;
					}

					>h3 {
						font-size: 1rem;
					}

					>h6 {
						font-size: 0.7rem;
					}

					&:first-child {
						box-shadow: 0px 0px 10px 0px #aaa;
					}

					&:hover {
						transform: translateY(-1rem);
						box-shadow: 0px 0px 10px 0px #aaa;
					}
				}
			}
		}
	}
}

@media screen and (max-width: 600px) {
	.home_steps {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 1rem;
		padding: 1rem 0;
		text-align: center;
		margin-bottom: 2rem;

		>h1 {
			font-size: 2rem;
			margin-bottom: 1rem;
		}

		>p {
			font-size: 1.2rem;
			width: 85%;
			text-align: center;
		}

		>.cards {
			gap: 2rem;

			>.simple-card {
				>.card-component {
					>img {
						width: 4rem;
					}

					>h3 {
						font-size: 1rem;
					}

					>h6 {
						font-size: 0.7rem;
					}

					&:first-child {
						box-shadow: 0px 0px 10px 0px #aaa;
					}

					&:hover {
						transform: translateY(-1rem);
						box-shadow: 0px 0px 10px 0px #aaa;
					}
				}
			}
		}
	}
}

@media screen and (max-width: 600px) {
	.home_steps {
		>h1 {
			font-size: 1.4rem;
			margin-bottom: 1rem;
		}

		>p {
			font-size: 1rem;
			width: 85%;
			text-align: center;
		}

		>.cards {
			gap: 2rem;

			>.simple-card {
				width: 100%;
				max-width: 300px;
				min-width: 200px;

				>.card-component {
					>img {
						width: 4rem;
					}

					>h3 {
						font-size: 1rem;
					}

					>h6 {
						font-size: 0.7rem;
					}

					&:first-child {
						box-shadow: 0px 0px 10px 0px #aaa;
					}

					&:hover {
						transform: translateY(-1rem);
						box-shadow: 0px 0px 10px 0px #aaa;
					}
				}
			}
		}
	}
}

/* HOME STEPS SECTION END */

/* HOME TESTINOMIAL STARTS  */

.home_testimonial {
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	background-color: #edf2f8;

	>* {
		width: 100%;
	}

	>.top {
		padding-top: 5rem;
		width: 100%;
		text-align: center;
		text-wrap: balance;

		>h1 {
			font-size: 2.5rem;
			text-align: center;
			text-wrap: balance;
			margin-bottom: 1rem;

			>span {
				font-family: "Helvetica";
			}
		}

		>p {
			font-size: 1.4rem;
			text-align: center;
			font-weight: 500;
			width: 80%;
			margin: 1rem auto;
			color: var(--text);
		}
	}

	>.bottom {
		width: 100%;

		body {
			font-family: "Barlow Semi Condensed", sans-serif;
		}

		a:link,
		a:active,
		a:visited,
		a:hover {
			color: #3f51b5;
		}

		.outerdiv {
			/* min-height: 100vh; */
			background: #edf2f8;
			display: flex;
			align-items: center;
			justify-content: center;
			width: 100%;
		}

		.innerdiv {
			/* margin: 1rem; */
			display: flex;
			justify-content: center;
			margin: 2rem 0;
			align-items: center;
			flex-wrap: wrap;
			gap: 4rem;
			width: 100%;
		}

		.eachdiv {
			padding: 1rem 2rem;
			border-radius: 0.8rem;
			align-items: flex-start;
			justify-content: center;
			max-width: 350px;
			box-shadow: 5px 5px 20px #6d6b6b6b;
			color: white;
			width: 36%;
			min-width: 250px;
			margin: 0;

			>.review {
				>h4 {
					font-size: 1rem;
					font-family: "Montserrat";
				}

				>p {
					font-size: 0.8rem;
				}
			}
		}

		.div1 {
			background: white;
			grid-column: 1/3;
			color: black;
			grid-row: 1/2;
			background-image: url(https://raw.githubusercontent.com/RahulSahOfficial/testimonials_grid_section/5532c958b7d3c9b910a216b198fdd21c73112d84/images/bg-pattern-quotation.svg);
			background-repeat: no-repeat;
			background-position-x: 25rem;
		}

		.div2 {
			background: var(--secondary);
			grid-column: 3/4;
			grid-row: 1/2;
		}

		.div3 {
			background: white;
			grid-column: 4/5;
			grid-row: 1/3;
			color: black;
		}

		.div4 {
			background: white;
			grid-column: 1/2;
			grid-row: 2/3;
			color: black;
		}

		.div5 {
			background: var(--text);
			grid-column: 2/4;
			grid-row: 2/3;
		}

		.userdetails {
			display: flex;
		}

		.imgbox {
			margin-right: 1rem;
		}

		.imgbox img {
			border-radius: 50%;
			width: 2rem;
			border: 2px solid #cec5c5;
		}

		.detbox {
			display: flex;
			flex-direction: column;
			justify-content: center;
			color: #000;
		}

		.detbox p {
			margin: 0;
		}

		.detbox .name {
			color: hsl(0, 0%, 81%);
			font-size: 0rem;
			margin-bottom: 0.1rem;
			font-weight: 600;
		}

		.detbox .name.dark {
			color: #030303;
		}

		.detbox .designation {
			color: hsl(0, 0%, 3%);
			opacity: 90%;
			font-size: 0.9rem;
		}

		.new-cls {
			color: white;
			opacity: 90%;
			font-size: 0.9rem;

		}

		.detbox .designation.dark {
			color: #49505a;
		}

		.review h4 {
			font-size: 1.2rem;
			color: black;
			font-weight: 600;
			line-height: 1.5;
			margin-bottom: 0.8rem;
		}

		.review.dark h4 {
			color: black;
		}

		.review p {
			font-size: 0.8rem;
			font-weight: 500;
			opacity: 50%;
			line-height: 1.5;
		}

		.review.dark p {
			color: #0e0e0e;
		}

		.attribution {
			font-size: 1rem;
			line-height: 1.5;
			position: fixed;
			bottom: 1rem;
			right: 1rem;
			text-align: right;
		}

		.attribution a {
			text-decoration: none;
		}
	}
}

@media screen and (max-width: 900px) {
	.home_testimonial {
		width: 100%;
		display: flex;
		align-items: center;
		flex-direction: column;
		background-color: #edf2f8;

		>* {
			width: 100%;
		}

		>.top {
			padding-top: 5rem;
			width: 100%;
			text-align: center;
			text-wrap: balance;

			>h1 {
				font-size: 1.5rem;
				text-align: center;
				text-wrap: balance;
				margin-bottom: 1rem;
			}

			>p {
				font-size: 1.2rem;
				text-align: center;
				font-weight: 500;
				width: 80%;
				margin: 1rem auto;
				color: var(--text);
			}
		}
	}
}

@media screen and (max-width: 470px) {
	.home_testimonial {
		>* {
			width: 100%;
		}

		>.top {
			width: 100%;
			padding-top: 1.5rem;
			text-align: center;
			text-wrap: balance;

			>h1 {
				font-size: 1.5rem;
				text-align: center;
				text-wrap: balance;
				margin-bottom: 1rem;
			}

			>p {
				font-size: 1rem;
				text-align: center;
				font-weight: 500;
				width: 89%;
				margin: 1rem auto;
				color: var(--text);
			}
		}
	}
}

@media screen and (max-width: 335px) {
	.home_testimonial {
		padding-top: 0;

		>* {
			width: 100%;
		}

		>.top {
			padding-top: 1rem;
			width: 100%;
			text-align: center;
			text-wrap: balance;

			>h1 {
				font-size: 1rem;
				text-align: center;
				text-wrap: balance;
				margin-bottom: 1rem;
			}

			>p {
				font-size: 0.8rem;
				text-align: center;
				font-weight: 500;
				width: 85%;
				margin: 1rem auto;
				color: var(--text);
			}
		}
	}
}

/* HOME TESTINOMIAL ENDS  */
@media only screen and (max-width: 1000px) {
	.innerdiv {
		margin: 1rem auto;
	}
}

@media only screen and (max-width: 800px) {
	.innerdiv {
		margin: 2rem auto;
	}
}

@media only screen and (max-width: 600px) {
	.top {
		>h1 {
			padding-top: 1rem;
			font-size: 1.5rem;
		}

		>p {
			padding: 1rem;
			font-size: 1rem !important;
		}
	}

	.div1 {
		background-position-x: 10rem;
	}

	.innerdiv {
		display: flex;
		flex-direction: column;
		transform: scale(1);
		margin-bottom: 5rem;
	}

	.attribution {
		position: relative;
	}
}

/* Home Form Starts */
.home_form {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #000;
	flex-wrap: wrap;
	max-width: 1440px;
	background: linear-gradient(to bottom left, var(--accent) 0%, var(--background)) !important;

	>div {
		width: 50%;
		padding: 2rem 2rem;
		/* background: linear-gradient(to bottom left, var(--accent) 0%, var(--background)); */
	}

	>.left {
		border-right: 1px solid var(--text);
	}

	>.left,
	>.right {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		min-width: 410px;
		gap: 2rem;
		font-weight: normal;

		>h1 {
			font-size: 2.5rem;

			>span {
				font-family: "Helvetica";
			}
		}

		>h3 {
			align-items: center;
			text-wrap: balance;
			font-family: "Montserrat";
			width: 90%;
			font-size: 1.4rem;

			>span {
				color: var(--text);
				font-family: "Helvetica";
			}
		}

		>p {
			text-align: center;
			font-size: 0.8rem;
			width: 70%;
			color: var(--text);
			font-weight: 600;
		}

		>button {
			background-color: var(--primary);
			color: #fff;
			display: flex;
			align-items: center;
			gap: 0.5rem;
			border-radius: 5px;
			font-size: 1rem;
		}
	}
}

@media screen and (max-width: 1000px) {
	.home_form {

		>.left,
		>.right {
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
			text-align: center;
			min-width: 410px;
			gap: 1rem;
			font-weight: normal;

			>h1 {
				font-size: 2rem;

				>span {
					font-family: "Helvetica";
				}
			}

			>h3 {
				align-items: center;
				text-wrap: balance;
				font-size: 0.9rem;
				width: 60%;

				>span {
					color: var(--text);
					font-family: "Montserrat";
				}
			}

			>p {
				text-align: center;
				font-size: 0.8rem;
				width: 100%;
				color: var(--text);
				font-weight: 600;
			}

			>button {
				background-color: var(--primary);
				color: #fff;
				border-radius: 5px;
				display: flex;
				align-items: center;
				grid-area: 0.7rem;
				font-size: 1rem;
			}
		}
	}
}

@media screen and (max-width: 825px) {
	.home_form {
		>.left {
			border-right: none;
			border-bottom: 1.5px solid var(--text);
		}

		>.left,
		>.right {
			width: 100%;
			display: flex;
			flex-direction: column;

			>h1 {
				font-size: 2rem;
			}

			>h3 {
				font-size: 1.5rem;
			}

			>p {
				font-size: 1rem;
				width: 80%;
			}

			>button {
				font-size: 1rem;
			}
		}
	}
}

@media screen and (max-width: 600px) {
	.home_form {
		>.left {
			border-right: none;
			border-bottom: 1.5px solid var(--text);
		}

		>.left,
		>.right {
			width: 100%;
			min-width: 200px;
			display: flex;
			flex-direction: column;

			>h1 {
				font-size: 1.6rem;
			}

			>h3 {
				font-size: 1.4rem;
			}

			>p {
				font-size: 0.8rem;
				width: 89%;
			}

			>button {
				font-size: 1rem;
			}
		}
	}
}

@media screen and (max-width: 380px) {
	.home_form {
		>.left {
			border-right: none;
			border-bottom: 1.5px solid var(--text);
		}

		>.left,
		>.right {
			width: 100%;
			min-width: 200px;
			display: flex;
			flex-direction: column;

			>h1 {
				font-size: 1rem;
				margin-bottom: 0;
			}

			>h3 {
				font-size: 1rem;
				margin: 0;
			}

			>p {
				font-size: 0.7rem;
				width: 95%;
			}

			>button {
				font-size: 1rem;
			}
		}
	}
}

/* Home Form Ends */
/* Home Form Ends */

/* FOOTER  */

.footer {
	width: 100%;
	background-color: var(--text);
	padding: 1rem 4rem;
	margin: 0 auto;
	color: #fcfcfc;

	>div {
		width: 100%;
		padding: 1rem 0;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.footerTop {
		flex-wrap: wrap;

		>img {
			width: 6%;
		}

		>h2 {
			font-size: 1.4rem;
			color: var(--primary);
		}

		>ul {
			display: flex;
			align-items: center;
			justify-content: center;
			text-decoration: none;
			gap: 1rem;
		}
	}

	.footerBottom {
		flex-wrap: wrap;
		padding-top: 1rem;
		border-top: 1px solid #fcfcfc;

		>h4 {
			font-size: 1rem;
			font-weight: 500;
			color: #fcfcfc;
		}
	}
}

/* uiverse component */

.footer {
	ul {
		list-style: none;
	}

	.example-2 {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.example-2 .icon-content {
		margin: 0 10px;
		position: relative;
	}

	.example-2 .icon-content .tooltip {
		position: absolute;
		top: -30px;
		left: 50%;
		transform: translateX(-50%);
		color: #fff;
		padding: 6px 10px;
		border-radius: 5px;
		opacity: 0;
		visibility: hidden;
		font-size: 14px;
		transition: all 0.3s ease;
	}

	.example-2 .icon-content:hover .tooltip {
		opacity: 1;
		visibility: visible;
		top: -50px;
	}

	.example-2 .icon-content a {
		position: relative;
		overflow: hidden;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 50px;
		height: 50px;
		border-radius: 50%;
		color: #4d4d4d;
		background-color: #fff;
		transition: all 0.3s ease-in-out;
	}

	.example-2 .icon-content a:hover {
		box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
	}

	.example-2 .icon-content a svg {
		position: relative;
		z-index: 1;
		width: 30px;
		height: 30px;
	}

	.example-2 .icon-content a:hover {
		color: white;
	}

	.example-2 .icon-content a .filled {
		position: absolute;
		top: auto;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 0;
		background-color: #000;
		transition: all 0.3s ease-in-out;
	}

	.example-2 .icon-content a:hover .filled {
		height: 100%;
	}

	.example-2 .icon-content a[data-social="spotify"] .filled,
	.example-2 .icon-content a[data-social="spotify"]~.tooltip {
		background-color: #1db954;
	}

	.example-2 .icon-content a[data-social="pinterest"] .filled,
	.example-2 .icon-content a[data-social="pinterest"]~.tooltip {
		background-color: #bd081c;
	}

	.example-2 .icon-content a[data-social="dribbble"] .filled,
	.example-2 .icon-content a[data-social="dribbble"]~.tooltip {
		background-color: #ea4c89;
	}

	.example-2 .icon-content a[data-social="telegram"] .filled,
	.example-2 .icon-content a[data-social="telegram"]~.tooltip {
		background-color: #0088cc;
	}
}

@media (max-width: 700px) {
	.footer {
		>.footerTop {
			>h2 {
				font-size: 1.5rem;
			}
		}

		>.footerBottom {
			>.example-2 {
				>li {
					>a {
						height: 36px;
						width: 36px;

						>svg {
							height: 26px;
							width: 26px;
						}
					}
				}
			}
		}
	}
}

@media (max-width: 649px) {
	.footer {
		>div {
			flex-direction: column;
			align-items: center;
			justify-content: center;
			row-gap: 1rem;
			padding: 1rem 0;
		}

		>.footerBottom {
			>h4 {
				text-align: center;
				text-wrap: balance;
			}
		}
	}
}

/* FOOTER  */

/* Popup icon styles */
#whatsapp-popup-icon {
	width: 4rem;
	height: 4rem;
	padding: 1rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--secondary);
	z-index: 1;
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	cursor: pointer;
	z-index: 9999999;
}

.serlab {
	margin: 1rem 0;
}

/* Popup styles */
.whatsapp-popup {
	display: none;
	position: fixed;
	/* bottom: 5.5rem;
	right: 0.2rem; */
	/* position: absolute;*/
	bottom: 0.5rem;
	right: 5rem;
	width: 22rem;
	height: 28rem;
	background-color: #f9f9f9;
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 20px;
	user-select: none;
	z-index: 999;
}

.whatsapp-popup-content {
	position: relative;
}

.whatsapp-popup-close {
	font-size: 3rem;
	position: absolute;
	top: 0.1rem;
	display: none;
	right: 0.1rem;
	user-select: none;
	cursor: pointer;
}

.whatsapp-popup h2 {
	margin-top: 0;
	font-size: 1.3rem;
	margin-bottom: 1rem;
	text-align: center;
}

.whatsapp-form .form-group {
	margin-bottom: 7px;

	&.radio-btn {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 1rem;
		flex-wrap: wrap;

		>label {
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 0.8rem;
		}
	}
}

.whatsapp-form input[type="text"],
.whatsapp-form textarea {
	width: 100%;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 3px;
	border: none;
	padding: 0.8rem 1rem;
}

.whatsapp-form button[type="submit"] {
	background-color: #4caf50;
	color: white;
	padding: 0.6rem 2rem;
	font-size: 1rem;
	width: 100%;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	margin-top: 1rem;
}

.whatsapp-form button[type="submit"]:hover {
	background-color: #45a049;
}

@media screen and (max-width: 520px) {
	/* Popup icon styles */

	.serlab {
		margin: 1rem 0;
	}

	/* Popup styles */
	.whatsapp-popup {
		bottom: 0.5rem;
		right: 2rem;
		height: 26rem;
		padding: 10px;
	}

	.whatsapp-popup h2 {
		font-size: 1.5rem;
		text-wrap: balance;
	}

	.whatsapp-form .form-group {
		margin-bottom: 6px;

		&.radio-btn {
			>label {
				display: flex;
				align-items: center;
				justify-content: center;
				gap: 0.5rem;
			}
		}
	}

	.whatsapp-form button[type="submit"] {
		margin-top: 0.7rem;
	}

	.whatsapp-form button[type="submit"]:hover {
		background-color: #45a049;
	}
}

@media screen and (max-width: 420px) {

	/* Popup icon styles */
	#whatsapp-popup-icon {
		bottom: 1rem;
		right: 1rem;
		cursor: pointer;
	}

	.serlab {
		margin: 0.6rem 0;
	}

	/* Popup styles */
	.whatsapp-popup {
		right: 50%;
		transform: translateX(50%);
		height: 28rem;
		width: 96%;
		padding: 8px;
	}

	.whatsapp-popup h2 {
		font-size: 1.6rem;
	}

	.whatsapp-form .form-group {
		&.radio-btn {
			flex-direction: column;
			align-items: flex-start;

			>label {
				display: flex;
				align-items: center;
				justify-content: center;
				gap: 0.5rem;
			}
		}
	}

	.whatsapp-form button[type="submit"] {
		margin-top: 0.7rem;
	}

	.whatsapp-form button[type="submit"]:hover {
		background-color: #45a049;
	}
}

@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@1,900&display=swap");

* {
	box-sizing: border-box !important;
	padding: 0;
	margin: 0;
}


/* ========== CARDS AVAILABILITY SECTION ========== */
/* ========== CARDS AVAILABILITY SECTION ========== */

/* Full Width Background Wrapper */
.cards-section-wrapper {
	width: 100%;
	max-width: 100vw;
	/* Force full viewport width */
	background-color: #0000001d;
	border-top: 2px solid black;
	border-bottom: 2px solid black;
	margin-top: 2rem;
	padding: 1rem 0;
	position: relative;
	left: 0;
	right: 0;
}

/* Container for Cards - Max Width Content */
.homecardsavail {
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
	padding: 1rem 3rem;
	flex-wrap: wrap;
	gap: 2rem;
	display: flex;
	background-position: center;
	background-size: cover;
	align-items: center;
	justify-content: space-between;
	color: #fcfcfc;
}

.homecardsavail>img {
	width: 10rem;
	transition: transform 0.3s ease;
}

.homecardsavail>img:hover {
	transform: scale(1.05);
}

@media screen and (max-width: 820px) {
	.homecardsavail {
		justify-content: center;
		padding: 1rem 2rem;
	}

	.homecardsavail>img {
		width: 8rem;
	}
}

@media screen and (max-width: 500px) {
	.homecardsavail {
		justify-content: center;
		padding: 1rem;
		gap: 1rem;
	}

	.homecardsavail>img {
		width: 6rem;
	}
}