* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: normal;
}

a,
a:hover,
a:active {
  text-decoration: none;
}


/*
--------------------------------------------------------------------------------------------
//header
--------------------------------------------------------------------------------------------
*/
.header {
  width: 100%;
  height: 600px;
  background: #f1f7ff;
}

.header-left {
  margin-top: 160px;
}


.header-right {
  margin-top: 50px;
}

.header_title {
  font-size: 45px;
  font-weight: 400;
  color: #1e3056;
  line-height: 55px;
  margin: 0;
  padding: 0;
}

.header_text {
  font-size: 16px;
  font-weight: 400;
  color: #697ba2;
  line-height: 26px;
  padding: 0;
  margin: 10px 0 30px;
}

.btn-1 {
  background: linear-gradient(to right, #507bf5 0%, #04c3e1 100%);
  box-shadow: 1px 1px 30px 0 rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: #ffffff;
  border-radius: 65px;
  padding: 10px 45px;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
}

.btn-1:hover {
  color: #fff;
}

.btn-2 {
  background: transparent;
  border: 1px solid #1e3056;
  text-decoration: none;
  color: #1e3056;
  border-radius: 65px;
  padding: 10px 45px;
  margin-left: 15px;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
}


/*---------------------------feature----------------------------------*/
.feature {

  background: url("https://jaxa.netlify.com/home-1/img/bg/feature-bg.png") top center no-repeat;
  background-size: cover;
  padding: 120px 0;
}

.feature_header {
  argin-bottom: .5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
  font-size: 2rem;
}

.feature_item {
  background: #ffffff;
  box-shadow: 1px 1px 25px 0 rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  padding: 60px 30px;
  transition: all .4s ease-in-out;
  margin-top: 50px;
}

.feature_item:hover{
  transform: translateY(-15px);
  box-shadow: 1px 1px 25px 0 rgba(0,0,0,0.09);
}


.feature_title {
  font-size: 20px;
  color: #3b566e;
  font-weight: 600;
  margin: 25px 0 15px;
  padding: 0;
}

.feature_text {
  font-size: 15px;
  font-weight: 400;
  color: #919aaf;
  line-height: 26px;
  margin: 0;
  padding: 0;
}


/*---------------------------counter----------------------------------*/
.counter-area {
  background: url("https://jaxa.netlify.com/home-1/img/bg/some-facts.png") center center no-repeat;
  background-size: cover;
  padding: 120px 0;
}

.counter {
  color: #ffffff;
  font-size: 30px;
  font-weight: 800;
 padding-top: 5px;
}

.counter_item{
  margin-top: 30px;
}
.counter_text {
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
  padding: 0;
  margin: 0;
}

.footer{
  padding: 60px 0;
    background: #2e3444;
    color:#fff;
}

/*---------------------------responsisve----------------------------------*/

@media (max-width: 768px) { 

  .header-left {
    margin-top: 20px;
  }
  .header_title {
    font-size: 25px;
    line-height: 40px;
    font-weight: bold;
  }
  .btn-1{
    display: inline-block;
    margin-bottom: 20px;
  }
  .btn-2{
    display: inline-block;
    margin-left: 0px;
  }

  .counter-area {
    padding:50px 0px;
  }
}