@charset "UTF-8";

/*Обнуление*/

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

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body._active {
  overflow: hidden;
  position: relative;
  height: 100vh;
}
input,
button,
textarea {
  font-family: Onest;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

a {
  cursor: pointer;
}

strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
  margin: 0;
  line-height: 100%;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

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

button {
  background: transparent;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

/*--------------------*/


body {
  font-family: Onest, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #FFF;
}

body._lock {
  overflow: hidden;
}

button {
  font-size: 20px;
}

a {
  display: block;
  color: #FFF;
  line-height: normal;
}

.wrapper {
  overflow: hidden;
}

.main-title {
  font-size: 96px;
  font-weight: 600;
  color: #5F5B5B;
}

.button {
  color: rgb(255, 255, 255);
  font-family: Onest;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  box-sizing: border-box;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 100px;
  padding: 12px 14px;
}

.button:hover {
  background-color: #ffffff;
  box-shadow: 0 0 40px 40px #ffffff inset;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  color: #5F5B5B;
}


.button_second {
  background-color: #fff;
}

.button_second._active {
  background-color: #00E700;
}


.label {
  font-size: 24px;
  font-weight: 300;
  line-height: 133%;
}

.section__top {
  margin-bottom: 65px;
}

.page {
  padding: 80px 0px 0 0;
}

.page__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
}

.page__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 280px;
          flex: 0 0 280px;
}

.page__content {

}

.dropdown__content {
  position: relative;
}

.dropdown__button {
  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: 14px 30px;
  font-size: 20px;
  border-radius: 8px;
  border: 2px solid rgba(237, 130, 130, 0.6);
  line-height: 160%;
}

