@charset "UTF-8";
/* RESET STYLES START  */
ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

input,
button,
textarea,
select {
  font: inherit;
}

textarea:focus,
input:focus {
  outline: none;
}

button {
  border: none;
  background: transparent;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

a {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  text-decoration: none;
}

input,
textarea {
  outline: none;
  border: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

a,
input,
button,
select,
textarea {
  border: none;
  margin: 0;
  padding: 0;
  outline: none;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  text-decoration: none;
  border-radius: 0;
}

svg {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

[hidden] {
  display: none !important;
}

/* RESET STYLES END  */
:root {
  /* Color */
  --primary-main: #BEC41A;
  --primary-hover: #A2A618;
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.69804);
  --ff-primary: "ShantellSans", sans-serif;
  --ff-secondary: "Great Vibes", sans-serif;
  --danger-default: #FF4217;
  /*****/
  /* padding */
  --padding: 18rem;
  /*****/
}

@media (max-width: 1920px) {
  :root {
    --padding: calc((100vw - (192rem - (18rem * 2))) / 2);
  }
}
@media (max-width: 1660px) {
  :root {
    --padding: 12rem;
  }
}
@media (max-width: 1360px) {
  :root {
    --padding: 2.4rem;
  }
}
@media (max-width: 1024px) {
  :root {
    --padding: 1.6rem;
  }
}
/* ShantellSans */
@font-face {
  font-family: "ShantellSans";
  src: url("../fonts/ShantellSans/ShantellSans-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "ShantellSans";
  src: url("../fonts/ShantellSans/ShantellSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "ShantellSans";
  src: url("../fonts/ShantellSans/ShantellSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "ShantellSans";
  src: url("../fonts/ShantellSans/ShantellSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "ShantellSans";
  src: url("../fonts/ShantellSans/ShantellSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "ShantellSans";
  src: url("../fonts/ShantellSans/ShantellSans-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}
/* GreatVibes */
@font-face {
  font-family: "Great Vibes";
  src: url("../fonts/GreatVibes/GreatVibes-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@media (min-width: 1024px) {
  .el-anim-left {
    opacity: 0;
    -webkit-transform: translateX(-20%);
    -ms-transform: translateX(-20%);
    transform: translateX(-20%);
    -webkit-transition-duration: transform 0.5s;
    transition-duration: transform 0.5s;
  }
  .el-anim-right {
    opacity: 0;
    -webkit-transform: translateX(20%);
    -ms-transform: translateX(20%);
    transform: translateX(20%);
    -webkit-transition-duration: transform 0.5s;
    transition-duration: transform 0.5s;
  }
  .el-anim-left.el-show,
  .el-anim-right.el-show {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
  }
  .el-anim {
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    transform: translateY(80px);
    opacity: 0;
    -webkit-transition: opacity 1s, -webkit-transform 2s;
    transition: opacity 1s, -webkit-transform 2s;
    transition: transform 2s, opacity 1s;
    transition: transform 2s, opacity 1s, -webkit-transform 2s;
  }
  .el-anim.el-show {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  .el-anim-opacity {
    opacity: 0;
    -webkit-transition: all 2s;
    transition: all 2s;
  }
  .el-anim-opacity.el-show {
    opacity: 1;
    -webkit-transition: all 2s;
    transition: all 2s;
  }
}
@-webkit-keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes showCard {
  from {
    -webkit-transform: translateY(80%);
    transform: translateY(80%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes showCard {
  from {
    -webkit-transform: translateY(80%);
    transform: translateY(80%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
  font-size: 10px;
}

@media (max-width: 2560px) {
  html {
    font-size: 0.5vw;
  }
}
@media (max-width: 1920px) {
  html {
    font-size: 0.5208333333vw;
  }
}
@media (max-width: 1360px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 2.7247956403vw;
  }
}
body {
  font-family: "ShantellSans", sans-serif;
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: 1.6rem;
  color: #FFFFFF;
  color: var(--text-primary);
  margin: 0 auto;
  background-color: var(--bg-color);
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.scroll-lock,
.scroll-lock body {
  overflow: hidden;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

button,
label {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

svg {
  width: 2.4rem;
  height: 2.4rem;
  max-width: 100%;
  max-height: 100%;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.container {
  width: 100%;
  max-width: 192rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18rem;
  padding-left: var(--padding);
  padding-right: 18rem;
  padding-right: var(--padding);
}

.lazy:not(.loaded) {
  -webkit-filter: blur(0.4rem);
  filter: blur(0.4rem);
}

/* FOOTER START */
.footer {
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 4rem;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
  padding-right: 10rem;
}

.footer__text {
  font-size: 1.4rem;
  font-weight: 400;
}

.footer__text a {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.footer__text a:hover {
  opacity: 0.6;
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  text-decoration: none;
}

.footer__dev a {
  -webkit-text-decoration: underline;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

@media (max-width: 1360px) {
  .footer__inner {
    padding-right: 0;
  }
}
@media (max-width: 600px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    padding-top: 2.6rem;
    padding-bottom: 2.4rem;
  }
}
/* FOOTER END */
.logo {
  height: 9.8rem;
}

@media (max-width: 600px) {
  .logo {
    height: 4rem;
  }
}
.icon {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.title {
  color: #BC9ED4;
  text-shadow: -3px -3px 0 #fff, 3px -3px 0 #fff, -3px 3px 0 #fff, 3px 3px 0 #fff;
  /* Нижний правый */
  font-weight: 800;
  font-size: 6.5rem;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 2.4rem;
}

@media (max-width: 600px) {
  .title {
    font-size: 3.3rem;
    text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff;
    /* Нижний правый */
  }
}
.desc {
  font-size: 2.2rem;
  line-height: 1.8;
  letter-spacing: 0.05rem;
  font-weight: 500;
  margin-bottom: 4rem;
}

@media (max-width: 600px) {
  .desc {
    font-size: 1.6rem;
    line-height: 1.7;
  }
}
.button {
  color: #FFFFFF;
  color: var(--text-primary);
  background-color: #BEC41A;
  background-color: var(--primary-main);
  padding: 1.6rem 3.2rem;
  font-weight: 500;
  border-radius: 50rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (min-width: 1024px) {
  .button:hover {
    background-color: #A2A618;
    background-color: var(--primary-hover);
  }
}
.button svg {
  width: 2.4rem;
  height: 2.4rem;
}

@media (max-width: 600px) {
  .button {
    width: 100%;
    font-size: 1.7rem;
    padding: 1.2rem;
  }
}
.button-opacity {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
  gap: 4px;
  font-size: 2rem;
  font-weight: 500;
  padding: 1.6rem 3.2rem;
  border-radius: 50rem;
  background-color: rgba(255, 255, 255, 0.3019607843);
}

.button-opacity:hover {
  background-color: rgba(255, 255, 255, 0.3647058824);
}

.button-opacity svg {
  width: 2.4rem;
  height: 2.4rem;
}

@media (max-width: 600px) {
  .button-opacity {
    font-size: 1.7rem;
    padding: 1.2rem 2.2rem;
  }
}
.arrow-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.8rem;
  color: #FFFFFF;
  color: var(--text-primary);
  line-height: 1.4;
}

/* BACKGROUND START */
.background-page {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.bg-step {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.bg-step._active {
  opacity: 1;
}

.bg-step img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.bg-main {
  background: #C4AFD5;
}

@media (max-width: 600px) {
  .bg-main img {
    height: 100vh;
    max-height: 64rem;
  }
}
@media (max-width: 600px) {
  .bg-image img {
    opacity: 0.2;
  }
  .bg-image::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(100% 232.18% at 1.85% 100%, #C4AFD5 0%, #2c1d70 100%);
  }
}
/* BACKGROUND END */
.step {
  position: relative;
  z-index: 1;
  padding-top: 7rem;
}

.step:not(._active) {
  display: none;
}

.step._active {
  /*-webkit-animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;*/
  /*animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;*/
}

.step__header {
  margin-bottom: 9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.step__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}

.step__content {
  max-width: 67.8rem;
}

.step__preview {
  width: 56.8rem;
  height: 70rem;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  border-radius: 1.6rem;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  /*overflow: hidden;*/
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  transform: none !important;
}

.step__preview.top img {
  -o-object-position: top;
  object-position: top;
}

.step__preview.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.step__preview.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.step__preview.reverse .step__preview-message {
  margin-top: 0;
  margin-bottom: 2rem;
}

.step__preview.black {
  color: #403D33;
}

.step__preview.white {
  color: #ffffff;
}

.step__preview img {
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.step__num {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.69804);
  color: var(--text-secondary);
}

.step__preview-message {
  font-family: "Great Vibes", sans-serif;
  font-family: var(--ff-secondary);
  font-size: 28px;
  line-height: 1;
  text-align: center;
  width: 86%;
  margin-top: 5rem;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

@media (max-width: 1440px) {
  .step__preview-message {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .step__preview-message {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .step {
    padding-top: 1rem;
    height: 100vh;
  }
  .step__preview {
    background-size: cover;
  }
  .step__preview-message {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .step__preview-message {
    font-size: 20px;
    line-height: 1.3;
  }
  .step__header {
    margin-bottom: 1rem;
  }
}
/* STEP 1 START */
@media (max-width: 600px) {
  .step-main .step__body {
    padding-top: 30rem;
  }
  .step-main .desc {
    display: none;
  }
}
/* STEP 1 END */
/* STEP 2 START */
.step-image {
  padding-top: 4rem;
  padding-bottom: 10rem;
}

.step-image .step__header {
  margin-bottom: 6rem;
}

.step-image .logo {
  height: 6rem;
}

.step-image .title {
  color: #8671C2;
}

@media (max-width: 600px) {
  .step-image {
    height: auto;
    padding-top: 1.2rem;
  }
  .step-image .step__header {
    margin-bottom: 2rem;
  }
  .step-image .logo {
    height: 4rem;
  }
  .step-image .step__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
  .step-image .step__content {
    display: contents;
  }
  .step-image .title {
    -webkit-box-ordinal-group: -1;
    -ms-flex-order: -2;
    order: -2;
    text-align: center;
  }
  .step-image .step__preview {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    width: 76vw;
    height: auto;
    min-height: 94vw;
    background-color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
  }
  .step-image .zoom-card {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    -webkit-transition: -webkit-transform 0.1s ease;
    transition: -webkit-transform 0.1s ease;
    transition: transform 0.1s ease;
    transition: transform 0.1s ease, -webkit-transform 0.1s ease;
    /* Плавный зум */
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    /* Центр масштабирования */
  }
  .step-image .desc {
    display: none;
  }
}
.select-image {
  width: 53.4rem;
  margin-bottom: 5.8rem;
}

.select-image__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1.2rem;
  gap: 1.2rem;
  overflow: hidden;
  overflow-y: auto;
  height: 30rem;
  margin-bottom: 2.4rem;
  padding-right: 0.6rem;
}

.select-image__grid::-webkit-scrollbar {
  width: 0.6rem;
}

.select-image__grid::-webkit-scrollbar-track {
  background: transparent;
}

.select-image__grid::-webkit-scrollbar-thumb {
  background: repeating-linear-gradient(-45deg, #ff9d2d, #ff9d2d 0.8rem, #fff 0.8rem, #fff 1.6rem, #0121d1 1.6rem, #0121d1 2.4rem);
  border-radius: 0.6rem;
}

@media (max-width: 600px) {
  .select-image {
    width: 100%;
    margin-bottom: 2rem;
  }
  .select-image__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    overflow-x: auto;
    width: 100%;
    height: auto;
    margin-bottom: 0;
    padding-bottom: 0.4rem;
  }
  .select-image__grid::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
}
.image-card {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  padding: 1.2rem;
  height: 14.3rem;
  cursor: pointer;
}

.image-card._active .image-card__img {
  opacity: 0.4;
}

.image-card._active .image-card__check {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  z-index: 2;
}

.image-card__img {
  width: 90%;
}

.image-card__check {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.4);
  -ms-transform: translate(-50%, -50%) scale(0.4);
  transform: translate(-50%, -50%) scale(0.4);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 600px) {
  .image-card {
    width: 7.5rem;
    height: 9rem;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    padding: 0.6rem;
  }
  .image-card__img {
    width: 100%;
  }
}
/* STEP 2 END */
/* STEP 3 START */
.step-bg .image-card {
  padding: 0.6rem;
}

/* STEP 3 END */
/* STEP 4 START */
.step-message {
  overflow: hidden;
}

.step-message .step__preview {
  width: 568px;
  height: 700px;
}
@media (max-width: 1220px) {
  .step-message .step__preview {
    width: 468px;
    height: 574px;
  }
}
@media (max-width: 600px) {
  .step-message .step__preview {
    height: auto;
  }
}

@media (max-width: 600px) {
  .step-message .step__preview {
    width: 100%;
    min-height: 114vw;
  }
}
.message {
  margin-bottom: 7.4rem;
  max-width: 62rem;
}

.message__info {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.message__input textarea,
.message__input input {
  border: 2px solid #EBEAE9;
  border-radius: 1.2rem;
  background-color: rgba(255, 255, 255, 0.2);
  width: 100%;
  padding: 1.2rem 1.6rem;
  color: #fff;
}

.message__input textarea::-webkit-input-placeholder,
.message__input input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6980392157);
}

.message__input textarea::-moz-placeholder,
.message__input input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6980392157);
}

.message__input textarea:-ms-input-placeholder,
.message__input input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6980392157);
}

.message__input textarea::-ms-input-placeholder,
.message__input input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6980392157);
}

.message__input textarea::-webkit-input-placeholder, .message__input input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6980392157);
}

.message__input textarea::-moz-placeholder, .message__input input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6980392157);
}

.message__input textarea:-ms-input-placeholder, .message__input input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6980392157);
}

.message__input textarea::-ms-input-placeholder, .message__input input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6980392157);
}

.message__input textarea::placeholder,
.message__input input::placeholder {
  color: rgba(255, 255, 255, 0.6980392157);
}

.message__input textarea {
  resize: none;
  height: 11.6rem;
}

@media (max-width: 600px) {
  .message {
    width: 100%;
    max-width: 100%;
    margin-bottom: 4.2rem;
  }
  .message__info {
    font-size: 1.6rem;
  }
  .message__input textarea {
    height: 15.4rem;
    font-size: 1.6rem;
  }
}
/* STEP 4 END */
/* PREVIEW START */
.preview {
  position: relative;
  z-index: 1;
  margin-bottom: -10rem;
  height: 100vh;
  min-height: 89rem;
}

.preview .step__header {
  margin-bottom: 4rem;
}

.preview .step__body {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.preview .step__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 10rem;
}

.preview__container {
  position: absolute;
  bottom: 0;
}

.preview__img {
  position: relative;
  z-index: 2;
  width: 76.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 4rem;
}

.preview__img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #53488D;
  border-radius: 2rem 2rem 0 0;
  z-index: 0;
  height: 43rem;
  opacity: 0.7;
}

.preview__img-main {
  position: relative;
  z-index: 1;
  width: 80%;
}

@media (min-width: 600px) {
  .preview__img-main {
    -webkit-animation: showCard 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation: showCard 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
}
.preview__img-cover {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  z-index: 2;
}

.preview__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-bottom: 3.2rem;
}

@media (max-width: 600px) {
  .preview {
    margin-bottom: 0;
    height: auto;
    min-height: 89rem;
  }
  .preview__img-main {
    width: 100%;
  }
  .preview__container {
    position: static;
    bottom: 0;
  }
  .preview .step__header {
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
  }
  .preview .step__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
  .preview .preview__img {
    width: 100%;
    padding: 0;
    margin-bottom: 2.4rem;
  }
  .preview .preview__img-cover,
  .preview .preview__img::before {
    display: none;
  }
  .preview__options ._download span {
    display: none;
  }
  .preview__options .button-opacity {
    font-size: 1.7rem;
  }
  .preview .step__content {
    display: contents;
  }
  .preview .step__content > .desc {
    display: none;
  }
  .preview .title {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    font-size: 3.2rem;
    margin-bottom: 2.4rem;
  }
}
.share {
  margin-bottom: 3.2rem;
}

.share .desc {
  margin-bottom: 0.4rem;
}

.share__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.share__link {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 0.8rem;
  background-color: rgba(255, 255, 255, 0.3019607843);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.share__link:hover {
  background-color: rgba(255, 255, 255, 0.3647058824);
}

@media (max-width: 600px) {
  .share__grid {
    gap: 0.2rem;
    row-gap: 1rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.repeat {
  margin-top: auto;
}

.repeat .desc {
  line-height: 1.4;
  margin-bottom: 2.4rem;
}

@media (max-width: 600px) {
  .repeat {
    margin-top: 4.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 2.4rem;
  }
  .repeat .desc {
    margin-bottom: 1.6rem;
  }
}
/* PREVIEW END */
/* MODAL FORM STAR */
.form-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
}

.form-modal._active {
  visibility: visible;
}

.form-modal._active .form-modal__inner {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.form-modal__inner {
  background: rgba(255, 255, 255, 0.8980392157);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 4rem 0 0 4rem;
  padding: 6rem 10rem;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  overflow-y: auto;
  width: 100%;
  max-width: 88.4rem;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-modal__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.4rem;
  color: #ACA9C0;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 2.4rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.form-modal__close:hover {
  color: #736F8D;
}

.form-modal__close svg {
  width: 1.8rem;
  height: 1.8rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.form-modal__title {
  font-weight: 800;
  color: #BC9ED4;
  font-size: 5rem;
  line-height: 1.4;
  text-transform: uppercase;
}

.form-modal__success {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 54px;
  margin: auto 0;
}

.form-modal__success .form-modal__title {
  text-align: center;
}

.form-modal__success-img {
  height: 26.6rem;
}

.form-modal__success-text {
  font-size: 2.2rem;
  color: #474172;
  text-align: center;
}

@media (max-width: 1360px) {
  .form-modal__inner {
    max-width: 70rem;
    padding: 4rem;
  }
}
@media (max-width: 600px) {
  .form-modal {
    padding-top: 3rem;
    overflow: hidden;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .form-modal._active .form-modal__inner {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .form-modal__inner {
    margin-left: 0;
    border-radius: 3.2rem 3.2rem 0 0;
    padding: 2rem 1.6rem 5rem;
    position: relative;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    height: auto;
    max-height: calc(100vh - 3rem);
  }
  .form-modal__close {
    position: absolute;
    top: 2.3rem;
    right: 2rem;
  }
  .form-modal__close span {
    display: none;
  }
  .form-modal__title {
    font-size: 2.4rem;
    line-height: 1.4;
    padding-right: 3rem;
  }
  .form-modal__success {
    gap: 3.2rem;
  }
  .form-modal__success .form-modal__title {
    padding: 0;
  }
  .form-modal__success-img {
    height: 20rem;
  }
  .form-modal__success-text {
    font-size: 1.6rem;
  }
}
.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3.2rem;
  margin: auto 0;
  color: #474172;
}

.form__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.form__box-label {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  color: #474172;
}

.form__box-label span {
  color: #FF4217;
  color: var(--danger-default);
}

.form__box-input {
  padding: 1.8rem 2.4rem;
  border: 2px solid rgba(71, 65, 114, 0.5019607843);
  border-radius: 50rem;
  color: #474172;
  font-size: 1.8rem;
}

.form__box-input.error {
  border-color: #FF4217;
  border-color: var(--danger-default);
}

.form__box-input::-webkit-input-placeholder {
  color: #ACA9C0;
}

.form__box-input::-moz-placeholder {
  color: #ACA9C0;
}

.form__box-input:-ms-input-placeholder {
  color: #ACA9C0;
}

.form__box-input::-ms-input-placeholder {
  color: #ACA9C0;
}

.form__box-input::placeholder {
  color: #ACA9C0;
}

.form__polite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.8rem;
}

.form__polite a {
  color: #BEC41A;
  color: var(--primary-main);
  -webkit-text-decoration: underline;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.form__polite a:hover {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  text-decoration: none;
}

.form .button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 600px) {
  .form__box-label {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }
  .form__box-input {
    font-size: 1.4rem;
    line-height: 1.3rem;
    padding: 1.6rem;
  }
  .form__polite {
    font-size: 1.6rem;
  }
}
.custom-checkbox {
  cursor: pointer;
}

input:checked ~ .custom-checkbox__input {
  background-color: #BEC41A;
  background-color: var(--primary-main);
  border-color: #BEC41A;
  border-color: var(--primary-main);
}

input:checked ~ .custom-checkbox__input svg {
  opacity: 1;
}

input.error ~ .custom-checkbox__input {
  border-color: #FF4217;
  border-color: var(--danger-default);
}

.custom-checkbox__input {
  width: 2rem;
  height: 2rem;
  border-radius: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #C3C3C3;
  color: #fff;
  background-color: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.custom-checkbox__input svg {
  width: 1.4rem;
  height: 1.4rem;
  opacity: 0;
}

.modal {
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.modal._active .modal__inner {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.modal__inner {
  width: 100%;
  max-width: 73.6rem;
  padding: 6rem 4rem;
  position: relative;
  background-color: #fff;
  border-radius: 2rem;
  margin: auto;
  opacity: 0;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.modal__close {
  position: absolute;
  top: 3.5rem;
  right: 3.5rem;
  color: #ACA9C0;
}

.modal .form-modal__title {
  padding: 0;
}

@media (max-width: 600px) {
  .modal {
    padding: 1.6rem;
  }
  .modal__inner {
    padding: 4rem 1.6rem 2rem;
  }
}
/* MODAL FORM END */
/* FINAL START */
.preview-final {
  height: 100vh;
  min-height: 63rem;
  margin: 0;
}

.preview-final__left {
  padding-bottom: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.7rem;
}

.preview-final__left .title {
  color: #BC9ED4;
  font-size: 2rem;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
  margin: 0;
}

.preview-final__left .logo {
  height: 5rem;
}

.preview-final__right {
  padding-bottom: 5rem;
}

.preview-final__right .preview__options {
  margin: 0;
}

.preview-final .preview__img {
  max-width: 70rem;
  padding-left: 6rem;
  padding-right: 6rem;
}

.preview-final .preview__img-main {
  width: 100%;
}

.preview-final .step__body {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100vh;
  min-height: 63rem;
}

@media (max-width: 1360px) {
  .preview-final .preview__img {
    max-width: 60rem;
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media (max-width: 600px) {
  .preview-final__left {
    padding-bottom: 2rem;
    margin-top: auto;
  }
  .preview-final__left .title {
    font-size: 1.6rem;
  }
  .preview-final__right {
    padding-bottom: 2rem;
  }
  .preview-final .step__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 4rem;
    gap: 0;
  }
  .preview-final .preview__img {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    padding: 0;
  }
}
/* FINAL END */
.step-preview {
  padding-top: 0;
}

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