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

/* Указываем 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;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "TTFirsNeue-Regular";
  color: #fefefe;
}

/* Удаляем стандартную стилизацию для всех 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: #000;
  z-index: 100;
  position: relative;
}

.header__top {
  padding: 20px 0;
  border-bottom: 1px solid rgba(250, 250, 250, 0.12);
}
@media screen and (max-width: 480px) {
  .header__top {
    display: none;
  }
}

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

.links a {
  font-family: "TTFirsNeue-ExtraLight";
  font-size: 15px;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.77);
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  text-decoration: none;
  margin-right: 50px;
}
.links a:nth-last-child(1) {
  margin-right: 0;
}
.links a:hover {
  color: rgb(250, 250, 250);
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.socials a {
  margin-right: 34px;
}
.socials a:nth-last-child(1) {
  margin-right: 0;
}

.header__bottom {
  padding: 20px 0;
}
@media screen and (max-width: 480px) {
  .header__bottom {
    padding: 15px 0;
  }
}

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

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu .menu-item {
  margin-right: 40px;
}
.menu .menu-item a {
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.menu .menu-item a:hover {
  color: rgba(250, 250, 250, 0.77);
}
.menu .menu-item:nth-last-child(1) {
  margin-right: 0;
}
@media screen and (max-width: 1320px) {
  .menu .menu-item {
    margin-right: 30px;
  }
}

.logo img {
  width: 198px;
}
@media screen and (max-width: 480px) {
  .logo img {
    width: 170px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.mobile__menu {
  position: fixed;
  background: #000;
  width: 80%;
  height: 100%;
  z-index: 1000;
  -webkit-transform: translate(-150%, 0);
          transform: translate(-150%, 0);
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  padding: 30px 20px;
}
.mobile__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: center;
      -ms-flex-align: center;
          align-items: center;
}
.mobile__menu .menu .menu-item {
  margin-right: 0;
  margin-bottom: 15px;
}
.mobile__menu .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mobile__menu .links a {
  margin-right: 0;
  margin-bottom: 15px;
}
.mobile__menu .socials {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

.burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 30px;
  height: 30px;
  position: relative;
}
.burger span {
  width: 30px;
  height: 2px;
  margin-bottom: 4px;
  background: #fff;
  display: block;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.burger span:nth-last-child(1) {
  margin-bottom: 0;
}
@media screen and (max-width: 1200px) {
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.burger__opened span {
  position: absolute;
  margin-bottom: 0;
}
.burger__opened span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.burger__opened span:nth-child(2) {
  opacity: 0;
}
.burger__opened span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.body__opened {
  overflow: hidden;
}

.section1 {
  height: calc(100vh - 156.5px);
  position: relative;
}
@media screen and (max-width: 1200px) {
  .section1 {
    height: auto;
  }
}

.swiper {
  height: calc(100vh - 156.5px);
}
@media screen and (max-width: 1200px) {
  .swiper {
    height: auto;
  }
}

.slider-img {
  width: 100%;
  position: relative;
  z-index: 1;
}
.slider-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .slider-img img {
    height: 645px;
  }
}
@media screen and (max-width: 600px) {
  .slider-img img {
    height: 445px;
  }
}

.slide__content {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slide__back {
  width: 100%;
  height: 100%;
  background: url(../img/slide__back.svg);
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

.slide__txt1 {
  font-family: "TTFirsNeue-Light";
  font-size: 19px;
  line-height: 23px;
  color: #FFFFFF;
  margin-bottom: 20px;
  -webkit-transition: 3s ease 0s;
  transition: 3s ease 0s;
  opacity: 0;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.slide__title {
  font-size: 68px;
  line-height: 113.3%;
  margin-bottom: 32px;
  opacity: 0;
  -webkit-transition: 3s ease 0s;
  transition: 3s ease 0s;
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
}
@media screen and (max-width: 1440px) {
  .slide__title {
    font-size: 58px;
  }
}
@media screen and (max-width: 1200px) {
  .slide__title {
    font-size: 38px;
  }
}
@media screen and (max-width: 1024px) {
  .slide__title {
    font-size: 28px;
  }
}

.button {
  font-size: 15px;
  line-height: 14px;
  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;
  letter-spacing: 0.213584px;
  text-transform: uppercase;
  color: #000;
  background: #fff;
  text-decoration: none;
  padding: 20px 20px;
  max-width: 260px;
  width: 100%;
  opacity: 0;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transition: 3s ease 0s;
  transition: 3s ease 0s;
}
.button:hover {
  -webkit-box-shadow: 0px 4px 15px rgba(250, 250, 250, 0.7);
          box-shadow: 0px 4px 15px rgba(250, 250, 250, 0.7);
}

.swiper-slide-active .slide__txt1 {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.swiper-slide-active .button {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.swiper-slide-active .slide__title {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.swiper__arrows {
  position: absolute;
  bottom: 34px;
  left: 0;
  width: 100%;
  z-index: 2;
}

.arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.swiper-button-prev {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: auto;
  height: 21px;
  margin-right: 30px;
}

.swiper-button-next {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: auto;
  height: 21px;
}

.swiper-pagination {
  bottom: 38.1px !important;
  line-height: 100%;
  z-index: 1;
}

.swiper-pagination-bullet {
  border-radius: 0;
  width: 25.78px;
  height: 6.8px;
  opacity: 1;
  background: rgba(250, 250, 250, 0.31);
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
@media screen and (max-width: 1024px) {
  .swiper-pagination-bullet {
    width: 15.78px;
  }
}

.swiper-pagination-bullet-active {
  width: 53.38px;
  background: rgb(250, 250, 250);
}
@media screen and (max-width: 1024px) {
  .swiper-pagination-bullet-active {
    width: 33.38px;
  }
}

.section2 {
  background: #fcfcfc;
  padding: 120px 0;
  padding-bottom: 380px;
}
@media screen and (max-width: 1200px) {
  .section2 {
    padding: 60px 0;
    padding-bottom: 120px;
  }
}

.section2__row {
  position: relative;
}

.s2__content__title {
  font-size: 56px;
  line-height: 111.3%;
  margin-bottom: 30px;
  color: #121212;
  padding-left: 408px;
}
@media screen and (max-width: 1200px) {
  .s2__content__title {
    padding-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .s2__content__title {
    font-size: 36px;
  }
  .s2__content__title br {
    display: none;
  }
}

.s2__content__txt1 {
  font-family: "TTFirsNeue-DemiBold";
  font-size: 17px;
  line-height: 27px;
  color: rgba(18, 18, 18, 0.8);
  text-indent: 408px;
  margin-bottom: 36px;
}
@media screen and (max-width: 1200px) {
  .s2__content__txt1 {
    text-indent: 0;
  }
}
@media screen and (max-width: 1024px) {
  .s2__content__txt1 {
    font-size: 16px;
  }
}

.s2__content__txt2 {
  font-family: "TTFirsNeue-Light";
  font-size: 15px;
  line-height: 21px;
  color: rgba(18, 18, 18, 0.66);
  padding-left: 408px;
}
.s2__content__txt2 p {
  margin-bottom: 30px;
}
.s2__content__txt2 a {
  color: rgba(18, 18, 18, 0.66);
}
@media screen and (max-width: 1200px) {
  .s2__content__txt2 {
    padding-left: 0;
  }
}

.s2__content__photo {
  padding-left: 408px;
}
@media screen and (max-width: 1200px) {
  .s2__content__photo {
    padding-left: 0;
    margin-bottom: 30px;
  }
}

.s2__txt1 {
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 1200px) {
  .s2__txt1 {
    position: relative;
  }
}

.s2__button {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 1200px) {
  .s2__button {
    position: relative;
  }
}

.button2 {
  font-size: 15px;
  line-height: 14px;
  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;
  letter-spacing: 0.213584px;
  text-transform: uppercase;
  color: #fff;
  background: #000;
  text-decoration: none;
  padding: 20px 20px;
  max-width: 260px;
  width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.button2:hover {
  background: #313131;
}

.section3 {
  background: #000;
  padding-bottom: 105px;
  padding-top: 10px;
}
@media screen and (max-width: 1200px) {
  .section3 {
    padding-bottom: 60px;
  }
}

.section3__video {
  height: 488px;
  position: relative;
  margin-top: -260px;
  margin-bottom: 105.4px;
}
@media screen and (max-width: 1320px) {
  .section3__video {
    height: 400px;
  }
}
@media screen and (max-width: 1200px) {
  .section3__video {
    margin-top: -60px;
  }
}
@media screen and (max-width: 1024px) {
  .section3__video {
    height: 250px;
  }
}

.video__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.video__back img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 1320px) {
  .video__back {
    height: 400px;
  }
}
@media screen and (max-width: 1024px) {
  .video__back {
    height: 250px;
  }
}

.s3__video {
  height: 488px;
}
.s3__video iframe {
  width: 100%;
  height: 488px;
}
@media screen and (max-width: 1320px) {
  .s3__video iframe {
    height: 400px;
  }
}
@media screen and (max-width: 1024px) {
  .s3__video iframe {
    height: 250px;
  }
}

.section3__txt1 {
  font-family: "TTFirsNeue-ExtraBold";
  font-size: 15px;
  color: rgba(250, 250, 250, 0.43);
  letter-spacing: -0.02em;
  margin-bottom: 39px;
}

.section3__title {
  margin-bottom: 52px;
  font-size: 56px;
  line-height: 111.3%;
}
@media screen and (max-width: 1024px) {
  .section3__title {
    font-size: 36px;
  }
}

.s3__row1 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 1200px) {
  .s3__row1 {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 1024px) {
  .s3__row1 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.s3__row2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 2fr;
  grid-template-columns: 1fr 1fr 1fr 2fr;
}
@media screen and (max-width: 1200px) {
  .s3__row2 {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 1024px) {
  .s3__row2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.s3__number {
  font-size: 12px;
  font-family: "TTFirsNeue-Light";
  color: rgba(250, 250, 250, 0.56);
  margin-bottom: 50px;
}

.s3__title {
  font-family: "TTFirsNeue-DemiBold";
  font-size: 17px;
  color: rgba(250, 250, 250, 0.8);
  margin-bottom: 12px;
}

.s3__txt {
  font-family: "TTFirsNeue-ExtraLight";
  font-size: 15px;
  line-height: 21px;
  color: rgba(250, 250, 250, 0.66);
}

.s3__number__big {
  font-family: "TTFirsNeue-ExtraLight";
  font-size: 66px;
  color: rgba(250, 250, 250, 0.8);
}

.s3__block {
  position: relative;
}

.b1 {
  padding-left: 40px;
  padding-right: 13.7px;
  padding-bottom: 86px;
  border-right: 1px solid rgba(250, 250, 250, 0.3);
  border-bottom: 1px solid rgba(250, 250, 250, 0.3);
}
.b1::after {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  background: #000;
  position: absolute;
  bottom: -5px;
  right: -5px;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .b1::after {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .b1 {
    border-left: 1px solid rgba(250, 250, 250, 0.3);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 20px;
  }
}

.b2 {
  padding-left: 40px;
  padding-right: 13.7px;
  padding-bottom: 86px;
  border-right: 1px solid rgba(250, 250, 250, 0.3);
  border-bottom: 1px solid rgba(250, 250, 250, 0.3);
}
.b2::after {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  background: #000;
  position: absolute;
  bottom: -5px;
  right: -5px;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .b2::after {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .b2 {
    border-left: 1px solid rgba(250, 250, 250, 0.3);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 20px;
  }
}

.b3 {
  padding-left: 42px;
  padding-right: 24px;
  border-right: 1px solid rgba(250, 250, 250, 0.3);
  border-bottom: 1px solid rgba(250, 250, 250, 0.3);
}
.b3::after {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  background: #000;
  position: absolute;
  bottom: -5px;
  right: -5px;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .b3::after {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .b3 {
    border-left: 1px solid rgba(250, 250, 250, 0.3);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 20px;
  }
}

.b4 {
  padding-left: 40px;
  padding-right: 13.7px;
  padding-bottom: 86px;
  border-bottom: 1px solid rgba(250, 250, 250, 0.3);
}
@media screen and (max-width: 1200px) {
  .b4 {
    padding-top: 10px;
    border-right: 1px solid rgba(250, 250, 250, 0.3);
  }
}
@media screen and (max-width: 1024px) {
  .b4 {
    border-left: 1px solid rgba(250, 250, 250, 0.3);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 20px;
  }
}

.b5 {
  padding-left: 5px;
  padding-bottom: 5px;
}
@media screen and (max-width: 1200px) {
  .b5 {
    padding-top: 10px;
    border-bottom: 1px solid rgba(250, 250, 250, 0.3);
    border-right: 1px solid rgba(250, 250, 250, 0.3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 1024px) {
  .b5 {
    display: none;
  }
}

.b6 {
  padding-top: 10.4px;
}
@media screen and (max-width: 1024px) {
  .b6 {
    display: none;
  }
}

.b7 {
  padding-left: 42px;
  padding-right: 24px;
  border-right: 1px solid rgba(250, 250, 250, 0.3);
}
@media screen and (max-width: 1024px) {
  .b7 {
    border-left: 1px solid rgba(250, 250, 250, 0.3);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 20px;
  }
}

.b8 {
  padding-left: 48px;
  padding-top: 36px;
  padding-right: 24.4px;
  border-right: 1px solid rgba(250, 250, 250, 0.3);
}
@media screen and (max-width: 1200px) {
  .b8 {
    border-top: 1px solid rgba(250, 250, 250, 0.3);
  }
}
@media screen and (max-width: 1024px) {
  .b8 {
    border-left: 1px solid rgba(250, 250, 250, 0.3);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 20px;
  }
}

.b9 {
  padding-left: 48px;
  padding-top: 36px;
  padding-right: 24.4px;
}
@media screen and (max-width: 1200px) {
  .b9 {
    border-top: 1px solid rgba(250, 250, 250, 0.3);
  }
}
@media screen and (max-width: 1024px) {
  .b9 {
    border-left: 1px solid rgba(250, 250, 250, 0.3);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 20px;
    border-right: 1px solid rgba(250, 250, 250, 0.3);
    border-bottom: 1px solid rgba(250, 250, 250, 0.3);
  }
}

.section4 {
  padding-top: 54px;
  padding-bottom: 86px;
  background: #fff;
}

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

.section4__left {
  width: 408px;
  font-family: "TTFirsNeue-ExtraBold";
  color: rgba(18, 18, 18, 0.43);
}
@media screen and (max-width: 1200px) {
  .section4__left {
    width: 100%;
    margin-bottom: 30px;
  }
}

.section4__right {
  width: calc(100% - 408px);
}
@media screen and (max-width: 1200px) {
  .section4__right {
    width: 100%;
  }
}

.section4__title {
  font-size: 56px;
  line-height: 111.3%;
  color: #121212;
  margin-bottom: 19px;
}
@media screen and (max-width: 1024px) {
  .section4__title {
    font-size: 36px;
  }
}

.section4__txt {
  font-size: 15px;
  line-height: 21px;
  font-family: "TTFirsNeue-Light";
  color: rgba(18, 18, 18, 0.66);
}

.question__item {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 25px;
  border-top: 1px solid rgba(18, 18, 18, 0.44);
  position: relative;
  cursor: pointer;
  padding: 10px 18px;
}
.question__item::before {
  content: "";
  width: 1px;
  height: 20px;
  background: rgba(18, 18, 18, 0.44);
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.question__item::after {
  content: "";
  width: 1px;
  height: 20px;
  background: rgba(18, 18, 18, 0.44);
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

.question__number {
  font-family: "TTFirsNeue-Light";
  font-size: 12px;
  color: rgba(18, 18, 18, 0.56);
  width: 408px;
}
@media screen and (max-width: 1024px) {
  .question__number {
    width: 10%;
  }
}

.question__right {
  width: calc(100% - 408px);
  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) {
  .question__right {
    width: 80%;
  }
}

.question__title {
  font-size: 24px;
  color: #121212;
}

.question__hidden {
  padding-left: 408px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 35px;
}
@media screen and (max-width: 1024px) {
  .question__hidden {
    padding-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

.question__content {
  font-size: 15px;
  line-height: 21px;
  font-family: "TTFirsNeue-ExtraLight";
  color: rgba(18, 18, 18, 0.66);
}
@media screen and (max-width: 1024px) {
  .question__content {
    margin-bottom: 30px;
  }
}
.question__content p {
  margin-bottom: 30px;
}
.question__content p:nth-last-child(1) {
  margin-bottom: 0;
}

.question__right2 {
  width: 45%;
}
@media screen and (max-width: 1024px) {
  .question__right2 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 600px) {
  .question__right2 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.question__button {
  min-width: 260px;
}

.qusetion__arrow {
  background: url("../img/arrow__bottom.svg") no-repeat;
  width: 15px;
  height: 16px;
}

.active {
  border-top: 1px solid rgb(18, 18, 18);
}
.active::before {
  content: "";
  width: 1px;
  height: 20px;
  background: rgb(18, 18, 18);
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.active::after {
  content: "";
  width: 1px;
  height: 20px;
  background: rgb(18, 18, 18);
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}
.active .qusetion__arrow {
  background: url("../img/arrow__top.svg") no-repeat;
}

.section5 {
  height: 730px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -ms-flex-line-pack: center;
      align-content: center;
  overflow: hidden;
  position: relative;
}
.section5 .button {
  opacity: 1;
  margin: 0 auto;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  z-index: 100;
  position: relative;
}
.section5::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.54);
  display: block;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .section5 {
    height: auto;
    padding: 60px 0;
  }
}

.main__video {
  height: 730px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .main__video {
    height: auto;
  }
}

.section6 {
  padding-top: 192px;
  background: #000;
  padding-bottom: 100px;
}
@media screen and (max-width: 1200px) {
  .section6 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.section6__txt1 {
  font-family: "TTFirsNeue-ExtraBold";
  font-size: 15px;
  color: rgba(250, 250, 250, 0.43);
  margin-bottom: 39px;
  letter-spacing: 0.02em;
}

.section6__title {
  font-size: 56px;
  line-height: 111.3%;
  margin-bottom: 35px;
}
@media screen and (max-width: 1024px) {
  .section6__title {
    font-size: 36px;
  }
}

.section6__txt2 {
  font-size: 15px;
  line-height: 21px;
  color: rgba(250, 250, 250, 0.66);
  margin-bottom: 80px;
  padding-left: 408px;
  text-align: right;
}
@media screen and (max-width: 1200px) {
  .section6__txt2 {
    padding-left: 0;
    text-align: left;
  }
}

.section6__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) {
  .section6__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.section6__left {
  width: 20%;
}
@media screen and (max-width: 1200px) {
  .section6__left {
    width: 48%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 600px) {
  .section6__left {
    width: 100%;
  }
}

.section6__center {
  width: 20%;
}
@media screen and (max-width: 1200px) {
  .section6__center {
    width: 48%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 600px) {
  .section6__center {
    width: 100%;
  }
}

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

.block__name {
  font-size: 24px;
  color: #fff;
  margin-bottom: 27px;
}

.li {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  font-family: "TTFirsNeue-ExtraLight";
  color: rgba(250, 250, 250, 0.66);
  margin-bottom: 18px;
}
.li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: rgba(250, 250, 250, 0.55);
  display: block;
  margin-right: 12px;
}
.li:nth-last-child(1) {
  margin-bottom: 0;
}

.brands__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.logos {
  padding-right: 15px;
  padding-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.logos:hover .logo1 {
  display: none;
}
.logos:hover .logo2 {
  display: block;
}

.logo2 {
  display: none;
}

.single1 {
  background: #fff;
  position: relative;
  z-index: 2;
  padding: 80px 0;
  color: #121212;
}
.single1 p {
  margin-bottom: 20px;
}
.single1 h2 {
  margin-bottom: 30px;
}
.single1 h3 {
  margin-bottom: 20px;
}

.b__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-bottom: 30px;
}
.b__row a {
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  .b__row {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .b__row {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 480px) {
  .b__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.b__txt {
  font-family: "TTFirsNeue-DemiBold";
  font-size: 17px;
  color: #121212;
  margin-top: 10px;
}

.b__title {
  font-size: 46px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .b__title {
    font-size: 36px;
  }
}

.main__block {
  height: calc(100vh - 156.5px);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}
.main__block::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.37);
  display: block;
  z-index: 10;
}
.main__block .button {
  position: relative;
  z-index: 11;
  opacity: 1;
  margin: 0 auto;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
@media screen and (max-width: 1200px) {
  .main__block {
    height: auto;
    padding: 100px 0;
  }
}

.main__photo {
  height: calc(100vh - 156.5px);
  position: relative;
  overflow: hidden;
  z-index: 1;
  position: absolute;
}
.main__photo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}

.main__title {
  position: relative;
  z-index: 11;
  font-size: 68.04px;
  line-height: 111.3%;
  margin-bottom: 19px;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .main__title {
    font-size: 58px;
  }
}
@media screen and (max-width: 768px) {
  .main__title {
    font-size: 48px;
  }
}
@media screen and (max-width: 600px) {
  .main__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 480px) {
  .main__title {
    font-size: 30px;
  }
}

.main__txt {
  position: relative;
  z-index: 11;
  font-family: "TTFirsNeue-DemiBold";
  font-size: 17px;
  line-height: 27px;
  color: rgba(242, 242, 242, 0.8);
  text-align: center;
  margin-bottom: 35px;
}

.section__cat {
  position: relative;
  z-index: 100;
  background: #fff;
  padding: 70px 0;
}
@media screen and (max-width: 1024px) {
  .section__cat {
    padding: 35px 0;
  }
}

.cat__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
  text-decoration: none;
}
.cat__row:hover .cat__title {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.cat__row:nth-last-child(1) {
  margin-bottom: 0;
}
.cat__row .cat__content {
  width: 28%;
}
@media screen and (max-width: 1024px) {
  .cat__row .cat__content {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cat__row .cat__photo {
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .cat__row .cat__photo {
    width: 100%;
  }
}
.cat__row:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.cat__row:nth-child(2n) .cat__content {
  width: 70%;
}
.cat__row:nth-child(2n) .cat__photo {
  width: 28%;
}
@media screen and (max-width: 1024px) {
  .cat__row:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cat__row:nth-child(2n) .cat__content {
    width: 100%;
  }
  .cat__row:nth-child(2n) .cat__photo {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .cat__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
  }
}

.cat__title {
  font-size: 56px;
  line-height: 111.3%;
  color: #121212;
  margin-bottom: 27px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
@media screen and (max-width: 1024px) {
  .cat__title {
    font-size: 36px;
  }
}

.cat__desc {
  font-size: 15px;
  font-family: "TTFirsNeue-Light";
  line-height: 21px;
  color: rgba(18, 18, 18, 0.9);
}
.cat__desc p {
  margin-bottom: 20px;
}
.cat__desc p:nth-last-child(1) {
  margin-bottom: 0;
}

.photo__title {
  font-size: 39px;
  color: #121212;
  margin-top: 48px;
}
@media screen and (max-width: 1024px) {
  .photo__title {
    font-size: 24px;
    margin-top: 24px;
  }
}

.cat__txt1 {
  font-family: "TTFirsNeue-ExtraBold";
  font-size: 15px;
  line-height: 170%;
  letter-spacing: 0.02em;
  color: rgba(18, 18, 18, 0.43);
  margin-bottom: 18px;
}

.black {
  background: #000;
}
.black .cat__txt1 {
  color: rgba(250, 250, 250, 0.43);
}
.black .cat__title {
  color: #fff;
}
.black .cat__desc {
  color: rgba(250, 250, 250, 0.9);
}

.cat__links {
  background: #6B6B6B;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.cat__links__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 600px) {
  .cat__links__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cat__links__row a {
  text-decoration: none;
  font-family: "TTFirsNeue-Medium";
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.cat__links__row a:hover {
  color: #121212;
}
.cat__links__row a::after {
  content: "";
  width: 2px;
  height: 12px;
  background: #fff;
  display: block;
  margin: 0 15px;
}
@media screen and (max-width: 600px) {
  .cat__links__row a::after {
    display: none;
  }
}

.portfolio {
  background: #000;
  position: relative;
  z-index: 10;
  padding: 85px 0;
}
@media screen and (max-width: 1024px) {
  .portfolio {
    padding-bottom: 0;
  }
}

.portfolio__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 19px 1fr 19px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 19px;
  grid-row-gap: 19px;
}
@media screen and (max-width: 1024px) {
  .portfolio__row {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .portfolio__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.portfolio__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-height: 342px;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.portfolio__item::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.44);
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  opacity: 0;
}
.portfolio__item:hover::before {
  opacity: 1;
}
.portfolio__item:hover .portfolio__title {
  opacity: 1;
}
@media screen and (max-width: 600px) {
  .portfolio__item {
    max-height: 250px;
    height: 250px;
  }
}

.portfolio__title {
  position: absolute;
  font-size: 36px;
  text-decoration: none;
  color: #fff;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  opacity: 0;
}

.single {
  background: #000;
  padding: 50px 0;
}

.single__header {
  margin-bottom: 55px;
  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;
  position: relative;
}

.header__title {
  font-size: 56px;
}

.back {
  position: absolute;
  left: 0;
}
.back a {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}

.single__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 19px 1fr 19px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 19px;
  grid-row-gap: 19px;
}
@media screen and (max-width: 1024px) {
  .single__row {
    -ms-grid-columns: 1fr 19px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 19px;
    grid-row-gap: 19px;
  }
}
@media screen and (max-width: 600px) {
  .single__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-column-gap: 19px;
    grid-row-gap: 19px;
  }
}

.gallery__item {
  height: 342px;
  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;
  position: relative;
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery__item::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.44) url("../img/eye.svg") no-repeat center;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  opacity: 0;
}
.gallery__item:hover::before {
  opacity: 1;
}
@media screen and (max-width: 600px) {
  .gallery__item {
    height: 250px;
  }
}

.footer {
  background: #000;
  padding-top: 57px;
  position: relative;
  z-index: 100;
}

.footer__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: 1200px) {
  .footer__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

.footer__right {
  max-width: 875px;
  width: 100%;
}

.form__title {
  font-size: 56px;
  margin-bottom: 58.95px;
  line-height: 111.3%;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .form__title {
    font-size: 36px;
  }
}

.form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.form__input {
  width: 45%;
  margin-bottom: 46px;
}
@media screen and (max-width: 1024px) {
  .form__input {
    width: 100%;
  }
}
.form__input:nth-last-child(1) {
  width: 100%;
  margin-bottom: 37px;
}
.form__input input {
  width: 100%;
  outline: none;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(250, 250, 250, 0.35);
  padding-bottom: 17.76px;
  padding-right: 20px;
  color: rgba(242, 242, 242, 0.66);
  font-size: 15px;
  font-family: "TTFirsNeue-ExtraLight";
}
.form__input input::-webkit-input-placeholder {
  color: rgba(242, 242, 242, 0.66);
  font-size: 15px;
  font-family: "TTFirsNeue-ExtraLight";
}
.form__input input::-moz-placeholder {
  color: rgba(242, 242, 242, 0.66);
  font-size: 15px;
  font-family: "TTFirsNeue-ExtraLight";
}
.form__input input:-ms-input-placeholder {
  color: rgba(242, 242, 242, 0.66);
  font-size: 15px;
  font-family: "TTFirsNeue-ExtraLight";
}
.form__input input::-ms-input-placeholder {
  color: rgba(242, 242, 242, 0.66);
  font-size: 15px;
  font-family: "TTFirsNeue-ExtraLight";
}
.form__input input::placeholder {
  color: rgba(242, 242, 242, 0.66);
  font-size: 15px;
  font-family: "TTFirsNeue-ExtraLight";
}
.form__input textarea {
  width: 100%;
  outline: none;
  background: transparent;
  border: none;
  border: 1px solid rgba(250, 250, 250, 0.35);
  padding: 24px 44px;
  color: rgba(242, 242, 242, 0.66);
  font-size: 15px;
  font-family: "TTFirsNeue-ExtraLight";
  height: 207px;
}
.form__input textarea::-webkit-input-placeholder {
  color: rgba(242, 242, 242, 0.66);
  font-size: 15px;
  font-family: "TTFirsNeue-ExtraLight";
}
.form__input textarea::-moz-placeholder {
  color: rgba(242, 242, 242, 0.66);
  font-size: 15px;
  font-family: "TTFirsNeue-ExtraLight";
}
.form__input textarea:-ms-input-placeholder {
  color: rgba(242, 242, 242, 0.66);
  font-size: 15px;
  font-family: "TTFirsNeue-ExtraLight";
}
.form__input textarea::-ms-input-placeholder {
  color: rgba(242, 242, 242, 0.66);
  font-size: 15px;
  font-family: "TTFirsNeue-ExtraLight";
}
.form__input textarea::placeholder {
  color: rgba(242, 242, 242, 0.66);
  font-size: 15px;
  font-family: "TTFirsNeue-ExtraLight";
}

.form__button input {
  font-size: 15px;
  line-height: 14px;
  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;
  letter-spacing: 0.213584px;
  text-transform: uppercase;
  color: #000;
  background: #fff;
  text-decoration: none;
  padding: 20px 20px;
  min-width: 260px;
  width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transition: 1s ease 0s;
  transition: 1s ease 0s;
  border: none;
  outline: none;
  cursor: pointer;
}
.form__button input:hover {
  -webkit-box-shadow: 0px 4px 15px rgba(250, 250, 250, 0.7);
          box-shadow: 0px 4px 15px rgba(250, 250, 250, 0.7);
}

.footer__txt1 {
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.43);
  font-size: 15px;
  font-family: "TTFirsNeue-ExtraBold";
}

.contacts__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
.contacts__row:nth-last-child(1) {
  margin-bottom: 0;
}

.cont__name {
  margin-right: 10px;
  font-family: "TTFirsNeue-ExtraLight";
  color: rgba(250, 250, 250, 0.66);
}

.cont__v a {
  text-decoration: none;
  color: #fff;
}

.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 27px;
}
.footer__socials a {
  margin-right: 12.6px;
}
.footer__socials a:nth-last-child(1) {
  margin-right: 0;
}

.footer__bottom {
  background: #000;
  padding: 37px 0;
  border-top: 1.5px solid #fff;
  margin-top: 95px;
}

.footer__bottom__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;
}
@media screen and (max-width: 1024px) {
  .footer__bottom__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.footer__logo img {
  width: 198px;
}
@media screen and (max-width: 1024px) {
  .footer__logo {
    margin-bottom: 30px;
  }
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-family: "TTFirsNeue-Light";
  color: rgba(242, 242, 242, 0.66);
}
.footer__links .l {
  margin-right: 50px;
}
.footer__links a {
  font-size: 14px;
  font-family: "TTFirsNeue-Light";
  color: rgba(242, 242, 242, 0.66);
  margin-right: 50px;
  text-decoration: none;
}
.footer__links a:hover {
  text-decoration: underline;
}
.footer__links a:nth-last-child(1) {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .footer__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.wpcf7-spinner {
  display: none !important;
}

.codedropz-upload-handler {
  border: 1px solid rgba(250, 250, 250, 0.35) !important;
}

.codedropz-upload-inner h3 {
  color: rgba(242, 242, 242, 0.66);
  font-size: 24px;
}

.cd-upload-btn {
  color: #FFF;
}