/*!*******************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[3].use[2]!./src/cta/Cta.scss ***!
  \*******************************************************************************************************************************************************************/
.cta {
  --min-height: 41.25rem;
  --padding-x: clamp(1rem, 4vw, 2rem);
  --padding-y: clamp(1rem, 4vw, 2rem);
  --content-max: 485px;
  --texture-w: 65%;
  position: relative;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  min-height: var(--min-height);
}
@media (max-width: 768px) {
  .cta {
    --min-height: 35rem;
    min-height: calc(var(--min--mobile-height, 0rem) + var(--min-height));
  }
}
@media (max-width: 480px) {
  .cta {
    --texture-w: 150%;
    --min-height: 25rem;
  }
}
@media (max-width: 360px) {
  .cta {
    --min-height: 20rem;
  }
}
.cta h2 {
  margin: 0;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: var(--texture-bg);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: left center;
  pointer-events: none;
}
@media (max-width: 480px) {
  .cta::before {
    background-size: cover;
    background-position: center;
  }
}
.cta--right::before {
  background-position: right center;
}
.cta__photo-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .cta__photo-wrapper {
    -webkit-mask-image: var(--mobile-mask);
    mask-image: var(--mobile-mask);
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: 0rem -6rem;
    mask-position: 0rem -6rem;
    mask-repeat: no-repeat;
    aspect-ratio: 1/1;
    object-position: 80% 7rem;
    z-index: 2;
    mask-mode: luminance;
  }
}
@media (max-width: 568px) {
  .cta__photo-wrapper {
    -webkit-mask-position: 0, -4rem;
    mask-position: 0 -4rem;
  }
}
.cta__photo {
  transform: scale(1);
  transition: transform 1.2s cubic-bezier(0.37, 0, 0.63, 1);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cta:hover .cta__photo {
  transform: scale(1.04125);
}
.cta__content {
  position: absolute;
  left: var(--padding-x);
  right: var(--padding-x);
  bottom: var(--padding-y);
  z-index: 2;
  max-width: var(--content-max);
  display: grid;
  gap: 1rem;
}
@media (max-width: 480px) {
  .cta__content {
    --content-max: 28rem;
  }
}
@media (max-width: 480px) {
  .cta--left .cta__content, .cta--right .cta__content {
    margin: 0;
  }
}
.cta__title {
  font-size: clamp(2.25rem, 4vw + 1rem, 3.5rem);
  line-height: 1.2;
  margin-bottom: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
}
.cta__desc {
  font-size: clamp(1rem, 1vw + 0.875rem, 1.125rem);
  line-height: 1.5;
}
.cta__btn {
  justify-self: start;
  appearance: none;
  border: none;
  background: #fff;
  color: #111;
  font-weight: 600;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 120ms ease, background-color 120ms ease;
}
.cta__btn:hover {
  transform: translateY(-1px);
}
.cta__btn:active {
  transform: translateY(0);
}
@media (max-width: 480px) {
  .cta {
    --texture-w: 150%;
    padding: 1.5rem;
  }
}

.button-group {
  z-index: 2;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
  margin-top: 1.5rem;
}
@media (max-width: 568px) {
  .button-group {
    margin-top: 1.25rem;
  }
}

.error {
  background: var(--red--200);
  border: 1px solid var(--red--600);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
}

/*# sourceMappingURL=48703aac8414f2ebf547.css.map*/