.home .product-img {
  border-radius: 50%;
  width: 265px;
  transition: 0.6s;
}
.home .testimonial-card {
  padding: 25px 50px;
  border-radius: 35px;
}
.home .product-previews img {
  transition: 0.4s;
}
.home .product-previews:hover h4 {
  color: var(--color-secondary-1);
}
.home .product-previews:hover img {
  transform: scale(1.2);
  border-radius: var(--border-radius-default);
}
.home .sec-1 {
  padding: 0 2%;
}
.home .sec-1 .bg-img {
  position: relative;
  height: 81vh;
  background-image: url("../images/home/header.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 60px;
}
.home .sec-1 .btn-scroll-next {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 2;
  width: 96px;
  height: 96px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}
.home .sec-1 .btn-scroll-next__label {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.home .sec-1 .btn-scroll-next__arrow {
  flex-shrink: 0;
  margin-top: 10px;
  animation: scroll-bounce 2s ease-in-out infinite;
}
.home .sec-2 {
  scroll-margin-top: 100px;
}
@keyframes scroll-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
.home .sec-4 {
  padding: 0 2%;
}
.home .sec-4 .bg-img {
  padding-top: 70px;
  padding-bottom: 70px;
  background-image: url("../images/home/contacto.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 60px;
}
.home .sec-form {
  padding: 0 2%;
}
.home .sec-form .bg-img {
  background-image: url("../images/home/header_1.webp");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0 0 60px 60px;
  padding-top: 12rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) and (min-width: 575px) {
  .home .product-img {
    width: 200px;
  }
}
@media (max-width: 574px) and (min-width: 0px) {
  .home .sec-1 h1 {
    line-height: 4rem;
  }
  .home .sec-1 .bg-img {
    height: 81vh;
    background-image: url("../images/home/header-mob.webp");
  }
  .home .sec-1 .btn-scroll-next {
    bottom: 1.5rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
  }
  .home .sec-1 .btn-scroll-next__arrow {
    width: 18px;
    height: 18px;
    margin-top: 8px;
  }
  .home .sec-4 .bg-img {
    padding: 80px 50px;
  }
  .home .product-img {
    width: 145px;
  }
  .home .sec-form {
    padding: 0;
  }
  .home .sec-form .bg-img {
    background-image: url("../images/home/footer-mob.webp");
    padding-top: 10rem;
    padding-bottom: 2rem;
    border-radius: 0;
  }
}
