/* ---- whatsapp ----*/
@keyframes whatsapp_animation {
  0% {
    opacity: 0;
    right: 0;
    bottom: 4rem;
  }
  100% {
    opacity: 1;
    right: 15px;
    bottom: 4rem;
  }
}
@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: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  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;
}

.row {
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .header-top-3 {
    display: none;
  }
  .footer-area .explore {
    display: none;
  }
}
@media (max-width: 767px) {
  .footer-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-area .footer-copyright p {
    line-height: 2;
  }
}
@media (max-width: 575px) {
  .industri-services-area .services-title .title,
  .project-area .project-title .title {
    font-size: 40px;
  }
}/*# sourceMappingURL=ajustes.css.map */