/*

Usage:
@include breakpoint(laptop) {
  // styles for laptop and wider
}
@include breakpoint(laptop, 800px) {
  // styles for laptop width and screens up to 800px tall
  // useful for targeting shorter laptop screens
}

@include breakpoint(desktop, 900px) {
  // styles for desktop width but shorter screens
}
  */
/*-----------------------
EASING 
---------------------- */
.banner-image-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.banner-image-cta .hero-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  text-align: center;
  padding: var(--padding-horizontal) var(--padding-horizontal);
}
.banner-image-cta .hero-link:hover .arrow {
  transform: translate(25%, -25%);
}
.banner-image-cta .hero-link:hover .hero-background::after {
  background: rgba(var(--color-black-rgb), 0.8);
}
.banner-image-cta .arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 4.5rem;
  height: auto;
  z-index: 3;
  transition: transform 0.1s ease-in-out;
}
@media (min-width: 1024px) {
  .banner-image-cta .arrow {
    width: 9.5rem;
  }
}
.banner-image-cta .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.banner-image-cta .hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(var(--color-black-rgb), 0.5);
  mix-blend-mode: multiply;
  transition: background 0.3s ease-in-out;
}
.banner-image-cta .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  color: var(--color-white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 74.2rem;
  min-height: 31rem;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .banner-image-cta .hero-content {
    min-height: 39.2rem;
  }
}
.banner-image-cta .hero-content p, .banner-image-cta .hero-content li, .banner-image-cta .hero-content h1, .banner-image-cta .hero-content h2, .banner-image-cta .hero-content h3, .banner-image-cta .hero-content h4, .banner-image-cta .hero-content h5, .banner-image-cta .hero-content h6 {
  color: var(--color-white);
  text-align: center;
}
.banner-image-cta .hero-content .subheading {
  font-size: var(--font-size-xs);
  font-stretch: var(--font-width-semicondensed);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  font-weight: var(--font-weight-semibold);
}
.banner-image-cta .hero-content .heading {
  --font-size-md: 2rem;
  font-size: var(--font-size-md);
  margin-bottom: 1rem;
  line-height: 1.14;
}
@media (min-width: 1024px) {
  .banner-image-cta .hero-content .heading {
    font-size: var(--font-size-md-lg);
  }
}