.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border-width: 0;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 50;
  background: rgba(238, 91, 118, 0.18);
  backdrop-filter: blur(8px);
  overflow-y: auto;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-overlay.active .modal-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.modal-wrapper {
  position: relative;
  width: 100%;
  max-width: 80rem;
  margin: auto;
  border-bottom: 0.875rem solid #ef617b;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: all 0.3s 0.2s;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 58.125rem;
  padding: 3.375rem 1.25rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 0.375rem;
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.15);
  text-align: center;
}
.modal:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 9.625rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
}
.modal .btn {
  position: relative;
  padding-bottom: 13px;
  font-size: 1.5rem;
  font-weight: bold;
  z-index: 1;
}

.modal-container {
  width: 100%;
  max-width: 33.75rem;
  margin: 0 auto;
}

.modal-title {
  margin: 0;
  font-size: 2.6875rem;
}
.modal-title span {
  font-weight: 300;
}
.modal-title strong {
  display: block;
  color: #ef617b;
  font-weight: 700;
}

.modal-subtitle {
  margin-top: 12px;
  font-size: 1.5rem;
  font-weight: 300;
}
.modal-subtitle strong {
  display: block;
  font-size: 1.25em;
  font-weight: 700;
}

.modal-desc {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.5;
}
.modal-desc strong {
  font-weight: 700;
}

.modal-foot {
  font-size: 1.5rem;
  font-weight: 300;
}
.modal-foot strong {
  font-weight: 700;
}

.modal-img-1 {
  position: absolute;
  bottom: 0;
  left: -0.55rem;
  width: 26rem;
  height: auto;
  pointer-events: none;
}

.modal-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  height: auto;
  pointer-events: none;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3.125rem;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  transition: color 0.3s;
  cursor: pointer;
  opacity: 0.75;
}
.modal-close svg {
  width: 2.5rem;
  height: auto;
}
.modal-close:hover {
  color: #ef617b;
  opacity: 1;
}

@media all and (max-width: 1279px) {
  .modal-wrapper {
    max-width: 48rem;
    padding: 0 1rem;
  }
  .modal-img-1 {
    max-width: 11.125rem;
  }
  .modal-img-2 {
    max-width: 8.25rem;
  }
}
@media all and (max-width: 767px) {
  .modal-wrapper {
    max-width: 27.5rem;
  }
  .modal {
    padding-top: 1.5rem;
    padding-bottom: 4rem;
  }
  .modal-img-1 {
    max-width: 8.125rem;
  }
  .modal-img-2 {
    max-width: 5.25rem;
  }
  .modal-title {
    font-size: 1.75rem;
  }
  .modal-subtitle {
    font-size: 1.125rem;
  }
  .modal-desc {
    font-size: 1rem;
  }
  .modal-foot {
    font-size: 1.125rem;
  }
  .modal .btn {
    padding-bottom: 12px;
    font-size: 1.125rem;
    font-weight: bold;
  }
  .modal-close {
    right: 0;
    top: 0;
  }
  .modal-close svg {
    width: 1.75rem;
  }
}

/*# sourceMappingURL=main.css.map */
