@charset "UTF-8";
@font-face {
  font-family: "TT Firs Neue";
  src: url("../fonts/TTFirsNeue-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "TT Firs Neue";
  src: url("../fonts/TTFirsNeue-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "TT Firs Neue";
  src: url("../fonts/TTFirsNeue-DemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "TT Firs Neue";
  src: url("../fonts/TTFirsNeue-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "TT Firs Neue";
  src: url("../fonts/TTFirsNeue-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "TT Firs Neue";
  src: url("../fonts/TTFirsNeue-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "TT Firs Neue";
  src: url("../fonts/TTFirsNeue-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "TT Firs Neue";
  src: url("../fonts/TTFirsNeue-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}
.container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0px;
}
@media screen and (max-width: 1400px) {
  .container {
    max-width: 100%;
    padding: 0 28px;
  }
}
@media screen and (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 14px;
  }
}

/* Указываем box sizing */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

html {
  overflow-x: hidden !important;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #fff;
  background: #030202;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

.header {
  background: #030202;
  padding: 16px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
}
.header .container {
  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;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 22px;
}
@media screen and (max-width: 1200px) {
  .logo {
    font-size: 18.3px;
  }
}
.logo::before {
  content: "";
  min-width: 10px;
  min-height: 10px;
  background: #D22928;
  border-radius: 100px;
  margin-right: 10px;
}
@media screen and (max-width: 1200px) {
  .logo::before {
    margin-right: 8px;
    min-width: 8px;
    min-height: 8px;
  }
}
.logo a {
  text-decoration: none;
  color: #fff;
}

.top__menu .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top__menu .menu .menu-item {
  margin-right: 36px;
}
.top__menu .menu .menu-item:nth-last-child(1) {
  margin-right: 0;
}
.top__menu .menu .menu-item a {
  font-weight: 300;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6588235294);
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.top__menu .menu .menu-item a:hover {
  color: #D22928;
}

.header__buttons {
  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: 20px;
}
@media screen and (max-width: 1200px) {
  .header__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.button1 {
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  background: transparent;
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  cursor: pointer;
  border: none;
  outline: none;
  padding: 14px 28px;
  border-radius: 12px;
  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 transparent;
}
@media screen and (max-width: 600px) {
  .button1 {
    width: 100%;
  }
}
.button1::after {
  content: "";
  width: 13px;
  height: 18px;
  display: block;
  background: url("../img/lock.svg") no-repeat;
  margin-left: 8px;
}
.button1:hover {
  border: 1px solid #fff;
}

.button2 {
  font-weight: 600;
  font-size: 15px;
  color: #000;
  background: #fff;
  text-decoration: 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;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  cursor: pointer;
  border: none;
  outline: none;
  padding: 14px 28px;
  border-radius: 12px;
}
@media screen and (max-width: 600px) {
  .button2 {
    width: 100%;
  }
}
.button2:hover {
  background: #D22928;
  color: #fff;
}

.burger__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  display: none;
  margin-left: 30px;
}
@media screen and (max-width: 1200px) {
  .burger__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 600px) {
  .burger__button {
    margin-left: 15px;
  }
}

.burger__name {
  font-size: 17px;
  color: #fff;
  line-height: 100%;
  margin-right: 11px;
  display: none;
}
@media screen and (max-width: 1024px) {
  .burger__name {
    font-size: 14px;
  }
}

.burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 30px;
  height: 30px;
  position: relative;
}
.burger span {
  width: 25px;
  height: 1px;
  margin-bottom: 5px;
  background: #fff;
  display: block;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.burger span:nth-last-child(1) {
  margin-bottom: 0;
}
.burger span:nth-child(2) {
  width: 15px;
}
.burger span:nth-child(3) {
  width: 20px;
}
.burger__opened span {
  position: absolute;
  margin-bottom: 0;
}
.burger__opened span:nth-child(1) {
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  opacity: 0;
  visibility: hidden;
}
.burger__opened span:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 25px;
}
.burger__opened span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 25px;
}

.body__opened {
  overflow: hidden;
}

.back {
  background: rgba(0, 0, 0, 0.7);
  /* backdrop-filter: blur(16.7px); */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 98;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  opacity: 0;
  visibility: hidden;
}

.back__opened {
  opacity: 1;
  visibility: visible;
}

.body__opened .back {
  opacity: 1;
  visibility: visible;
}

.mobile {
  position: fixed;
  top: 62px;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.mobile .top__menu .menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.mobile .top__menu .menu .menu-item {
  margin-right: 0;
  margin-bottom: 10px;
}
.mobile .top__menu .menu .menu-item a {
  font-size: 20px;
  display: block;
}
.mobile .top__menu .menu .menu-item-has-children a::after {
  display: none;
}
.mobile .top__menu .menu .menu-item-has-children .sub-menu {
  display: block;
  position: relative;
  background: transparent;
}
@media screen and (max-width: 1024px) {
  .mobile {
    width: 100%;
    overflow-y: scroll;
  }
}

.mob {
  background: #161616;
  padding: 15px;
  border-radius: 12px;
}

.mobile__menu .top__menu {
  margin-right: 0;
}
.mobile__menu .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.mobile__menu .menu .menu-item {
  width: 100%;
}

.mobile__opened {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

#bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #000;
}
#bg canvas {
  display: block;
}

.video__back {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  padding-top: 81px;
}
@media screen and (max-width: 1024px) {
  .video__back {
    display: none;
    padding-top: 0;
  }
}

.video__back__mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  .video__back__mobile {
    display: block;
    width: 511px;
    position: absolute;
    right: 50px;
    background-size: cover;
    top: 200px;
  }
}

.section1 {
  padding-top: 81px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .section1 {
    height: auto;
  }
}
@media screen and (max-width: 1024px) {
  .section1 {
    padding-top: 62x;
  }
}

.section1__back {
  background: linear-gradient(91.83deg, #040404 31.57%, rgba(4, 4, 4, 0) 62.74%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .section1__back {
    background: linear-gradient(91.83deg, #040404 51.57%, rgba(4, 4, 4, 0) 82.74%);
    display: none;
  }
}

.s1__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 100px 0;
}
@media screen and (max-width: 1200px) {
  .s1__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .s1__row {
    padding: 0px 0;
  }
}

.s1__left {
  width: 48%;
}
@media screen and (max-width: 1200px) {
  .s1__left {
    width: 100%;
    margin-bottom: 80px;
  }
}

.s1__right {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .s1__right {
    width: 100%;
  }
}

.s1__txt1 {
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: #D22928;
  margin-bottom: 26px;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 1024px) {
  .s1__txt1 {
    font-size: 10px;
    margin-bottom: 12.6px;
  }
}

.s1__title {
  font-family: "TT Firs Neue";
  font-size: 70px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 24px;
}
.s1__title span {
  font-weight: 700;
  color: #D22928;
}
@media screen and (max-width: 1024px) {
  .s1__title {
    font-size: 36px;
    margin-bottom: 12.6px;
  }
}

.s1__txt2 {
  font-size: 15px;
  line-height: 22px;
  font-weight: 300;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .s1__txt2 {
    font-size: 13px;
    line-height: 18x;
    margin-bottom: 0;
  }
  .s1__txt2 br {
    display: none;
  }
}

.s1__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .s1__buttons {
    gap: 12px;
    margin-bottom: 22px;
  }
}

.button3 {
  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;
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  outline: none;
  border-radius: 12px;
  background: #D22928;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  padding: 17.6px 40px;
  cursor: pointer;
  outline: none;
  border: none;
}
.button3:hover {
  background: #fff;
  color: #000;
}
.button3:hover::after {
  background: #000;
}
.button3::after {
  content: "";
  width: 13px;
  height: 13px;
  -webkit-mask-image: url("../img/arrow__up.svg");
          mask-image: url("../img/arrow__up.svg");
  background: #fff;
  display: block;
  margin-left: 13px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
@media screen and (max-width: 1024px) {
  .button3 {
    padding: 14px 16px;
    font-size: 13px;
    width: 50%;
  }
  .button3::after {
    margin-left: 7px;
  }
}

.button4 {
  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;
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  outline: none;
  border-radius: 12px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  padding: 17.6px 40px;
  border: 1px solid #fff;
  cursor: pointer;
  outline: none;
}
.button4:hover {
  background: #fff;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .button4 {
    padding: 14px 16px;
    font-size: 13px;
    width: 50%;
  }
}

.s1__last {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .s1__last {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.last__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6588235294);
}
.last__txt::before {
  margin-right: 12px;
}

.last__txt1::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("../img/login.svg") no-repeat;
  display: block;
}

.last__txt2::before {
  content: "";
  width: 22px;
  height: 22px;
  background: url("../img/truck.svg") no-repeat;
  display: block;
}

.s1__block {
  border: 1px solid rgba(255, 255, 255, 0.2705882353);
  border-radius: 12px;
  background: #000;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 18px 15px;
}
@media screen and (max-width: 1200px) {
  .s1__block {
    padding: 8px 10px;
  }
}
.s1__block::before {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 100px;
  background: #fff;
  margin-right: 10px;
  position: relative;
  top: 5px;
}

.s1__block__content {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6588235294);
}
.s1__block__content strong {
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .s1__block__content {
    font-size: 9px;
  }
  .s1__block__content strong {
    font-size: 10px;
  }
}

.s1__block1 {
  position: relative;
  left: 207px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1200px) {
  .s1__block1 {
    display: none;
  }
}

.s1__block2 {
  margin-bottom: 90px;
  border: 1px solid #D22928;
}
.s1__block2::before {
  background: #D22928;
}
.s1__block2 .s1__block__content strong {
  color: #D22928;
}
@media screen and (max-width: 1200px) {
  .s1__block2 {
    margin-bottom: 40px;
  }
}

.s1__block3 {
  -ms-flex-item-align: end;
      align-self: flex-end;
  background: rgba(0, 0, 0, 0.11);
  border: 1px solid #FFFFFF;
  backdrop-filter: blur(11px);
}
.s1__block3::before {
  content: "";
  min-width: 23px;
  min-height: 23px;
  background: url("../img/warning.svg") no-repeat;
  top: 0;
}
@media screen and (max-width: 1024px) {
  .s1__block3 {
    position: relative;
    right: 30px;
  }
}

.s1__block4 {
  -ms-flex-item-align: end;
      align-self: flex-end;
  position: relative;
  right: 250px;
}
@media screen and (max-width: 1200px) {
  .s1__block4 {
    display: none;
  }
}

.s1__mobile {
  margin-top: 50px;
}

.section2 {
  padding: 100px 0;
}
@media screen and (max-width: 1200px) {
  .section2 {
    padding: 60px 0;
    position: relative;
  }
}

.s2__decor1 {
  display: none;
}
@media screen and (max-width: 1024px) {
  .s2__decor1 {
    display: block;
    width: 328px;
    height: 203px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
}

.s2__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .s2__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.s2__left {
  position: relative;
  width: 70%;
  min-height: 550px;
}
@media screen and (max-width: 1024px) {
  .s2__left {
    min-height: auto;
    width: 100%;
    background: transparent;
    margin-bottom: 20px;
  }
}

.s2__video {
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 1024px) {
  .s2__video {
    display: none;
  }
}
.s2__video video {
  width: 110%;
}

.s2__right {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .s2__right {
    width: 100%;
  }
}

.s2__txt1 {
  font-size: 14px;
  color: #D22928;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
@media screen and (max-width: 1024px) {
  .s2__txt1 {
    font-size: 10px;
  }
}

.s2__title {
  font-weight: 400;
  font-size: 52px;
  line-height: 100%;
  font-family: "TT Firs Neue";
  margin-bottom: 30px;
}
.s2__title span {
  font-weight: 700;
  color: #D22928;
}
@media screen and (max-width: 1024px) {
  .s2__title {
    font-size: 34px;
    margin-bottom: 12px;
  }
}

.s2__txt2 {
  font-size: 15px;
  line-height: 22px;
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .s2__txt2 {
    font-size: 13px;
    line-height: 18px;
  }
}

.s2__item-ico {
  margin-right: 10px;
}
.s2__item-ico img {
  width: 75px;
  height: 75px;
}
@media screen and (max-width: 1024px) {
  .s2__item-ico img {
    width: 53px;
    height: 53px;
  }
}

.s2__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0px;
}
.s2__item:nth-last-child(1) {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .s2__item {
    font-size: 12px;
    margin-bottom: 0;
  }
}

.s2__block {
  position: relative;
  top: 55px;
}
@media screen and (max-width: 1024px) {
  .s2__block {
    top: 0;
  }
}

.s2__last {
  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-radius: 12px;
  border: 1px solid #D22928;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  margin-top: -100px;
  position: relative;
  z-index: 1;
  padding: 20px;
  font-size: 13px;
}
@media screen and (max-width: 1024px) {
  .s2__last {
    margin-top: 0;
    width: 100%;
    font-size: 12px;
    margin-top: 20px;
    padding: 12px 20px;
  }
}
.s2__last span {
  font-weight: 600;
  color: #D22928;
}
.s2__last::before {
  content: "";
  min-width: 23px;
  min-height: 20px;
  background: url("../img/warning2.svg") no-repeat;
  display: block;
  margin-right: 12px;
}

.section3 {
  overflow-x: hidden;
}

.s3__txt1 {
  text-align: center;
}

.s3__title {
  text-align: center;
}

.s3__txt2 {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .s3__txt2 {
    margin-bottom: 30px;
  }
}

.slide {
  padding: 20px;
  padding-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1098039216);
  border-radius: 12px;
}
@media screen and (max-width: 1024px) {
  .slide {
    padding: 16px;
  }
}

.swiper-slide:nth-child(2) .slide {
  border: 1px solid rgba(255, 255, 255, 0.2588235294);
}
.swiper-slide:nth-child(3) .slide {
  border: 1px solid rgba(255, 255, 255, 0.5019607843);
}
.swiper-slide:nth-child(4) .slide {
  border: 1px solid #FFF;
}
.swiper-slide:nth-child(5) .slide {
  border: 1px solid #D22928;
}
.swiper-slide:nth-child(6) .slide {
  border: 1px solid #41A76A;
}

.slide__video {
  margin-bottom: 20px;
}
.slide__video video {
  width: 100%;
  height: 175px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .slide__video video {
    height: 140px;
  }
}

.slide__title {
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
  min-height: 38px;
}
@media screen and (max-width: 1024px) {
  .slide__title {
    min-height: auto;
    margin-bottom: 12px;
    font-size: 12px;
    min-height: 30px;
  }
}

.slide__txt {
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6588235294);
  min-height: 60px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .slide__txt {
    font-size: 11px;
  }
}

.slide__number {
  font-weight: 300;
  font-size: 12px;
  color: #D22928;
}
@media screen and (max-width: 1024px) {
  .slide__number {
    font-size: 10px;
  }
}

.controls {
  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;
  margin-top: 25px;
  display: none;
}
@media screen and (max-width: 1024px) {
  .controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.swiper-pagination1 {
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.swiper-button-prev1 {
  margin-right: 12px;
}

.swiper-button-next1 {
  margin-left: 12px;
}

.swiper-pagination-bullet {
  opacity: 1;
  background: #323232;
  width: 18px;
  height: 5px;
  border-radius: 5px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}

.swiper-pagination-bullet-active {
  width: 40px;
  background: #D22928;
}

.s3__last {
  margin-top: 50px;
  text-align: center;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .s3__last {
    display: none;
  }
}

.section4 {
  padding-top: 100px;
}
@media screen and (max-width: 1024px) {
  .section4 {
    padding-top: 60px;
  }
}

.s4__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .s4__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.s4__left {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .s4__left {
    width: 100%;
  }
}

.s4__right {
  width: 48%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .s4__right {
    width: 100%;
    background: transparent;
  }
}

.s4__video {
  position: absolute;
}

@media screen and (max-width: 1024px) {
  .s4__title {
    margin-bottom: 12px;
  }
}

.s4__txt2 p {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .s4__txt2 p {
    margin-bottom: 16px;
  }
}
.s4__txt2 p:nth-last-child(1) {
  margin-bottom: 0;
}

.s4__block {
  margin-top: 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .s4__block {
    margin-bottom: 20px;
  }
}

.s4__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .s4__item {
    margin-bottom: 10px;
  }
}
.s4__item:nth-last-child(1) {
  margin-bottom: 0;
}

.s4__item-ico {
  width: 67px;
  height: 67px;
  margin-right: 20px;
}
@media screen and (max-width: 1024px) {
  .s4__item-ico {
    width: 57px;
    height: 57px;
    margin-right: 15px;
  }
}

.s4__item-title {
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .s4__item-title {
    font-size: 14px;
  }
}

.s4__item-txt {
  font-weight: 300;
  font-size: 15px;
}
@media screen and (max-width: 1024px) {
  .s4__item-txt {
    font-size: 11px;
  }
}

.s4__buttons {
  margin-bottom: 30px;
}

.s4__text3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .s4__text3 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.s4__text3::before {
  content: "";
  width: 22px;
  height: 22px;
  background: url("../img/s4__ico2.svg") no-repeat;
  display: block;
  margin-right: 10px;
}

.right__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 220px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .right__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 0;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media screen and (max-width: 1024px) {
  .s4__video {
    display: block;
    width: 480px;
    position: absolute;
    left: -200px;
    bottom: 200px;
  }
}

.right__left {
  width: 40%;
  text-align: right;
  position: relative;
  left: -50px;
}
@media screen and (max-width: 1024px) {
  .right__left {
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1098039216);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.right__left .right__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.right__left .right__item::after {
  content: "";
  min-width: 6px;
  min-height: 6px;
  background: #D22928;
  border-radius: 100px;
  display: block;
  margin-left: 7px;
}

.right__right {
  width: 40%;
  position: relative;
  right: -50px;
}
@media screen and (max-width: 1024px) {
  .right__right {
    right: 0;
    width: 100%;
    text-align: right;
  }
}
.right__right .right__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  .right__right .right__item {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.right__right .right__item::before {
  content: "";
  min-width: 6px;
  min-height: 6px;
  background: #D22928;
  border-radius: 100px;
  display: block;
  margin-right: 7px;
}
@media screen and (max-width: 1024px) {
  .right__right .right__item::after {
    content: "";
    min-width: 6px;
    min-height: 6px;
    background: #D22928;
    border-radius: 100px;
    display: block;
    margin-left: 7px;
  }
  .right__right .right__item::before {
    display: none;
  }
}

.right__title {
  font-size: 14px;
  text-transform: uppercase;
  color: #D22928;
  font-weight: 500;
  margin-bottom: 7px;
}

.right__txt {
  font-size: 15px;
  margin-bottom: 25px;
  font-weight: 300;
}

.right__item {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 7px;
}
@media screen and (max-width: 1024px) {
  .right__item {
    font-size: 12px;
  }
}
.right__item:nth-last-child(1) {
  margin-bottom: 0;
}

.right__block {
  border: 1px solid #D22928;
  background: #000;
  border-radius: 12px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  padding: 18px 40px;
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .right__block {
    position: relative;
    margin-top: 24px;
    margin-bottom: 28px;
    bottom: 0;
  }
}

.right__block-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #D22928;
  font-weight: 500;
  margin-bottom: 10px;
}

.right__block-txt {
  font-size: 15px;
  font-weight: 300;
}

.section5 {
  padding-top: 100px;
}
@media screen and (max-width: 1024px) {
  .section5 {
    padding-top: 60px;
  }
}

.s5__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .s5__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.s5__left {
  width: 28%;
}
@media screen and (max-width: 1024px) {
  .s5__left {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 12px;
  }
}

.s5__center {
  width: 28%;
}
@media screen and (max-width: 1024px) {
  .s5__center {
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.s5__right {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .s5__right {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.s5__bl {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.0901960784);
}

.s5__ico {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.s5__content {
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
}

.s5__block__title {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.s5__txt {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6588235294);
  margin-bottom: 20px;
}

.s5__item {
  font-size: 14px;
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px;
}
.s5__item:nth-last-child(1) {
  margin-bottom: 0;
}
.s5__item::before {
  content: "";
  width: 13px;
  height: 10px;
  background: url("../img/li.svg") no-repeat;
  display: block;
  margin-right: 10px;
  position: relative;
  top: 3px;
}

.s5__txt2 {
  margin-bottom: 40px;
}

.s5__last {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 8px;
  border: 1px solid #4CAF50;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  font-size: 13px;
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .s5__last {
    display: none;
  }
}
.s5__last::before {
  content: "";
  width: 23px;
  height: 20px;
  background: url("../img/warning3.svg") no-repeat;
  display: block;
  margin-right: 12px;
}

.section6 {
  padding-top: 100px;
}
@media screen and (max-width: 1024px) {
  .section6 {
    padding-top: 60px;
  }
}

.s6__row {
  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;
}
@media screen and (max-width: 1024px) {
  .s6__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.s6__block {
  width: 31%;
}
@media screen and (max-width: 1024px) {
  .s6__block:nth-child(1) {
    width: 100%;
    margin-bottom: 25px;
  }
  .s6__block:nth-child(2) {
    width: 40%;
  }
  .s6__block:nth-child(3) {
    width: 60%;
  }
}

.s6__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .s6__item {
    margin-bottom: 15px;
  }
}

.s6__item-ico {
  width: 50px;
  margin-right: 20px;
}
@media screen and (max-width: 1024px) {
  .s6__item-ico {
    width: 30px;
    min-width: 30px;
  }
}

.s6__item-txt {
  font-size: 17px;
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .s6__item-txt {
    font-size: 12px;
  }
}

.s6__last {
  margin-top: 50px;
  border: 1px solid #202020;
  padding: 16px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 300;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .s6__last {
    font-size: 14px;
    margin-top: 20px;
  }
}
.s6__last span {
  color: #D22928;
}

.section7 {
  padding-top: 60px;
}
@media screen and (max-width: 1024px) {
  .section7 .s6__block:nth-child(2) {
    width: 48%;
  }
}
@media screen and (max-width: 1024px) {
  .section7 .s6__block:nth-child(3) {
    width: 48%;
  }
}
.section7 .s6__img1 video {
  width: 100%;
}

.s7__last {
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8784313725);
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .s7__last {
    margin-top: 10px;
    text-align: center;
    font-size: 13px;
  }
}
.s7__last span {
  color: #D22928;
}

.section8 {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .section8 {
    padding-top: 60px;
  }
}

.s8__decor1 {
  position: absolute;
}

.s8__txt1 {
  text-align: center;
}

.s8__title {
  text-align: center;
}

.s8__txt2 {
  text-align: center;
}

.s8__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 40px;
  margin-top: 55px;
}
@media screen and (max-width: 1024px) {
  .s8__items {
    margin-top: 35px;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 35px;
  }
}

.s8__item__ico {
  height: 60px;
  margin-bottom: 10px;
}
.s8__item__ico img {
  width: 50px;
}

.s8__item__title {
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .s8__item__title {
    font-size: 12px;
  }
}

.s8__item__text {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6588235294);
}
@media screen and (max-width: 1024px) {
  .s8__item__text {
    font-size: 11px;
  }
}

.section9 {
  padding-top: 100px;
}
@media screen and (max-width: 1024px) {
  .section9 {
    padding-top: 60px;
  }
}

.swiper2 {
  overflow: hidden;
}

.s9__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 40px 3fr;
  grid-template-columns: 2fr 3fr;
  grid-column-gap: 40px;
}
@media screen and (max-width: 1024px) {
  .s9__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 1024px) {
  .s9__block2 {
    margin-top: 40px;
    display: none;
  }
}

.s9__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr 12px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 12px;
  margin-bottom: 26px;
}
.s9__item {
  border: 1px solid rgba(255, 255, 255, 0.2901960784);
  border-radius: 12px;
  padding: 20px;
  padding-top: 40px;
}
.s9__item:nth-child(2) {
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.s9__item:nth-child(3) {
  border: 1px solid #D22928;
}

.s9__item-title {
  margin-bottom: 16px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
}

.s9__item-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6588235294);
  font-weight: 300;
  margin-bottom: 16px;
}

.s9__item-img img {
  height: 200px;
}

.s9__item__video {
  height: 200px;
}
.s9__item__video video {
  width: 100%;
  height: 100%;
}

.s9__lines {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

.line {
  position: relative;
}
.line:nth-child(2) .line__block {
  background: rgba(255, 255, 255, 0.6);
}
.line:nth-child(2) .line__block .line__txt {
  color: rgba(255, 255, 255, 0.6);
}
.line:nth-child(2) .line__block .line__txt::before {
  background: rgba(255, 255, 255, 0.6);
}
.line:nth-child(3) .line__block {
  background: #D22928;
}
.line:nth-child(3) .line__txt {
  color: #D22928;
}
.line:nth-child(3) .line__txt::before {
  background: #D22928;
}

.line__txt {
  font-size: 14px;
  text-align: center;
  font-weight: 300;
  padding-top: 5px;
}
.line__txt::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100px;
  background: #818181;
  display: block;
  position: absolute;
  top: -3.5px;
  left: 0;
  right: 0;
  margin: auto;
}

.line__block {
  width: 100%;
  height: 1px;
  background: #818181;
  border-radius: 100px;
}

.swiper2 {
  display: none;
}
@media screen and (max-width: 1024px) {
  .swiper2 {
    display: block;
    margin-top: 40px;
  }
}

.swiper3 {
  overflow: hidden;
  margin-top: 18px;
  display: none;
}
@media screen and (max-width: 1024px) {
  .swiper3 {
    display: none;
  }
}

.section10 {
  margin-top: 75px;
}
@media screen and (max-width: 1024px) {
  .section10 {
    margin-top: 60px;
  }
}

.s10__block {
  padding: 65px;
  border-radius: 12px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .s10__block {
    padding: 60px 9px;
    background-size: cover;
    padding-bottom: 422px;
  }
}

.s10__video__mobile {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 12px;
  z-index: 1;
  display: none;
}
@media screen and (max-width: 1024px) {
  .s10__video__mobile {
    display: block;
  }
}
.s10__video__mobile video {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}

.s10__video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 12px;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .s10__video {
    display: none;
  }
}
.s10__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

