/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
	font-family: 'Poppins', sans-serif;
	color: #17171d;
	font-size: 18px;
	font-weight: 500;
}

a {
	text-decoration: none;
	color: #0880e8;
}

a:hover {
	color: #2371d5;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	/*  font-family: "Raleway", sans-serif;*/
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: #0880e8;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	transition: all 0.4s;
}

.back-to-top i {
	font-size: 28px;
	color: #fff;
	line-height: 0;
}

.back-to-top:hover {
	background: #2194f7;
	color: #fff;
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #fff;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #0880e8;
	border-top-color: #bfe0fd;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	background: transparent;
	transition: all 0.5s;
	z-index: 997;
	height: auto;
	top: 0;
	padding: 0px 0px 0px 0px;
	/* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); */
	position: absolute;
}

#header .sticky-wrapper {
	position: relative;
	padding-right: 70px;
	padding-left: 70px;
	background: transparent;
}

#header .sticky-wrapper::after {
	content: "";
	height: 100%;
	width: 50%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}

#header.header-scrolled {
	top: 0;
}

#header .logo {
	font-size: 30px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 400;
	letter-spacing: 2px;
	text-transform: uppercase;
	background: #fff;
	padding: 10px;
	border-radius: 0px 0px 10px 10px;
}

#header .logo a {
	color: #fff;
}

#header .logo img {
	max-height: 80px;
}

.header-inner-pages {
	background: rgba(5, 87, 158, 0.9) !important;
}

.topbar-inner-pages {
	background: rgba(6, 98, 178, 0.9) !important;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
	padding: 0;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
	padding: 0px;
}

.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	/*	justify-content: space-between;*/
	padding: 10px 12px;
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	transition: 0.3s;
	position: relative;
}

.navbar a i,
.navbar a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
	position: relative;
	top: 0;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
	color: #fff;
}

.navbar .getstarted,
.navbar .getstarted:focus {
	background: #ffb600;
	padding: 8px 20px;
	margin-left: 30px;
	border-radius: 4px;
	color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
	color: #fff;
	background: #ec7f6d;
}

.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 24px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	box-shadow: 3px 1px 20px 0 rgba(0, 110, 225, 0.08);
	transition: 0.3s;
	border-radius: 5px;
	border: 1px solid #08508a;
}

.navbar .dropdown ul li {
	min-width: 200px;
	border-bottom: 1px solid #ececec;
}

.navbar .dropdown ul a {
	padding: 10px 15px;
	font-size: 14px;
	text-transform: none;
	color: #17171d;
	font-weight: 400;
	line-height: normal;
}

.navbar .dropdown ul a i {
	font-size: 16px;
	margin-right: 6px;
	color: #17171d
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
	color: #08508a;
}

.navbar .dropdown:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
}

@media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}

	.navbar .dropdown .dropdown:hover>ul {
		left: -100%;
	}
}

a.connect_btn {
	color: #000032;
	background: #c3caddd4;
	padding: 10px 20px 10px 20px;
	transition: 0.3s;
	border: 1px solid #fff;
	border-radius: 10px;
	margin: 0px 10px;
	display: flex;
	align-items: center;

}

.connect_btn .fa,
.connect_btn:focus .fa {
	font-size: 22px;
	padding-right: 10px;
}

a:focus.connect_btn {
	color: #000032;
	background: #c3cadd;
	padding: 11px 20px 11px 20px;
	transition: 0.3s;
	border: 1px solid #fff;
	border-radius: 10px;
	margin: 0px 10px;

}

@media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}

	.navbar .dropdown .dropdown:hover>ul {
		left: -100%;
	}
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
	color: #f6b024;
}


/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
	color: #fff;
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: block;
	}

	.navbar ul {
		display: none;
	}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(59, 59, 59, 0.9);
	transition: 0.3s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	background-color: #fff;
	overflow-y: auto;
	transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
	padding: 10px 20px;
	font-size: 15px;
	color: #212529;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
	color: #ffb600;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
	margin: 15px;
}

.navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
	min-width: 200px;
}

.navbar-mobile .dropdown ul a {
	padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
	font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
	color: #ffb600;
}

.navbar-mobile .dropdown>.dropdown-active {
	display: block;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
	width: 100%;
	height: auto;
	overflow: hidden;
	position: relative;
	z-index: 99;
	transition: 0.3s;
	padding: 0px;
}

#hero .container-fluid {
	padding: 0px;
}

#hero .carousel {
	position: relative;
}

#hero .carousel-container {
	text-align: left;
	position: relative;
	z-index: 2;
}

.slider1 {
	background: url(../img/banner1.jpg);
	padding: 70px;
	height: 100vh;
	width: 100%;
	background-position: right center;
	background-repeat: no-repeat;
	background-size: cover;
}

