/*======================
   01. Google fonts
========================*/

@import url('https://fonts.googleapis.com/css?family=Heebo:400,500,700&amp;display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700&amp;display=swap');

/*======================
   02. Basic css
========================*/

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: 'Heebo', sans-serif;
	background-color: #fff;
	color: #687c94;
	font-weight: 400;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
	font-size: 18px;
}

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: 90px 0;
}

.title_1 {
	font-size: 38px;
	font-weight: bold;
	color: #0b1a39;
}

.title_2 {
	max-width: 600px;
	margin: 20px auto -5px auto;
	color: #687c94;
}


/*======================
   03. Preloader Css
========================*/

.preloader {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #ffffff;
	text-align: center;
}

.loader {
	width: 44px;
	height: 44px;
	position: absolute;
	border: 4px solid #0070ee;
	top: calc(50% - 22px);
	left: calc(50% - 22px);
	-webkit-animation: loader 2s infinite ease;
	animation: loader 2s infinite ease;
}

.loader-inner {
	width: 100%;
	background-color: #0070ee;
	-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: 75px;
	z-index: 1024;
	width: 100%;
	-webkit-transition: background 0.3s;
	-o-transition: background 0.3s;
	transition: background 0.3s;
}

header.fixed_header {
	background-color: #030921;
}

header .logo img {
	max-width: 115px;
	width: 100%;
}

#menu {
	text-align: right;
}

#menu li {
	display: inline-block;
	color: #fff;
	padding: 0 15px;
}

#menu li a {
	font-size: 17px;
	letter-spacing: 0.5px;
	font-weight: 500;
	color: #fff;
	position: relative;
	padding: 0;
}

#menu li:last-child {
	padding-right: 0;
}

#menu li a::before {
	position: absolute;
	content: "";
	top: 13px;
	left: 0;
	height: 100%;
	width: 0;
	pointer-events: none;
	background-image: url(../img/wave.png);
	background-size: 43px;
	background-position: -200px 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: 15px;
	display: none;
	z-index: 999;
	top: -15px;
}

