@font-face {
  font-family: "Bebas Neue Cyrillic";
  src: url("./../fonts/Bebas_Neue_Cyrillic.ttf") format("truetype");
}
.for-mobile {
  display: none;
}
@media (max-width: 968px) {
  .for-mobile {
    display: block;
  }
}

html {
  font-size: 1.5625vw;
}
@media screen and (min-width: 968px) {
  html {
    font-size: 0.521vw;
  }
}

* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

body {
  font-family: "Roboto Condensed", sans-serif;
  background-color: #000;
  color: #fff;
}

.line__wrapper {
  display: flex;
  align-items: center;
  position: absolute;
  background: #be0000;
  overflow: hidden !important;
  width: 100%;
  rotate: 19deg;
  top: 20rem;
  right: -90rem;
}
@media (max-width: 967px) {
  .line__wrapper {
    rotate: 0deg;
    top: 0;
    right: 0;
  }
}

.line__box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  position: relative;
  animation: marguare 3s linear infinite;
  width: 100%;
  animation: runningLine 3s linear infinite;
}
@media (max-width: 967rem) {
  .line__box {
    padding: 0;
    animation: none;
  }
  .line__box.none {
    display: none;
  }
}

.line__item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  animation: runningLine 3s linear infinite;
}
.line__item p {
  font-family: "Bebas Neue Cyrillic";
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 3.48rem;
  letter-spacing: 2%;
  text-transform: uppercase;
}
@media (max-width: 967rem) {
  .line__item p {
    font-size: 3.2rem;
  }
}
.line__item img {
  width: 4.5em;
  height: 5.5em;
  rotate: -15deg;
}
@media (max-width: 967rem) {
  .line__item img {
    width: 3.6rem;
    height: 4.6rem;
  }
}

@keyframes runningLine {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media (max-width: 967rem) {
  @keyframes runningLine {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-103%);
    }
  }
}
.dots {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: absolute;
  right: 35rem;
  bottom: 17.5rem;
}
@media (max-width: 968px) {
  .dots {
    right: 27rem;
    bottom: 42.5rem;
  }
}

.dot {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #fff;
  border-radius: 50%;
}
.dot.active {
  background-color: #be0000;
}