.carousel-item::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3) ); */
	background: #00000057;
	z-index: 1;
}

.slider2 {
	background: url(../img/banner-2.jpg);
	padding: 70px;
	height: 100vh;
	width: 100%;
	background-position: right center;
	background-repeat: no-repeat;
	background-size: cover;
}

.slider3 {
	background: url(../img/banner3.jpg);
	padding: 70px;
	height: 100vh;
	width: 100%;
	background-position: right center;
	background-repeat: no-repeat;
	background-size: cover;
}

.slider4 {
	background: url(../img/banner7.jpg);
	padding: 70px;
	height: 100vh;
	width: 100%;
	background-position: right center;
	background-repeat: no-repeat;
	background-size: cover;
}

.slider5 {
	background: url(../img/banner8.jpg);
	padding: 70px;
	height: 100vh;
	width: 100%;
	background-position: right center;
	background-repeat: no-repeat;
	background-size: cover;
}



#hero h3 {
	color: #fff;
	margin-bottom: 10px;
	font-size: 32px;
	font-weight: 500;
	line-height: 34px;
	text-transform: none;
	letter-spacing: 0.5px;
	text-shadow: 0px 2px 0px #000000;
}

#hero h2 {
	color: #fff;
	margin-bottom: 15px;
	font-size: 52px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 78px;
	margin-top: 30px;
	text-shadow: 0px 5px 10px #0009;
}

#hero h2 .yellow {
	color: #f6b224;
	background: none;
}

#hero h2 .green {
	color: #13d0b1;
	background: none;
}

#hero p {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
	margin: 0 auto 20px auto;
	color: #e7f2fb;
	font-size: 18px;
	line-height: 40px;
	font-weight: 400;
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
	width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
	background: none;
	font-size: 48px;
	line-height: 1;
	width: auto;
	height: auto;
}

#hero .btn-get-started {
	font-weight: 400;
	font-size: 18px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 15px 30px;
	transition: 0.5s;
	line-height: 1;
	margin: 0px 10px 0px 0px;
	color: #fff;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	background-color: #f45800;
	text-transform: none;
	border: 1px solid #082e5c;
	text-transform: uppercase;
	border-radius: 0px;
}

#hero .btn-get-started:hover {
	background: #020e28;
	color: #fff;
	text-decoration: none;
	border: 1px solid #082e5c;
}

#hero .btn-get-started.white {
	background: #fff;
	color: #222;
	text-decoration: none;
	border: 1px solid #082e5c;
	border-radius: 0px;
}

#hero .btn-get-started.white:hover {
	background: #020e28;
	color: #fff;
	text-decoration: none;
	border: 1px solid #082e5c;
}

#hero .animated {
	animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.carousel-indicators {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: flex;
	justify-content: normal;
	padding: 0;
	margin-right: 0;
	margin-bottom: -41px;
	margin-left: 0;
	list-style: none;
	width: auto;
	text-align: left;
	/* padding-left: 20px; */
	display: none;
}

#hero .carousel-indicators li {
	cursor: pointer;
	background: #063777;
	overflow: hidden;
	border: 0;
	width: 12px;
	height: 12px;
	border-radius: 50px;
	opacity: 1;
	transition: 0.3s;
	margin: 0px 5px;
}

#hero .carousel-indicators li.active {
	opacity: 1;
	background: #ffab00;
}


@-webkit-keyframes up-down {
	0% {
		transform: translateY(10px);
	}

	100% {
		transform: translateY(-10px);
	}
}

@keyframes up-down {
	0% {
		transform: translateY(10px);
	}

	100% {
		transform: translateY(-10px);
	}
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
	padding: 60px 0;
	overflow: hidden;
}

.section-bg {
	background-color: #fff8ec;
}

.section--sky-bg {
	background-color: #e7f2fb;
}

.section-title {
	text-align: center;
	padding-bottom: 30px;
}

/*
.section-title h2 {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 10px;
	padding-bottom: 0;
	color: #020e28;
	letter-spacing: 0.5px;
	line-height: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
*/
.section-title h2 {
	font-size: 40px;
	font-weight: 600;
	margin-bottom: 20px;
	padding-bottom: 0;
	color: #0b4981;
	letter-spacing: 0.5px;
	line-height: 50px;
	letter-spacing: 1.5px;
}


.section-title h3 {
	font-size: 32px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 10px;
	padding-bottom: 0;
	color: #13d0b1;
	letter-spacing: 0.5px;
	line-height: 50px;
}

.section-title .main-titel {
	font-size: 36px;
	font-weight: 700;
	margin: 0px 0px 10px 0px;
	padding-bottom: 0;
	color: #f45800;
	letter-spacing: 0.5px;
	line-height: 50px;
	letter-spacing: 1px;
	text-transform: none;
}

