@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: 400;
  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-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Benzin";
  src: url("../fonts/Benzin-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Benzin";
  src: url("../fonts/Benzin-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.container {
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0px;
}
@media screen and (max-width: 1340px) {
  .container {
    padding: 0 35px;
  }
}
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }
}

.content__page {
  margin-top: 160px;
}
.content__page h1, .content__page h2, .content__page h3, .content__page h4, .content__page h5, .content__page h6 {
  margin-bottom: 30px;
}
.content__page p {
  margin-bottom: 30px;
}

/* Указываем 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 {
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  font-family: "TT Firs Neue", sans-serif;
  font-weight: 400;
  color: #fff;
  background: #060606;
}

/* Удаляем стандартную стилизацию для всех 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;
}

.lang__arrow {
  margin-left: 6px;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}

.current__lang {
  font-weight: 500;
  font-size: 13.2px;
  color: #fff;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: underline;
}

.rotate {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.lang__hover {
  background: #e5f3ff;
  -webkit-transition: 0.3s ease 0s;
  transition: 0.3s ease 0s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 2;
}
.lang__hover li a {
  text-decoration: none;
  color: #000;
  padding: 5px 10px;
  font-weight: bold;
}

.opened {
  -webkit-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
  opacity: 1;
  visibility: visible;
}

.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: 24px;
  height: 24px;
  position: relative;
}
.burger span {
  width: 24px;
  height: 1px;
  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;
}
.burger__opened span {
  position: absolute;
  margin-bottom: 0;
}
.burger__opened span:nth-child(1) {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 24px;
  position: relative;
  right: 4px;
  color: #fff;
  background: #fff;
  opacity: 1;
}
.burger__opened span:nth-child(2) {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.burger__opened span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.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: 95px;
  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: center;
      -ms-flex-align: center;
          align-items: center;
}
.mobile .top__menu .menu .menu-item {
  margin-right: 0;
  margin-bottom: 10px;
}
.mobile .top__menu .menu .menu-item a {
  font-size: 20px;
  display: block;
}
@media screen and (max-width: 1024px) {
  .mobile {
    width: 100%;
    overflow-y: scroll;
  }
}

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

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

.header {
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 20px;
}

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

.logo {
  width: 65px;
  height: 65px;
  border-radius: 200px;
  border: 1px solid #fff;
  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;
}

.header__line {
  width: calc(100% - 154px);
  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;
  background: #141414;
  border-radius: 12px;
  padding: 6px 20px;
}
@media screen and (max-width: 1200px) {
  .header__line {
    padding: 6px 15px;
  }
}
@media screen and (max-width: 1024px) {
  .header__line {
    width: 100%;
  }
}

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

.top__menu {
  margin-right: 60px;
}
@media screen and (max-width: 1200px) {
  .top__menu {
    margin-right: 30px;
  }
}
.top__menu .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top__menu .menu .menu-item {
  margin-right: 35px;
}
@media screen and (max-width: 1200px) {
  .top__menu .menu .menu-item {
    margin-right: 25px;
  }
}
.top__menu .menu .menu-item:nth-last-child(1) {
  margin-right: 0;
}
.top__menu .menu .menu-item a {
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: rgba(255, 255, 255, 0.6392156863);
}
.top__menu .menu .menu-item a:hover {
  color: #fff;
}

.header__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 50px;
}
@media screen and (max-width: 1200px) {
  .header__contacts {
    margin-right: 25px;
  }
}

.cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13.2px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  margin-right: 24px;
}
.cont:nth-last-child(1) {
  margin-right: 0;
}
.cont img {
  margin-right: 10px;
}
@media screen and (max-width: 600px) {
  .cont img {
    margin-right: 0;
  }
}
.cont:hover {
  opacity: 0.6;
}
@media screen and (max-width: 600px) {
  .cont span {
    display: none;
  }
}

.header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .header__buttons {
    display: none;
  }
}

.h__button1 {
  width: 85px;
  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 #EFEFEF;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  margin-left: 2px;
  background: #060606;
}
@media screen and (max-width: 1200px) {
  .h__button1 {
    width: 75px;
  }
}
.h__button1:hover {
  opacity: 0.6;
}

.h__button2 {
  width: 85px;
  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 #EFEFEF;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  margin-left: 2px;
  background: #EFEFEF;
}
@media screen and (max-width: 1200px) {
  .h__button2 {
    width: 75px;
  }
}
.h__button2:hover {
  opacity: 0.6;
}

.section1 {
  position: relative;
  padding-top: 180px;
  padding-bottom: 30px;
  height: 100vh;
}
@media screen and (max-width: 1440px) {
  .section1 {
    padding-top: 150px;
  }
}
@media screen and (max-width: 1024px) {
  .section1 {
    padding-top: 130px;
    height: auto;
  }
  .section1 .section1__title {
    font-size: 30px;
  }
}
.section1 .container {
  position: relative;
  z-index: 1;
}
.section1 .btxt {
  margin-bottom: 44px;
}
@media screen and (max-width: 1024px) {
  .section1 .btxt {
    margin-bottom: 30px;
  }
}

.section1__bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
}

.section1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(83.45deg, #0A0A0A 55.53%, rgba(10, 10, 10, 0) 88%);
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .section1::before {
    width: 0;
  }
}

.btxt {
  background: #1C1C1C;
  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;
  padding: 4.5px 26px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3607843137);
  text-transform: uppercase;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.section1__title {
  font-family: "Benzin";
  background: linear-gradient(132.41deg, #F1F1F1 24.19%, #C2C2C2 46.18%, #FFFFFF 72.33%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: 50px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .section1__title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 600px) {
  .section1__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 410px) {
  .section1__title {
    font-size: 18px;
  }
}

.section1__text1 {
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 64px;
  color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .section1__text1 {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .section1__text1 br {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .section1__text1 {
    font-size: 15px;
  }
}

.section1__buttons {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 600px) {
  .section1__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.section1__buttons .button1 {
  margin-right: 10px;
}
@media screen and (max-width: 600px) {
  .section1__buttons .button1 {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.button1 {
  border-radius: 12px;
  background: #EFEFEF;
  border: 1px solid #EFEFEF;
  font-family: "Benzin";
  letter-spacing: 0.05em;
  text-transform: uppercase;
  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;
  text-decoration: none;
  color: #000;
  font-size: 12px;
  padding: 20px 28px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 240px;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .button1 {
    padding: 15px 20px;
  }
}
@media screen and (max-width: 600px) {
  .button1 {
    max-width: 100%;
    width: 100%;
    font-size: 10px;
  }
}
.button1:hover {
  border: 1px solid #fff;
  background: #0A0A0A;
  color: #fff;
}

.button2 {
  border-radius: 12px;
  background: #0A0A0A;
  border: 1px solid #fff;
  font-family: "Benzin";
  letter-spacing: 0.05em;
  text-transform: uppercase;
  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;
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  padding: 20px 28px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 240px;
}
@media screen and (max-width: 1024px) {
  .button2 {
    padding: 15px 20px;
  }
}
@media screen and (max-width: 600px) {
  .button2 {
    max-width: 100%;
    width: 100%;
    font-size: 10px;
  }
}
.button2:hover {
  border: 1px solid #EFEFEF;
  background: #EFEFEF;
  color: #000;
}

.section1__text2 {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6705882353);
  text-align: right;
}

.mouse {
  position: absolute;
  bottom: 0px;
  left: 0;
  -webkit-animation: moveUpDown 2s ease-in-out infinite;
          animation: moveUpDown 2s ease-in-out infinite;
}
@media screen and (max-width: 1340px) {
  .mouse {
    left: 35px;
  }
}
@media screen and (max-width: 1024px) {
  .mouse {
    left: 15px;
  }
}

@-webkit-keyframes moveUpDown {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -25px);
            transform: translate(0, -25px);
  }
}

@keyframes moveUpDown {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -25px);
            transform: translate(0, -25px);
  }
}
.numbers__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr 60px 1fr 60px 1fr 60px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 60px;
  background: #060606;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 40px 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .numbers__row {
    grid-column-gap: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .numbers__row {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-row-gap: 30px;
  }
}
@media screen and (max-width: 600px) {
  .numbers__row {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    padding: 30px 0;
  }
}

.number {
  background: linear-gradient(122.97deg, #FFFFFF 12.76%, #8F8F8F 46.31%, #FFFFFF 90.28%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 80px;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1200px) {
  .number {
    font-size: 60px;
  }
}
@media screen and (max-width: 600px) {
  .number {
    font-size: 50px;
  }
}

.number__txt {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6705882353);
}

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

.section2__decor1 {
  position: absolute;
  top: -80%;
  left: 10%;
  z-index: -1;
  -webkit-animation: decorAnim 2s infinite alternate ease-in-out;
          animation: decorAnim 2s infinite alternate ease-in-out;
}
@media screen and (max-width: 1024px) {
  .section2__decor1 {
    top: -8%;
    left: -20%;
  }
}

.section2__decor2 {
  position: absolute;
  bottom: -25%;
  right: 0;
  z-index: -1;
  -webkit-animation: decorAnim 2s infinite alternate ease-in-out;
          animation: decorAnim 2s infinite alternate ease-in-out;
}
@media screen and (max-width: 1024px) {
  .section2__decor2 {
    bottom: 0;
  }
}

@-webkit-keyframes decorAnim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes decorAnim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.section__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .section__header {
    margin-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.section__header .section1__title {
  margin-bottom: 25px;
}
.section__header .section1__text1 {
  margin-bottom: 0;
}
.section__header .btxt {
  margin-bottom: 30px;
}

.section__left {
  width: calc(33.3333333333% - 13px);
}
@media screen and (max-width: 1024px) {
  .section__left {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .section__left {
    width: 100%;
  }
}

.section__right {
  width: calc(66.66666% - 6.5px);
}
@media screen and (max-width: 1024px) {
  .section__right {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .section__right {
    width: 100%;
  }
}

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

.serivce__item {
  width: calc(33.3333333333% - 13px);
  background: #141414;
  border: 1px solid #141414;
  border-radius: 6px;
  padding: 30px;
  margin-bottom: 20px;
  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: 1024px) {
  .serivce__item {
    width: 49%;
  }
}
@media screen and (max-width: 600px) {
  .serivce__item {
    width: 100%;
    padding: 15px;
  }
}
.serivce__item .service__left {
  margin-bottom: 25px;
}
.serivce__item .service__left img {
  height: 106px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
.serivce__item .service__title {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media screen and (max-width: 600px) {
  .serivce__item .service__title {
    font-size: 16px;
  }
}
.serivce__item:nth-child(2) {
  width: calc(66.66666% - 6.5px);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background: #060606;
  border: 1px solid #626262;
}
@media screen and (max-width: 1024px) {
  .serivce__item:nth-child(2) {
    width: 49%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .serivce__item:nth-child(2) {
    width: 100%;
  }
}
.serivce__item:nth-child(2) .service__left {
  margin-bottom: 0px;
  margin-right: 40px;
}
@media screen and (max-width: 1024px) {
  .serivce__item:nth-child(2) .service__left {
    margin-right: 0;
  }
}
.serivce__item:nth-child(2) .service__left img {
  height: 100%;
  min-width: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
@media screen and (max-width: 1024px) {
  .serivce__item:nth-child(2) .service__left img {
    height: 106px;
    margin-bottom: 25px;
    width: 100%;
    min-width: 100%;
  }
}

.service__content {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6705882353);
}
.service__content p {
  margin-bottom: 20px;
}
.service__content p:nth-last-child(1) {
  margin-bottom: 0;
}

.services__button {
  width: calc(66.66666% - 6.5px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-self: flex-end;
}
@media screen and (max-width: 1024px) {
  .services__button {
    width: 100%;
  }
}
.services__button .button2 {
  width: 100%;
}

.section3 {
  margin-top: 180px;
}
.section3 .section__header {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .section3 .section__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.section3 .section__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
@media screen and (max-width: 1024px) {
  .section3 .section__left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 1024px) {
  .section3 {
    margin-top: 60px;
  }
}

.steps {
  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: 1024px) {
  .steps {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media screen and (max-width: 600px) {
  .steps {
    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;
  }
}

.step {
  min-width: 20%;
  min-height: 298px;
  min-width: 20%;
  height: 298px;
  border-radius: 400px;
  border: 1px solid #fff;
  position: relative;
  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;
}
@media screen and (max-width: 1340px) {
  .step {
    height: auto;
    min-height: auto;
    padding: 25%;
  }
}
@media screen and (max-width: 600px) {
  .step {
    width: 300px;
    height: 300px;
    padding: 0;
    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;
    padding: 0 15px;
  }
}
.step:nth-child(1) {
  margin-right: -30px;
}
@media screen and (max-width: 1340px) {
  .step:nth-child(1) {
    margin: 0;
  }
}
.step:nth-child(2) {
  margin-right: -30px;
}
@media screen and (max-width: 1340px) {
  .step:nth-child(2) {
    margin: 0;
  }
}
.step:nth-child(3) {
  margin-right: -30px;
}
@media screen and (max-width: 1340px) {
  .step:nth-child(3) {
    margin: 0;
  }
}
.step:nth-child(4) {
  margin-right: -30px;
}
@media screen and (max-width: 1340px) {
  .step:nth-child(4) {
    margin: 0;
  }
}
.step:nth-child(5) {
  width: 298px;
}
@media screen and (max-width: 1340px) {
  .step:nth-child(5) {
    width: auto;
  }
}
@media screen and (max-width: 600px) {
  .step:nth-child(5) {
    width: 300px;
    height: 300px;
    padding: 0;
    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;
  }
}

.step__number {
  border: 2px solid #F2F2F2;
  width: 47.51px;
  height: 47.51px;
  border-radius: 100px;
  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;
  font-size: 15px;
  background: #121212;
  position: absolute;
  top: 0;
  left: 42px;
}

.step__title {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-left: 25%;
  padding-right: 25%;
}
@media screen and (max-width: 1340px) {
  .step__title {
    padding: 0;
  }
}

.step__text {
  font-size: 15px;
  font-weight: 300;
  color: #F1F1F1;
  padding-left: 25%;
  padding-right: 25%;
}
@media screen and (max-width: 1340px) {
  .step__text {
    padding: 0;
  }
}
@media screen and (max-width: 600px) {
  .step__text {
    text-align: center;
  }
}

.section4 {
  margin-top: 140px;
  background: url("../img/section4.webp") no-repeat bottom;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 280px;
}
@media screen and (max-width: 600px) {
  .section4 {
    padding-top: 30px;
    padding-bottom: 150px;
    background: url("../img/section4.webp") no-repeat -300px;
  }
}
.section4 .section1__title {
  font-size: 41px;
}
@media screen and (max-width: 1340px) {
  .section4 .section1__title {
    font-size: 31px;
  }
}
@media screen and (max-width: 600px) {
  .section4 .section1__title {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .section4 {
    margin-top: 60px;
  }
}

.s4__logo {
  width: 150px;
  height: 150px;
  border-radius: 200px;
  border: 1px solid #fff;
  background: #1B1B1B;
  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-box-shadow: 4.19968px 3.84971px 9.65927px rgba(194, 194, 194, 0.36);
          box-shadow: 4.19968px 3.84971px 9.65927px rgba(194, 194, 194, 0.36);
  -webkit-animation: logoShadow 2s ease-in-out infinite;
          animation: logoShadow 2s ease-in-out infinite;
}
@media screen and (max-width: 1024px) {
  .s4__logo {
    margin-bottom: 30px;
  }
}

@-webkit-keyframes logoShadow {
  0% {
    -webkit-box-shadow: 4.19968px 3.84971px 9.65927px rgba(194, 194, 194, 0.36);
            box-shadow: 4.19968px 3.84971px 9.65927px rgba(194, 194, 194, 0.36);
  }
  50% {
    -webkit-box-shadow: 4.19968px 3.84971px 20px rgba(194, 194, 194, 0.6);
            box-shadow: 4.19968px 3.84971px 20px rgba(194, 194, 194, 0.6);
  }
  100% {
    -webkit-box-shadow: 4.19968px 3.84971px 9.65927px rgba(194, 194, 194, 0.36);
            box-shadow: 4.19968px 3.84971px 9.65927px rgba(194, 194, 194, 0.36);
  }
}

@keyframes logoShadow {
  0% {
    -webkit-box-shadow: 4.19968px 3.84971px 9.65927px rgba(194, 194, 194, 0.36);
            box-shadow: 4.19968px 3.84971px 9.65927px rgba(194, 194, 194, 0.36);
  }
  50% {
    -webkit-box-shadow: 4.19968px 3.84971px 20px rgba(194, 194, 194, 0.6);
            box-shadow: 4.19968px 3.84971px 20px rgba(194, 194, 194, 0.6);
  }
  100% {
    -webkit-box-shadow: 4.19968px 3.84971px 9.65927px rgba(194, 194, 194, 0.36);
            box-shadow: 4.19968px 3.84971px 9.65927px rgba(194, 194, 194, 0.36);
  }
}
.section5 {
  margin-top: 70px;
  position: relative;
}
.section5 .section__right {
  padding-bottom: 60px;
  border-bottom: 1px dashed #fff;
}
@media screen and (max-width: 1024px) {
  .section5 {
    margin-top: 60px;
  }
}

.section5__decor1 {
  position: absolute;
  top: -75%;
  right: 0;
  z-index: -1;
  -webkit-animation: decorAnim 2s infinite alternate ease-in-out;
          animation: decorAnim 2s infinite alternate ease-in-out;
}
@media screen and (max-width: 1024px) {
  .section5__decor1 {
    top: -35%;
  }
}

.s5__t1 {
  margin-bottom: 30px;
}
.s5__t1 span {
  color: rgba(255, 255, 255, 0.3490196078);
}
.s5__t1:nth-last-child(1) {
  margin-bottom: 0;
}

.map__block .section1__text1 {
  margin-bottom: 30px;
}
.map__block .section__right {
  border: none;
  padding: 0;
}
.map__block .section__header {
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .map {
    margin-top: 30px;
  }
}

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

.section6__decor1 {
  position: absolute;
  top: 10%;
  right: 10%;
  z-index: -1;
  -webkit-animation: decorAnim 2s infinite alternate ease-in-out;
          animation: decorAnim 2s infinite alternate ease-in-out;
}
@media screen and (max-width: 1024px) {
  .section6__decor1 {
    top: -35%;
  }
}

.section6__txt2 {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.6705882353);
  font-size: 15px;
  font-weight: 300;
}

.section6__block {
  border-left: 1px solid rgba(255, 255, 255, 0.4392156863);
  border-right: 1px solid rgba(255, 255, 255, 0.4392156863);
  border-top: 1px solid rgba(255, 255, 255, 0.4392156863);
  padding: 40px;
  padding-top: 45px;
  padding-bottom: 0;
  position: relative;
}
@media screen and (max-width: 600px) {
  .section6__block {
    padding: 15px;
    padding-top: 20px;
  }
}
.section6__block::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #060606;
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
}
@media screen and (max-width: 600px) {
  .section6__block::before {
    width: 15px;
  }
}
.section6__block::after {
  content: "";
  width: 40px;
  height: 1px;
  background: #060606;
  display: block;
  position: absolute;
  top: -1px;
  right: -1px;
}
@media screen and (max-width: 600px) {
  .section6__block::after {
    width: 15px;
  }
}

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

.section6__item {
  background: #141414;
  border-radius: 6px;
  padding: 25px 35px;
  padding-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .section6__item {
    padding: 20px 15px;
    padding-bottom: 20px;
  }
}

.s6__item__number {
  font-size: 52px;
  color: #282828;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 100%;
}

.s6__item__title {
  font-family: "Benzin";
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #FFFFFF;
}
@media screen and (max-width: 600px) {
  .s6__item__title {
    font-size: 15px;
  }
}

.s6__item__txt {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6705882353);
}

.section6__button {
  margin-top: 40px;
}
.section6__button .button2 {
  width: 100%;
}

.section7 {
  margin-top: 140px;
}
.section7 .section__header {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .section7 .section__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.section7 .section__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
@media screen and (max-width: 1024px) {
  .section7 .section__left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.section7 .section1__title {
  font-size: 45px;
}
@media screen and (max-width: 1024px) {
  .section7 .section1__title {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) {
  .section7 .section1__title {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .section7 {
    margin-top: 60px;
  }
}

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

.advantage {
  width: 33.3333333333%;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 30px;
}
@media screen and (max-width: 1024px) {
  .advantage {
    width: 50%;
    padding: 15px;
  }
}
.advantage:nth-child(1) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4392156863);
  border-right: 1px solid rgba(255, 255, 255, 0.4392156863);
}
.advantage:nth-child(1)::before {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  background: #060606;
  border-radius: 100px;
  position: absolute;
  right: -15px;
  bottom: -15px;
  z-index: 1;
}
.advantage:nth-child(2) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4392156863);
  border-right: 1px solid rgba(255, 255, 255, 0.4392156863);
}
@media screen and (max-width: 1024px) {
  .advantage:nth-child(2) {
    border-right: none;
  }
}
.advantage:nth-child(2)::before {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  background: #060606;
  border-radius: 100px;
  position: absolute;
  right: -15px;
  bottom: -15px;
  z-index: 1;
}
.advantage:nth-child(3) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4392156863);
}
@media screen and (max-width: 1024px) {
  .advantage:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.4392156863);
  }
  .advantage:nth-child(3)::before {
    content: "";
    width: 30px;
    height: 30px;
    display: block;
    background: #060606;
    border-radius: 100px;
    position: absolute;
    right: -15px;
    bottom: -15px;
    z-index: 1;
  }
}
.advantage:nth-child(4) {
  border-right: 1px solid rgba(255, 255, 255, 0.4392156863);
}
@media screen and (max-width: 1024px) {
  .advantage:nth-child(4) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4392156863);
  }
}
.advantage:nth-child(5) {
  border-right: 1px solid rgba(255, 255, 255, 0.4392156863);
}

.a__img {
  margin-bottom: 30px;
}

.a__title {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .a__title {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .a__title {
    font-size: 14px;
  }
}

.a__text {
  text-align: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6705882353);
  font-weight: 300;
}

.section8 {
  margin-top: 100px;
  background: -webkit-gradient(linear, left top, left bottom, from(#121212), color-stop(40.87%, #222222), to(#121212));
  background: linear-gradient(180deg, #121212 0%, #222222 40.87%, #121212 100%);
  border-radius: 77px;
  padding: 90px 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .section8 {
    margin-top: 60px;
    padding: 30px 0;
    border-radius: 25px;
  }
}

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

.question__item {
  cursor: pointer;
  margin-bottom: 25px;
}
.question__item:nth-last-child(1) {
  margin-bottom: 0;
}

.question__header {
  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;
  padding-bottom: 25px;
  border-bottom: 1px solid #FFFFFF;
}

.question__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.question__number {
  min-width: 100px;
}
@media screen and (max-width: 1024px) {
  .question__number {
    min-width: 50px;
  }
}

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

.question__arrow::after {
  content: "+";
  font-weight: 300;
  font-size: 39px;
}

.active2 .question__arrow::after {
  content: "-";
}

.question__hidden {
  margin-top: 25px;
  font-weight: 300;
}

.section8__decor1 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: 0 auto;
  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) {
  .section8__decor1 {
    display: none;
  }
}

.breadcrumbs {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5019607843);
  margin-bottom: 18px;
}
.breadcrumbs a {
  text-decoration: none;
  color: #fff;
}

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

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

.news__item {
  text-decoration: none;
  color: #fff;
  background: #141414;
  padding: 18px;
  padding-bottom: 30px;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.news__item:hover .news__button {
  text-decoration: none;
}

.news__thumb {
  margin-bottom: 16px;
}
.news__thumb img {
  height: 215px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.news__dates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 18px;
}
.news__dates img {
  width: 17px;
  height: 15px;
  margin-right: 8px;
}

.news__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.3490196078);
  margin-right: 40px;
}

.news__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.3490196078);
}

.news__title {
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 18px !important;
}

.desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6705882353);
  margin-bottom: 30px;
}
.desc p {
  margin: 0;
}

.news__button {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: underline;
}

.navigation {
  margin-top: 50px;
}

.nav-links {
  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: 8px;
}

.page-numbers {
  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;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(224, 224, 224, 0.1098039216);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2B2B2B;
  border-radius: 4px;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
}

.screen-reader-text {
  display: none;
}

.current {
  background: #E0E0E0;
  color: #121212;
}

.prev {
  background: #121212;
  border: 1px solid #E0E0E0;
}

.next {
  background: #121212;
  border: 1px solid #E0E0E0;
}

.news__header {
  height: 400px;
  border-radius: 23px;
  position: relative;
  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;
}
@media screen and (max-width: 1024px) {
  .news__header {
    height: 300px;
  }
}

.n__img {
  width: 100%;
  height: 100%;
}
.n__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 23px;
}

.n__content {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  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-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.n__content .news__date {
  color: #fff;
}
.n__content .news__time {
  color: #fff;
}

.n__back {
  background: rgba(0, 0, 0, 0.6509803922);
  width: 100%;
  height: 100%;
  border-radius: 23px;
  position: absolute;
  top: 0;
  left: 0;
}

.n__title {
  font-weight: 500;
  font-size: 44px;
  text-align: center;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  background: linear-gradient(132.41deg, #F1F1F1 24.19%, #C2C2C2 46.18%, #FFFFFF 72.33%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media screen and (max-width: 1024px) {
  .n__title {
    font-size: 24px;
  }
}

.article {
  background: #F1F1F1;
  border-radius: 23px;
  margin-top: 20px;
  padding: 80px 115px;
  color: #121212;
}
@media screen and (max-width: 1024px) {
  .article {
    padding: 30px 15px;
  }
}
.article h2 {
  font-size: 39px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .article h2 {
    font-size: 20px;
  }
}
.article h3 {
  font-size: 32px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .article h3 {
    font-size: 18px;
  }
}
.article h4 {
  font-size: 20px;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .article h4 {
    font-size: 16px;
  }
}
.article p {
  font-size: 16px;
  font-weight: 500;
}
.article img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 23px;
}

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

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

.contacts__decor1 {
  position: absolute;
  top: -75%;
  left: 0;
  z-index: -1;
  -webkit-animation: decorAnim 2s infinite alternate ease-in-out;
          animation: decorAnim 2s infinite alternate ease-in-out;
}
@media screen and (max-width: 1024px) {
  .contacts__decor1 {
    top: -25%;
  }
}

.contacts__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) {
  .contacts__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.contacts__left {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .contacts__left {
    width: 100%;
    margin-bottom: 30px;
  }
}

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

.adress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
.adress img {
  margin-right: 10px;
}

.f__mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  color: #fff;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  margin-bottom: 30px;
}
.f__mail:hover {
  opacity: 0.6;
}
.f__mail img {
  margin-right: 10px;
}

.grafik {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6980392157);
  font-weight: 300;
  margin-bottom: 10px;
}

.f__tel {
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  margin-bottom: 60px;
  display: block;
}
.f__tel:hover {
  opacity: 0.6;
}

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

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 30px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.social:hover {
  opacity: 0.6;
}
.social:nth-last-child(1) {
  margin-right: 0;
}

.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 {
  margin-bottom: 12px;
  width: 49%;
}
@media screen and (max-width: 1024px) {
  .form__input {
    width: 100%;
  }
}
.form__input input {
  border: 1px solid rgba(255, 255, 255, 0.1098039216);
  background: #121212;
  padding: 23px 11px;
  border-radius: 0;
  outline: none;
  font-size: 14px;
  color: #fff;
  width: 100%;
}
.form__input input::-webkit-input-placeholder {
  font-size: 14px;
  color: #fff;
}
.form__input input::-moz-placeholder {
  font-size: 14px;
  color: #fff;
}
.form__input input:-ms-input-placeholder {
  font-size: 14px;
  color: #fff;
}
.form__input input::-ms-input-placeholder {
  font-size: 14px;
  color: #fff;
}
.form__input input::placeholder {
  font-size: 14px;
  color: #fff;
}

.form__button {
  width: 100%;
  margin-top: 14px;
}
.form__button .button1 {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}

.footer__line {
  background: #141414;
  margin-top: 140px;
  padding: 15px;
}
@media screen and (max-width: 1024px) {
  .footer__line {
    margin-top: 60px;
  }
}

.line__row {
  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) {
  .line__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__left {
  width: 33.3333333333%;
}
@media screen and (max-width: 1024px) {
  .footer__left {
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.footer__center {
  width: 33.3333333333%;
  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) {
  .footer__center {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 15px;
  }
}

.footer__right {
  width: 33.3333333333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .footer__right {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 15px;
  }
}
.footer__right a {
  color: rgba(255, 255, 255, 0.6980392157);
  text-decoration: none;
  font-weight: 300;
  font-size: 15px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.footer__right a:hover {
  color: #fff;
}

@-webkit-keyframes pulseShadow {
  0% {
    -webkit-box-shadow: 0px 0px 0px rgba(255, 255, 255, 0);
            box-shadow: 0px 0px 0px rgba(255, 255, 255, 0);
  }
  50% {
    -webkit-box-shadow: 0px 0px 21px #ffffff;
            box-shadow: 0px 0px 21px #ffffff;
  }
  100% {
    -webkit-box-shadow: 0px 0px 0px rgba(255, 255, 255, 0);
            box-shadow: 0px 0px 0px rgba(255, 255, 255, 0);
  }
}

@keyframes pulseShadow {
  0% {
    -webkit-box-shadow: 0px 0px 0px rgba(255, 255, 255, 0);
            box-shadow: 0px 0px 0px rgba(255, 255, 255, 0);
  }
  50% {
    -webkit-box-shadow: 0px 0px 21px #ffffff;
            box-shadow: 0px 0px 21px #ffffff;
  }
  100% {
    -webkit-box-shadow: 0px 0px 0px rgba(255, 255, 255, 0);
            box-shadow: 0px 0px 0px rgba(255, 255, 255, 0);
  }
}