.video__content {
  position: relative;
  z-index: 1;
}

.s10__title {
  font-size: 70px;
  font-family: "TT Firs Neue";
  line-height: 100%;
  margin-bottom: 35px;
}
@media screen and (max-width: 1024px) {
  .s10__title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 11px;
  }
}
.s10__title span {
  font-weight: 700;
}

.s10__txt {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 35px;
}
@media screen and (max-width: 1024px) {
  .s10__txt {
    font-size: 13px;
    text-align: center;
  }
}

.footer {
  padding: 50px 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 30px 0;
  }
}

.footer__row {
  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;
}

.link {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6588235294);
}
.link:hover {
  text-decoration: none;
}

.fancybox__content {
  background: #030202;
  -webkit-box-shadow: 0px 0px 72.6px rgba(210, 41, 40, 0.46);
          box-shadow: 0px 0px 72.6px rgba(210, 41, 40, 0.46);
  border-radius: 22px;
  padding: 60px 30px;
  width: 575px;
}
@media screen and (max-width: 1024px) {
  .fancybox__content {
    width: 100%;
    padding: 30px 15px;
  }
}

.form__title {
  font-size: 42px;
  font-family: "TT Firs Neue";
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .form__title {
    font-size: 32px;
  }
}
.form__title span {
  font-weight: 700;
  color: #D22928;
}

