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: #FFDB00;
  margin-bottom: 20px;
}
h3 {
  font-size: 30px;
}
h2 span {
  color: #333;
}
a {
  color: #0F539E;
}
.col-6 {
  width: 50%;
}
.col-8 {
  width: 60%;
}
.col-4 {
  width: 40%;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
section {
  padding: 60px 0;
  box-sizing: border-box;
  background: #f1f1f1;
}
.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: #FFDB00 0% 0% no-repeat padding-box;
  border: 2px solid #4E4300;
  border-radius: 50px;
  padding: 12px 65px;
  color: #002136;
  text-decoration: none;
  font-size: 24px;
  margin: auto;
  max-width: 300px;
  cursor: pointer;
  transition:.4s all ease;
}
.download-button:hover {
  background:#002136;
  border: 2px solid #002136;
  color:#fff;
}
.left_details{
  text-align: left;
}
.left_details .download-button{
  margin: 0;
  text-align: center;
}
header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: #ffffffeb;
	position: sticky;
	top: 0;
	z-index: 1;
}
header .logo {
  width: 200px;
}
header .logo img {
  width: 100%;
}
.menu a{
	background: #FFDB00;
	border: 1px solid #4E4300;
	border-radius: 50px;
	padding: 8px 20px;
	color: #002136;
	text-decoration: none;
	font-size: 16px;
	max-width: 150px;
	transition:.4s all ease;
}
.menu a:hover{
	background: #002136;
	color:#fff;
}
.banner {
  background: url("../images/bg.png");
  text-align: center;
  padding: 10px 0px 0px;
}
.banner figure {
  text-align: center;
}
.banner figure img {
  max-width: 100%;
}
.banner .inner_banner {
  background: #FFDB00;
}
.banner .inner_banner h1 {
  color: #fff;
  padding: 50px 0px;
}
.banner section{
	background:transparent;
}
.support {
  width: 218px;
  height: 45px;
  background: #002136;
  color: #fff;
  display: inline-block;
  line-height: 42px;
}
.banner_left ul {
  margin-bottom: 40px;
  padding: 0;
}
.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: 60px;
  height: 60px;
  background: #FFDB00;
  display: inline-block;
  border-radius: 50%;
  font-size: 36px;
  color: #4E4300;
  line-height: 60px;
  text-align: center;
}
.banner_left ul li h4 {
  margin: 0;
  padding: 0;
  font-size: 22px;
}
.banner_left ul li p {
  margin: 0;
  padding: 0;
}
.download_now {
  background: #F1F1F1;
}
.store-link{
  text-decoration: none;
}
.services {
  border: 2px solid #ccc;
  border-radius: 10px;
  margin: 10px;
  padding: 15px 50px;
  background:#fff;
}
footer {
  font-size: 14px;
  text-align: center;
  padding: 10px 10px 5px;
  position: relative;
  background:#002136;
}
footer p {
  font-size: 14px;
  color: #fff;
}
footer ul {
  display: flex;
  padding:0;
}
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_now figure{
    width:33%;
    margin:0;
  }
  .download_now figure img{
    width:100%;
  }
  footer{
	padding:0;
  }
  footer .container{
    justify-content: center;
  }
}