html {
  font-size: 1.5625vw;
  width: 100vw;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  scroll-behavior: smooth;
}
@media screen and (min-width: 1025px) {
  html {
    font-size: 0.521vw;
  }
}

body {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: normal;
  font-size: 2rem;
  position: relative;
  line-height: 1.5;
  -webkit-font-smoothing: antialised;
  scroll-behavior: smooth;
  background: #000;
  width: 100%;
  color: white;
  margin: 0;
  padding: 0 !important;
}

* {
  box-sizing: border-box;
}

img {
  vertical-align: top;
  max-width: 100%;
}

.main {
  width: 100%;
  overflow-x: hidden;
}
.main__section {
  padding: 10rem 0;
}

.container {
  width: 100%;
  max-width: 79vw;
  margin: 0 auto;
}

.hidden {
  display: none !important;
}

.no-br {
  white-space: nowrap;
}

.text--color {
  color: #6F22FF;
}
.text--selected {
  font-family: "Bebas Neue Cyrillic", sans-serif;
  font-size: 3.2rem;
  text-transform: uppercase;
  font-weight: bold;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 2rem;
  height: 5.6rem;
  min-width: 42rem;
  font-size: 3.2rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  line-height: 1;
  text-transform: uppercase;
  color: white;
  background: radial-gradient(circle, #A677FF 0%, #1B0655 100%);
  text-decoration: none;
  position: relative;
  cursor: pointer;
}
.btn:hover {
  background: #7f57cb;
}

.gift__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}

.heading {
  font-size: 4.6rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 13.5rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  text-align: center;
  text-transform: uppercase;
}

