* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
/* ------- Header background --------*/

.container-fondo {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.fondo {
  background-image: url("/files/site/product/background-product.png");
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.button {
  position: relative;
  left: 142px;
  bottom: 150px;
}

/* --------- Main --------- */

section {
  width: 90%;
  margin: 140px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* -------- Section One ---------- */

.section-one {
  display: block;
  position: relative;
}

.section-one div {
  width: 70%;
}

.section-one img:nth-of-type(1) {
  position: absolute;
  width: 30%;
  bottom: 50%;
  left: 73%;
  animation: float 6s ease-in-out infinite;
}

.section-one img:nth-of-type(2) {
  position: absolute;
  width: 24%;
  left: 70%;
  animation: float 6s ease-in-out infinite;
  mix-blend-mode: multiply;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-30px);
  }
  100% {
    transform: translatey(0px);
  }
}

/* -------- Section Two ---------- */

.section-two{
  margin: 140px 0 140px auto;
  width: 95%;
}

.section-two .one-time img{
  margin: 0 10px;
}

.section-two .slick-slider {
  width: 100%;
}

.section-two .slick-arrow {
  display: none !important;
}

.section-two .slick-dots {
  bottom: -70px;
}

.section-two .slick-dots li button {
  color: #ededed;
  width: 18px;
  height: 18px;
  border-radius: 18px;
}

.section-two .slick-dots li button:before {
  color: #a3d55e;
}

.section-two img {
  width: 100%;
}

.section-two .slick-dots li button {
  width: 20px;
  height: 20px;
  background: #ededed;
  color: #ededed;
  border-radius: 20px;
}

.section-two .slick-dots li button:before {
  width: 20px;
  height: 20px;
  background: #ededed;
  color: #ededed;
  border-radius: 20px;
}
.section-two .slick-dots li.slick-active button:before {
  color: #a3d55e;
  background: #a3d55e;
}

/* -------- Section Three ---------- */

.section-three {
  background: #072e68;
  width: 100%;
  padding: 70px 0;
  margin-bottom: 0;
}

.container-section-three {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

.container-cards-section-three {
  display: flex;
  justify-content: space-between;
}

.container-info-section-three {
  background: #bbe77e;
  padding: 130px 30px;
  width: 30%;
  border-radius: 16px;
}

.container-section-three img {
  margin-right: 50px;
}

.container-info-section-three h3,
.container-info-section-three h1 {
  text-align: left;
  padding: 0;
}

.container-info-section-three h3 {
  font-size: 38px;
  color: #2b4901;
  font-weight: 600;
}

.container-info-section-three h1 {
  color: white;
  font-size: 60px;
  font-weight: 600;
}

.container-info-section-three p {
  padding-top: 30px;
}

/* -------- Section Four ---------- */

.section-four {
  width: 100%;
  margin: 0;
}

.section-four img {
  width: 100%;
}

/* -------- Section Five ---------- */

.section-five {
  width: 100%;
  margin: 0;
  background: #a3d55e;
  display: block;
  padding: 80px 0;
}

.section-five h1 {
  color: #ffffff;
  text-align: center;
}

.section-five .button {
  background: white;
  color: #a3d55e;
  border: 2px solid white;
  position: unset;
  margin: 30px auto;
}

.section-five .button:hover {
  color: white;
  background: #a3d55e;
}

/* ------- RESPONSIVE --------*/

@media screen and (max-width: 768px) {
  /* ------- Generales --------*/

  section {
    margin: 40px auto;
    width: 85%;
  }

  /* ------- Header background --------*/

  .container-fondo {
    height: 60vh;
  }

  .fondo {
    background-image: url(/files/site/product/background-product-mobile.png);
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .button {
    left: 20px;
    bottom: 30%;
    width: 120px !important;
    height: 40px;
    line-height: 15px;
  }

  /*---- Section 1 ---- */

  .section-one div {
    width: 100%;
  }

  .section-one div br {
    display: none;
  }

  .section-one div h2 {
    font-size: 25px;
  }

  .section-one p {
    font-size: 16px;
    line-height: 18px;
  }

  /*---- Section 2 ---- */

  .section-two {
    margin-bottom: 100px;
  }

  .section-two .slick-dots li button {
    width: 15px;
    height: 15px;
    background: #ededed;
    color: #ededed;
    border-radius: 20px;
  }
  
  .section-two .slick-dots li button:before {
    width: 15px;
    height: 15px;
    background: #ededed;
    color: #ededed;
    border-radius: 20px;
  }

  .slick-dots li button:before{
    line-height: 10px !important;
  }

  /*---- Section 3 ---- */
  /*.section-three {
    margin-bottom: 100px;
  }*/

  .container-cards-section-three {
    width: 80%;
  }

  .container-info-section-three {
    padding: 40px 30px;
  }

  .container-info-section-three h3 {
    font-size: 22px;
  }

  .container-info-section-three h1 {
    font-size: 30px;
  }

  .container-info-section-three p {
    font-size: 16px;
  }

  .container-cards-section-three button {
    display: none !important;
  }

  .container-section-three {
    justify-content: center;
  }
  .container-section-three img {
    margin-right: 20px;
    width: 6%;
  }

  .container-info-section-three {
    height: 500px;
    margin: 0 5px;
  }

  .container-cards-section-three .slick-dots {
    bottom: -150px;
  }

  .container-cards-section-three .slick-dots li button {
    width: 15px;
    height: 15px;
    background: #ededed;
    color: #ededed;
    border-radius: 15px;
  }

  .container-cards-section-three .slick-dots li button:before {
    width: 15px;
    height: 15px;
    background: #ededed;
    color: #ededed;
    border-radius: 15px;
  }
  .container-cards-section-three .slick-dots li.slick-active button:before {
    color: #0e3a8f;
    background: #0e3a8f;
  }

  /*---- Section 5 ---- */
  .section-five {
    padding: 30px 0;
  }

  .section-five h1 {
    font-size: 19px;
  }

  .section-five .button {
    margin: 10px auto;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  /* ------- Header background --------*/

  .container-fondo {
    height: 80vh;
  }

  .button {
    left: 45px;
    bottom: 25%;
  }

  /* ------- Section 3  --------*/

  .container-info-section-three {
    padding: 170px 80px;
  }
}

@media screen and (min-width: 370px) and  (max-width: 375px) {

   /* ------- Header background --------*/

   .fondo{
     background-size: cover;
   }
   
   .container-fondo{
     height: 60vh;
   }

   .button{
     bottom: 20%;
   }
}


@media screen and (max-width: 325px){

 /* ------- Section 3  --------*/
  .container-info-section-three{
    height: 580px;
  }
}