.hamburger-menu span {
	background: #ffffff;
	width: 30px;
	height: 3px;
	display: block;
	margin: 5px 0;
	border-radius: 5px;
	-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 {
	min-height: 100vh;
	width: 100%;
	padding-top: 145px;
	padding-bottom: 70px;
	background-size: cover;
	background-position: center center;
	background-color: #073683;
	position: relative;
}

.landing_wrapper::before {
	content: ' ';
	position: absolute;
	top: 0;
	left: 0;
	background-color: #000210;
	width: 100%;
	height: 100%;
	opacity: 0.8;
	mix-blend-mode: hard-light;
	}
.landing_wrapper .heading {
	font-size: 50px;
	line-height: 1.2;
	font-weight: bold;
	max-width: 34rem;
	margin-left: auto;
	margin-right: auto;
}

.landing_wrapper .sub_heading {
	max-width: 770px;
	font-size: 20px;
}

.landing_wrapper .home_btn_wrapper .button {
	margin: 8px;
}

/*video slider*/

.hero_slider .owl-item.active .landing_wrapper h1,
.hero_slider .owl-item.active .landing_wrapper p,
.hero_slider .owl-item.active .landing_wrapper a {
  top: 0;
  opacity: 1;
  position: relative;
}

.hero_slider .owl-item.active .landing_wrapper h1 {
  -webkit-transition: all 0.4s ease 0.4s;
  -o-transition: all 0.4s ease 0.4s;
  transition: all 0.4s ease 0.4s;
}
.hero_slider .owl-item.active .landing_wrapper p {
  -webkit-transition: all 0.6s ease 0.6s;
  -o-transition: all 0.6s ease 0.6s;
  transition: all 0.6s ease 0.6s;
}

.hero_slider .owl-item.active .landing_wrapper .home_btn_wrapper  {
  -webkit-transition: all 0.7s ease 0.7s;
  -o-transition: all 0.7s ease 0.7s;
  transition: all 0.7s ease 0.7s;
  position: relative;
  top: 0;
  opacity: 1;
}

.hero_slider .owl-item .landing_wrapper h1,
.hero_slider .owl-item .landing_wrapper p {
  top: 50px;
  opacity: 0;
  position: absolute;
}

.hero_slider .owl-item .landing_wrapper .home_btn_wrapper  {
  top: 100px;
  opacity: 0;
  position: absolute;
}

.hero_slider .owl-nav button{
	height: 50px;
    width: 40px;
    border-radius: 0px 5px 5px 0px;
    background: #0070ee !important;
    color: #ffffff !important;
    font-size: 25px !important;
    position: absolute;
    top: calc(50% + 15px);
    left: 0;
}

.hero_slider .owl-nav button.owl-next{
    left: auto;
    right: 0;
    border-radius: 5px 0px 0px 5px;
}

#particles-js {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}


/*======================
   06. About Wrapper
========================*/

.about_wrapper img {
	width: 100%;
}

.about_img_wrapper {
	padding: 0 20px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.about_img_wrapper::before {
	position: absolute;
	content: '';
	top: -20px;
	left: 0;
	border-top: 200px solid #0070ee;
	border-right: 250px solid transparent;
	z-index: -1;
}

.about_img_wrapper::after {
	position: absolute;
	content: '';
	bottom: -20px;
	right: 0;
	border-bottom: 200px solid #0070ee;
	border-left: 250px solid transparent;
	z-index: -1;
}

.about_wrapper .title_2 {
	margin-bottom: 20px;
	margin-left: 0;
}

.about_wrapper p,
.about_wrapper h4 {
	color: #0b1a39;
}

.title_top {
	color: #0070ee !important;
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.about_wrapper h4 {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 10px;
}

.about_wrapper span {
	font-size: 35px;
	color: #0070ee;
	font-weight: bold;
}


/*======================
   07. Service Wrapper
========================*/

.service_wrapper {
	background-color: #f6f6f6;
}

.service_box {
	text-align: center;
	padding: 40px 30px;
	border-radius: 10px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	background-color: #ffffff;
	height: 100%;
}

.service_box:hover {
	border-color: #fff;
	-webkit-box-shadow: 0px 4px 17px #eaeaea;
	box-shadow: 0px 4px 17px #eaeaea;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.service_box .service_icon {
	position: relative;
	margin: 0 auto;
	font-size: 32px;
	height: 80px;
	width: 80px;
	color: #fff;
	z-index: 1;
	text-align: center;
	line-height: 80px;
	border: 2px dashed #0070ee;
}

.service_box .service_icon::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 76px;
	height: 76px;
	border-radius: 15px;
	background-color: #0b1a39;
	-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: #0070ee;
}

.service_box:hover .service_icon {
	border-color: transparent;
}

.service_box .title {
	font-size: 22px;
	color: #0b1a39;
	font-weight: bold;
}


/*======================
   08. Banner Wrapper
========================*/

.banner_wrapper {
	padding: 60px 0;
	background-size: cover;
	background-position: center center;
	position: relative;
	background-attachment: fixed;
}

.banner_wrapper .title_1,
.banner_wrapper .title_2 {
	max-width: 100%;
	color: #fff;
}

.banner_wrapper::before {
	content: ' ';
	position: absolute;
	top: 0;
	left: 0;
	background-color: #000000;
	width: 100%;
	height: 100%;
	opacity: 0.61;
}

.banner_button_wrapper {
	text-align: right;
}


/*======================
   09. Grow Wrapper
========================*/

.grow_wrapper .title_1 {
	margin-left: 0;
}

.grow_wrapper .title_2 {
	margin-left: 0;
}

.grow_wrapper .technics li {
	padding-left: 25px;
	position: relative;
	margin-top: 15px;
}

.grow_wrapper .technics li::before,
.grow_wrapper .technics li::after {
	position: absolute;
	content: '';
	left: 0;
	top: 7px;
	height: 10px;
	width: 10px;
	background-color: #0070ee;
}

.grow_wrapper .technics li::after {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
/*==================
   16. Contact Wrapper
====================*/

.contact_wrapper {
	background-image: url(../img/map.svg);
	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: 1px solid #e8e8e8;
}

aside {
	border: 1px solid #e6e6e6;
	padding: 30px;
	height: 100%;
	background-color: #ffffff;
}

aside h4 {
	line-height: 0.8;
	border-bottom: 1px solid #d6cece;
	padding-bottom: 15px;
	color: #000000;
}

aside .address ul li {
	border-bottom: 1px solid #f3f0f0;
	margin: 15px 0 0;
	padding-bottom: 15px;
}

aside .address ul li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

aside .address ul li a {
	display: block;
	color: #687c94;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

aside .address ul li a:hover {
	color: #0070ee;
}

aside ul li strong {
	color: #000000;
	position: relative;
	padding-left: 15px;
	margin-bottom: 5px;
	display: inline-block;
}

aside ul li strong::before {
	position: absolute;
	content: '';
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	background-color: #0070ee;
}

.inputBox,
.textBox {
	height: 45px;
	width: 100%;
	padding: 0 15px;
	border: 1px solid #e6e6e6;
	background-color: #ffffff;
	font-size: 16px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.textBox {
	height: 170px;
	resize: none;
	padding-top: 10px;
}

.inputBox:focus,
.textBox:focus {
	border-color: #0070ee;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.contact_wrapper .button {
	width: 100%;
	border-radius: 0;
}


/*====================
   17. Footer Wrapper
======================*/

footer {
	background-color: #030921;
	font-size: 16px;
	color: #fff;
	padding: 10px 0 30px 0;
}

footer .social_icons li {
	display: inline-block;
	margin-left: 5px;
}

footer .social_icons li:first-child {
	margin-left: 0px;
}

footer .social_icons li a {
	height: 40px;
	width: 40px;
	display: inline-block;
	line-height: 40px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.06);
	text-align: center;
	color: #ffffff;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

footer .social_icons li a:hover {
	color: #0070ee;
}

.back-to-top.button {
	font-size: 24px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	line-height: 40px;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 80px;
	right: 10px;
	z-index: 1000;
}

/*demo css*/
.demo_wrapper{
	padding: 30px 0 60px 0;
}
.demo_box{
	display: inline-block;
	text-align: center;
	border: 1px solid #f4f4f4;
	background-color: #f4f4f4;
	font-size: 22px;
	font-weight: 600;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.demo_box:hover{
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 0 10px 15px #d4d3d3;
    box-shadow: 0 10px 15px #d4d3d3;
}

.demo_box p{
	padding: 20px 15px;
	color: #0070ee;
}