.form__input {
  margin-bottom: 22px;
}
.form__input input {
  border: none;
  outline: none;
  width: 100%;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.568627451);
  background: transparent;
  font-weight: 300;
  font-size: 15px;
  color: #FFFFFF;
  border-radius: 0;
}
.form__input input::-webkit-input-placeholder {
  font-weight: 300;
  font-size: 15px;
  color: #FFFFFF;
}
.form__input input::-moz-placeholder {
  font-weight: 300;
  font-size: 15px;
  color: #FFFFFF;
}
.form__input input:-ms-input-placeholder {
  font-weight: 300;
  font-size: 15px;
  color: #FFFFFF;
}
.form__input input::-ms-input-placeholder {
  font-weight: 300;
  font-size: 15px;
  color: #FFFFFF;
}
.form__input input::placeholder {
  font-weight: 300;
  font-size: 15px;
  color: #FFFFFF;
}
.form__input textarea {
  border: none;
  outline: none;
  width: 100%;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.568627451);
  background: transparent;
  font-weight: 300;
  font-size: 15px;
  color: #FFFFFF;
  height: 60px;
  resize: none;
  border-radius: 0;
}
.form__input textarea::-webkit-input-placeholder {
  font-weight: 300;
  font-size: 15px;
  color: #FFFFFF;
}
.form__input textarea::-moz-placeholder {
  font-weight: 300;
  font-size: 15px;
  color: #FFFFFF;
}
.form__input textarea:-ms-input-placeholder {
  font-weight: 300;
  font-size: 15px;
  color: #FFFFFF;
}
.form__input textarea::-ms-input-placeholder {
  font-weight: 300;
  font-size: 15px;
  color: #FFFFFF;
}
.form__input textarea::placeholder {
  font-weight: 300;
  font-size: 15px;
  color: #FFFFFF;
}

.form__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.wpcf7-response-output {
  color: #fff;
  text-align: center;
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height34px: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: var(--fancybox-color, #FFFFFF38);
  --f-button-hover-color: var(--fancybox-color, #FFFFFF38);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  top: 30px;
  right: 20px;
  opacity: 1;
}

.content {
  padding-top: 100px;
}
.content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
  margin-bottom: 30px;
  font-family: "TT Firs Neue";
}
.content p {
  margin-bottom: 30px;
}

.all {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.title4 {
  font-family: "TT Firs Neue" !important;
  font-size: 224px !important;
  text-align: center !important;
  margin-bottom: 50px !important;
}
@media screen and (max-width: 1024px) {
  .title4 {
    font-size: 124px !important;
  }
}

.title4__txt {
  text-align: center !important;
  margin-bottom: 50px !important;
}

.title4__button {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}