



@import url('https://fonts.googleapis.com/css?family=Poppins:400,400i,500,500i,600,600i,700,700i&display=swap');


@import url('owl.css');
@import url('font-awesome.css');
@import url('flaticon.css');
@import url('animate.css');




/*=================     main header style  ==================*/

.main-header {
	position: absolute;
	padding: 0 90px;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
}

.main-header .logo {
	margin: 30px 0;
}

.main-header .logo img {
    width: auto;
}

.main-header ul li {
	margin: 42px 24px;
	display: inline-block;
}

.main-header ul li a {
	color: #fff;
	font-size: 16px;
	font-weight:  600;
	transition: all 500ms ease;
}

.main-header ul li a:hover{
	color: #6377ee;
}

.main-header .menu,
.main-header .link-btn {
	display: inline-block;
}

.main-header .link-btn .btn-style-one {
	margin-left: 75px;
	background: rgba(255, 255, 255, 0.19);
	border-color: #31322e52;
}

.main-header .link-btn .btn-style-one:hover {
	border-color: #6377ee;
	background-color: #6377ee;
}

/*========== responsive =========*/

@media only screen and (max-width: 1300px) {
	.main-header {
	    padding: 0 20px;
	}
	.main-header ul li {
	    margin: 42px 10px;
	}
}

@media only screen and (max-width: 1024px) {
	.main-header .pull-left,
	.main-header .pull-right {
	    float: inherit!important;
	}
	.main-header ul li {
	    margin: 30px 10px;
	}
	.main-header .logo {
	    margin: 20px 0 0;
	    text-align: center;
	}
	.main-header .link-btn .btn-style-one {
		margin-left: 0px;
	}
}

@media only screen and (max-width: 767px) {
	.main-header ul {
		text-align: center;
	}
	.main-header ul li {
	    margin: 30px 10px 0;
	}
	.main-header .link-btn {
	    text-align: center;
	    display: block;
	    margin: 30px 0px;
	}
	.main-header .link-btn .btn-style-one {
		margin-left: 0px;
	}

}




/*=================     banner style  ==================*/


.banner-two {
    position: relative;
    text-align: center;
    padding: 280px 0 230px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.banner-two:before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 9;
}

.banner-two .banner-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 170%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
}

.banner-two .box {
	position: absolute;
}

.banner-two h2 {
	position: relative;
	z-index: 10;
	color: #fff;
	font-weight: 700;
	font-size: 55px;
	line-height: 70px;
	text-transform: capitalize;
}

.banner-two h3 {
	position: relative;
	z-index: 10;
	color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.banner-two .theme-btn {
	position: relative;
	z-index: 10;
	line-height: 29px;
}

.banner-two .theme-btn:hover {
	background: #222;
	color: #fff;
}

@-webkit-keyframes banner-animate {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }

  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }
}

@keyframes banner-animate {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }

  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }
}

.banner-animate {
    animation-name: banner-animate; 
    animation-duration: 70s; 
    animation-iteration-count: infinite;
    animation-timing-function: linear;
	
	-webkit-animation-name: banner-animate; 
    -webkit-animation-duration: 70s; 
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
	
	-moz-animation-name: banner-animate; 
    -moz-animation-duration: 70s; 
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
	
	-ms-animation-name: banner-animate; 
    -ms-animation-duration: 70s; 
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
	
	-o-animation-name: banner-animate; 
    -o-animation-duration: 70s; 
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}



/* feature text */

.feature-text {
	position: relative;
	padding: 90px 0;
	background-color: #f7f9f8;
}

.feature-text .feature-text-block {
	position: relative;
	padding: 0 80px;
}

.feature-text .feature-text-block h2 {
	font-weight: 600;
	margin-bottom: 20px;
}


/* main demo */

.main-demo {
	position: relative;
	background: #f1f9ff;
	padding: 100px 0 50px;
}