.dropdown__button:after {
  content: "";
  display: block;
  background-image: url(../img/icons/drop-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 15px;
  height: 10px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.dropdown__button._active:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.dropdown__list {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  width: 100%;
  border-radius: 8px;
  border: 2px solid rgba(237, 130, 130, 0.6);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  background-color: #fff;
}

.dropdown__list._active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.dropdown__list-item {
  font-size: 20px;
  padding: 14px 30px;
  cursor: pointer;
}

.dropdown__input-hidden {
  display: none;
}

._has-padding {
  padding: 0px 24px;
}

.title {
  font-size: 48px;
  font-weight: 600;
}

.subtitle {
  font-size: 40px;
  font-weight: 700;
  color: #5F5B5B;
  padding-bottom: 40px;
}

.label {
  font-size: 24px;
  color: #00E700;
}

.section {
  padding: 100px 0px;
}

.checkbox input {
  display: none;
}

.checkbox input:checked ~ label:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.checkbox label {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 16px;
  cursor: pointer;
  font-size: 20px;
}

.checkbox label:after,
.checkbox label:before {
  content: "";
  display: block;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  border-radius: 1px;
}

.checkbox label:before {
  border: 1px solid #ED8282;
}

.checkbox label:after {
  top: 0;
  left: 0;
  background-image: url(../img/icons/checkbox.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  background-color: #ED8282;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.container {
  margin: 0 auto;
  padding: 72px 120px;
}

.section-bg {
  background-color: #30323A;
  padding: 24px 0;
  margin: 18px 12px;
  border-radius: 5px;
  color: #fff;
}
.blog__container {
    padding: 0 24px;
}
.black {
  color: #30323A;
}

.modal {
  min-height: 100vh;
  padding: 100px 36px;
}

.header__container {
  padding: 36px 120px;
}
.header {
  position: absolute;
  width: 100%;
}

.header__body {
  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;
  position: relative;
  z-index: 11;
}

.header__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.header__link {
  border: 2px solid #5F5B5B;
  padding: 15px 35px;
  font-weight: 600;
  line-height: normal;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
}
.header__link:hover {
  background-color: #5F5B5B;
  color: #FFF;
  box-shadow: 0 0 40px 40px #5F5B5B inset;
}
.header__menu-button {
  display: none;
  cursor: pointer;
  width: 54px;
  height: 54px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 54px;
  flex: 0 0 54px;
  position: relative;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 100px;
  padding: 18px 16px;
}

.header__menu-button span,
.header__menu-button:before,
.header__menu-button:after {
  height: 2px;
  width: 22px;
  left: calc(50% - 11px);
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  border-radius: 5px;
  background-color: #ffffff;
}

.header__menu-button:after,
.header__menu-button:before {
  content: "";
}

.header__menu-button:before {
  top: 18px;
}

.header__menu-button:after {
  bottom: 18px;
  width: 22px;
}

.header__menu-button span {
  top: 50%;
  width: 22px;
  -webkit-transform: scale(1) translate(0px, -50%);
      -ms-transform: scale(1) translate(0px, -50%);
          transform: scale(1) translate(0px, -50%);
}

.header__menu-button._active span {
  -webkit-transform: scale(0) translate(0px, -50%);
      -ms-transform: scale(0) translate(0px, -50%);
          transform: scale(0) translate(0px, -50%);
  background-color: #292B32;
}

.header__menu-button._active:before {
  top: 50%;
  -webkit-transform: rotate(-45deg) translate(0px, -50%);
      -ms-transform: rotate(-45deg) translate(0px, -50%);
          transform: rotate(-45deg) translate(0px, -50%);
}

.header__menu-button._active:after {
  bottom: 50%;
  width: 22px;
  -webkit-transform: rotate(45deg) translate(0px, 50%);
      -ms-transform: rotate(45deg) translate(0px, 50%);
          transform: rotate(45deg) translate(0px, 50%);
}



.menu nav {
  margin: 0 auto;
  padding: 0px 36px;
  max-width: 1440px;
}

.menu._active {
  left: 0;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.menu__link {
  line-height: 120%;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  color: #30323A;
}

.menu__link:hover {
  color: #00E700;
}


.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  left: 24px;
}


.popup {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 20;
  background: rgba(48, 50, 58, 0.75);
}

.popup.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.popup__body {
  min-height: 100%;
  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: 40px 16px;
}

.popup__content {
  background-color: #fff;
  max-width: 940px;
  padding: 24px;
  position: relative;
  width: 100%;
  border-radius: 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;
  gap: 24px;
}

.close-popup {
  position: absolute;
  width: 18px;
  height: 18px;
  top: 12px;
  right: 12px;
}


@media (max-width: 1024px) {
  .page {
    padding: 50px 0px 0 0px;
  }

  .page_one {
    padding: 50px 0px 36px 0px;
  }

  .header__menu-button{
    display: block;
  }
    .subtitle {
        font-size: 34px;
    }
  .section {
    padding: 80px 0px;
  }

}


@media (max-width: 767px) {
  .menu {
    padding: 120px 0px 30px 0px;
  }

  .menu nav {
    padding: 0px 12px;
  }

  .menu__list {
    margin-bottom: 20px;
    gap: 20px;
  }

  .item {
    padding: 12px;
  }
    .subtitle {
        font-size: 30px;
      padding-bottom: 30px;
    }
  .section {
    padding: 40px 0px;
  }

}

@media (max-width: 600px) {
  .header__items {
    -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: start;
  }

  .header__icon {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }


  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    left: 12px;
  }

}

@media (max-width: 492px) {

  .item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }

}
.input-text {
  padding: 12px 12px 12px 0;
  display: block;
  width: 100%;
  background: transparent;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border-bottom: 2px solid #464954;
  font-variant-numeric: lining-nums proportional-nums;
  font-weight: 500;
  color: #000;
  font-size: 18px;
}
.header__menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 500;
  column-gap: 77px;
}
.header__menu a:hover {
  text-decoration: underline;
}
.header__menu a {
  font-size: 18px;
  font-weight: 400;
}
div.header__button {
  padding: 0;
}
@media (max-width: 1662px) {
  .header__menu {
    column-gap: 38px;
  }
}

