/*======================
   01. Google fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
/*======================
   02. Basic css
========================*/
:root{
	--blue: #f90;
	--lightBlue: #f90;
	--light: #F2F4F5;
}
html{
	font-size: 62.5%;
}
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 {
	font-family: "Lexend", sans-serif;
	background-color: #fff;
	color: #f90;
	font-size: 1.8rem;
}
ol,
ul {
	list-style: none;
}
a:hover {
	text-decoration: none;
}
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
	outline: none;
}
.section_padd {
	padding: 9.0rem 0;
}
.title_1 {
    font-size: 4.6rem;
    line-height: 1.2;
    font-weight: 600;
    color: #f90;
    text-transform: capitalize;
}
.title_2 {
	max-width: 70rem;
	line-height: 1.3;
	margin: 2.0rem auto -.5rem auto;
}
/*======================
   03. Preloader Css
========================*/
.preloader {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #ffffff;
	text-align: center;
}
.loader {
	width: 4.4rem;
	height: 4.4rem;
	position: absolute;
	border: .4rem solid var(--blue);
	top: calc(50% - 2.2rem);
	left: calc(50% - 2.2rem);
	-webkit-animation: loader 2s infinite ease;
	animation: loader 2s infinite ease;
}
.loader-inner {
	width: 100%;
	background-color: var(--blue);
	-webkit-animation: loader-inner 2s infinite ease-in;
	animation: loader-inner 2s infinite ease-in;
}
@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	25% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
	75% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	25% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
	75% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@-webkit-keyframes loader-inner {
	0% {
		height: 0%;
	}
	25% {
		height: 0%;
	}
	50% {
		height: 100%;
	}
	75% {
		height: 100%;
	}
	100% {
		height: 0%;
	}
}
@keyframes loader-inner {
	0% {
		height: 0%;
	}
	25% {
		height: 0%;
	}
	50% {
		height: 100%;
	}
	75% {
		height: 100%;
	}
	100% {
		height: 0%;
	}
}
/*======================
   04. Custom Header 
========================*/
header {
	position: fixed;
	top: 0;
	left: 0;
	height: 7.5rem;
	z-index: 1024;
	width: 100%;
	-webkit-transition: background 0.3s;
	-o-transition: background 0.3s;
	transition: background 0.3s;
	background-color: rgba(0, 0, 0, 0.288);
}
header .logo img {
	max-width: 40.0rem;
	width: 100%;
}
#menu {
	text-align: right;
}
#menu li {
	display: inline-block;
	color: #fff;
	padding: 0 1.5rem;
}
#menu li a {
	font-size: 1.7rem;
	letter-spacing: 0..5rem;
	font-weight: 500;
	color: #f90;
	position: relative;
	padding: 0;
}
#menu li:last-child {
	padding-right: 0;
}
#menu li a::before {
	position: absolute;
	content: "";
	top: 1.3rem;
	left: 0;
	height: 100%;
	width: 0;
	pointer-events: none;
	background-size: 4.3rem;
	background-position: -20.0rem center;
	-webkit-transition: width .7s;
	-o-transition: width .7s;
	transition: width .7s;
}
#menu li a.active::before,
#menu li a:hover::before {
	width: 100%;
}
.hamburger-menu {
	cursor: pointer;
	position: absolute;
	right: 1.5rem;
	display: none;
	z-index: 999;
	top: -1.5rem;
}
.hamburger-menu span {
	background: #f90;
	width: 3.0rem;
	height: .3rem;
	display: block;
	margin: .5rem 0;
	border-radius: .5rem;
	-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(200%) rotate(135deg);
	-ms-transform: translateY(200%) rotate(135deg);
	transform: translateY(200%) rotate(135deg);
}
.hamburger-menu .line-center.current {
	opacity: 0;
}
.hamburger-menu .line-bottom.current {
	-webkit-transform: translateY(-325%) rotate(-135deg);
	-ms-transform: translateY(-325%) rotate(-135deg);
	transform: translateY(-325%) rotate(-135deg);
}
/*======================
   05. Landing Wrapper
========================*/
.landing_wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 20rem;
    padding-bottom: 14rem;
    background-size: cover;
    background-position: center center;
    background-color: #073683;
    position: relative;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 75% 94%, 50% 100%, 25% 94%, 0 100%, 0% 30%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 75% 94%, 50% 100%, 25% 94%, 0 100%, 0% 30%);
}
.landing_wrapper::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000000;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    z-index: -1;
}
.landing_wrapper .heading {
    font-size: 6.5rem;
    /* line-height: 7.5rem; */
    font-weight: 600;
    text-transform: capitalize;
    max-width: 84rem;
}
.landing_wrapper .sub_heading {
    max-width: 75rem;
    font-size: 2.0rem;
    line-height: 3.0rem;
}
.landing_wrapper .home_btn_wrapper .button {
	margin: .8rem;
}
.search_wrap {
    width: 80rem;
    background-color: #fff;
    box-shadow: 0 0.1rem 0.95rem rgba(0, 0, 0, 0.1) !important;
    border-radius: .8rem;
    text-align: center;
    padding: 3rem 3rem;
    height: 100%;
    margin-top: -8rem;
    z-index: 999;
    position: relative;
}
form input {
    width: 100%;
    padding: 1rem 2rem;
	border: .1rem solid #e6e6e6;
	border-radius: 1rem;
}
.search_wrap h4 {
    text-transform: capitalize;
    font-size: 2.5rem;
    text-align: left;
    margin-bottom: 1.8rem;
}
.search_wrap form button {
    flex-shrink: 0;
}
.search_wrap form {
	display: flex;
    column-gap: 2rem;
}
/*======================
   06. About Wrapper
========================*/
.about_wrapper img {
    width: 100%;
    border-radius: 2rem;
}
.about_img_wrapper {
	padding: 0 2.0rem;
	margin-top: 2.0rem;
	margin-bottom: 2.0rem;
}
.about_img_wrapper::before {
	position: absolute;
	content: '';
	top: -2.0rem;
	left: 0;
	border-top: 20.0rem solid var(--blue);
	border-right: 25.0rem solid transparent;
	z-index: -1;
}
.about_img_wrapper::after {
	position: absolute;
	content: '';
	bottom: -2.0rem;
	right: 0;
	border-bottom: 20.0rem solid var(--blue);
	border-left: 25.0rem solid transparent;
	z-index: -1;
}
.about_wrapper .title_2 {
	margin-bottom: 2.0rem;
	margin-left: 0;
}
.about_wrapper h4 {
	color: #f90;
}
.title_top {
	color: var(--blue) !important;
	font-size: 1.7rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
}
.about_wrapper h4 {
	font-size: 2.2rem;
	font-weight: bold;
	margin-bottom: 1.0rem;
}
.about_wrapper span {
	font-size: 3.5rem;
	color: var(--blue);
	font-weight: bold;
}
.about_box_wrapper {
    background-color: #fff;
    box-shadow: 0 0.1rem 0.95rem rgba(0, 0, 0, 0.1) !important;
    border-radius: .8rem;
    text-align: center;
    padding: 3rem 2rem;
    height: 100%;
}
.about_box_wrapper h4{
	font-size: 3.2rem;
	font-weight: 700;
	color: var(--blue);
}
.about_box_wrapper p{
	font-size: 1.8rem;
	color: #000;
}
/*======================
   07. Service Wrapper
========================*/
.service_wrapper {
	background-color: #f7fcff;
}
.service_box {
	text-align: center;
	padding: 4.0rem 3.0rem;
	border-radius: .5rem;
	-webkit-border-radius: .5rem;
	-moz-border-radius: .5rem;
	-ms-border-radius: .5rem;
	-o-border-radius: .5rem;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	background-color: #ffffff;
	height: 100%;
}
.service_box:hover {
	border-color: #fff;
	-webkit-box-shadow: .0rem .4rem 1.7rem #eaeaea;
	box-shadow: .0rem .4rem 1.7rem #eaeaea;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.service_box .service_icon {
	position: relative;
	margin: 0 auto;
	font-size: 3.2rem;
	height: 8.0rem;
	width: 8.0rem;
	color: #fff;
	z-index: 1;
	text-align: center;
	line-height: 8.0rem;
	border: .2rem dashed var(--blue);
}
.service_box .service_icon::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 7.6rem;
	height: 7.6rem;
	border-radius: 1.5rem;
	background-color: #f90;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: -1;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.service_box:hover .service_icon::before {
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	background-color: var(--blue);
}
.service_box:hover .service_icon {
	border-color: transparent;
}
.service_box .title {
	font-size: 2.2rem;
	color: #f90;
	font-weight: bold;
}
.service_box .description {
    line-height: 2.8rem;
    font-size: 1.6rem;
}
/*======================
   08. Banner Wrapper
========================*/
.banner_wrapper {
	padding: 6.0rem 0;
	background-color: var(--blue);
}
.banner_wrapper .title_1 {
	max-width: 100%;
	color: #fff;
	text-transform: capitalize;
}
.banner_button_wrapper {
	text-align: right;
}
.banner_button_wrapper .button{
	background-color: transparent !important;
	border-color: #fff !important;
}
.banner_button_wrapper .button:hover{
	background-color: #fff !important;
	border-color: #fff !important;
	color: var(--blue);
}
/*======================
   09. Grow Wrapper
========================*/
.grow_wrapper .title_1 {
	margin-left: 0;
}
.grow_wrapper .title_2 {
	margin-left: 0;
}
.grow_wrapper .technics li {
	padding-left: 2.5rem;
	position: relative;
	margin-top: 1.5rem;
}
.grow_wrapper .technics li::before,
.grow_wrapper .technics li::after {
	position: absolute;
	content: '';
	left: 0;
	top: .7rem;
	height: 1.0rem;
	width: 1.0rem;
	background-color: var(--blue);
}
.grow_wrapper .technics li::after {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
/*======================
   10. Project Wrapper
========================*/
.project_wrapper {
	background-color: #f7fcff;
	overflow: hidden;
}
.project_items .item img {
    width: 100%;
    height: 35rem !important;
    object-fit: cover;
}
.project_items .item .snake {
	display: block;
	cursor: crosshair;
}
.project_items .item .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.51);
	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;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

