.alert-success {
  color: #000;
  font-size: 15px;
}

/* ---- whatsapp ----*/
@keyframes whatsapp_animation {
  0% {
    opacity: 0;
    right: 0;
    bottom: 50px;
  }
  100% {
    opacity: 1;
    right: 4%;
    bottom: 50px;
  }
}
@keyframes whatsapp_rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.w-flotante {
  opacity: 0;
  background-color: green;
  width: 4rem;
  height: 4rem;
  position: fixed;
  bottom: 4%;
  right: 4%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation-name: whatsapp_animation;
  animation-duration: 2s;
  animation-delay: 2s;
  animation-fill-mode: forwards;
}
.w-flotante:hover {
  background-color: #2879ff;
}
.w-flotante .whatsapp {
  color: white;
  font-size: 2.5rem;
  animation-name: whatsapp_rotation;
  animation-duration: 2s;
  animation-delay: 2s;
  animation-fill-mode: forwards;
}

.swiper-slide-image-half-3 {
  background-image: url("../img/about-slider/img3.webp");
}

@media (max-width: 991px) {
  @keyframes whatsapp_animation {
    0% {
      opacity: 0;
      right: 0;
      bottom: 100px;
    }
    100% {
      opacity: 1;
      right: 8vw;
      bottom: 100px;
    }
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 22px;
  }
}/*# sourceMappingURL=ajustes.css.map */