@media (max-width: 1445px) {
  .header__button {
    font-size: 20px;
  }
}
@media (max-width: 1371px) {
  .header__link {
    padding: 15px 15px;
  }
  .header__button {
    padding: 15px 15px;
  }
  .header__menu a {
    font-size: 16px;
    font-weight: 600;
  }
}
@media (max-width: 1262px) {
  .header__nav {
    display: none;
  }
  .header__menu-button {
    display: block;
    z-index: 10;

  }
  .menu {
    position: fixed;
    top: 0;
    left: -100%;
    background-color: rgb(33, 33, 33);
    width: 100%;
    height: 100%;
    z-index: 10;
    overflow: auto;
    padding: 170px 0 30px 0;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
  }
  .menu._active nav.header__nav {
    display: block;
  }
  .header__logo {
    z-index: 11;
  }
  .header__content {
    z-index: 11;
  }
  .header__menu {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 20px;
  }
  .menu._active nav.header__nav {
    display: block;
    margin-left: 0;
  }
  .header__menu a {
    font-size: 18px;
    font-weight: 600;
  }
  ._active .header__logo {
    z-index: 12;
  }

  .menu-item-has-children>a:after {
    display: none;
  }
  .header__menu .menu-item-has-children a {
    padding-right: 0;
  }
  .menu-item-has-children .sub-menu {
    display: block;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    backdrop-filter: blur(30px);
    background: rgba(8, 8, 8, 0.01);
    z-index: 3;
    padding: 12px;
    width: 258px;
    margin-left: -10px;
  }
  .menu-item-has-children .sub-menus {
    display: block;
    padding-top: 10px;
    position: inherit;
  }
}

@media (max-width: 767px) {
  .menu._active nav.header__nav {
    margin-left: 12px;
  }
  .menu {
    padding: 150px 0 30px 0;
  }
}

.banner__info {
  position: absolute;
  top: 228px;
  left: 120px;
  max-width: 894px;
      z-index: 10;
}
.banner-h3 {
  color: rgb(255, 255, 255);
  font-size: 40px;
  font-weight: 400;
  line-height: 110%;
  text-align: left;
  padding-bottom: 38px;
}
.banner__text {
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  text-align: left;
}
.img_banner {
  width: 100%;
  max-height: 100dvh;
  object-fit: cover;
  height: 100vh;
}
.banner__slide--page:before {
    content: '';
    z-index: 10;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    background: linear-gradient(0deg, rgb(0 0 0 / 48%) 0%, rgb(0 0 0 / 21%) 50%);
}
.banner__button {
  background: #fff;
  color: rgb(8, 8, 8);
  font-size: 16px;
  display: inline;
  padding: 14px 24px;
}
.banner__button:hover {
  background-color: #ffffff03;
  box-shadow: 0 0 40px 40px #ffffff03 inset;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  color: #ffffff;
}

.banner__swiper--navigations {
    position: absolute;
    bottom: 48px;
    width: calc(100% - 240px);
    left: 120px;
}
.banner__pagination--swiper {
    overflow: hidden;
}
.banner {
    position: relative;
}
/*
.banner__paginationbox--slide0.banner__paginationbox{
  display: none;
  width: 0;
    height: 0;
    position: absolute;
        flex-shrink: unset;
    margin-right: 0 !important;
}*/
.banner__container  .banner__paginationbox {
 background: none!important;
}
.banner__pagination {
  /*position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: auto;
  column-gap: 24px;*/
}
.banner__paginationbox.swiper-slide {
  width: auto;
  height: auto;
  box-sizing: border-box;
  border-bottom: 1px solid rgb(255, 255, 255);
  border-radius: 0;
  text-align: left;
      min-height: 111px;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}
.banner__paginationbox{
  opacity: 0.6;
}


.banner__paginationbox.swiper-slide-thumb-active{
  opacity: 1;
}
.banner__paginationbox.swiper-pagination-bullet:hover{
  opacity: 1;
}
.banner__paginationbox.swiper-pagination-bullet .text {
  text-align: left;
}
.banner__number {
  padding-top: 70px;
  display: flex;
  justify-content: space-between;
  color: rgb(255, 255, 255);
}
.banner__swiper--controll {
  position: absolute;
  right: 0;
  bottom: 130px;
  width: 100px;
  height: 36px;
}
.banner__swiper--controll .swiper-button-next:after, .banner__swiper--controll .swiper-button-prev:after {
  content: ' ';
  background-image: url("../img/str_right.svg");
  line-height: 12px;
  height: 12px;
  width: 18px;
}
.banner__swiper--controll .swiper-button-prev:after {
  transform: rotate(180deg);
}
.banner__swiper--controll .swiper-button-next, .banner__swiper--controll .swiper-button-prev {
  border: 1px solid rgb(255, 255, 255);
  border-radius: 100px;
  height: 36px;
  width: 36px;
}