.modal {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
  display: flex;
}
.modal__icon {
  margin: -3rem auto 2rem;
  width: 8rem;
  height: 8rem;
  color: #6F22FF;
}
.modal__icon svg {
  fill: currentColor;
}
.modal__heading {
  font-size: 3.2rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-align: center;
  color: #000;
  line-height: 1.2;
}
.modal__text {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  color: #000;
}
.modal__content {
  padding: 6rem 4rem 4rem;
  background: #F2F2F2;
  position: relative;
  width: 46rem;
  max-height: 100vh;
  overflow-y: auto;
}
@media screen and (max-width: 1024px) {
  .modal__content {
    padding-top: 30vh;
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    height: 100vh;
    overflow-y: auto;
  }
}
@media screen and (max-width: 1024px) {
  .modal__form {
    padding-top: calc((100vh - 605px) / 2);
  }
}
.modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
.form {
  padding: 2rem;
  background: #1C1C1C;
  min-height: 53.2rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0.8rem;
}
.form__heading {
  font-size: 4.4rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  line-height: 1;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  column-gap: 1.2rem;
}
.form__label {
  border: 2px solid #BC99FF;
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 12px 0px rgba(156, 99, 255, 0.5), 1px 1px 20px 0px rgba(128, 0, 255, 0.3), 1px 1px 10px 0px rgba(190, 115, 255, 0.2), 1px 1px 7px 0px rgba(171, 122, 255, 0.1);
  padding: 0.8rem 2.4rem;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 10rem;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: none;
}
.form__label .blink {
  animation: 0.8s ease-out infinite alternate pulse;
}
.form__subheading {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.form__text {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  column-gap: 1.2rem;
}
.form__price {
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  column-gap: 0.8rem;
}
.form__price .price-old {
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
}
.form__price .price-old:after {
  content: "";
  position: absolute;
  transform: rotate(-13deg);
  height: 0.3rem;
  background: #F00;
  left: -0.3rem;
  right: -0.3rem;
  top: 50%;
  margin-top: -0.2rem;
}
.form__gift {
  margin-top: 1.2rem;
  margin-bottom: 0.8rem;
  background: #000;
  border-radius: 0.8rem;
  padding: 0.8rem 2rem;
  font-size: 2rem;
  font-weight: 500;
}
.form__gift .title {
  font-size: 4rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  line-height: 1;
  margin-top: 0.8rem;
}
.form-control {
  position: relative;
}
.form .error {
  color: red;
  font-size: 12px;
  position: absolute;
  display: none;
  top: 0.5rem;
  right: 1rem;
}
.form-check {
  display: flex;
  align-items: center;
  margin-top: 0.4rem;
  margin-bottom: 0.8rem;
  column-gap: 0.8rem;
  font-size: 1.6rem;
}
.form-check svg {
  width: 1.6rem;
  flex-shrink: 0;
}
.form-input {
  background: #fff;
  border: none;
  border-radius: 0.8rem;
  padding: 1.2rem;
  height: 4.3rem;
  font-size: 1.4rem;
  line-height: 1;
  color: #3F3F3F;
  margin-bottom: 0.4rem;
  width: 100%;
  box-sizing: border-box;
  font-family: "Roboto Condensed", sans-serif;
}
.form-input:focus {
  border: none;
  outline: none;
  box-shadow: 0 0 2rem #6F22FF;
  position: relative;
  z-index: 2;
}
.form-input.err {
  color: red;
}
.form-input.err:-webkit-autofill {
  -webkit-text-fill-color: red;
}
.form-btn {
  outline: none;
  border: none;
  width: 100%;
  height: 7.2rem;
  padding: 2rem;
  font-weight: normal;
  margin-top: 0;
}

.content {
  width: 87rem;
}

.side {
  width: 61rem;
  position: relative;
}

.top {
  padding-top: 4.5rem;
}
.top .container {
  display: flex;
  justify-content: space-between;
}

.video {
  width: 100%;
  padding-top: 56%;
  position: relative;
}
.video__wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video__wrap iframe {
  width: 100%;
  height: 100%;
}

.banners-block img {
  max-width: 100%;
}

.banner__title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 1.2rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 1024px) {
  .banner__title {
    font-size: 2.4rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
}

.banner__link {
  margin-bottom: 4rem;
  display: block;
}
.banner__link:last-child {
  margin-bottom: 0;
}

.blocks {
  display: flex;
  justify-content: space-between;
}

.banner__gift {
  background: url("../img/bg_banner.png") center center no-repeat;
  background-size: cover;
  margin-bottom: 2rem;
  width: 100%;
  padding: 1rem 5rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  font-size: 4rem;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 0.8rem;
}
@media screen and (max-width: 1024px) {
  .banner__gift {
    background: url("../img/bg_banner-mob.png") center center no-repeat;
    margin-bottom: 1.6rem;
    padding: 2.4rem 1.4rem;
    font-size: 2.8rem;
    background-size: cover;
  }
}
.banner__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.banner__list li {
  display: flex;
  align-items: center;
  padding: 0.4rem;
  column-gap: 0.4rem;
  font-size: 2.4rem;
  font-weight: bold;
  border-radius: 10rem;
  margin-bottom: 0.8rem;
  background: white;
  color: black;
  line-height: 1.1;
}
.banner__list li:last-child {
  margin-bottom: 0;
}
.banner__list li svg {
  width: 4.4rem;
  flex-shrink: 0;
}
.banner__price {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 3.5rem;
  margin-bottom: 2rem;
}
.banner__price .price-old {
  font-size: 3.2rem;
  font-weight: bold;
  position: relative;
}
.banner__price .price-old:after {
  content: "";
  position: absolute;
  transform: rotate(-13deg);
  height: 0.3rem;
  background: #F00;
  left: -0.3rem;
  right: -0.3rem;
  top: 50%;
  margin-top: -0.2rem;
}
.banner__price .price-new {
  font-size: 4.8rem;
  text-transform: uppercase;
  font-weight: bold;
  text-shadow: 1px 1px 12px #9C63FF, 1px 1px 20px rgba(128, 0, 255, 0.7), 1px 1px 10px rgba(190, 115, 255, 0.6), 1px 1px 7px rgba(171, 122, 255, 0.4), 1px 1px 4px rgba(255, 255, 255, 0.25);
}
.banner__btn {
  text-align: center;
  position: relative;
}
.banner__label {
  transform: rotate(-5.784deg);
  padding: 0.8rem 2rem;
  position: absolute;
  top: 80%;
  margin-left: 4rem;
  left: 50%;
  text-shadow: 1px 1px 12px #9C63FF, 1px 1px 20px rgba(128, 0, 255, 0.7), 1px 1px 10px rgba(190, 115, 255, 0.6), 1px 1px 7px rgba(171, 122, 255, 0.4), 1px 1px 4px rgba(255, 255, 255, 0.25);
  border: 1px solid #FFF;
  border-radius: 10rem;
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 1px 1px 12px 0px #9C63FF, 1px 1px 20px 0px rgba(128, 0, 255, 0.7), 1px 1px 10px 0px rgba(190, 115, 255, 0.6), 1px 1px 7px 0px rgba(171, 122, 255, 0.4), 1px 1px 4px 0px rgba(255, 255, 255, 0.25);
}
@media screen and (max-width: 1024px) {
  .banner__label {
    font-size: 2.4rem;
    padding: 0.8rem 2.4rem;
    margin-left: 8rem;
  }
}

.list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 4.8rem;
  row-gap: 4rem;
}
.list__item {
  list-style-type: none;
  position: relative;
  width: 35rem;
  min-height: 10rem;
  padding: 3rem 4rem 3rem 1.5rem;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 500;
  background: #272727;
}
.list__icon {
  width: 7rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(50%);
}

