body {
  background: #131313;
  color: #fff;
}
body * {
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.logo {
  max-width: 120px;
  padding: 20px 0 0 20px;
}
.logo img {
  width: 100%;
}

h2 {
  font-size: 22px;
  text-align: center;
  font-weight: 500;
  margin: 0 0 22px 0;
}

main {
  max-width: 1280px;
  width: 100%;
  margin: auto;
}

.choose-grid {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.image-card {
  border: 2px solid #131313;
  max-width: 311px;
  width: 100%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  aspect-ratio: 9/16;
  background: #000;
  transition: 0.3s ease-in-out;
  opacity: 0.7;
  box-sizing: border-box;
}
.image-card .label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  z-index: 3;
  pointer-events: none;
}
.image-card:hover {
  opacity: 1;
}
.image-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease-in-out;
}

.screen2 .image-card {
  max-width: 150px;
  width: 100%;
  height: 150px;
}
.screen2 h2 {
  margin: 22px 0;
}

.screen3 .image-card {
  max-width: 120px;
  width: 100%;
  height: 120px;
}
.screen3 .image-card:hover img {
  transform: scale(1.1);
}
.screen3 h2 {
  margin: 22px 0;
}

.image-card.active {
  border-color: #fff;
  opacity: 1;
}
.image-card.active:before {
  position: absolute;
  top: 10px;
  right: 10px;
  content: "";
  background: url("../img/check.svg") no-repeat center/cover;
  width: 20px;
  height: 20px;
  z-index: 2;
}

.buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 100px auto auto auto;
}

.next-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  max-width: 450px;
  width: 100%;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(rgb(249, 108, 132) 0%, rgb(255, 134, 155) 100%);
  opacity: 0.5;
  pointer-events: none;
  cursor: pointer;
  flex: none;
}

.next-btn.active {
  opacity: 1;
  pointer-events: all;
}

.prev-btn {
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  max-width: 100px;
  width: 100%;
  height: 44px;
  border: 2px solid #2B2B2B;
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
}

.prev-btn.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

section {
  display: none;
}

section.active {
  display: block;
}

.screen4 h2 {
  margin: 22px 0;
}

.c-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 150px;
  height: 150px;
  border-radius: 12px;
  background: #1c1c1c;
  border: 2px solid #1c1c1c;
  cursor: pointer;
}
.c-card .label {
  margin-top: 10px;
}
.c-card .p {
  font-size: 14px;
}

.c-card.active {
  border-color: #fff;
  opacity: 1;
  background: linear-gradient(0deg, rgba(247, 78, 106, 0.25), transparent);
}
.c-card.active:before {
  position: absolute;
  top: 10px;
  right: 10px;
  content: "";
  background: url("../img/check.svg") no-repeat center/cover;
  width: 20px;
  height: 20px;
  z-index: 2;
}
.c-card.active .p {
  color: rgb(249, 108, 132);
}

.voice-card {
  width: 200px;
  height: 150px;
}

.final-grid {
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.final-grid .card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.final-grid .label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  z-index: 3;
  pointer-events: none;
}

.left-image {
  position: relative;
  max-width: 286px;
  border-radius: 12px;
  overflow: hidden;
}
.left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.left-image .label {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
}

.first {
  display: flex;
  gap: 12px;
}
.first .p {
  font-size: 14px;
}
.first .card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  background: #1c1c1c;
}
.first .card:first-child {
  max-width: 252px;
  width: 100%;
  height: 250px;
}
.first .card:last-child {
  max-width: 120px;
  width: 100%;
}

.second {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.second .card {
  width: 120px;
  height: 120px;
}
.second .card img {
  width: 100%;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  user-select: none;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}

.modal.active {
  opacity: 1;
  user-select: auto;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  max-width: 980px;
  max-height: 570px;
  height: 100%;
  width: 100%;
  background: #1c1c1c;
  border-radius: 20px;
}
.modal-content h2 {
  font-size: 36px;
  text-transform: uppercase;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 32px;
  line-height: 15px;
  color: #fff;
  z-index: 3;
  cursor: pointer;
}

.modal-flex {
  display: flex;
  height: 100%;
}

form {
  display: flex;
  flex-direction: column;
}
form * {
  box-sizing: border-box;
}

input {
  height: 44px;
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
  border: none;
  background: #252525;
  outline-color: #303030;
  padding: 0 20px;
  color: #fff;
  font-weight: 600;
}
input::placeholder {
  font-weight: 600;
}

button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  background: #fb738a;
  margin-top: 20px;
  height: 44px;
  cursor: pointer;
}

.form-side {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 12px 40px;
  width: 50%;
  height: 100%;
}
.form-side p {
  font-size: 13px;
  color: rgb(164, 164, 164);
  text-align: center;
}

.image-side {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: url("../img/image_url.webp") no-repeat center/cover;
  width: 50%;
  height: 100%;
}
.image-side:before {
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
}
.image-side .logo {
  position: relative;
  max-width: 200px;
  margin-bottom: 20px;
  z-index: 2;
}

@media screen and (max-width: 1300px) {
  main {
    padding: 0 10px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 1024px) {
  .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
  }
  .header-wrapper .logo {
    padding: 15px 0 0 0;
  }
  .screen1 .choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  main {
    max-width: 375px;
    padding-bottom: 100px;
  }
  .m-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .m-grid .c-card {
    width: 100%;
  }
  .buttons {
    width: 100%;
  }
  .next-btn {
    box-sizing: border-box;
    max-width: 270px;
  }
  .prev-btn {
    flex: none;
  }
  .c-card .label {
    font-size: 14px;
  }
  .left-image {
    max-width: 100%;
  }
  .first .card:last-child {
    height: 130px;
  }
  .first .card:first-child {
    height: 130px;
  }
  .second .card {
    width: 100%;
  }
  .final-grid {
    flex-direction: column;
  }
  .image-side {
    display: none;
  }
  .form-side {
    width: 100%;
  }
  .modal-content {
    max-width: 95%;
    max-height: 400px;
  }
  h2 {
    font-size: 16px;
  }
  .image-card .label {
    font-size: 14px;
  }
}

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