@import url('https://fonts.googleapis.com/css?family=Montserrat:300,300i,400,400i,500,500i,600,700,800,900%7CPoppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,900');


* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding:0;
}

html{
	font-size: 16px;
}

body{
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #99a1af;
	overflow-x: hidden;
	line-height: 1.2;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6{
	font-family: 'Poppins', sans-serif;
}

section{
	position: relative;
}

a,
a:hover{
	text-decoration: none;
}

p{
	line-height: 1.75;
	margin-bottom: 1.38em;
}

.s-title{
	position: relative;
	display: block;
	width: 100%;
	text-align: center;
	margin-bottom: 70px;
}

.s-title h2{
	font-size: 30px;
	font-weight: 700;
	color: #252a32;
	margin-bottom: 0;
}

.s-title p{
	font-size: 18px;
	color: #99a1af;
	margin-bottom: 0;
}

.s-title::after{
	content: "";
	position: absolute;
	display: block;
	width: 50px;
	height: 2px;
	bottom: -23px;
	left: 50%;
	background: -webkit-linear-gradient(left, #1a6fb6 0%,#2286DB 100%);
	background: linear-gradient(to right, #2286DB 0%,#1a6fb6 100%);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.overlay{
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.bg-img{
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.bg-color{
	background-color: white;
}

.bg-1{
	background-image: url(../images/bg1.jpg);
}

.bg-2{
	background-image: url(../images/bg2.jpg);
}

.btn{
	font-size: 15px;
    font-weight: 500;
    color: #fff;
    background: transparent;
    border-radius: 4px;
    border: 1px solid #fff;
    padding: 1.1em;
    min-width: 180px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: .2s cubic-bezier(0.43, 0.49, 0.51, 0.68);
    transition: .2s cubic-bezier(0.43, 0.49, 0.51, 0.68);
}

.btn:hover,
.btn.fill-style{
	color: #1a6fb6;
	background-color: #fff;
}

.btn.fill-style:hover{
	opacity: .95;
}

.btn:focus{
	box-shadow: none;
}

.btn-wrapper .btn{
	margin-right: 18px;
	margin-bottom: 15px;
}

@media (min-width: 1230px){
	.container {
	    max-width: 1200px;
	}
}

.s-padding{
	padding-top: 110px;
	padding-bottom: 110px;
}

.landing-banner{
	padding-top: 230px;
	padding-bottom: 230px;
	position: relative;
	color: #fff;
}

.landing-banner .overlay{
	background-color: #1a6fb6;
    opacity: .75;
}

.landing-banner-content .lb-logo{
	position: relative;
	margin-bottom: 35px;
}

.landing-banner-content .lb-logo:after{
	content: "";
	width: 540px;
	height: 1px;
	background-color: #fff;
	opacity: .1;
	display: block;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 15px;
}

.landing-banner-content .lb-logo img{
	max-width: 50%;
	height: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.landing-banner-content .lb-title{
	font-size: 40px;
	font-weight: 700;
	margin-bottom: .65em;
}

.landing-banner-content h5{
	font-size: 16px;
	font-weight: 400;
}

.landing-banner-content .btn-wrapper{
	margin-top: 60px;
}

.demo-item{
	position: relative;
	text-align: center;
	margin-bottom: 70px;

}

.demo-item .badge{
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: block;
	line-height: 44px;
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	text-align: center;
	position: absolute;
	top: -25px;
	left: -10px;
	background-color: #f51717;
}

.demo-item.coming-soon{
	pointer-events: none;
}

.demo-item .demo-img{
	box-shadow: 0px 10px 30px 0px rgba(2, 13, 70, 0.1);
	-webkit-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
	margin-bottom: 30px;
}

.demo-item:hover .demo-img{

	box-shadow: 0px 2px 2px 0px rgba(2, 13, 70, 0.06);
}

.demo-item .demo-img img{
	width: 100%;
	height: auto;
	display: block;

}

.demo-item span{
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	color: #444e55;
	-webkit-transition: .15s ease-in-out;
	transition: .15s ease-in-out;
}

.demo-item:hover span{
	color: #1a6fb6;
}

.demo-item span:after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    background: #1a6fb6;
    left: 0;
    top: 50%;
    -webkit-transform: scaleX(0) translateY(-50%);
    transform: scaleX(0) translateY(-50%);
    transform-origin: right center 0;
    -webkit-transition: 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.demo-item:hover span:after {
    -webkit-transform: scaleX(1) translateY(-50%);
    transform: scaleX(1) translateY(-50%);
    transform-origin: left center 0;
    transition: transform 0.3s ease-in-out;
}

.demo-pages{
	margin-bottom: 10px;
}

.demo-pages,
.bonus-pages{
	padding-bottom: 40px;
}

.lp-feature-item{
	position: relative;
	padding: 40px 25px 20px 25px;
	text-align: center;
	border: 1px solid #eff1f7;
	border-radius: 4px;
	height: 100%;
	-webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

.lp-feature-item:hover{
	background-color: #1a6fb6;
	border-color: #1a6fb6;
}

.lp-feature-item .item-icon{
	margin-bottom: 30px;
}

.lp-feature-item .item-icon svg,
.lp-feature-item .item-icon svg path{
	display: inline-block;
	-webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

.lp-feature-item .title{
	font-size: 16px;
	font-weight: 600;
	color: #484B53;
	margin-bottom: 1em;
	-webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

.lp-feature-item p{
	font-family: 'Montserrat', sans-serif;
	color: #848490;
	font-size: 14px;
	line-height: 1.9;
	-webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

.lp-feature-item:hover .title,
.lp-feature-item:hover p{
	color: #fff;
}

.lp-feature-item:hover svg,
.lp-feature-item:hover svg path{
	fill: #fff;
}

.landing-feature>.container>.row>[class*=col-]{
	margin-bottom: 40px;
}

.landing-footer{
	position: relative;
}

.landing-footer .overlay{
	background-color: #1a6fb6;
    opacity: .75;
}

.footer-content{
	position: relative;
	text-align: center;
	color: #fff;
	padding-top: 100px;
	padding-bottom: 90px;
}

.footer-content h2{
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 22px;
}

.footer-content .btn{
	color: #1a6fb6;
	background-color: #ffffff;
	border-color: #e9ecef;
	min-width: 270px;
	max-width: 100%;
	margin-top: 32px;
}

.footer-content .btn:hover{
	background-color: #1a6fb6;
	border-color: #ffffff;
	color: #fff;
}

.landing-copyright{
	text-align: center;
	border-top: 1px solid rgba(255,255,255,.06);
	padding-top: 20px;
	padding-bottom: 20px;
}

.landing-copyright p{
	margin-bottom: 0;
	color: #fff;
	font-size: 12px;
}