.contenttext {
  background: rgb(8, 8, 8);
}
.h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
}
.contenttext__text {
  font-size: 16px;
  line-height: 160%;
}
.contenttext__body {
  display: flex;
  column-gap: 48px;
}
.contenttext__body p {
  flex: 1;
}
.blocksmenu__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.blocksmenu__item:last-child {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}
.blocksmenu__item {
  position: relative;
}
.blocksmenu__info {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  column-gap: 18px;
  align-items: baseline;
  width: calc(100% - 48px);
}
.blocksmenu__title {
  font-size: 24px;
}
.blocksmenu__intro {
  font-size: 14px;
  align-items: baseline;
  width: calc(100% - 48px);
}
.blocksmenu__href {
  position: absolute;
  right: 0;
  top: calc(50% - 6px);
}
.blocksmenu__img {
  width: 100%;
}
@media (min-width: 1700px){
.blocksmenu__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
}

.infoimage__container {
  padding: 0;
}
.infoimage__row {
  display: flex;
  background: rgb(8, 8, 8);
}
.infoimage__item {
  flex: 1;
}
.bg--black{
  align-self: center;
}
.infoimage__info{
  padding: 72px 120px;
  display: flex;
  flex-direction: column;
  row-gap: 36px;
}
.infoimage__img {
  width: 100%;
}
.infoimage__blocks2 .infoimage__item.bg--black {
  order: 2;
}
.infoimage__row:nth-child(2n) .infoimage__item.bg--black{
  order: 2;
}
.infoimage__text {
  font-size: 16px;
  line-height: 150%;
}
.content__button {
  display: inline;
  padding: 14px 24px;
  font-size: 16px;
  width: fit-content;
}
.content__button:hover a{
  color: #5F5B5B;
}

