/* ==================== [ Root CSS Start ] ==================== */
:root {
	/* Project Core */
	--white: #ffffff;
	--black: #000000;
	--transparent: #0000;

	/* Project Root */
	--primary: #219546;
	--dark-primary: #0E3F1D;
	--body: #072110;

	--input-border: rgb(255, 255, 255, .5);

	--font-primary: "Neue Haas Grotesk Display Pro", sans-serif;
	--font-secondary: "Inter", sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

body {
	color: var(--white);
	font-family: var(--font-primary);
	font-style: normal;
	font-size: 20px;
	font-weight: normal;
	line-height: 28px;
	letter-spacing: 1px;
	background: var(--body);
	overflow-x: hidden;
}

/* ==================== [ Root CSS End ] ==================== */

/* ==================== [ Typography Start ] ==================== */
figure {
	margin: 0;
}

strong,
b {
	font-weight: 400 !important;
}

a,
input,
button,
textarea {
	outline: none !important;
}

a {
	color: var(--primary);
	word-break: break-word;
	transition: all 0.3s ease-in-out;
}

a:hover {
	color: var(--white);
}

p {
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
	line-height: inherit;
	margin-bottom: 20px;
}

ol,
ul {
	margin-bottom: 20px;
	padding-left: 20px;
}

ol ol,
ol ul,
ul ol,
ul {
	margin-top: 10px;
	margin-bottom: 10px;
}

ol li,
ul li {
	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

ol li::marker,
ul li::marker {
	color: var(--primary);
}

ul li:has(> ul),
ul li:has(> ol) {
	list-style-type: none;
}

blockquote {
	padding: 16px 16px 16px 24px;
	border-left: 5px solid var(--white);
	margin-bottom: 20px;
	background-color: var(--primary);
	font-size: 18px;
	line-height: 133%;
	color: var(--white);
}

pre {
	background-color: var(--primary);
	padding: 16px;
	overflow: auto;
	font-family: inherit;
	border-radius: 6px;
	position: relative;
	color: var(--white);
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
}

pre code {
	font-size: inherit;
	font-weight: inherit;
	font-family: inherit;
	line-height: inherit;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 16px;
	font-size: inherit;
}

th,
td {
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 8px 12px;
	text-align: left;
}

th {
	background-color: rgba(255, 255, 255, 0.05);
	font-weight: 600;
	font-size: inherit;
	color: var(--primary);
}

td {
	background-color: var(--transparent);
	font-weight: 400;
	font-size: inherit;
	color: var(--white);
}

h1 {
	font-family: var(--font-secondary);
	margin-bottom: 20px;
	font-style: normal;
	font-size: 70px;
	font-weight: 400;
	line-height: 80px;
	color: var(--white);
	letter-spacing: 0;
}

h2 {
	font-family: var(--font-secondary);
	margin-bottom: 20px;
	font-style: normal;
	font-size: 70px;
	font-weight: 400;
	line-height: 80px;
	color: var(--white);
	letter-spacing: 0;
}

h3 {
	font-family: var(--font-secondary);
	margin-bottom: 20px;
	font-style: normal;
	font-size: 60px;
	font-weight: 400;
	line-height: 70px;
	color: var(--white);
	letter-spacing: 0;
}

h4 {
	font-family: var(--font-secondary);
	margin-bottom: 20px;
	font-style: normal;
	font-size: 44px;
	font-weight: 400;
	line-height: 54px;
	color: var(--white);
	letter-spacing: 0;
}

h5 {
	font-family: var(--font-secondary);
	margin-bottom: 20px;
	font-style: normal;
	font-size: 32px;
	font-weight: 400;
	line-height: 42px;
	color: var(--white);
	letter-spacing: 0;
}

h6 {
	font-family: var(--font-secondary);
	margin-bottom: 20px;
	font-style: normal;
	font-size: 26px;
	font-weight: 400;
	line-height: 36px;
	color: var(--white);
	letter-spacing: 0;
}

hr {
	margin-block: 20px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0;
}

/* ==================== [ Typography End ] ==================== */

/* ==================== [ Common Start ] ==================== */
.row {
	margin-inline: -5px;
	row-gap: 10px;
}

.row>* {
	padding-inline: 5px;
}

.img-cover * {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* ==================== [ Common End ] ==================== */

/* ==================== [ Common Heading Start ] ==================== */
/* ==================== [ Common Heading End ] ==================== */

/* ==================== [ Button Start ] ==================== */
.btn {
	width: fit-content;
	padding: 12px 28px;
	text-align: center;
	font-family: var(--font-secondary);
	font-style: normal;
	font-size: 18px;
	font-weight: 500;
	line-height: 26px;
	letter-spacing: 1px;
	border-radius: 3px;
	border: 0 !important;
	text-decoration: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
}

.btn-primary {
	color: var(--white);
	background: var(--primary);
	border-color: var(--primary);
}

.btn-primary:focus,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus-within,
.btn-primary:focus-visible {
	color: var(--black);
	background-color: var(--white);
	border-color: var(--white);
	box-shadow: none !important;
	outline: 0 !important;
}

.btn-white {
	color: var(--black);
	background: var(--white);
	border-color: var(--white);
}

.btn-white:focus,
.btn-white:hover,
.btn-white:active,
.btn-white:focus-within,
.btn-white:focus-visible {
	color: var(--white);
	background-color: var(--primary);
	border-color: var(--primary);
	box-shadow: none !important;
	outline: 0 !important;
}

/* ==================== [ Button End ] ==================== */

/* ==================== [ Error 404 Start ] ==================== */
.error-404 {
	padding: 80px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100dvh;
}

.error-404 .heading {
	text-align: center;
}

.error-404 .action * {
	width: fit-content;
	margin: 0 auto;
}

/* ==================== [ Error 404 End ] ==================== */

/* ==================== [ Extra Common Start ] ==================== */
.container-fluid,
.container {
	padding-inline: 20px;
	margin: 0 auto;
}

.swiper-linear .swiper-wrapper {
	transition-timing-function: linear !important;
}

/* ==================== [ Extra Common End ] ==================== */


/* ==================== [ Header Start ] ==================== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 9;
	padding: 18px 77px;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}

.header.scroll {
	background-color: var(--body);
}

.header .header-container {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header .header-container .logo img {
	height: 73px;
	width: auto;
}

.header .header-container .menu * {
	color: var(--white);
	text-decoration: none;
	list-style: none;
	padding: 0;
	margin: 0;
}

.header .header-container .menu *:hover {
	color: var(--primary);
}

/* ==================== [ Header End ] ==================== */

/* ==================== [ Home Banner Start ] ==================== */
.home-banner {
	position: relative;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 299px 0 310px;
}

.home-banner .shape {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 2;
}

.home-banner .shape * {
	width: 100%;
	height: auto;
}

.home-banner::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.85;
	background-color: var(--dark-primary);
}

.home-banner .heading {
	text-align: center;
	position: relative;
	z-index: 1;
}

.home-banner .heading .title * {
	margin-bottom: 53px;
}

.home-banner .heading .action * {
	margin-bottom: 0;
}

/* ==================== [ Home Banner End ] ==================== */

/* ==================== [ Our Services Start ] ==================== */
.our-services {
	padding: 321px 0 228px;
}

.our-services .service-container {
	position: relative;
	max-width: 853px;
}

.our-services .service-container .heading .title * {
	margin-bottom: 23px;
}

.our-services .service-container .heading .disc * {
	max-width: 584px;
	margin-bottom: 39px;
}

/* ==================== [ Our Services End ] ==================== */

/* ==================== [ Footer Start ] ==================== */
.footer {
	padding: 40px 0 88px;
}

.footer .title * {
	font-family: var(--font-secondary);
	font-weight: 300;
	letter-spacing: 0;
	margin-bottom: 14px;
}

.footer .disc>* {
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 1px;
	margin-bottom: 0;
}

.footer .disc a {
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

/* ==================== [ Footer End ] ==================== */





/* ==================== [ Contact Us Start ] ==================== */
.contact-us {
	padding-block: 238px 271px;
}

.contact-us .contact-us-block {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 20px;
}

.contact-us .heading {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-us .left-block {
	max-width: 703px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 46px;
}

.contact-us .left-block .heading strong {
	display: block;
}

.contact-us .left-block .heading .disc {
	max-width: 650px;
	width: 100%;
}

.action-block .disc * {
	font-family: var(--font-secondary);
	font-weight: 400;
	color: var(--white);
	margin-bottom: 14px;
	letter-spacing: 0;
}

.form-block {
	max-width: 460px;
	width: 100%;
}

.form-label {
	font-family: var(--font-secondary);
	font-size: 16px;
	margin-bottom: 5px;
}

.form-control {
	background-color: var(--transparent);
	color: var(--white) !important;
	border: 1px solid var(--input-border);
	border-radius: 6px;
	font-size: inherit;
	padding: 9px 20px;
	font-family: var(--font-secondary);
	font-weight: 500;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
	margin-bottom: 5px;
}

.form-label span {
	opacity: .7;
	letter-spacing: .8px;
}

textarea {
	resize: none;
	height: 100px;
}

.form-control:focus,
.form-control:focus-visible {
	outline: none;
	box-shadow: none;
	background-color: var(--transparent);
	border-color: var(--white);
}



.form-block p{
	margin: 0;
}
.form-block br{
	display: none;
}
/* ==================== [ Contact Us End ] ==================== */