* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
}

iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.container {
  max-width: 660px;
  margin: 0 auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  height: 100dvh;
  width: 100vw;
  z-index: 50;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(15px);
}

.modal__scroller {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  overflow-y: auto;
  pointer-events: none;
}

.modal__inner {
  padding: 16px 20px;
  margin-top: 60px;
  position: relative;
  z-index: 10;
}

.modal__panel {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  pointer-events: auto;
  position: relative;
}

.modal__close {
  position: absolute;
  top: 21px;
  right: 12px;
  background: none;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}

.modal__close svg {
  width: 32px;
  height: 32px;
}

.content h1 {
  margin-bottom: 0.7em;
}

.content p {
  margin-bottom: 1.5em;
  line-height: 1.4;
}

@media (min-width: 900px) {
  .modal__panel {
    padding: 30px;
  }

  .modal__close {
    top: 32px;
    right: 28px;
  }
}

.slider-wrapper {
  margin-bottom: 30px;
}

.swiper .swiper-slide {
  width: auto !important;
}

.swiper .slide-item {
  /* aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden; */
}

.swiper img {
  max-height: 400px;
}

/* .swiper .slide-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
} */