@font-face {
  font-family: 'Proxima Nova Rg';
  src: url('/assets/fonts/ProximaNova-Bold.eot');
  src: url('/assets/fonts/ProximaNova-Bold.eot?#iefix') format('embedded-opentype'), url('/assets/fonts/ProximaNova-Bold.woff2') format('woff2'), url('/assets/fonts/ProximaNova-Bold.woff') format('woff'), url('/assets/fonts/ProximaNova-Bold.ttf') format('truetype'), url('/assets/fonts/ProximaNova-Bold.svg#ProximaNova-Bold') format('svg');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Nova Rg';
  src: url('/assets/fonts/ProximaNova-Regular.eot');
  src: url('/assets/fonts/ProximaNova-Regular.eot?#iefix') format('embedded-opentype'), url('/assets/fonts/ProximaNova-Regular.woff2') format('woff2'), url('/assets/fonts/ProximaNova-Regular.woff') format('woff'), url('/assets/fonts/ProximaNova-Regular.ttf') format('truetype'), url('/assets/fonts/ProximaNova-Regular.svg#ProximaNova-Regular') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul,
ol {
  list-style: none;
}

body {
  font-family: 'Proxima Nova';
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

input,
button {
  border: none;
  outline: none;
  font-family: inherit;
  font-size: inherit;
  background-color: transparent;
  color: inherit;
}

.wrapper {
  max-width: 1140px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}

.my-section {
  padding: 60px 0;
}

/* Шапка */

.header {
  padding: 20px 0;
}

.header__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.header__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.header__right > *:not(:last-child) {
  margin-right: 40px;
}

.header__cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  font-weight: 700;
  font-size: 19px;
}

.header__cont img {
  display: block;
  margin-right: 10px;
}

.header__cont span {
  font-weight: 400;
}

.header__tg img {
  margin-left: 10px;
}

/* / Шапка */

/* Hero */

.hero {
  padding-top: 80px;
  padding-bottom: 60px;
}

.hero__title {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 86px;
  text-align: center;
}

.hero__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.hero__video {
  height: 404px;
  width: 50%;
  margin-right: 20px;
  position: relative;
}

.hero__preview {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 10;
  background-color: #000;
}

.hero__preview.hidden {
  opacity: 0;
  pointer-events: none;
}

.hero__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.7;
}