.section-title .sub-titel {
	color: #072f60;
	padding: 8px 0px;
	/*border-bottom: 1px solid #a8a8a8;
	border-top: 1px solid #a8a8a8;*/
	font-size: 22px;
	font-weight: 500;
	display: inline-block;
	letter-spacing: 0.6px;
}

.section-title .sub-text {
	color: #66717d;
	padding: 8px 0px;
	/*border-bottom: 1px solid #a8a8a8;
	border-top: 1px solid #a8a8a8;*/
	font-size: 18px;
	font-weight: 400;
	display: inline-block;
	letter-spacing: 0.6px;
}

.section-title h1 {
	font-size: 34px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 15px;
	padding-bottom: 0;
	color: #13d0b1;
	letter-spacing: 0.5px;
	line-height: 52px;
}

.yellow-color {
	color: #f45800;
	font-size: 54px;
	line-height: 80px;
}

.titel-bottom-line {
	background: url(../img/titel-line-img.png) no-repeat;
	background-position: center 88%;
}

.section-title p {
	margin-bottom: 0;
	font-style: italic;
}

p {
	margin-top: 0;
	margin-bottom: 1rem;
	color: #17171d;
	font-size: 16px;
	line-height: 38px;
	font-weight: 400;
	letter-spacing: 0.5px;
	text-align: justify;
}

p strong {
	font-weight: 500;
}

p a {
	font-weight: 600;
	color: #212121;
}

.text-j {
	text-align: justify;
}

.btn-get-started {
	font-weight: 500;
	font-size: 18px;
	letter-spacing: 2px;
	display: inline-block;
	padding: 18px 30px;
	border-radius: 0px;
	transition: 0.5s;
	line-height: 1;
	margin: 0px 10px 0px 0px;
	color: #fff;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	background-color: #ea5501;
	text-transform: uppercase;
	width: auto;
	margin: 0px auto;
	border: 1px solid #ea5501;
	margin-bottom: 10px
}

.btn-get-started:hover {
	background-color: #17171d;
	color: #fff;
	border: 1px solid #ea5501;
}



/*--------------------------------------------------------------
# Welcome
--------------------------------------------------------------*/
.welcome {
	position: relative;
	background: url(../img/welcome-bg.png) no-repeat top right;
}

.welcome .content .btn-learn-more {
	font-weight: 400;
	font-size: 20px;
	letter-spacing: normal;
	display: flex;
	padding: 16px 28px;
	transition: 0.3s;
	line-height: 1;
	color: #0e4076;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	margin-top: 6px;
	background: #fff;
	border: 2px solid #0e4076;
	border-radius: 10px;
	gap: 13px;
	/* min-width: auto; */
	width: fit-content;
}

.welcome .content .btn-learn-more:hover {
	background: #085074;
	color: #fff;
	text-decoration: none;
}



@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: block;
		background-color: #163e6f;
		border-radius: 5px;
		padding: 5px;
	}

	.navbar ul {
		display: none;
	}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(5, 74, 133, 0.9);
	transition: 0.3s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	border-radius: 10px;
	background-color: #fff;
	overflow-y: auto;
	transition: 0.3s;
}

.navbar-mobile>ul>li {
	padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
	padding: 10px 20px;
	font-size: 15px;
	color: #0665b7;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
	visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
	color: #f6b024;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
	margin: 15px;
}

.navbar-mobile .dropdown ul.sub-menu-out {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	width: auto;
}



.navbar-mobile .dropdown ul.sub-menu-out .sub-menu-div .left-services-details {
	display: none;
}

.navbar-mobile .dropdown ul.sub-menu-out .sub-menu-div .right-services-details {
	padding-left: 0px !important;
}

.navbar-mobile .dropdown ul.sub-menu-out .sub-menu-div .right-services-details .menu-link-out-div .link-menu-div ul {
	margin: 0px;
	padding: 0px;
	position: relative;
	display: unset;
	left: 0px;
	top: 0;
}

.navbar-mobile .dropdown ul.sub-menu-out .sub-menu-div .right-services-details .lets-discuss-menu {
	margin: 0px;
	padding: 15px 0 !important;
	position: relative !important;
	padding-left: 0 !important;
}

.navbar-mobile .dropdown ul.sub-menu-out .sub-menu-div .right-services-details .lets-discuss-menu .titel-text {
	font-size: 16px;
}

.navbar-mobile .dropdown ul li {
	min-width: 200px;
}

.navbar-mobile .dropdown ul a {
	padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
	font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
	color: #f6b024;
}

.navbar-mobile .dropdown>.dropdown-active {
	display: block !important;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	position: relative;
	/*background: #00306e;*/
	padding: 0 0 0px 0;
	color: #fff;
	font-size: 14px;
}