/*======================
   12. Ask Wrapper
========================*/
.faq_img {
    height: 58rem;
    width: 100%;
    object-fit: cover;
    /* text-align: justify; */
}
.ask_wrapper {
	background-color: #f7fcff;
}
.ask_wrapper .button {
	font-size: 1.6rem;
	background-color: var(--blue);
	color: #fff;
	width: 100%;
	text-align: left;
	border-color: #dbe4f0;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	line-height: 3.0rem;
	position: relative;
	font-weight: 600;
}
.ask_wrapper .button[aria-expanded="false"] {
	background-color: transparent;
	color: #f90;
}
.ask_wrapper .button[aria-expanded="true"] {
	border-color: var(--blue);
}
.ask_wrapper .button:hover {
	background-color: var(--blue);
	color: #fff;
	border-color: var(--blue);
}
.ask_content {
	padding: 3.0rem 2.5rem 0;
}
.accordion .button .fa-check {
	background-color: #fff;
	height: 2.5rem;
	width: 2.5rem;
	border-radius: 50%;
	line-height: 2.5rem;
	text-align: center;
	font-size: 1.2rem;
	color: var(--blue);
	position: absolute;
	right: 2.0rem;
	top: 1.4rem;
	opacity: 0;
}
.accordion .button .btn_content {
	overflow: hidden;
}
.accordion .button .btn_content span {
	display: block;
	white-space: nowrap;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	overflow: hidden;
}
.accordion .button[aria-expanded="true"] .fa-check {
	opacity: 1;
}