.subscribe__row {
  display: flex;
  column-gap: 48px;
}
.subscribe__item {
  flex: 1;
}
.subscribe__title--black, .section--content__title--black {
  color: rgb(8, 8, 8);
}
.text.section--content__title--black p {
    padding-bottom: 20px;
}
.h2.section--content__title--black {
    padding-bottom: 36px;
}
.subscribe__form .input {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  padding: 10px;
}
.subscribe__form .input::placeholder{
  font-size: 18px;
  color: rgb(8, 8, 8);
}
.subscribe__form {
  position: relative;
}
.form-submit {
  position: absolute;
  right: 10px;
  top: calc(50% - 12px);
}
.form-submit:hover {
  right: 5px;
  transition: .2s;
}
.subscribe__item form .sbscrbr-email-wrap.sbscrbr-form-one-line input[type="text"]::placeholder{
  font-size: 18px;
  color: rgb(8, 8, 8);
}
.subscribe__item form .sbscrbr-email-wrap.sbscrbr-form-one-line input[type="text"] {
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    padding-left: 0;
    color: rgb(8, 8, 8);
    opacity: 1;
}
.subscribe__item .sbscrbr-email-wrap.sbscrbr-form-one-line {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    padding: 10px;
}
.sbscrbr-unsubscribe-wrap {
    //display: none;
    color: #000000;
    font-size: 12px;
    gap: 5px;
    display: none;
}
.sbscrbr-unsubscribe-wrap label {
    display: flex;
    align-items: center;
    gap: 5px;
}
form .sbscrbr-block-one-line {
    position: relative;
}
.sbscrbr-form-error, .sbscrbr-form-done {
    font-size: 12px;
    position: absolute;
    bottom: -28px;
}
.subscrbr-sign-up-form {
    position: relative;
}
.subscribe__item form .sbscrbr-block-one-line {
    margin-top: 0;
}
.subscribe__item .sbscrbr-submit-block.sbscrbr-form-one-line {
    position: absolute !important;
    right: 10px;
    top: calc(50% - 6px);
    width: 18px;
    height: 12px;
}
.subscribe__item p.sbscrbr-submit-block.sbscrbr-form-one-line .submit{
  background: url(../img/icon-subscribe.svg);
      width: 100%;
    background-repeat: no-repeat;
        cursor: pointer;
}
.footer__main {
  background: rgb(8, 8, 8);
}
.footer___row {
  display: flex;
  justify-content: space-between;
    align-items: center;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
 .footer__menu>div {
  display: flex;
  gap: 24px;
   align-items: center;
 }
.footer__phone {
  font-size: 24px;
}
.footer__email {
  font-size: 16px;
  line-height: 120%;
}
.footer__email a{
  text-decoration: underline;
}
.footer__send button, .footer__send a {
  font-size: 16px;
  color: rgb(255, 255, 255);
  text-decoration: underline;

}
.footer___menu {
  display: flex;
  gap: 24px;
  justify-content: end;
  font-size: 18px;
}
.footer___menu a {
  font-weight: 500;
}

.copyright {
  background: rgb(33, 33, 33);
}
.copyright__row {
  display: flex;
  justify-content: space-between;
}
.copyright__text {
  color: rgb(255, 255, 255);
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
  opacity: 0.5;
}
.copyright__listhref {
  display: flex;
  gap: 24px;
  color: rgb(255, 255, 255);
  font-size: 12px;
  opacity: 0.5;
}
.copyright__menu a {
  line-height: 100%;
}
.copyright .container {
  padding: 24px 120px;
}


.menu-item-has-children>a:after{
  content: '';
  background: url("../img/str_botton.svg");
  width: 12px;
  height: 18px;
  position: absolute;
  background-size: cover;
  right: 0;
}
.menu-item-has-children {
  position: relative;
}
.menu-item-has-children a{
  padding-right: 20px;
}
.sub-menus{
  display: none;
}
.menu-item-has-children:hover .sub-menus{
  display: block;
  padding-top: 22px;
  position: absolute;
}
.menu-item-has-children:hover .sub-menu{
  display: block;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  backdrop-filter: blur(30px);
  background: rgba(8, 8, 8, 0.01);
  z-index: 3;
  padding: 12px;
  width: 258px;
  margin-left: -10px;

}
.sub-menu a {
  font-size: 14px;
  line-height: 18px;
  padding-bottom: 12px;
}
.sub-menu li:last-child a{
  padding-bottom:0;
}

.bannerpage--about{
  background-image: url("../img/about/banner.jpeg");
}
.bannerpage__container.container {
  padding-top: 228px;
  padding-bottom: 96px;
}
.bannerpage {
  background-size: cover;
}
.bannerpage__text {
  font-size: 20px;
  font-weight: 200;
  line-height: 130%;
}
.bannerpage__body {
  max-width: 894px;
}

.sectiontext {
  background: rgb(8, 8, 8);
}
.sectiontext__text {
  font-size: 32px;
  font-weight: 400;
  line-height: 130%;
  max-width: 890px;
}
.aboutauto__container {
  padding: 0;
}
.aboutauto__row {
  display: flex;
}
.aboutauto__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  color: rgb(8, 8, 8);
}
.aboutauto__text {
  color: rgb(8, 8, 8);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.aboutauto__info {
  padding: 72px 120px;
  display: flex;
  flex-direction: column;
  row-gap: 36px;
}
.aboutauto__img {
  width: 100%;
}
.aboutauto__item {
  flex: 1;
}
.aboutauto__item--text{
  align-self: center;
}
.aboutauto__row-2s .aboutauto__item--text {
  order: 2;
}
.contenttext__texts {
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 36px;
}
.contenttext__texts p{
  font-size: 16px;
    line-height: 160%;
}
.bannerpage--services{
  background-image: url("../img/services/banner.jpeg");
}
.h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 120%;
}
.sectiontext__item {
  font-size: 32px;
  font-weight: 200;
  line-height: 130%;
  position: relative;
}
.sectiontext__item a:after {
  border-bottom: 1px solid rgb(255, 255, 255);
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 3px;
}
.sectiontext__row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 36px;
}