#footer .footer-top .connect_with {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 15px 12px;
	background: #0a3c7a;
}


.enquire-now {
	background: #020e28;
	float: right
}

.footer-mid {
	background: #222222 url("../img/footer-bg.png") no-repeat top left;
	padding: 60px 0px;
}

#footer .footer-mid h4 {
	font-size: 20px;
	font-weight: 500;
	color: #13d0b1;
	text-transform: none;
	position: relative;
	padding-bottom: 12px;
	letter-spacing: 0.5px;
}


#footer .footer-mid h4 {
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	text-transform: none;
	position: relative;
	padding-bottom: 12px;
	letter-spacing: 0.5px;
}

#footer .footer-mid .footer-links {
	margin-bottom: 30px;
}

#footer .footer-mid .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
	margin-left: 8px;
}

#footer .footer-mid .footer-links ul i {
	padding-right: 2px;
	color: #fff;
	font-size: 8px;
	line-height: 1;
	position: absolute;
	left: 0;
	top: 16px;
}

#footer .footer-mid .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
	position: relative;
	padding-left: 18px;
}

#footer .footer-mid .footer-links ul a {
	color: #fff;
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
	font-size: 15px;
	font-weight: 400;
}

#footer .footer-mid .footer-links ul a:hover {
	color: #fff;
}

#footer .footer-mid .footer-info p {
	font-size: 15px;
	line-height: 30px;
	padding: 20px 0px;
	color: #fff;
	text-align: left;
	font-weight: 400;
	text-align: left;
}

#footer .copyright {
	text-align: center;
	padding-top: 20px;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	text-decoration: none;
	padding-bottom: 20px;
	background: #08508a;
}

#footer .copyright a {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
}

.box_icon .fa {
	color: #0969c3;
	font-size: 24px;
}

.middle-box p,
.middle-box p a {
	color: #fff;
	margin-bottom: 0
}

.social_icon {}


.social_icon ul {
	margin: 0;
	padding: 0;
	position: relative;
	text-align: left;
	top: 0;
	margin-left: 0px !important;
	margin-top: 14px !important;
}

.social_icon ul li {
	display: inline-block !important;
	list-style: none;
	margin: 0;
	padding: 0 !important;
	text-align: center;
}

.social_icon ul li a {
	background: #0969c3;
	display: inline-block !important;
	height: 36px;
	width: 36px;
	margin: 0 1px;
	transition: all .3s ease-in 0;
	color: #fff !important;
	font-size: 18px !important;
	border-radius: 3px !important;
	line-height: 36px !important;
	background: #0969c3;
}

.social_icon ul li a i {
	color: #fff !important;
	font-size: 18px !important;
	/* top: 0 !important; */
	position: relative !important;
	top: 2px !important;
}

.connect_with .middle-box {
	text-align: left;
	position: relative;
	margin: 0px 0px 10px 0px;
	display: flex;
	align-items: center;
}

#footer .footer-top .footer-info .logo img {
	max-width: 100%;
}

.our-clients {
	padding-bottom: 80px;
}

.connect_with .middle-box .box_icon {
	margin-right: 15px;
}




.section_bg {
	background: #f7f8fa;
}



/* ----------- Grid Layout ----------- */
.listing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin: 0 auto;
}