.hero__play {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.hero__iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.form {
  width: 100%;
  max-width: 320px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 16px;
  padding: 40px 28px 30px 28px;
  color: #fff;
}

.form__title {
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  margin-bottom: 10px;
}

.form__descr {
  font-size: 14px;
  text-align: center;
  margin-bottom: 20px;
}

.form__checks {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin-bottom: 30px;
}

.form__check {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  cursor: pointer;
}

input:checked + .form__check_rd::before {
  background-color: #828282;
}

.form__check_rd {
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  display: inline-block;
  width: 24px;
  height: 24px;
  background: -webkit-linear-gradient(top, #FF45F8 0%, #D200CA 100%);
  background: linear-gradient(180deg, #FF45F8 0%, #D200CA 100%);
  position: relative;
  margin-right: 10px;
  border-radius: 50%;
}

.form__check_rd::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #000;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.form__check_name {
  font-size: 14px;
}

.form__field {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #B4B4B4;
  margin-bottom: 25px;
}

.form__field img {
  margin-right: 10px;
  display: block;
}

.form__inp {
  display: block;
  width: calc(100% - 35px);
}

.form__submit {
  display: block;
  width: 100%;
  background: -webkit-linear-gradient(top, #FF45F8 0%, #D200CA 100%);
  background: linear-gradient(180deg, #FF45F8 0%, #D200CA 100%);
  border-radius: 8px;
  font-weight: 700;
  padding: 16px 0;
  cursor: pointer;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.form__bt {
  text-align: center;
  font-size: 14px;
}

/* / Hero */

/* Преимущества */

.advantages__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: -60px;
}

.advantages__item {
  width: calc(100% / 12 * 4 - 20px);
  margin-left: 10px;
  margin-right: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  margin-bottom: 60px;
}

.advantages__img {
  display: block;
  margin-bottom: 15px;
}

.advantages__name {
  font-size: 21px;
  font-weight: 700;
  text-align: center;
}

/* / Преимущества */

/* СЕО */

.seo__title {
  margin-bottom: 30px;
}

.seo__txt {
  line-height: 1.7;
  margin-bottom: 25px;
}

.seo__subtitle {
  text-align: center;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 700;
}

.seo__ol,
.seo__ul {
  margin-bottom: 24px;
}

.seo__ol {
  counter-reset: myCounter;
}

.seo__ol li {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  line-height: 1.7;
}

.seo__ol li:not(:last-child) {
  margin-bottom: 10px;
}

.seo__ol li::before {
  margin-right: 10px;
  counter-increment: myCounter;
  content: counter(myCounter) ".";
  display: block;
  min-width: 13px;
  font-size: 16px;
  color: #fff;
}

.seo__ul li {
  position: relative;
  padding-left: 23px;
  line-height: 1.7;
}

.seo__ul li:not(:last-child) {
  margin-bottom: 10px;
}

.seo__ul li::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  left: 0;
  top: 10px;
  border-radius: 50px;
  background: -webkit-linear-gradient(top, #FF45F8 0%, #D200CA 100%);
  background: linear-gradient(180deg, #FF45F8 0%, #D200CA 100%);
}

/* / СЕО */

/* Системные требования */

.system__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: -20px;
}

.system__item {
  width: calc(50% - 20px);
  margin-left: 10px;
  margin-right: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  font-size: 21px;
  margin-bottom: 20px;
}

.system__item img {
  margin-right: 20px;
}

/* / Системные требования */

.footer {
  padding: 40px 0 67px;
  background: -webkit-linear-gradient(bottom, #000000, #000000), #039BE5;
  background: linear-gradient(0deg, #000000, #000000), #039BE5;
}

.footer__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.footer__logo {
  margin-bottom: 10px;
}

.footer__cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  font-weight: 700;
  font-size: 19px;
}

.footer__cont:not(:last-child) {
  margin-bottom: 20px;
}

.footer__cont img {
  display: block;
  margin-right: 10px;
}

.footer__cont span {
  font-weight: 400;
}

.footer__tg img {
  margin-left: 10px;
}

.footer__copyright {
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
}

@media screen and (max-width: 992px) {
  .section-title {
    font-size: 35px;
  }

  .my-section {
    padding: 50px 0;
  }

  .header__right > *:not(:last-child) {
    margin-right: 20px;
  }

  .header__cont {
    font-size: 17px;
  }

  .hero__title {
    font-size: 44px;
    margin-bottom: 60px;
  }

  .seo__subtitle {
    font-size: 22px;
  }

  .advantages__name {
    font-size: 18px;
  }
}

@media screen and (max-width: 900px) {
  .header__cont * {
    display: none;
  }

  .header__cont img {
    display: block;
    margin-right: 0;
  }

  .header__tg {
    position: relative;
    top: -2px;
  }

  .header__tg img {
    margin-left: 0;
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 768px) {
  .my-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .hero__title {
    font-size: 38px;
  }

  .hero__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
  }

  .hero__video {
    margin-right: 0;
    width: 100%;
    max-width: 500px;
    height: unset;
    aspect-ratio: 1.25;
    margin-bottom: 30px;
  }

  .system__item {
    font-size: 16px;
  }

  .system__item img {
    width: 42px;
  }

  .seo__subtitle {
    font-size: 18px;
  }

  .advantages__img {
    width: 60px;
  }

  .advantages__name {
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  .system__item {
    width: calc(100% - 20px);
  }

  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
  }

  .footer__left {
    text-align: center;
    margin-bottom: 20px;
  }

  .footer__cont {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .section-title {
    margin-bottom: 30px;
  }

  .page-title {
    font-size: 22px;
  }

  .my-section {
    padding: 30px 0;
  }

  .header__cont:not(:last-child) {
    margin-right: 12px;
  }

  .hero__title {
    font-size: 32px;
  }

  .advantages__item {
    width: calc(50% - 20px);
    margin-bottom: 30px;
  }

  .advantages__img {
    width: 45px;
  }

  .advantages__name {
    font-size: 14px;
  }

  .seo__txt {
    font-size: 14px;
  }

  .seo__ul li,
  .seo__ol li {
    font-size: 14px;
  }
}

.menu ul{
  display: flex;
  justify-content: space-evenly;
  width: 80%;
  margin: 35px auto auto auto;
  font-weight: 700;
}

.advantages__iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.privacy-content h1{
  text-align: center;
  font-size: 33px;
}
.privacy-content h2{
  margin: 37px 0 17px 0;
  text-align: center;
}
.seo img{
  margin: 30px auto;
  display: block;
  width: 65%;
}