.forma {
  padding: 10rem 0;
  background: url("../img/bg-form.png") bottom center no-repeat;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.forma__block {
  width: 39rem;
  margin-left: 13.2rem;
}
.forma__info {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}
.forma__subtitle {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.forma__heading {
  font-size: 4rem;
  text-transform: uppercase;
  line-height: 1;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  margin-bottom: -0.5rem;
  color: #6F22FF;
}
.forma__sub {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}
.forma__label {
  width: 8.5rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.forma__text {
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.25;
  margin-bottom: 2.7rem;
}
.forma__sale {
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #6F22FF;
}
.forma__box {
  padding: 0.8rem 1.8em;
  border: 1px solid white;
  font-size: 1.4rem;
  line-height: normal;
  font-weight: 600;
  display: flex;
  row-gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
}
.forma__form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 2rem;
}
.forma__new {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.comments {
  max-height: 53.2rem;
  min-height: 53.2rem;
  position: absolute;
  left: 0;
  width: 100%;
  border-radius: 0.8rem;
  background: #1C1C1C;
}
.comments.height {
  max-height: calc(100% - 55.2rem);
  min-height: calc(100% - 55.2rem);
}

@media screen and (max-width: 1440px) {
  .forma {
    min-height: calc(100vh - 24rem);
  }
}
@media screen and (min-width: 1025px) {
  .for-mobile {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .for-desktop {
    display: none !important;
  }
  body {
    font-size: 2.8rem;
  }
  .container {
    max-width: 100%;
    width: 100%;
    padding: 0 2rem;
  }
  .btn {
    height: 7.2rem;
    width: 100%;
    font-size: 4rem;
  }
  .text--selected {
    font-size: 4.5rem;
  }
  .video {
    margin: 0 -2rem;
  }
  .form {
    padding: 1rem;
    margin-bottom: 2rem;
  }
  .form__heading {
    font-size: 4rem;
    margin-bottom: 1rem;
    justify-content: space-between;
  }
  .form__label {
    font-size: 2.4rem;
  }
  .form__subheading {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }
  .form__text {
    font-size: 2.4rem;
    justify-content: space-between;
  }
  .form__gift {
    font-size: 2.4rem;
  }
  .form__gift .title {
    font-size: 4rem;
  }
  .form__price {
    padding: 0.8rem 1.6rem;
  }
  .form-input {
    height: 6rem;
    padding: 1.6rem;
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
  }
  .form-btn {
    height: 7.2rem;
  }
  .top {
    padding: 0;
  }
  .top .container {
    flex-direction: column;
  }
  .content {
    width: 100%;
    margin-bottom: 10rem;
  }
  .side {
    width: 100%;
  }
  .blocks {
    flex-direction: column;
  }
  .comments {
    max-height: 100rem !important;
    margin-bottom: 5rem;
    position: static;
  }
}
/*footer*/
.footer {
  font-size: 2rem;
  line-height: 1.1;
  background: #000;
  color: #fff;
  border-top: 1px solid #454545;
  padding: 4.3rem 0 5.5rem;
}
.footer__documents {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  .footer__documents {
    align-items: center;
    gap: 4rem;
  }
}
.footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease-out, border 0.3s ease-out;
}
.footer a:hover {
  color: #6F22FF;
  border-color: #6F22FF;
}
.footer a svg {
  width: 2rem;
  fill: currentColor;
}
@media screen and (max-width: 1024px) {
  .footer a svg {
    width: 4rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 6rem 0;
    font-size: 2rem;
  }
  .footer__support {
    font-size: 2.4rem;
  }
}
.footer .container {
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .footer .container {
    padding: 0 2rem;
  }
}
.footer__row {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 6rem;
  margin-bottom: 2rem;
}
.footer__row:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .footer__row {
    min-height: 5rem;
    column-gap: 3rem;
    margin-bottom: 3rem;
  }
  .footer__row:last-child {
    margin-bottom: 0;
  }
}
.footer__phone {
  display: flex;
  column-gap: 6rem;
  min-width: 19rem;
}
.footer__phone > div {
  min-width: 19rem;
}
.footer__phone span {
  display: block;
  font-size: 1.4rem;
  color: #A3A3A3;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 1024px) {
  .footer__phone span {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
  }
}
.footer__phone a {
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .footer__phone a {
    font-size: 3.2rem;
  }
}
.footer__contacts {
  display: flex;
  column-gap: 6rem;
  align-items: center;
}
.footer__social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 19rem;
  flex-shrink: 0;
  border: 1px solid white;
  border-radius: 5px;
  column-gap: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 1rem;
}
@media screen and (max-width: 1024px) {
  .footer__social a {
    padding: 2rem;
    width: 28rem;
    font-size: 2rem;
  }
}
.footer__mail a {
  display: inline-flex;
  align-items: center;
  column-gap: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .footer__mail a {
    column-gap: 2rem;
    font-size: 2rem;
  }
}
.footer__copyright {
  text-transform: uppercase;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .footer__copyright {
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .footer__info {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
    align-items: center;
    margin: 0 auto;
  }
}

/*ENDfooter*/

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