/* ----------- Card Styles ----------- */
.listing-card {
	background: #fff;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}

.listing-card:hover {
	/*      transform: translateY(-5px);*/
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ----------- Image Section ----------- */
.listing-image {
	position: relative;
	overflow: hidden;
}

.listing-image img {
	width: 100%;
	display: block;
	transition: transform 0.4s ease;
}

.listing-card:hover .listing-image img {
	transform: scale(1.05);
}

.badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background-color: #fff;
	color: #08508a;
	font-size: 18px;
	font-weight: 500;
	padding: 8px 12px;
	border-radius: 4px;
	letter-spacing: 0.5px;
}

/* ----------- Card Content ----------- */
.listing-content {
	padding: 25px;
	flex-grow: 1;
	text-align: left;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.listing-content h3 {
	font-size: 20px;
	margin-bottom: 8px;
	font-weight: 500;
	color: #17171d;
}

.listing-content .location {
	font-size: 16px;
	color: #717171;
	margin-bottom: 20px;
	line-height: 26px;
	margin-top: 15px;
}

.listing-content .location i {
	margin-right: 5px;
	color: #717171;
	font-size: 20px;
}

.listing-content .price {
	background-color: #f7f8fa;
	padding: 10px 20px;
	border-radius: 2px;
	font-size: 22px;
	margin-bottom: 25px;
	font-weight: 500;
	color: #17171d
}

.btn-learn {
	display: flex;
	text-align: center;
	border: 2px solid #123468;
	color: #123468;
	text-decoration: none;
	font-weight: 500;
	padding: 12px 0;
	border-radius: 6px;
	transition: 0.3s ease;
	font-size: 20px;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.btn-learn:hover {
	background-color: #0b4b91;
	color: #fff;
}

/* ----------- Responsive Design ----------- */
@media (max-width: 1024px) {
	.exclusive-section {
		padding: 60px 30px;
	}
}

@media (max-width: 768px) {
	.exclusive-section {
		padding: 50px 20px;
	}

	.exclusive-section h2 {
		font-size: 28px;
	}

	.exclusive-section p.subtitle {
		font-size: 15px;
	}

	.listing-content {
		text-align: center;
	}

	.listing-content .location {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.exclusive-section {
		padding: 40px 15px;
	}

	.exclusive-section h2 {
		font-size: 24px;
	}
}







/* Each project card */

.project-card {
	background: #f7f8fa;
	border-radius: 0px;
	overflow: hidden;
	min-width: 320px;
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
}

.project-card:hover {
	transform: translateY(-5px);

}

/* Image section */
.image-comparison {
	display: flex;
	width: 100%;
}

.image-comparison img {
	width: 100%;
	height: auto;
	display: block;
}

.image-wrapper .label {
	position: absolute;
	top: 25px;
	left: 0px;
	background-color: #192252;
	color: #fff;
	font-size: 16px;
	padding: 6px 12px;
	border-radius: 0px 5px 5px 0px;
	font-weight: 500;
}

.image-wrapper {
	position: relative;
	flex: 1;
}

/* Card content */
.project-info {
	padding: 15px;
}

.project-info h3 {
	font-size: 22px;
	color: #08508a;
	margin-bottom: 0;
}

.name-loc .location {
	font-size: 16px;
	color: #000000;
	margin-bottom: 0px;
}

.location i {
	color: #000;
	margin-right: 6px;
	font-size: 20px;
}

/* Project details grid */

.details-grid {
	margin: 10px 0 0 0;
	padding: 0px;
}

.details-grid li {
	list-style: none;
	float: left;
	width: 50%;
	font-size: 16px;
	color: #17171d;
	line-height: 40px;
	font-weight: 400;
}





/* Responsive design */
@media (max-width: 1024px) {
	.project-card {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.projects-section {
		padding: 50px 20px;
	}

	.project-info h3 {
		font-size: 16px;
	}

	.details-grid {
		gap: 10px 25px;
	}
}


.swiper-slide {
	padding: 0px 15px
}

.swiper {
	padding: 0 0 50px 0;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 0px;
}

.name-loc {
	display: flex;
	justify-content: space-between;
	align-items: center
}

.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	display: inline-block;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #08508a;
	padding: 10px;
	opacity: 1
}

.swiper-pagination-bullet-active {
	background: #08508a;
	padding: 10px;
	height: 10px;
	width: 10px;
}

.swiper-pagination {
	text-align: left;
}

.icon-box {
	text-align: center;
}

.icon-box .title {
	font-size: 22px;
	color: #17171d;
	font-weight: 500;
	margin: 10px 0px;
}

.description p {
	text-align: center;
	line-height: 30px;
}


.welcome-inner {
	position: relative;
}

/*
.welcome-inner::after {
	position: absolute;
	content: '';
	width: 35.33%;
	height: 100%;
	background: url(../img/welcome-right.jpg) no-repeat top right;
	right: 0;
	top: 0;
	border: 15px solid #085074;
	background-size: cover;
}
*/


.welcome p {
	margin-top: 0;
	margin-bottom: 1rem;
	color: #17171d;
	font-size: 18px;
	line-height: 36px;
	font-weight: 400;
	letter-spacing: 0.5px;
	text-align: justify;
}

.connect-section {
	background-image: url(../img/contact-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	position: relative;
}

.background-overlay {
	background-color: #ffffffcf;
	transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
	inset: 0;
	position: absolute;
}

.counter-box {
	display: flex;
	align-items: center;
	font-size: 40px;
	font-weight: 600;
	color: #222222;
}

.counter-box p {
	margin-bottom: 0;
}


.connect-section .details-text {
	margin-top: 0;
	margin-bottom: 1rem;
	color: #17171d;
	font-size: 18px;
	line-height: 34px;
	font-weight: 400;
	letter-spacing: normal;
	text-align: justify;
	display: inline-block;
}

/*

.counter-box .counter{
	border-right: 5px solid #0f3c71;
	padding: 0px 15px 0 0;
	margin: 0px 15px 0px 0px;
}
*/


.c1 {
	width: 105px;
	border-right: 5px solid #0f3c71;
	margin-right: 15px;
	line-height: 42px;
}

.mb-2 {
	margin-bottom: 20px;
}












.contat-form {
	width: 100%;
	background: #fff;
	border-radius: 0px;
	box-shadow: 0 6px 24px rgba(9, 20, 30, 0.06);
	padding: 32px;
	border: 1px solid rgba(10, 10, 12, 0.03);
}

.contat-form .field {
	margin-bottom: 18px;
}

.contat-form .input,
.contat-form .select,
.contat-form textarea {
	width: 100%;
	display: block;
	box-sizing: border-box;
	border-radius: 0px;
	padding: 14px 16px;
	background: #f7f8fa;
	border: 1px solid #eaecee;
	font-size: 14px;
	color: #1f2937;
	outline: none;
	transition: box-shadow .15s, border-color .15s;
}

.contat-form label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: #111827;
	margin-bottom: 8px;
}

.contat-form .btn {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	border-radius: 8px;
	border: 2px solid #0e4076;
	background: #fff;
	color: #0f3e74;
	font-weight: 400;
	font-size: 20px;
	text-decoration: none;
	cursor: pointer;
	transition: background .12s, color .12s, transform .06s;
	box-shadow: 0 2px 0 rgba(0, 0, 0, 0.02) inset;
	align-items: center;
}

.contat-form h3 {
	font-size: 32px;
	font-weight: 600;
	color: #222;
	margin-bottom: 20px;
}


.center-div {
	display: flex;
	align-items: center;
}

.welcome-img {
	display: none;
}

.welcome-img img {
	border: 10px solid #085074;
	max-width: 100%;
	margin-top: 20px;
}




/*about us*/

.carousel-item-inner::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3) ); */
	background: #000000a8;
	z-index: 1;
}

.slider-aboutus {
	background: url(../img/about-us.jpg);
	padding: 70px;
	min-height: 500px;
	height: 100%;
	width: 100%;
	background-position: right center;
	background-repeat: no-repeat;
	background-size: cover;
}

#hero .slider-aboutus .carousel-container {
	width: 100%;
	text-align: center;
}

