/* Page-specific visual states transferred with the current Halo Lab Contacts experience. */
[data-swiper='contact-reviews'] .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

[data-anim-faq="reviews"].anim {
  opacity: 0.3;
}

[data-anim-faq="elem"].anim {
  opacity: 0;
}

.form-dropdown .w-dropdown-toggle.w--open {
  border-color: #3827c7;
}

.contact-office__pulse.active > div {
  animation: pulse 5s infinite;
}

.contact-office__pulse.active > div:nth-child(1) {
  animation-delay: 0s;
}

.contact-office__pulse.active > div:nth-child(2) {
  animation-delay: 0.5s;
}

.contact-office__pulse.active > div:nth-child(3) {
  animation-delay: 1s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(3);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}
