body, html {
  margin: 0;
  scroll-behavior: smooth;
  font-family: 'Open Sans', sans-serif;
}
body, p {
  color: #393939;
  font-size: 16px;
}
h2 {
  font-size: 32px;
  text-align: center;
  color: #428dff;
  margin-bottom: 20px;
}
h3 {
  font-size: 30px;
}
h2 span {
  color: #333;
}
a {
  color: #428dff;
}
.col-6 {
  width: 50%;
}
.col-8 {
  width: 60%;
}
.col-4 {
  width: 40%;
}
img{
	max-width:100%;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
section {
  padding: 60px 0;
  box-sizing: border-box;
}
.container {
  max-width: 1180px;
  padding: 0 20px;
  margin: auto;
  box-sizing: border-box;
}

.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.vcenter {
  align-items: center;
}
.hcenter {
  justify-content: center;
}
.space-between {
  justify-content: space-between;
}


.download-button {
  background: #1B3C75;
  border: 0;
  border-radius: 50px;
  padding: 12px 65px;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  margin: auto;
  max-width: 300px;
  cursor: pointer;
  transition:.4s all ease;
}
.download-button:hover {
  background: #428dff;
  
  color:#fff;
}
.left_details{
  text-align: left;
}
.left_details .download-button{
  margin: 0;
  text-align: center;
}
header {
  width: 100%;
  background: #cee2fffc;
  position: sticky;
  top: 0;
  z-index: 1;
  box-shadow: 0px 0px 5px 0px #1b3c75;
}
header .logo {
  width: 200px;
  margin: 10px 0;
}
header .logo img {
  width: 100%;
}
.menu a{
	background: #1b3c75;
	border: 0;
	border-radius: 50px;
	padding: 8px 20px;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	max-width: 150px;
	transition:.4s all ease;
}
.menu a:hover{
	background: #428dff;
	color:#fff;
}
.banner {
  background: url("../images/banner_top.png");
  background-attachment: fixed;
  text-align: center;
  background-size: cover;
}
.banner figure {
  text-align: center;
}
.banner figure img {
  max-width: 100%;
  box-shadow: 0px 0px 20px 8px #428dff52;
  border-radius: 20px;
}
.banner .inner_banner {
  background: #FFDB00;
}
.banner .inner_banner h1 {
  color: #fff;
  padding: 50px 0px;
}
.banner section{
	background: #0000005e;
}
.support {
  width: 218px;
  height: 45px;
  font-weight: bold;
  color: #ffffff;
  display: inline-block;
  line-height: 45px;
}
.banner_left ul {
  margin-bottom: 40px;
  padding: 0;
  color: #fff;
}
.banner_left ul li {
  list-style: none;
  text-align: left;
  margin-right: 15px;
  position: relative;
}
.banner_left ul li:first-child::before {
  /* content: ''; */
  background: #D8D8D8;
  width: 3px;
  height: 100px;
  position: absolute;
  left: 30px;
  top: 60px;
}
.banner_left .left_details ul:nth-child(3) li:first-child::before {
  display: none
}
.banner_left ul li span {
  width: 40px;
  height: 40px;
  background: url(../images/icon.png) center center;
  background-size: 70px 70px;
  display: inline-block;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
  line-height: 40px;
  text-align: center;
  transition: .4s all cubic-bezier(0.44, -0.06, 0.51, 1.8);
}
.banner_left ul li h4 {
  margin: 0;
  padding: 0;
  font-size: 22px;
}
.banner_left ul li p {
  margin: 0;
  padding: 0;
  color: #fff;
}
.banner_left ul:hover li span{
	margin-top:-5px;
}
.download_now {
  background: #F1F1F1;
}
.services {
  border-radius: 10px;
  margin: 10px;
  padding: 15px 50px;
}
.note{
	max-width: 410px;
    margin: 25px auto 0px;
	font-size:12px;
}
.contact-section{background: #cee2ff;text-align: center;}
footer {
  font-size: 14px;
  text-align: center;
  padding: 10px 10px 5px;
  position: relative;
  background: #000000;
}
footer p {
  font-size: 14px;
  color: #fff;
}
footer ul {
  display: flex;
  padding:0;
  justify-content: center;
}
footer ul li {
  list-style: none;
  margin: 0px 10px;
}
footer ul li a {
  text-decoration: none;
  color: #fff;
  opacity: 0.75;
}
footer ul li a:hover {
  opacity: 1;
}

@media screen and (max-width:1024px) {
	.container{
		padding:0 10px;
	}
  .col-6, .col-8, .col-4{
    width:100%;
  }
  .download-button {
		padding: 12px 40px;
		font-size: 20px;
	}
  .download_now figure{
    width:33%;
    margin:0;
  }
  .download_now figure img{
    width:100%;
  }
  .services {
    padding: 15px;
	}
  footer{
	padding:1px;
  }
  footer .container{
    justify-content: center;
  }
}

@media screen and (max-width:480px) {
	footer p, footer{
		font-size:12px;
	}
	header .logo {
		width: 50px;
		overflow: hidden;
	}
	header .logo img {
		width: auto;
		height: 50px;
		max-width: none;
	}
}