@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

body {
	font-family: "Inter", sans-serif;
	min-height: 100vh;
	overflow-x: hidden;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.box1 {
	background-image: linear-gradient(to left top,
			#38d675,
			#36cd70,
			#33c66a,
			#31be65,
			#2fb85f,
			#2cb05a,
			#2aa855,
			#279f4f,
			#249248,
			#218441,
			#1d7039,
			#1a5c32);
	background-size: cover;

	clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
}

#arrow1,
#arrow2,
#arrow3 {
	position: absolute;
	z-index: 10;
	max-width: 150px;
	transform: rotate(40deg);
	left: -100px;
}

#arrow2,
#arrow3 {
	left: -170px;
}

.box1 .container {
	width: 100%;
	padding: 60px 110px 120px;
	display: flex;
	gap: 36px;
	max-width: 1440px;
}

.box1-left {
	width: 55%;
}

.logo-img {
	width: 50px;
}

.box1-right {
	width: calc(45% - 36px);
	margin-top: 60px;
}

.box1-left .logo {
	color: #fed881;
	font-family: Inter;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 19.8px;
	letter-spacing: 0.54px;
	text-transform: uppercase;
	/* margin-bottom: 28px; */
}

.box1-left .heading {
	color: #ffffff;

	font-family: Inter;
	font-size: 45px;
	font-style: normal;
	font-weight: 800;
	line-height: 60px;
	letter-spacing: -1.4px;
	margin-bottom: 32px;
}

.box1-left .heading span {
	color: #f9ff00;
}

.box1-left .desc {
	color: #fff;
	font-family: Inter;
	font-size: 21.75px;
	font-style: normal;
	font-weight: 400;
	line-height: 36px;
	max-width: 455px;
}

.box1-right {
	background: #1a5c32;

	background-size: cover;
	padding: 21px 33px 34px;
	text-align: center;
	border-radius: 30px;
}

.box-form h3 {
	color: #fff;
	text-align: center;
	font-family: Inter;
	font-size: 25px;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
	margin-bottom: 19px;
}

form {
	text-align: left;
}

.input-group label {
	display: block;
	color: #fff;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-align: left;
	margin-bottom: 9px;
}

.input-group select {
	width: 100%;
	padding: 6px 14px;
	border-radius: 100px;
	background: rgba(0, 0, 0, 0.1);
	color: #fff;
	font-family: Inter;
	font-size: 17px;
	font-style: normal;
	font-weight: 200;
	line-height: normal;
	height: 38px;
	border: none;
	outline: none;
}

.input-group select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.input-group select {
	background-image: url("../images/box1/arrow.svg");
	background-repeat: no-repeat;
	background-position: right 25px center;
	padding-right: 20px;
}

.input-group option {
	padding: 10px 15px;
	background-color: #fff;
	color: #333;
	cursor: pointer;
}

form .input-group:first-child {
	margin-bottom: 30px;
}

.btn {
	border-radius: 14px;
	background: #27ae60;
	color: #fff;
	font-family: Inter;
	font-size: 17px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	padding: 14px 55px;
	border: none;
	outline: none;
	margin: 0 auto;
	filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
	cursor: pointer;
	display: inline-block;
	margin: 0 auto;
}

.btn:hover {
	background: #229954;
	transition: all 0.2s linear;
}

.checkbox {
	margin-top: 19px;
	margin-bottom: 26px;
}

.checkbox-style {
	display: inline-flex;
	cursor: pointer;
}

.checkbox-label {
	cursor: pointer;
	color: #fff;
	font-family: Inter;
	font-size: 12px;
	font-style: normal;
	font-weight: 200;
	line-height: normal;
	margin-top: -3px;
}

.checkbox-style input {
	display: none;
}

.checkbox-box {
	width: 100%;
	height: 15px;
	max-width: 15px;
	margin-right: 9px;
	border: 1px solid #ccc;
	border-radius: 2px;
	color: transparent;
	transition: all 0.2s linear;
	position: relative;
}

.checkbox-box svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.checkbox-input:checked+.checkbox-box {
	background-color: #27ae60;
	border-color: #27ae60;
	color: white;
}

.socials {
	display: flex;
	gap: 20px;
}

@media (max-width: 1024px) {
	.box1 .container {
		width: 100%;
		padding: 60px 50px 120px;
		display: flex;
		gap: 36px;
	}

	.box1-left .heading {
		font-size: 36px;
		line-height: 50px;
		letter-spacing: -1.4px;
		margin-bottom: 30px;
	}

	.box1-left {
		width: 45%;
	}

	.box1-right {
		width: 55%;
		margin-top: 60px;
	}
}

@media (max-width: 768px) {
	.box1 {
		flex-direction: column;
		clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%);
	}

	.box1-left {
		width: 100%;
	}

	.box1-right {
		width: 100%;
		margin-top: 0px;
	}
}