.integrationservice__title {
  color: rgb(8, 8, 8);
}
.integrationservice__text {
  color: rgb(8, 8, 8);
  font-size: 16px;
  line-height: 150%;
}
.integrationservice__row {
  gap: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.integrationservice__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.integrationservice__img {
  max-width: 88px;
}
.steps{
  background: url("../img/services/steps/1.jpeg");
  background-size: cover;
}
.steps__items:last-child {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.steps__row {
  display: flex;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.step__item {
  display: flex;
  gap: 18px;
  flex-direction: column;
}
.step__button {
  border-radius: 100px;
  background: rgb(255, 255, 255);
  display: inline;
  width: fit-content;
  padding: 8px 12px;
  color: rgb(8, 8, 8);
  font-size: 12px;
  font-weight: 700;
  line-height: 100%;
}
.step__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
}
.step__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}
.step__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 160%;
}
.sectiontext__item a:hover:after{
  border-bottom: 1px solid rgb(255 255 255 / 0%);
}/*
.banner__pagination.swiper-pagination-bullets-dynamic .banner__paginationbox.swiper-pagination-bullet.pagination-bullet-0 {
    display: none;
}

.banner__paginationbox.swiper-pagination-bullet.swiper-pagination-bullet-active-prev, .banner__paginationbox.swiper-pagination-bullet.swiper-pagination-bullet-active-prev-prev,
 .banner__paginationbox.swiper-pagination-bullet.swiper-pagination-bullet-active-next-next {
    display: none; 
}
.banner__pagination.swiper-pagination-bullets-dynamic .swiper-pagination-bullet.swiper-pagination-bullet-active-main,
.banner__pagination.swiper-pagination-bullets-dynamic .swiper-pagination-bullet.swiper-pagination-bullet-active-next{
  left: 0!important;
      transform: scale(1);
}
.banner__pagination.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33);
}*/
.banner__pagination {
    width: 100% !important;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    white-space: normal !important;
}

