/* <!-- Demo styles --> */
   
/* body {
    position: relative;
    height: 100%;
  }

  body {
    background: #eee;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
  } */
  
  .swiper {
    width: 100%;
    height: 100%;
    /* z-index: -1; */
  }
  /*weave css*/
.river-wave-area {
  width: 100%;
  position: relative;
  bottom: 0;
  left: 0;
  /* z-index: -1000; */
}

.river-wave {
  background: url('../img/wave.svg') repeat-x;
  position: absolute;
  top: -100px;
  width: 6400px;
  height: 100px;
  animation: river-wave 35s cubic-bezier( 0.36, 0.45, 0.63, 0.53) infinite;
  transform: translate3d(0, 0, 0);
}
.river-wave:nth-of-type(2) {
  top: -56px;
  animation: river-wave 20s cubic-bezier( 0.36, 0.45, 0.63, 0.53) -.125s infinite, swell 7s ease -1.25s infinite;
  opacity: 1;
}
@keyframes river-wave {
  0% {
      margin-left: 0;
  }
  100% {
      margin-left: -1600px;
  }
}
@keyframes swell {
  0%, 100% {
      transform: translate3d(0,-45px,0);
  }
  50% {
      transform: translate3d(0,5px,0);
  }
}

/* //fin wave */

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    /* background: #fff; */
    background-color: #08AEEA;
background-image: linear-gradient(0deg, #08AEEA 0%, #05d405 100%);

    
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* mi css */
  .hero-container{
      width: 80%;
      display: flex;
      align-items: center;
  }
  .hero-img{
      width: 60%;
      height: 60%;
      margin-top: 40px;
  }
  .hero-text{
      width: 80%;
      margin-bottom: 50px;
  }
  .hero-title {
    font-size: 3.2rem;
    margin-bottom: 30px;
    color: #fff;
    margin-top: 10px;
    margin-left: 20px;
  }
  .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin: 15px 20px;
    text-align: justify;
    line-height: 35px;
    color:#eee;
    padding: 10px;
    /* text-indent: 30pt; */
  }
  .hero-cta {
    display: inline-block;
    background: #fff;
    padding: 15px 15px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 40px;
    border: solid 2px #0edfd4;
    color: #0bce2c;
    margin-top: 20px;
    font-weight: 600;

    z-index: 1000;
  }

  /* //mobile firt */
  @media screen and (max-width: 768px) {
    .hero-img {
        display: none;
        
    }
   
      .hero-text{
        width: 100%;
        margin-bottom: 50px;
    }
    .hero-container{
        width: 100%;
        display: flex;
        align-items: center;
    } 
}