.home {
  overflow: hidden;
}

/* HOME VIEW */
.home-swiper {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  margin-top: 15px;
}


.swiper-slide {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 30px;
}

.home-swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.home-banner-btn.next:after,
.home-banner-btn.prev:after {
  font-size: 1.2rem;
  font-weight: bold;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner-btn {
  border-radius: 50%;
  color: #fff;
  background: var(--dark-red);
  width: 30px;height: 30px;
  padding: 22px;
}

.home-banner-btn:hover {
  background: #8e5147;
}

.home-banner-btn.next {
  right: -60px;
  overflow: hidden;
}

.home-banner-btn.prev {
  left: -60px;
  overflow: hidden;
}

.swiper-button-next {
  position: unset;
}

.swiper-button-prev {
  position: unset;
}

.home-swiper-wrapper {
  /* height: 430px; */
  margin-bottom: 30px;
}

.home-swiper-img-desktop {
  display: none;
}

.home-swiper-img-mobile {
  display: block;
  height: 58vh;
}

.home-swiper-img-mobile img {
  width: 100%;
  object-fit: fill;
  border-radius: 50px;
  padding-inline: 10px;
  height: 100%;
}

.home-swiper-pagination {
  bottom: -30px !important;
}

.swiper-pagination-bullet {
  background: var(--grey);
  width: 14px;
  height: 14px;
  opacity: 1;
  transition: width .7s, border-radius .7s;
}

.swiper-pagination-bullet-active {
  background: var(--light-green);
  width: 40px;
  border-radius: 5px;
}

@media (min-height: 690px) {
  .home-swiper-img-mobile {
      height: 57vh;
  }
}

@media (min-height: 700px) {
  .home-swiper-img-mobile {
      height: 53vh;
  }
}

@media (min-height: 800px) {
  .home-swiper-img-mobile {
      height: 44vh;
  }
}

@media (min-height: 900px) {
  .home-swiper-img-mobile {
      height: 41vh;
  }
}
@media (min-height: 1000px) {
  .home-swiper-img-mobile {
      height: 34vh;
  }
}

@media (min-width:768px) {  /* TABLET EN ADELANTE */

  .home-swiper {
    overflow: visible;
    max-width: 85%;
    margin: 10px auto 70px auto;
  }

  .home-swiper-slide {
    border-radius: 60px;
  }

  .home-swiper-pagination {
    bottom: -40px !important;
  }

  .home-swiper-wrapper {
   height: 400px;
  } 

  .home-swiper-img-desktop {
    display: block;
    height: 100%;
  }

  .home-swiper-img-mobile {
      display: none;
  }

  .home-banner-btn.next {
    overflow: visible;
  }
  
  .home-banner-btn.prev {
    overflow: visible;
  }

  .swiper-button-next {
    position: absolute;
  }

  .swiper-button-prev {
    position: absolute;
  }

}


/* PROMOTIONS - PAYMENTS METHODS */
.payment-swiper {
  overflow: hidden;
  max-width: 95%;
  width: 100%;
  height: 100%;
  margin: 10px auto;
}

.payment-swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 30px;
}

.payment-swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.payment-banner-btn.next:after,
.payment-banner-btn.prev:after {
  font-size: .7rem;
}

.payment-banner-btn {
  border-radius: 50%;
  color: #000;
  background: #7d7d7d;
  width: 30px;height: 30px;
  font-weight: bold;
}

.payment-banner-btn.next {
  right: -50px;
}

.payment-banner-btn.prev {
  left: -50px;
}

.payment-swiper-wrapper {
  height: 300px;
}

.payment-swiper-pagination {
  bottom: -30px !important;
}

.payment-swiper-pagination .swiper-pagination-bullet {
  background: var(--light-green);
  opacity: 1;
  transition: width .7s, border-radius .7s;
}

.payment-swiper-pagination .swiper-pagination-bullet-active {
  width: 20px;
  border-radius: 3px;
}


@media (min-width:768px) {  /* TABLET EN ADELANTE */

  .payment-swiper {
    overflow: visible;
    max-width: 85%;
    margin: 10px auto 50px auto;
  }

  .payment-swiper-slide {
    border-radius: 60px;
  }

  .payment-swiper-wrapper {
    height: 400px;
  }

}