@media (max-width: 600px) {

	#arrow1,
	#arrow2,
	#arrow3 {
		max-width: 90px;
		bottom: calc(-100% - 20px);
		left: -50px;
	}

	.box1 .container {
		width: 100%;
		padding: 25px 28px 60px;
		display: flex;
		gap: 36px;
		flex-direction: column;
	}

	.wrapper {
		padding: 0px 0px;
	}

	.box1-left {
		width: 100%;
	}

	.box1-right {
		width: 100%;
		margin-top: 0px;
	}

	.box1-left .logo {
		font-size: 12px;
		line-height: 19.8px;
		margin-bottom: 8px;
	}

	.box1-left .heading {
		font-size: 22px;
		line-height: 29.827px;
		letter-spacing: -0.696px;
		margin-bottom: 10px;
	}

	.box1-left .desc {
		font-size: 12px;
		line-height: 18px;
	}

	.box-form h2 {
		font-size: 18px;
		margin-bottom: 12px;
	}

	.input-group label {
		font-size: 14px;
		margin-bottom: 9px;
	}

	.box1-right {
		background: #1a5c32;
		background-size: cover;
		padding: 21px 20px 34px;
		text-align: center;
		border-radius: 30px;
	}

	form .input-group:first-child {
		margin-bottom: 24px;
	}
}

.onTop {
	position: fixed;
	bottom: 30px;
	right: 30px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s ease;
	z-index: 999;
}

.onTop.show {
	opacity: 1;
	pointer-events: auto;
}

/* ============================================== */

.content {
	font-family: Inter;
	padding-bottom: 50px;
}

.content h1 {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
	color: #145a32;
	margin-bottom: 20px;
}

.content h3 {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	color: #1e5c31;
	margin: 20px 0px;
}

.content h2 {
	font-size: 25px;
	font-weight: 700;
	line-height: 1.2;
	color: #1e5c31;
	margin: 20px 0px;
}

.content ul {
	padding-left: 20px;
	margin: 20px 0px;
}

.content ul li {
	margin-bottom: 5px;
}

/* ====================================== */
.cta-banner {
	position: relative;
	padding: 60px 15px;
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
	max-width: 1440px;
	margin: 0 auto;
}

.cta-banner::before {
	content: "";
	width: 100vw;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;

	background-image: linear-gradient(to left top,
			#38d675,
			#36cd70,
			#33c66a,
			#31be65,
			#2fb85f,
			#2cb05a,
			#2aa855,
			#279f4f,
			#249248,
			#218441,
			#1d7039,
			#1a5c32);
	background-size: cover;
}

.cta-banner .left {
	display: flex;
	flex-direction: column;
	gap: 15px;
	color: #fff;
}

.cta-banner h3 {
	font-family: Inter;
	font-weight: 500;
	font-style: Medium;
	font-size: 24px;
	line-height: 25px;
	letter-spacing: 0%;
	vertical-align: middle;
}

.cta-banner h2 {
	font-family: Inter;
	font-weight: 800;
	font-style: Extra Bold;
	font-size: 32px;
	line-height: 25px;
	letter-spacing: 0%;
	vertical-align: middle;
}

.cta-banner p {
	font-family: Inter;
	font-weight: 500;
	font-style: Medium;
	font-size: 20px;
	line-height: 25px;
	letter-spacing: 0%;
	vertical-align: middle;
}

/* ================Footer================= */
.footer {
	font-family: Inter, sans-serif;
	color: #333;
	max-width: 1440px;
	margin: 0 auto;
}

.footer::before {
	content: "";
	width: 100vw;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;

}

.footer-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 60px 15px 40px;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-left p {
	margin: 6px 0;
	font-size: 14px;
	line-height: 1.4rem;
}

.footer-left {
	flex: 2;
	display: flex;
	gap: 30px;
	align-items: flex-start;
}

.footer-right {
	flex: 3;
}

.footer-logo {
	width: 90px;
	height: auto;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px 16px;
}

.footer-links a {
	color: #333;
	text-decoration: none;
	font-size: 14px;
}

.footer-links a:hover {
	text-decoration: underline;
}

.footer-middle {
	padding: 0 15px 20px;
	text-align: justify;
	font-family: Inter;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
	/* 173.333% */
	border-bottom: 1px solid #000;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 20px;
	font-family: Inter;
	font-size: 15px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
	text-align: center;
}

@media (max-width: 600px) {
	.footer-top {
		padding: 40px 15px 40px;
		flex-direction: column;
		align-items: center;
		padding-bottom: 0;
	}

	.footer-links {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 12px 16px;
		text-align: left;
	}

	.footer-left,
	.footer-right {
		flex: none;
		width: 100%;
		text-align: left;
	}

	.footer-middle {
		padding: 20px 16px;
		font-size: 14px;
		line-height: 20px;
	}

	.footer-bottom {
		flex-direction: column;
		padding: 15px 20px;
		font-size: 14px;
	}

	.cta-banner {
		flex-direction: column;
		padding: 30px 15px;
	}

	.cta-banner h2 {
		font-size: 22px;
	}

	.cta-banner h3 {
		font-size: 20;
	}

	.cta-banner p {
		font-size: 18px;
	}
}