ul.breadcumb {
	padding: 10px 16px;
	list-style: none;

}

ul.breadcumb li {
	display: inline;
	font-size: 18px;
}

ul.breadcumb li+li:before {
	padding: 8px;
	color: #fff;
	content: "/\00a0";
}

ul.breadcumb li a,
ul.breadcumb li span {
	color: #fff;
	text-decoration: none;
}

ul.breadcumb li a {
	text-decoration: underline
}

ul.breadcumb li a:hover {
	color: #fff;
	text-decoration: underline;
}


#hero .slider-aboutus .carousel-container {
	width: 100%;
	text-align: center;
}


.welcome-img-inner img {
	border: 10px solid #085074;
	max-width: 100%;
	margin-top: 20px;
}

#hero .carousel-item-inner h2 {
	color: #fff;
	margin-bottom: 10px;
	font-size: 48px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: normal;
}




.timeline-section {
	display: flex;
	/* align-items: center; */
	/* justify-content: center; */
	/* padding: 40px 0; */
	/* gap: 30px; */
	/* flex-wrap: wrap; */
	background: #fff;
	box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.07);
}

.timeline-left {
	/* flex: 1; */
	/* height: 100%; */
	display: flex;
	width: 50%;
	display: flex;
}

.timeline-left img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.timeline-right {
	/* flex: 1; */
	padding: 30px;
	width: 50%;
}


.timeline-right p {
	font-size: 16px;
	line-height: 1.8;
	color: #444;
}

/* Mobile Responsive */
@media (max-width:768px) {
	.timeline-right h2 {
		font-size: 36px;
	}

	.timeline-section {
		padding: 20px;
	}
}



.section-inner-title {
	text-align: center;
	padding-bottom: 30px;
}

.section-inner-title h2 {
	font-size: 34px;
	font-weight: 600;
	margin-bottom: 20px;
	padding-bottom: 0;
	color: #0b4981;
	letter-spacing: 0.5px;
	line-height: 50px;
}

.our-vision-values {
	padding: 70px 30px 70px 30px;
	background-image: url(../img/contact-bg.jpg);
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
}

.our-vision-values-background-overlay {
	background-color: #ffffffcf;
	/* opacity: 0.6; */
	transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	position: absolute;
}

.our-vision-values .box-div {
	background-color: #ffffff;
	padding: 30px 50px 30px 50px;
	border-radius: 5px 5px 5px 5px;
	position: relative;
	width: 100%;
	flex-wrap: wrap;
	align-content: flex-start;
	display: flex;
	box-shadow: 0 6px 24px rgba(9, 20, 30, 0.06);
}

.our-vision-values .box-div.blue {
	background-color: #163e6f;
}

.our-vision-values .box-div .inner-box-div {
	position: relative;
	width: 100%;
	text-align: center;
}

