@font-face {
  font-family: "Roboto";
  src: url("./../fonts/Roboto/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("./../fonts/Roboto/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("./../fonts/Roboto/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Bebas";
  src: url("./../fonts/Bebas_Neue_Cyrillic.ttf");
  font-style: normal;
}
html {
  font-size: 1.5625vw;
}
@media screen and (min-width: 968px) {
  html {
    font-size: 0.521vw;
  }
}

body {
  font-family: "Roboto";
  color: #fff;
}

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

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

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

a:hover {
  text-decoration: none;
}

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;
}

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;
}

.container {
  max-width: 152rem;
  width: 100%;
  margin: 0 auto;
}

.main {
  background-image: url("./../images/bg-image.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.content__heading {
  display: flex;
  flex-direction: column;
  gap: 4.3rem;
  position: relative;
}

.content__heading-discount {
  position: absolute;
  width: 35.5rem;
  height: 35.5rem;
  right: 0rem;
  bottom: -12rem;
  pointer-events: none;
}

.content {
  padding: 8.3rem 0 5.6rem 0;
  max-width: 113rem;
  width: 100%;
  margin-top: -5.5rem;
}

.content__heading-top {
  font-weight: 500;
  font-size: 3.2rem;
  margin-bottom: -3rem;
}

.content__heading-title {
  font-family: "Bebas";
  font-weight: 400;
  font-size: 15rem;
  position: relative;
}

.content__heading-title-main {
  position: relative;
  z-index: 5;
}

.content__heading-title-blue {
  position: absolute;
  font-weight: 400;
  font-size: 15rem;
  color: #5a80ff;
  filter: blur(2rem);
  top: 0;
  left: 0;
  z-index: 2;
}

.content__inner-text {
  font-weight: 700;
  font-size: 3.6rem;
  display: inline-flex;
  align-items: center;
}
.content__inner-text span {
  font-weight: 800;
  font-size: 6.4rem;
  color: #5aa2ff;
}

.content__inner-box {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.content__inner-card {
  max-width: 36.1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  background-color: #fff;
  padding: 2rem 2rem 3.2rem 2rem;
  border-radius: 3rem;
}
.content__inner-card::before {
  content: "";
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.2rem;
  border-radius: 0.8rem;
  background: linear-gradient(121deg, #808080 0%, #939393 20.5%, #c0c0c0 37.5%, #e0e0e0 42.5%, #c3c3c3 72.5%, #a1a1a1 96.5%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
}

.content__inner-card-title {
  font-family: "Bebas";
  font-weight: 400;
  font-size: 3.2rem;
  text-transform: uppercase;
  color: #272d40;
}

.content__inner-card-text {
  font-weight: 400;
  font-size: 2.4rem;
  color: #272d40;
  opacity: 0.7;
}

.content__bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin-top: 3.2rem;
}

.content__bottom-text {
  font-weight: 700;
  font-size: 3.2rem;
  text-align: center;
}

.content__bottom-btn-mobile,
.content__bottom-btn {
  width: 100%;
  padding: 4.6rem 0;
  position: relative;
  z-index: 2;
  animation: pulse 1.5s infinite;
}
.content__bottom-btn-mobile svg,
.content__bottom-btn svg {
  position: absolute;
  inset: 0;
}
.content__bottom-btn-mobile span,
.content__bottom-btn span {
  font-family: "Bebas";
  position: relative;
  z-index: 10;
  font-weight: 400;
  font-size: 4.2rem;
  text-align: center;
  color: #000;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
:root {
  --logo-width: 22rem;
  --gap: 2rem;
  --speed: 1s;
}

.runing-line__box {
  position: absolute;
  display: flex;
  align-items: center;
  width: var(--logo-width);
  height: 100%;
  animation: scroll-line var(--speed) linear infinite;
  gap: 2rem;
}
.runing-line__box img {
  width: 4.2rem;
  height: 5.6rem;
}

.runing-line__text {
  font-family: "Bebas";
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 145%;
  letter-spacing: 0.02em;
}

.runing-line {
  display: flex;
  align-items: center;
  height: 8rem;
  background: #134aff;
  padding: 1.2rem 0;
  overflow: hidden;
  position: relative;
}

.runing-line__box:nth-child(1) {
  left: calc((var(--logo-width) + var(--gap)) * 0);
}

.runing-line__box:nth-child(2) {
  left: calc((var(--logo-width) + var(--gap)) * 1);
}

.runing-line__box:nth-child(3) {
  left: calc((var(--logo-width) + var(--gap)) * 2);
}

.runing-line__box:nth-child(4) {
  left: calc((var(--logo-width) + var(--gap)) * 3);
}

.runing-line__box:nth-child(5) {
  left: calc((var(--logo-width) + var(--gap)) * 4);
}

.runing-line__box:nth-child(6) {
  left: calc((var(--logo-width) + var(--gap)) * 5);
}

.runing-line__box:nth-child(7) {
  left: calc((var(--logo-width) + var(--gap)) * 6);
}

.runing-line__box:nth-child(8) {
  left: calc((var(--logo-width) + var(--gap)) * 7);
}

.runing-line__box:nth-child(9) {
  left: calc((var(--logo-width) + var(--gap)) * 8);
}

.runing-line__box:nth-child(10) {
  left: calc((var(--logo-width) + var(--gap)) * 9);
}

.runing-line__box:nth-child(11) {
  left: calc((var(--logo-width) + var(--gap)) * 10);
}

.runing-line__box:nth-child(12) {
  left: calc((var(--logo-width) + var(--gap)) * 11);
}

@keyframes scroll-line {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
.modal {
  max-width: 88.4rem;
  width: 100%;
  padding: 4rem;
  background-color: #fff;
  margin: 0 auto;
  position: fixed;
  transform: translate(-50%, -50%);
  z-index: 100;
  top: 50%;
  left: 50%;
  border-radius: 0.8rem;
  display: none;
}

.modal.open {
  display: block;
}

.modal__close {
  position: absolute;
  top: 4rem;
  right: 4rem;
  cursor: pointer;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.error {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: red;
  font-size: 1.2rem;
  display: none;
}
.for-mobile {
  display: none;
}
.form-checked {
  margin: 2rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.form-checked label {
  font-weight: 400;
  font-size: 1.6rem;
  color: #000;
}

.form-control {
  position: relative;
}
.form-control input {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.8rem;
  padding: 1.2rem;
  width: 100%;
  font-weight: 400;
  font-size: 1.6rem;
  color: rgba(0, 0, 0, 0.4);
}

.modal__title {
  font-weight: 400;
  font-size: 3.6rem;
  line-height: 145%;
  color: #0f0f0f;
  border-radius: 2rem;
  margin-bottom: 2.4rem;
}

.btn.form-btn {
  font-family: "Bebas";
  font-weight: 400;
  font-size: 3.2rem;
  color: #000;
  border-radius: 0.8rem;
  padding: 2rem;
  background: linear-gradient(121deg, #808080 0%, #939393 20.5%, #c0c0c0 37.5%, #e0e0e0 42.5%, #c3c3c3 72.5%, #a1a1a1 96.5%);
}

.content__bottom-btn-mobile {
  display: none;
}

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

.footer {
  font-size: 2rem;
  font-family: "Roboto", 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;
  }
}
@media (max-width: 968px) {
  .main {
    background-image: url("./../images/bg-image-mobile.png");
    background-size: contain;
    background-position: top bottom;
    background-color: #0e0e0e;
    padding-top: 2rem;
  }
  .for-mobile {
    display: block;
  }
  .content {
    padding: 6rem 3.2rem 20rem;
  }
  .content__heading-top {
    font-weight: 500;
    font-size: 3.2rem;
    margin-bottom: 20rem;
  }
  .content__heading-title {
    font-weight: 400;
    font-size: 6rem;
    line-height: 90%;
    max-width: min-content;
  }
  .content__heading-title-blue {
    font-weight: 400;
    font-size: 6rem;
    line-height: 90%;
  }
  .content__heading-discount {
    display: none;
  }
  .content__inner-text {
    font-weight: 700;
    font-size: 3.2rem;
    margin-top: 4rem;
  }
  .content__inner-text span {
    font-size: 6.4rem;
  }
  .content__inner-box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 4rem;
  }
  .content__inner-card {
    max-width: 100%;
  }
  .content__inner-card-title {
    font-size: 4rem;
  }
  .content__inner-card-text {
    font-size: 2.8rem;
  }
  .content__bottom-text {
    font-size: 2.8rem;
  }
  .content__bottom-btn-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 6.4rem;
    text-align: center;
  }
  .content__bottom-btn {
    display: none;
  }
  .content__inner-text.pc-text {
    display: none;
  }
  .content__inner-text {
    display: block;
  }
} /*# sourceMappingURL=style.css.map */