.main-demo .image {
    position: relative;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    margin: 0 5px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.tran-4{
	transition: 4s ease;
}

.main-demo .image:hover{
	background-position: bottom center;
}

.main-demo .image a{
    position: relative;
    height: 450px;
    display: block;
}

.main-demo h3 {
	position: relative;
	display: block;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	margin-top: 40px;
	margin-bottom: 65px;
}

.main-demo h3 a:hover {
	color: #6377ee;
}

.main-demo h3 a {
	display: inline-block;
	color: inherit;
	transition: all 500ms ease;
}

.responsive-section{
	position: relative;
	padding: 100px 0px;
	background: #6477ef;
}

.responsive-section h2{
	position: relative;
	display: block;
	font-size: 55px;
	line-height: 70px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 50px;
	text-align: center;
}

.responsive-section .image{
	position: relative;
	display: block;
	text-align: center;
	margin-bottom: 30px;
}

.responsive-section .text{
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-weight: 400;
	color: #fff;
	text-align: center;
}

.feature{
	position: relative;
	padding: 100px 0px 70px 0px;
}

.feature h2{
	position: relative;
	display: block;
	font-size: 36px;
	line-height: 45px;
	font-weight: 700;
	color: #222;
	margin-bottom: 50px;
	text-align: center;
}

.feature .feature-block-two {
    position: relative;
    margin-bottom: 30px;
    padding: 50px 30px;
    text-align: center;
    min-height: 330px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
}

.feature .feature-block-two .image {
    min-height: 75px;
}

.feature .feature-block-two span {
    color: #6377ee;
    font-size: 45px;
}

.feature .feature-block-two h4 {
    font-weight: 700;
    margin-bottom: 20px;
}

.feature .text {
    font-size: 16px;
    font-weight: 300;
    color: #747474;
}


.footer {
	position: relative;
	text-align: center;
	padding: 206px 0;
	overflow: hidden;
	background-position:  top center;
	background-repeat:  no-repeat;
	background-size:  cover;
}

.footer:before{
	position: absolute;
	content: '';
	background: rgba(0, 0, 0, 0.80);
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}

.footer .overlay {
	position: absolute;
	top: 60px;
	left: 100px;
}

.footer h2 {
	color: #fff;
	font-weight: 700;
	font-size: 48px;
	line-height: 55px;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.footer .link-btn .btn-style-one {
	background: transparent;
	border-color: #ffffff;
	color: #fff;
}

.footer .link-btn .btn-style-one:hover {
	border-color: #6377ee;
	background-color: #6377ee;
	color: #fff;
}

.footer .text {
	position: relative;
	color: #fff;
	margin-bottom: 35px;
	font-size:  26px;
	line-height: 36px;
}


.float-bob-y{
	max-width: none;
	float: right;
	margin-bottom: -236px;
	margin-top: -170px;
	position:  relative;
	z-index: 9;
	animation-name: float-bob-y;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: float-bob-y;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: float-bob-y;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob-y;
    -ms-animation-duration: 2s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob-y;
    -o-animation-duration: 2s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}


@media (min-width: 1200px) {
	.header-style .container {
		width: 1600px;
	}
}

.header-style .image {
	position: relative;
	box-shadow: 0px 5px 35px 0px rgba(4, 4, 4, 0.07);
	margin-bottom: 90px;
}

@media only screen and (max-width: 767px) {
	.responsive .image img {
	    margin: 0;
	    width: 100%;
	}
	.feature .image img {
	    margin: 0;
	    width: 100%;
	}

	.main-header .menu, .main-header .link-btn{
		display: block;
	}

	.responsive-section .image-box .image-2{
		display: none;
	}

	.responsive-section .image-box img{
		width: 100%;
	}

	.banner-two h2{
		font-size: 36px;
		line-height: 45px;
	}

	.btn-style-one{
		padding: 10px 20px;
	}

	.banner-two{
		padding-bottom: 120px;
	}

	.responsive-section h2{
		font-size: 30px;
		line-height: 40px;
		margin-bottom: 50px;
	}

	.footer{
		padding: 150px 0px;
	}
}