.our-vision-values .box-div .inner-box-div .icon-div {
	/* display: flex; */
	/* flex: 0 0 80px; */
	margin: 0 auto 10px auto;
	width: 90px;
}

.our-vision-values .box-div .inner-box-div .icon-div img {
	max-width: 100%;
}

.our-vision-values .box-div .inner-box-div .box-content {
	flex-grow: 1;
}

.our-vision-values .box-div .inner-box-div .box-content h3 {
	font-size: 26px;
	font-weight: 600;
	color: #0b4981;
}

.our-vision-values .box-div.blue h3 {
	color: #fff !important;
}

.our-vision-values .box-div .inner-box-div .box-content p {
	margin-top: 0;
	margin-bottom: 0;
	color: #17171d;
	font-size: 17px;
	line-height: 32px;
	font-weight: 400;
	letter-spacing: normal;
	text-align: justify;
}

.our-vision-values .box-div .inner-box-div .box-content ul {
	margin: 0px;
	padding: 0px;
}

.our-vision-values .box-div .inner-box-div .box-content ul li {
	margin: 1px 0px;
	padding: 0px;
	position: relative;
	color: #fff;
	font-size: 15px;
	line-height: 26px;
	font-weight: 400;
	letter-spacing: normal;
	text-align: left;
	list-style: none;
	padding-left: 28px;
}

.our-vision-values .box-div .inner-box-div .box-content ul li i {
	position: absolute;
	left: 0px;
	top: 5px;
	font-size: 18px;
	color: #3bb9e5;
}

.our-vision-values .box-div .inner-box-div .box-content ul li strong {
	font-weight: 500;
}


.about-us .counter-box {
	display: flex;
	align-items: center;
	font-size: 40px;
	font-weight: 600;
	color: #222222;
	background: #f7f8fa;
	padding: 10px 5px;
}

.about-us .c1 {
	width: auto;
	border-right: 5px solid #0f3c71;
	margin-right: 10px;
	line-height: 42px;
	padding-right: 10px;
}

.about-us .c1 .counter {
	display: inline-block;
	width: 75px;
	text-align: right;
}

.about-us .counter-box p {
	margin-bottom: 0;
	font-size: 16px;
}


.project-name-row {
	padding: 0 0 15px 0;
	border-bottom: 1px solid #00000021;
	margin-bottom: 20px;
}




.project-name-row h3 {
	font-size: 24px;
	margin-bottom: 0;
	font-weight: 500;
	color: #17171d;
}

.project-name-row h3 span {}

.project-name-row .location {
	font-size: 16px;
	color: #717171;
	line-height: 26px;
	margin-top: 10px;
	margin-bottom: 0px;
	display: flex;
	align-items: center;
}

.project-name-row .location i {
	margin-right: 5px;
	color: #717171;
	font-size: 20px;
}

.my-home-list {
	background: #fff;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	padding: 20px;
}

.my-home-list h3 {
	font-size: 22px;
	margin-bottom: 8px;
	font-weight: 500;
	color: #17171d;
	line-height: normal;
}

.my-home-list p {
	margin: 0px
}

.details-div ul {
	margin: 0px;
	padding: 0px;
}

.details-div ul li {
	margin: 10px 0px;
	padding: 0px;
	position: relative;
	color: #17171d;
	font-size: 16px;
	line-height: 28px;
	font-weight: 400;
	letter-spacing: normal;
	text-align: left;
	list-style: none;
	padding-left: 28px;
}

.details-div ul li i {
	position: absolute;
	left: 0px;
	top: 4px;
	font-size: 22px;
	color: #3bb9e5;
}

.details-div ul li strong {
	font-weight: 500;
}

.my-home-list .contat-form {
	background: transparent;
	box-shadow: none;
	padding: 0px;
	border: none;
}

.features-div-row {
	flex-flow: wrap;
	box-sizing: border-box;
	display: flex;
	place-content: flex-start;
	align-items: flex-start;
}

.features-div-row .features-col {
	flex: 1 1 25%;
	box-sizing: border-box;
	max-width: 25%;
	min-height: 75px;
}

.features-div-row .features-col .inner-div {
	flex-direction: row;
	box-sizing: border-box;
	display: flex;
	width: 100%;
}

.features-div-row .features-col .inner-div .icon-div {
	width: 30px;
	height: 30px;
	display: flex;
	margin-top: 0px;
	margin-right: 15px;

}

.features-div-row .features-col .inner-div .icon-div img {
	height: 100%;
	max-width: initial;
}

.features-div-row .features-col .inner-div .text-d {}

.features-div-row .features-col .inner-div .text-d p {
	margin: 0px;
	padding: 0px;
	line-height: normal;
	color: #17171ddb;
	font-size: 15px;
	font-weight: 400;
}