/*===========================
   14. Testimonials Wrapper
=============================*/
.testi_wrapper {
	background-color: #f7fcff;
}
.testi_carousel .item .single_client {
	padding: 3.5rem;
	border: .2rem solid #dddddd;
	border-radius: 1.0rem;
	line-height: 2.4rem;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.testi_carousel .item:hover .single_client {
	border-color: var(--blue);
}
.testi_carousel .item:hover i {
	color: var(--blue);
}
.testi_carousel .item i {
	font-size: 5.0rem;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.testi_carousel .item .client_feedback {
	font-weight: 600;
	letter-spacing: 0..1rem;
}
.testi_carousel .item .client_img {
	height: 6.4rem;
	width: 6.4rem;
	border-radius: 50%;
	background-color: #de8893;
	margin-right: 2.0rem;
	overflow: hidden;
}
.testi_carousel .single_client .media-body h4 {
	font-size: 2.0rem;
	font-weight: 600;
	color: #f90;
}
.testi_carousel .single_client .media-body p {
	margin-top: .4rem;
}

/*==================
   16. Contact Wrapper
====================*/
.contact_wrapper {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
}
.contact_wrapper::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	opacity: 0.9;
	border-top: .1rem solid #e8e8e8;
}
aside {
	border: .1rem solid #e6e6e6;
	padding: 3.0rem;
	height: 100%;
	background-color: #ffffff;
}
aside h4 {
    line-height: 0.8;
    border-bottom: .1rem solid #d6cece;
    padding-bottom: 1.5rem;
    color: #000000;
    font-size: 2.5rem;
    font-weight: 700;
}
aside .address ul li {
	border-bottom: .1rem solid #f3f0f0;
	margin: 1.5rem 0 0;
	padding-bottom: 1.5rem;
}
aside .address ul li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
aside .address ul li a {
	display: block;
	color: #f90;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
aside .address ul li a:hover {
	color: var(--blue);
}
aside ul li strong {
	color: #000000;
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: .5rem;
	display: inline-block;
}
aside ul li strong::before {
	position: absolute;
	content: '';
	left: 0;
	top: .8rem;
	width: .8rem;
	height: .8rem;
	background-color: var(--blue);
}
.inputBox, .textBox {
    height: 4.5rem;
    width: 100%;
    padding: 0 1.5rem;
    border: .1rem solid #e6e6e6;
    background-color: #ffffff;
    font-size: 1.6rem;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-radius: 1rem;
    margin-bottom: 1rem;
}
.textBox {
	height: 17.0rem;
	resize: none;
	padding-top: 1.0rem;
}
.inputBox:focus,
.textBox:focus {
	border-color: var(--blue);
	-webkit-box-shadow: none;
	box-shadow: none;
}
.contact_wrapper .button {
	width: 100%;
}
/*====================
   17. Footer Wrapper
======================*/
footer {
	background-color: #f90;
	font-size: 1.6rem;
	color: #ffffff;
	padding: 1.0rem 0 3.0rem 0;
}
footer .social_icons li {
	display: inline-block;
	margin-left: .5rem;
}
footer .social_icons li:first-child {
	margin-left: .0rem;
}
footer .social_icons li a {
	height: 4.0rem;
	width: 4.0rem;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
footer .social_icons li a:hover {
	background-color: var(--blue);
}
.back-to-top.button {
	font-size: 2.2rem;
	width: 4.0rem;
	height: 4.0rem;
	border-radius: 50%;
	line-height: 3.7rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 8.0rem;
	right: 1.0rem;
	z-index: 1000;
	padding: 0;
}


.inner_wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 16rem;
    padding-bottom: 4rem;
    background-size: cover;
    background-position: center center;
    background-color: #073683;
    position: relative;
}
.inner_wrapper::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000000;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    z-index: -1;
}
.inner_content h1{
	font-size: 5rem;
	color: #fff;
}
.inner_banner p{
	margin-top: 2rem;
	color: #fff;
}
.tracking_wrapper{
	padding: 3rem 0;
}
.details_box {
    background-color: #fff;
    box-shadow: 0 0.1rem 0.95rem rgba(0, 0, 0, 0.1) !important;
    border-radius: 1rem;
    padding: 3rem 0 0 0;
    border: 0.1rem solid var(--blue);
}
.details_box h2{
	font-size: 3rem;
	font-weight: 500;
	padding: 0 2rem;

}
.details{
	padding: 2rem 2rem;
	border-bottom: .1rem solid #9a9a9a;
}

.details:last-child{
	border-bottom: 0;
}
.details h4 {
    font-size: 2rem;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 1rem;
}
.details p {
    color: #8b8b8b;
    font-weight: 300;
}
.details p a{
	color: #8b8b8b;
}
.tracking_wrap{
	position: relative;
	z-index: 1;
}
.tracking_wrap::before{
	position: absolute;
	content: '';
	top: 0;
	left: 2rem;
	width: 0.2rem;
	height: 100%;
	border-right: 0.2rem dashed #C8CDDA;
	z-index: -1;
}
.tracking_item{
	background-color: #fff;
	border: 0.1rem solid var(--blue);
	box-shadow: 0 0.1rem 0.95rem rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	column-gap: 2rem;
	padding: 1.5rem;
	border-radius: 1rem;
}
.tracking_item:not(:last-child){
	margin-bottom: 5rem;
}
.tracking_icon{
	background-color: var(--blue);
	height: 8rem;
	width: 8rem;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.tracking_icon img{
	height: 4rem;
}
.tracking_item h4{
	color: rgb(189, 113, 0);
	font-size: 2.5rem;
	font-weight: 700;
	padding-bottom: 1rem;
}
.tracking_item ul li {
    display: flex;
    align-items: flex-start;
    column-gap: 0.5rem;
    color: #8b8b8b;
    font-size: 1.5rem;
}
.tracking_item ul li i{
	width: 1.5rem;
	text-align: center;
	flex-shrink: 0;
	margin-top: 0.45rem;
}