/**
 * Custom style overrides.
 *
 * Add the class name in Elementor without the leading dot.
 */

:root {
  --color-text: #007da1;
  --color-hover: #6ec1e4;
}

.hover-custom,
.hover-custom * {
  color: var(--color-text) !important;
}

@media (hover: hover) and (pointer: fine) {
  a.hover-custom,
  .hover-custom a {
    display: inline-block;
    transition:
      color 150ms ease-out,
      transform 150ms ease-out;
  }

  a.hover-custom:hover,
  .hover-custom a:hover {
    color: var(--color-hover) !important;
    transform: scale(1.01);
  }
}

@media (prefers-reduced-motion: reduce) {
  a.hover-custom,
  .hover-custom a {
    transition: none;
  }

  a.hover-custom:hover,
  .hover-custom a:hover {
    transform: none;
  }
}