.features-div-row .features-col .inner-div .text-d p strong {
	font-weight: 500;
	color: #17171d;
}

#hero .slider-contact-us .carousel-container {
	width: 100%;
	text-align: center;
}

.slider-contact-us {
	background: url(../img/contact.jpg);
	padding: 70px;
	min-height: 500px;
	height: 100%;
	width: 100%;
	background-position: right center;
	background-repeat: no-repeat;
	background-size: cover;
}


.contact-info {}

.contact-info .row-div {
	width: auto;
	height: auto;
	margin: 0px 0px 15px 0px;
	padding: 0px;
}

.contact-info .row-div .titel {
	color: #17171d;
	font-size: 16px;
	line-height: normal;
	font-weight: 500;
	letter-spacing: 0.5px;
	text-align: left;
	margin: 0 0 6px 0;
}

.contact-info .row-div .details {
	color: #17171d;
	font-size: 16px;
	line-height: normal;
	font-weight: 400;
	letter-spacing: 0.5px;
	text-align: left;
}

.footer-mid p {
	text-align: left;
	font-size: 15px;
	line-height: 27px;
}


.small-titel-text {
	font-size: 20px;
	margin-bottom: 10px;
	font-weight: 600;
	color: #17171d;
}

.tanny-titel-text {
	font-size: 18px;
	margin-bottom: 10px;
	font-weight: 600;
	color: #17171d;
}


.welcome-img-div {
	position: absolute;
	content: '';
	width: 41.6666%;
	height: auto;
	/* background: url(../img/welcome-right.jpg) no-repeat top right; */
	right: 0;
	top: 0;
	border: 15px solid #085074;
	background-size: cover;
}

.welcome-img-div img {
	display: block;
	max-width: 100%;
	width: 100%;
}

.partners-img-div .item img {
	border: 1px solid #0b4981;
	box-shadow: 0 6px 24px rgba(9, 20, 30, 0);
}

.projects-btn-enquire {
	justify-content: end;
	text-align: right;
	align-items: center;
	display: flex;
}

.btn-enquire {
	font-weight: 400;
	font-size: 20px;
	letter-spacing: normal;
	display: flex;
	padding: 15px 28px;
	transition: 0.3s;
	line-height: 1;
	color: #0e4076;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	margin-top: 0;
	background: #fff;
	border: 2px solid #0e4076;
	border-radius: 10px;
	/* gap: 13px; */
	/* min-width: auto; */
	width: fit-content;
}

.btn-enquire:hover {
	background: #085074;
	color: #fff;
	text-decoration: none;
}

.projects-details p {
	line-height: 30px;
}


.project-d-row {}

.project-d-row {
	padding: 10px 0px;
	border-top: 1px solid #ccc;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	display: grid;
	font-size: 16px;
	font-weight: 400;
	line-height: 32px;
}

.project-d-row .col-div {}

.project-d-row .col-div.right-div {
	justify-content: end;
	display: flex;
}

.project-s-img-div {}

.project-s-img-div img {
	margin: 0px auto;
	display: block;
	max-width: 100%;
}

/* Base Tag Style */
.btn-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 16px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.25;
	color: #0e4076;
	/* Gray-600 */
	background-color: #fff;
	/* Gray-100 */
	border: 1px solid #0e4076;
	border-radius: 5px;
	/* Pill shape */
	text-decoration: none;
	transition: all 0.2s ease-in-out;
	cursor: pointer;
	user-select: none;
}

/* Hover State */
.btn-tag:hover {
	background-color: #0e4076;
	/* Gray-200 */
	color: #fff;
	/* Gray-800 */
	text-decoration: none;
}

.btn-tag i {
	font-size: 22px;
}

.project-status-label {
	font-size: 16px;
	color: #17799b;
	margin-left: 10px;
	font-weight: 500;
	vertical-align: middle;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	padding: 5px 10px;
	background: #fff;
	border-radius: 5px;
}

.my-home-list h3.big-size {
	font-size: 34px;
	margin-bottom: 8px;
	font-weight: 500;
	color: #17171d;
	line-height: 48px;
}

.middle-text-d {
	color: #17171d;
	font-size: 18px;
	font-weight: 500;
	line-height: 34px;
	text-align: left;
}

.table tr th {
	font-weight: 500;
	font-size: 14px;
}

.table tr td {
	font-weight: 400;
	font-size: 14px;
}


.table tr td .status {
	position: relative;
	/* top: 15px; */
	/* left: 15px; */
	background-color: #c6dcfd;
	color: #123468;
	font-size: 12px;
	font-weight: 600;
	padding: 3px 8px;
	border-radius: 4px;
	letter-spacing: 1px;
}


.big .item a {
	cursor: zoom-in;
}