/*======================
   01.fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');


:root {
	--blue: #1559a1;
	--blue-light: #2491d0;
	--dark: #104470;
	--dark1: #001c38;
	--light: #DEF2FA;
	--dark2: #010f34;
}

/*======================
   02. Basic css
========================*/
::-moz-selection {
	background-color: var(--blue);
	color: #fff;
}

::selection {
	background-color: var(--blue);
	color: #fff;
}

html {
	font-size: 62.5%;
}

a,
button,
img {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

a {
	text-decoration: none;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

body {
	line-height: 1.5;
	font-family: "Jost", sans-serif;
	background-color: #fff;
	color: var(--dark2);
	font-weight: 400;
	font-size: 2rem;
}

ol,
ul {
	list-style: none;
}

a {
	color: inherit;
}

a:hover {
	text-decoration: none;
	color: var(--blue);
}

p a {
	color: inherit;
}

p a:hover {
	color: var(--blue);
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
	outline: none;
}



/* page loader  */
#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100dvh;
	width: 100vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.loader3 {
	width: 8.0rem;
	height: 8.0rem;
	display: inline-block;
	padding: .0rem;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 8.0rem;
	height: 8.0rem;
	border-radius: 100%;
	background: var(--blue);
	-webkit-animation: loader3 1.5s linear infinite;
	animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
	0% {
		-webkit-transform: scale(0, 0);
		transform: scale(0, 0);
		opacity: 0.8;
	}

	100% {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
		opacity: 0;
	}
}

@-webkit-keyframes loader3 {
	0% {
		-webkit-transform: scale(0, 0);
		opacity: 0.8;
	}

	100% {
		-webkit-transform: scale(1, 1);
		opacity: 0;
	}
}

/*Hamburger-menu START CSS*/
.hamburger-menu {
	cursor: pointer;
	display: none;
	z-index: 999;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.hamburger-menu span {
	background: var(--dark);
	width: 4.5rem;
	height: .4rem;
	display: block;
	margin: .4rem 0;
	border-radius: 2rem;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.hamburger-menu .line-top.current {
	-webkit-transform: translateY(300%) rotate(135deg);
	-ms-transform: translateY(300%) rotate(135deg);
	transform: translateY(300%) rotate(135deg);
}

.hamburger-menu .line-center.current {
	opacity: 0;
}

.hamburger-menu .line-bottom.current {
	-webkit-transform: translateY(-290%) rotate(-135deg);
	-ms-transform: translateY(-290%) rotate(-135deg);
	transform: translateY(-290%) rotate(-135deg);
}

.container {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
.bg_image{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	opacity: 0.1;
	height: 78dvh;
	max-width: 95%;
	object-fit: contain;
}

/*top header*/
.top_header {
	background: -o-linear-gradient(left, var(--dark1) 0%, var(--blue) 100%);
	background: -webkit-gradient(linear, left top, right top, from(var(--dark1)), to(var(--blue)));
	background: linear-gradient(to right, var(--dark1) 0%, var(--blue) 100%);
	padding: 1rem 0;
	position: relative;
	z-index: 1025;
}

.top_inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 4.5rem;
	-moz-column-gap: 4.5rem;
	column-gap: 4.5rem;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.top_text p {
	font-family: "Outfit", sans-serif;
	color: #fff;
	font-size: 1.6rem;
}

.top_inner .icon_box a:hover {
	background-color: #000;
}

header {
	position: sticky;
	top: 0;
	left: 0;
	z-index: 1024;
	width: 100%;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	background-color: #fff;
	padding: 2rem 0;
	-webkit-box-shadow: 0 .8rem 2.0rem 0 rgba(0, 0, 0, .1);
	box-shadow: 0 .8rem 2.0rem 0 rgba(0, 0, 0, .1);
}

.logo {
	display: block;
	width: 100%;
	max-width: 16rem;
}

.menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	-webkit-column-gap: 2rem;
	-moz-column-gap: 2rem;
	column-gap: 2rem;
}

.menu>ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.menu>ul>li {
	padding: 1.5rem 2rem;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	margin-right: 1.4rem;
	border-radius: 1rem 1rem 0 0;
}

.menu>ul>li>a {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--dark);
	text-transform: uppercase;
	line-height: 1;
	padding: 0;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.menu>ul>li>a.active,
.menu>ul>li>a:hover {
	color: var(--blue) !important;
}

.menu>ul>li.dropdown_wrap {
	position: relative;
}

.menu>ul>li.dropdown_wrap:hover {
	background-color: var(--light);
	color: var(--dark);
}

.menu>ul>li.dropdown_wrap:hover>a {
	color: var(--dark) !important;
}

.menu>ul>li.dropdown_wrap>a::after {
	content: '\EA4E';
	font-family: 'remixicon' !important;
	font-weight: 600;
	margin-left: 0.7rem;
	position: relative;
	top: 0.2rem;
}

.menu>ul>li.dropdown_wrap>ul {
	position: absolute;
	left: 0;
	top: 100%;
	background-color: var(--light);
	padding: 1rem 2rem;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	opacity: 0;
	pointer-events: none;
	min-width: calc(100% + 2rem);
	overflow: hidden;
	border-radius: 0 1rem 1rem 1rem;
}

.menu>ul>li.dropdown_wrap:hover>ul {
	opacity: 1;
	pointer-events: all;
}

.menu>ul>li.dropdown_wrap>ul>li>a {
	color: var(--dark);
	white-space: nowrap;
	padding: 0.6rem 0rem;
	display: block;
}

.menu>ul>li.dropdown_wrap>ul>li>a:hover,
.menu>ul>li.dropdown_wrap>ul>li.active>a {
	color: var(--blue);
}

/*button*/
.button {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 1.4rem 2.2rem;
	color: #fff;
	border-radius: 0rem;
	font-weight: 600;
	font-size: 2rem;
	line-height: 1.5;
	text-decoration: none;
	border-radius: .8rem;
	text-align: left;
	border: none;
	background-color: var(--blue);
	-webkit-column-gap: 1.2rem;
	-moz-column-gap: 1.2rem;
	column-gap: 1.2rem;
}

.button:hover {
	background-color: var(--blue-light);
	color: #fff;
	-webkit-box-shadow: 0.1rem 1rem 4rem rgba(0, 0, 0, 0.16);
	box-shadow: 0.1rem 1rem 4rem rgba(0, 0, 0, 0.16);
}

/*return-to-top START CSS*/
.back-to-top {
	font-size: 2.5rem;
	width: 5rem;
	height: 5rem;
	line-height: 5rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 3.0rem;
	right: 2.0rem;
	border-radius: 50%;
	background: var(--blue);
	z-index: 1000;
}

.back-to-top i {
	color: #fff;
}

/* Section design  */

.section_title span {
	font-size: 2.2rem;
	font-weight: 600;
	color: var(--blue);

	position: relative;
	display: block;
}

.section_title .st1:after {
	content: "";
	position: absolute;
	top: 50%;
	height: .2rem;
	width: 6rem;
	background-color: var(--blue);
	margin-left: 0.8rem;
}

.section_title .st2::before,
.section_title .st2:after {
	content: "";
	position: absolute;
	top: 50%;
	height: .2rem;
	width: 6rem;
}

.section_title .st2::before {
	background-color: var(--blue);
	margin-left: -6.5rem;
}

.section_title .st2::after {
	background-color: var(--blue);
	margin-left: 0.8rem;
}

.section_title h2 {
	font-size: 5rem;
	text-transform: capitalize;
	font-weight: 700;
	color: var(--dark2);
	margin: 2rem 0;
}


/* new css */
/* section 1 */
.investment {
	padding-block: 6.0rem;
	min-height: 100dvh;
	display: flex;
	align-items: center;
}
.investment h1 {
	font-size: 6.0rem;
}

.investment h2 {
	font-size: 4.0rem;
	margin-top: 2.0rem;
}

.investment p {
	font-size: 2.0rem;
	font-weight: 500;
}

.investment_data {
	display: flex;
	justify-content: space-between;
	margin-top: 4.0rem;
	max-width: 74.0rem;
	margin-inline: auto;
}

.investment_data .line {
	width: .1rem;
	background-color: black;
}

.investment_data h3{
	font-size: 3.0rem;
}


/* section 2 */
.opportunity {
	padding-block: 6.0rem;
}

.opportunity h2 {
	font-size: 4.4rem;
	margin-bottom: 4.0rem;
	text-align: center;
}

.opportunity_start {
	text-align: center;
}

.opportunity_start>div:not(:last-child) {
	margin-bottom: 4.0rem;
}

.opportunity_start h3 {
	font-size: 3.6rem;
}

.opportunity_start h4 {
	font-size: 3.8rem;
}

.opportunity_start p {
	font-size: 1.8rem;
	font-weight: 500;
}
.opportunity_start p span{
	color: red;
}

.opportunity_end h3 {
	font-size: 3.6rem;
}

.opportunity_end h4 {
	font-size: 2.4rem;
}

.opportunity_list {
	display: flex;
	flex-direction: column;
	gap: .6rem;
}

.opportunity_list>div {
	display: flex;
	gap: 2.0rem;
}

.opportunity_area {
	color: #538135;
	margin-top: 6.0rem;
}

.opportunity_area h4 {
	text-align: center;
	font-size: 2.4rem;
}

.opportunity_area p {
	font-size: 1.8rem;
	font-weight: 500;
}


/* business */

.business {
	padding-block: 6.0rem;
}

.business h2 {
	text-align: center;
	font-size: 4.4rem;
	margin-bottom: 2.0rem;
}

.business h3 {
	font-size: 4.0rem;
	text-align: center;
}

.business h6 {
	font-size: 2.0rem;
	font-weight: 500;
	text-align: center;
	color: #538135;
	max-width: 77.0rem;
	margin-inline: auto;
	margin-top: .6rem;
}

.business .row {
	margin-top: 3.0rem;
	row-gap: 2.0rem;
}

.business h4 {
	text-align: center;
	font-size: 3.2rem;
}

.business p {
	font-size: 1.8rem;
	font-weight: 600;
	color: #6a6a6a;
	line-height: 1.3;
	margin-bottom: 1.0rem;
}

.business ul {
	padding-left: 2.0rem;
}

.business li {
	display: flex;
	gap: 1.0rem;
	align-items: center;
}


/* analysis */
.analysis {
	padding-block: 6.0rem;
}

.analysis h2 {
	text-align: center;
	font-size: 4.4rem;
	margin-bottom: 1.0rem;
}

.analysis h6 {
	font-size: 2.0rem;
	font-weight: 500;
	text-align: center;
	color: #6a6a6a;
}

.market_details {
	max-width: 70.0rem;
	margin-inline: auto;
	margin-top: 8.0rem
}

.market_details h3 {
	font-size: 3.6rem;
	text-align: center;
	margin-bottom: 1.0rem;
}

.market_details h4 {
	font-size: 3.2rem;
	margin-bottom: .8rem;
}

.market_details p {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.3;
}

.market_analysis {
	margin-top: 6.0rem;
}

.market_analysis h3 {
	font-size: 3.6rem;
	margin-bottom: 1.0rem;
}

.market_analysis>div>div {
	display: flex;
	gap: 2.0rem;
}

.market_analysis .circle {
	height: 1.2rem;
	width: 100%;
	max-width: 1.2rem;
	border-radius: 50%;
	background-color: black;
	margin-top: .9rem;
}

.market_analysis h4 {
	font-size: 2.4rem;
	margin-bottom: .6rem;
}

.market_analysis p {
	font-size: 1.8rem;
	line-height: 1.3;
}
.market_analysis .green{
	color: #538135;
}
.market_analysis .green .circle{
	background-color: #538135;
} 
.market_analysis .yellow{
	color: #fec23e;
}
.market_analysis .yellow .circle{
	background-color: #fec23e;
} 
.market_analysis .orange{
	color: #ee7e32;
}
.market_analysis .orange .circle{
	background-color: #ee7e32;
} 
.market_analysis .blue{
	color: #4472c4;
}
.market_analysis .blue .circle{
	background-color: #4472c4;
} 


/* district */
.district {
	padding-block: 6.0rem;
}

.district h2 {
	text-align: center;
	font-size: 4.4rem;
	margin-bottom: 1.0rem;
}

.district h6 {
	font-size: 2.0rem;
	font-weight: 500;
	text-align: center;
	color: #6a6a6a;
}

.district h6 span {
	color: #538135;
}

.district h3 {
	font-size: 3.2rem;
	text-align: center;
	margin-bottom: .6rem;
}

.district p {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.3;
}

.district ul {
	padding-left: 2.0rem;
}

.district li {
	display: flex;
	gap: 1.0rem;
	align-items: center;
	font-size: 1.6rem;
}

.feature {
	margin-top: 2.0rem;
        max-width: 1290px !important;
    margin: 30px auto auto auto !important;
}

.timeline {
	margin-top: 3.0rem;
}

.timeline h6 {
	color: black;
	margin-bottom: 3.0rem;
}

.district h4 {
	font-size: 2.4rem;
	text-align: center;
}


/* requirement */
.requirement {
	padding-block: 6.0rem;
}

.requirement h2 {
	text-align: center;
	font-size: 4.4rem;
	margin-bottom: 1.0rem;
}

.requirement p {
	font-size: 2.0rem;
	font-weight: 500;
	text-align: center;
	color: #6a6a6a;
}

.requirement .row {
	margin-top: 4.0rem;
}

.requirement h3 {
	font-size: 3.2rem;
	text-align: center;
	margin-bottom: .6rem;
}

.requirement table {
	width: 100%;
}

.requirement table tr th {
	font-size: 2.8rem;
	font-weight: 600;
}

.requirement table tr th:last-child {
	color: red;
}

.requirement tr td {
	font-weight: 500;
}
.graph_img {
	display: block;
	margin-top: 4.0rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 79.0rem;
	width: 100%;
}
.opportunity h2 ~ p{
	margin-top: 2.5rem;
}