.banner__number {
    width: 100%;
}
.section--content {
    padding-top: 168px;
}
.content__pages .header {
    background: #080808;
}
@media (max-width: 1830px){
.banner__swiper--controll {

    bottom: 160px;
}
}
@media (max-width: 1100px){
  .container {
    padding: 72px 36px;
  }
  .header__container {
    padding: 36px 36px;
  }
  .header__items {
    display: none;
  }
  .sectiontext__item {
    font-size: 24px;
  }
  .sectiontext__row {
    gap: 18px 24px;
  }
  .integrationservice__container, .steps__container {
    padding: 72px;
  }
  .integrationservice__row {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .steps {
    background-position: center;
    background-size: cover;
  }
  .steps__row {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .steps__items:last-child {
    grid-column: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .infoimage__container {
    padding: 0;
  }
  .infoimage__row {
    flex-direction: column;
  }
  .infoimage__info {
    padding: 48px 36px;
    flex-direction: column;
  }
  .bg--black {
    align-self: baseline;
  }
  .infoimage__blocks2 .infoimage__item.bg--black, .infoimage__row:nth-child(2n) .infoimage__item.bg--black {
    order: 0;
  }
  .subscribe__row {
    flex-direction: column;
    gap: 36px;
  }
  .footer___row {
    flex-direction: column;
    align-items: baseline;
    row-gap: 36px;
  }
  .footer___menu {
    font-size: 18px;
    justify-content: start;
  }
  .footer__main .container {
    padding: 36px;
  }
  .copyright .container {
    padding: 24px 36px;
  }
  .sectiontext__text {
    font-size: 24px;
  }
  .aboutauto__container {
    padding: 0;
  }
  .aboutauto__row {
    flex-direction: column;
  }
  .aboutauto__item--text {
    align-self: baseline;
  }
  .aboutauto__info {
    padding: 72px;
  }
  .aboutauto__img {
    width: 100%;
    height: 100vw;
    object-fit: cover;
  }
  .aboutauto__row-2s .aboutauto__item--text {
    order: 0;
  }
  .contenttext__body {
    flex-direction: column;
    gap: 36px;
  }
  .banner__info {
    left: 36px;
    right: 36px;
  }
  .banner {
    position: relative;
}
  .banner {
    height: 90vh;
  }
  .banner__wrapper.swiper-wrapper {
    height: 90vh;
  }
  .img_banner {
    height: 90vh;
  }
  

  .blocksmenu__body {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .blocksmenu__item:last-child {
    grid-column: auto;
    grid-row: auto;
  }
  .blocksmenu__container {
    padding: 72px;
  }
  .blocksmenu__item:last-child {
    order: 2;
  }
  .blocksmenu__item:nth-child(2) {
    order: 3;
  }
  .infoimage__img {
    max-height: 556px;
    object-fit: cover;
    object-position: center;
  }
  .banner__swiper--navigations {
    bottom: 36px;
    width: calc(100% - 72px);
    left: 36px;

  }
  .banner__paginationbox.swiper-slide {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
    height: 100px;
}
.banner__number {
    padding-top: 0;
}
  .banner__swiper--controll {
    bottom: 170px;
    width: 100%;
  }
  .banner__paginationbox.swiper-pagination-bullet-active-next, .banner__paginationbox.swiper-pagination-bullet-active-prev {
    display: none;
  }
  .banner__pagination {
    width: 100% !important;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    white-space: normal!important;
  }
  .banner__paginationbox.swiper-pagination-bullet-active-main {
    left: 0 !important;
    flex-direction: column;
  }
  .banner__number {
    width: 100%;
  }
  .banner__number span {
    color: rgb(255, 255, 255);
    font-family: Onest;
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    padding-bottom: 5px;
  }
  .banner__number a {
    display: flex;
  }
  .banner__paginationbox.swiper-pagination-bullet .text {
    text-align: left;
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
  }
}
@media (max-width: 767px){
  .header__logo img {
    max-width: 109px;
  }
  .header__container {
    padding: 24px;
  }
  .bannerpage__container.container {
    padding-top: 143px;
    padding-bottom: 300px;
  }
  .banner__swiper--controll {
    bottom: 130px;
    width: 100%;
}
  .container {
    padding: 48px 24px;
  }
  .banner-h3 {
    font-size: 24px;
    padding-bottom: 24px;
  }
    .bannerpage__text {
        font-size: 16px;
    }
  .sectiontext__item {
    font-size: 20px;
  }
  .sectiontext__item {
    font-size: 20px;
    display: inline;
    width: fit-content;
  }
  .sectiontext__item a:after{
    display: none;
  }
  .sectiontext__item a{
    text-decoration: underline;
  }
  .sectiontext__row {
    gap: 18px;
    flex-direction: column;
  }
  .integrationservice__row {
    gap: 24px;
  }
  .steps__row {
    gap: 24px;
  }
  .h2 {
    font-size: 32px;
  }
  .steps__items:last-child {
    gap: 24px;
  }
  .infoimage__container {
    padding: 0;
  }
  .infoimage__info {
    padding: 48px 24px;
  }
  .footer__item, .footer__contacts {
    order: 2;
  }
  .footer__item.footer__menu, .footer__nav {
    order: 1;
  }
  .footer__menu>div {
    display: flex;
    gap: 24px;
    align-items: baseline;
    flex-direction: column;
  }
  .footer___menu {
    flex-direction: column;
  }
  .copyright .container {
    padding: 24px;
  }
  .copyright__row {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 24px;
  }
  .copyright__item:first-child{
    order: 2;
  }
  .copyright__item:last-child{
    order: 1;
  }
  .sectiontext__text {
    font-size: 20px;
  }
  .aboutauto__container {
    padding: 0;
  }
  .aboutauto__info {
    padding: 48px 24px;
    row-gap: 24px;
  }
  .banner__swiper--navigations {
    bottom: 24px;
    width: calc(100% - 48px);
    left: 24px;
  }
  .banner {
    position: relative;
}
  .banner__paginationbox.swiper-pagination-bullet {
    display: none;
  }
  .banner__paginationbox.swiper-pagination-bullet.swiper-pagination-bullet-active {
    display: block;
  }
  .banner__pagination {
    width: 100% !important;
    display: flex;
  }
  .banner__info {
    left: 24px;
    max-width: calc(100% - 48px);
    top: 143px;
}
.banner__paginationbox.swiper-slide {
    opacity: 0.6;
    display: none;
    width: 100% !important;
    margin-right: 0 !important;
}
.banner__paginationbox.swiper-slide-thumb-active {
    opacity: 1;
    display: block;
    height: 100%;
}
.banner__number {
    padding-top: 70px;
}
.banner__text {
    font-size: 16px;
    font-weight: 200;
        top: 143px;
  padding-top: 20px;
}
.header__container {
    padding: 24px;
}
  .blocksmenu__info {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
  }
  .blocksmenu__href {

    top: auto;
    bottom: -9px;
  }
  .section--content {
    padding-top: 120px;
}
.subscribe__item #sbscrbr-form .sbscrbr-email-wrap.sbscrbr-form-one-line {
    width: 100%;
}
.subscribe__item #sbscrbr-form .sbscrbr-submit-block.sbscrbr-form-one-line {
    width: 18px;
}
.banner__container.swiper-3d {
    perspective: inherit;
}
}