@keyframes headerLaneMob {
  0% {
    background: url("./../images/confetti.png") top center/108rem no-repeat, url("./../images/slide1-mob.png") center 25rem/contain no-repeat;
  }
  25% {
    background: url("./../images/confetti.png") top center/108rem no-repeat, url("./../images/slide2-mob.png") center 25rem/contain no-repeat;
  }
  50% {
    background: url("./../images/confetti.png") top center/108rem no-repeat, url("./../images/slide3-mob.png") center 25rem/contain no-repeat;
  }
  75% {
    background: url("./../images/confetti.png") top center/108rem no-repeat, url("./../images/slide4-mob.png") center 25rem/contain no-repeat;
  }
  100% {
    background: url("./../images/confetti.png") top center/108rem no-repeat, url("./../images/slide1-mob.png") center 25rem/contain no-repeat;
  }
}
@keyframes headerLane {
  0% {
    background: url("./../images/confetti.png") left center/108rem no-repeat, url("./../images/slide1.png") right center/86.9rem no-repeat;
  }
  25% {
    background: url("./../images/confetti.png") left center/108rem no-repeat, url("./../images/slide2.png") right center/86.9rem no-repeat;
  }
  50% {
    background: url("./../images/confetti.png") left center/108rem no-repeat, url("./../images/slide3.png") right center/86.9rem no-repeat;
  }
  75% {
    background: url("./../images/confetti.png") left center/108rem no-repeat, url("./../images/slide4.png") right center/86.9rem no-repeat;
  }
  100% {
    background: url("./../images/confetti.png") left center/108rem no-repeat, url("./../images/slide1.png") right center/86.9rem no-repeat;
  }
}
.first {
  overflow: hidden !important;
  position: relative;
  animation: headerLane 25s infinite;
}
@media (max-width: 968px) {
  .first {
    animation: headerLaneMob 25s infinite;
  }
}
.first__content {
  display: flex;
  flex-direction: column;
  gap: 5.6rem;
  max-width: 87.7rem;
  padding: 16rem 0;
}
@media (max-width: 968px) {
  .first__content {
    padding: 6.4rem 0;
  }
}
.first__heading {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 968px) {
  .first__heading {
    max-width: 32.5rem;
  }
}
.first__subtitle {
  font-weight: 400;
  font-size: 4.8rem;
  line-height: 5.6rem;
}
@media (max-width: 968px) {
  .first__subtitle {
    font-size: 2.8rem;
    line-height: 3.2rem;
  }
}
.first__title {
  font-weight: 400;
  font-size: 10.4rem;
  line-height: 10.4rem;
  font-family: "Bebas Neue Cyrillic";
}
@media (max-width: 968px) {
  .first__title {
    font-size: 7rem;
    line-height: 7rem;
    text-wrap: nowrap;
  }
}
.first__text-box {
  position: relative;
}
@media (max-width: 968px) {
  .first__text-box {
    position: absolute;
    right: 2rem;
    top: 14rem;
    max-width: 50.5rem;
  }
}
.first__text {
  font-weight: 600;
  font-size: 6.4rem;
  line-height: 7.5rem;
}
@media (max-width: 968px) {
  .first__text {
    font-size: 2.2rem;
    line-height: 2.2rem;
    display: none;
  }
}
.first__span {
  font-family: "Bebas Neue Cyrillic";
  font-weight: 400;
  font-size: 4.8rem;
  line-height: 4.8rem;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  rotate: -20deg;
}
.first__span::after {
  content: "";
  position: absolute;
  width: 56.1rem;
  height: 22.1rem;
  background-image: url("./../images/icons/outline.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  rotate: 20deg;
}
@media (max-width: 968px) {
  .first__span::after {
    width: 38.1rem;
    height: 15.1rem;
    rotate: 12deg;
  }
}
@media (max-width: 968px) {
  .first__span {
    max-width: 50.5rem;
    font-size: 3.6rem;
    line-height: 4rem;
    rotate: -12deg;
  }
}

.span__holder {
  position: absolute;
  right: -15rem;
  top: 13rem;
}
@media (max-width: 968px) {
  .span__holder {
    right: 2rem;
    top: 11rem;
    position: relative;
  }
}

.container {
  max-width: 152rem;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 968px) {
  .container {
    padding: 0 4rem;
  }
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media (max-width: 968px) {
  .modal__form {
    margin-top: 37rem;
  }
}

.form-bg {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
@media (max-width: 968px) {
  .form-bg {
    gap: 1rem;
  }
}

.form-control {
  width: 100%;
  position: relative;
}
.form-control input {
  width: 100%;
  background-color: #fff;
  padding: 1.95rem 1.2rem;
  border-radius: 0.8rem;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.87rem;
  color: rgba(0, 0, 0, 0.4);
}
.form-control input::-moz-placeholder {
  font-family: "Roboto Condensed";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.87rem;
  color: rgba(0, 0, 0, 0.4);
}
.form-control input::placeholder {
  font-family: "Roboto Condensed";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.87rem;
  color: rgba(0, 0, 0, 0.4);
}

.error {
  color: red;
  font-size: 1.2rem;
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  display: none;
}

.btn {
  font-family: "Bebas Neue Cyrillic";
  font-weight: 400;
  font-size: 4.8rem;
  line-height: 4.8rem;
  padding: 2.5rem 0;
  width: 100%;
  text-transform: uppercase;
  border: none;
  box-shadow: 0px 5px 0px 0px #7a0000;
  background: linear-gradient(90deg, #a80808 0%, #e61616 54%, #a80808 100%);
  position: relative;
  border-radius: 1.2rem;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./../images/icons/button.png") center/cover no-repeat;
  opacity: 0.3;
  z-index: 2;
  border-radius: 1.2rem;
}
.btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url("./../images/icons/bow.svg") center/cover no-repeat;
  height: 9.8rem;
  width: 10rem;
}

.agreement {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.agreement input,
.agreement label {
  pointer-events: none;
}
.agreement label {
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.34rem;
}
.agreement input {
  width: 1.6rem;
  height: 1.6rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-radius: 0.4rem;
  background-image: url("./../images/icons/checked.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.second {
  padding: 9rem 0;
  background-image: url("./../images/confetti2.png");
  background-size: cover;
  padding: 8rem 0;
}
@media (max-width: 968px) {
  .second {
    padding: 0 0 8rem 0;
  }
}
.second__content {
  display: flex;
  gap: 2.4rem;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 968px) {
  .second__content {
    flex-direction: column;
  }
}
.second__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 74.8rem;
}
@media (max-width: 968px) {
  .second__inner {
    margin-top: 9rem;
    max-width: auto;
  }
}
.second__title {
  font-family: "Bebas Neue Cyrillic";
  font-weight: 400;
  font-size: 4.8rem;
  line-height: 4.8rem;
  text-align: center;
}
@media (max-width: 968px) {
  .second__title {
    font-size: 4rem;
    line-height: 4rem;
  }
}
.second__box {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: rgba(43, 42, 42, 0.6980392157);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border-radius: 0.8rem;
}
.second__number {
  font-family: "Bebas Neue Cyrillic";
  font-weight: 400;
  font-size: 6.4rem;
  line-height: 6.4rem;
  color: #ff2424;
}
.second__text {
  font-weight: 400;
  font-size: 4rem;
  line-height: 4.6rem;
}
@media (max-width: 968px) {
  .second__text {
    font-size: 2.4rem;
    line-height: 2.6rem;
  }
}
.second__info-text {
  font-weight: 400;
  font-size: 4rem;
  line-height: 4.68rem;
  text-align: center;
}
@media (max-width: 968px) {
  .second__info-text {
    font-size: 2.8rem;
  }
}
.second__info-text span {
  position: relative;
}
.second__info-text span.bold {
  font-weight: 700;
}
.second__info-text span.bg::after {
  content: "";
  position: absolute;
  width: 21rem;
  height: 7.85rem;
  background-image: url("./../images/icons/outline-small.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  inset: 0;
  top: -2rem;
  left: -1rem;
}
@media (max-width: 968px) {
  .second__info-text span.bg::after {
    content: "";
    width: 16rem;
    height: 5.85rem;
    top: -1rem;
  }
}
.second__info-text span.red {
  font-family: "Roboto Condensed";
  font-weight: 800;
  font-size: 9.6rem;
  line-height: 11.25rem;
  background: linear-gradient(180deg, #ff0707 15.2%, rgba(255, 19, 19, 0.64) 58.06%, rgba(255, 2, 2, 0.32) 86%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media (max-width: 968px) {
  .second__info-text span.red {
    font-size: 7.2rem;
  }
}
.second__info-text b {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.second__bonus {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 1.2rem;
  padding: 2.6rem 2.6rem 10.7rem 2.6rem;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  background: url("./../images/shine.png") center/cover no-repeat, url("./../images/present-bg.png") center/cover no-repeat;
  position: relative;
  border-radius: 0.8rem;
}
.second__bonus::before {
  content: "";
  position: absolute;
  width: 68.5rem;
  height: 68.5rem;
  background-image: url("./../images/icons/present.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  left: -20rem;
  bottom: -16rem;
  pointer-events: none;
}
@media (max-width: 968px) {
  .second__bonus::before {
    left: -13rem;
    bottom: -7rem;
    width: 54.5rem;
    height: 44.5rem;
  }
}
@media (max-width: 968px) {
  .second__bonus {
    border-radius: 2rem;
  }
}
.second__bottom {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 6.4rem;
}
.second__bottom-text {
  font-weight: 600;
  font-size: 4rem;
  line-height: 4.6rem;
  text-align: center;
}
@media (max-width: 968px) {
  .second__bottom-text {
    font-size: 3rem;
    line-height: 3rem;
    margin-top: 5rem;
  }
}

.bonus__title {
  font-weight: 400;
  font-size: 4rem;
  line-height: 4.68rem;
  text-align: center;
}
@media (max-width: 968px) {
  .bonus__title {
    font-size: 2.6rem;
    line-height: 3.6rem;
  }
}
.bonus__text {
  font-family: "Roboto Condensed";
  font-weight: 600;
  font-size: 4rem;
  line-height: 4.68rem;
  text-align: center;
  background: linear-gradient(98.39deg, #c20000 3.19%, #8f0101 93.44%);
  padding: 2rem 4rem;
  border-radius: 0.8rem;
  max-width: 46rem;
  width: 100%;
}
@media (max-width: 968px) {
  .bonus__text {
    max-width: 32rem;
    font-size: 2.8rem;
    line-height: 3rem;
  }
}

.btn.link {
  color: #fff;
  max-width: 87.7rem;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.footer__block.for-mobile {
  display: none;
}

.footer {
  font-size: 2rem;
  font-family: "Rubik", sans-serif;
  line-height: 1.1;
  background: #070707;
  color: #fff;
  border-top: 1px solid #454545;
  padding: 4.3rem 0 5.5rem;
}

.footer__dogovor {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  align-items: end;
}

.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: #7c66ff;
  border-color: #7c66ff;
}

.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;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
  margin-bottom: 2rem;
}

.footer__row:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .footer__row {
    min-height: 5rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
    margin-bottom: 3rem;
  }
  .footer__row:last-child {
    margin-bottom: 0;
  }
}
.footer__phone {
  display: flex;
  -moz-column-gap: 6rem;
       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: 3rem;
  }
}
.footer__contacts {
  display: flex;
  -moz-column-gap: 6rem;
       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;
  -moz-column-gap: 2rem;
       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;
  -moz-column-gap: 1.2rem;
       column-gap: 1.2rem;
}

@media screen and (max-width: 1024px) {
  .footer__mail a {
    -moz-column-gap: 2rem;
         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;
  }
}
@media (max-width: 968px) {
  .footer__block.for-mobile {
    display: block;
  }
  .footer__block.for-desktop {
    display: none;
  }
  .form-separator-mobile {
    width: 100%;
    height: 1px;
    background-color: #d6c7c7;
  }
}/*# sourceMappingURL=style.css.map */