@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Manrope-Regular.woff2") format("woff2"), url("../fonts/Manrope-Regular.woff") format("woff"), url("../fonts/Manrope-Regular.eot") format("eot");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Manrope-Medium.woff2") format("woff2"), url("../fonts/Manrope-Medium.woff") format("woff"), url("../fonts/Manrope-Medium.eot") format("eot");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Manrope-SemiBold.woff2") format("woff2"), url("../fonts/Manrope-SemiBold.woff") format("woff"), url("../fonts/Manrope-SemiBold.eot") format("eot");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Manrope-Bold.woff2") format("woff2"), url("../fonts/Manrope-Bold.woff") format("woff"), url("../fonts/Manrope-Bold.eot") format("eot");
}
* {
  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%;
  font-size: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

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

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
}

:root {
  --black-color: #000;
  --grey-color: #89909F;
  --primary-color: #5D5FEF;
  --body-color: #F5F6FF;
  --border-color: #E8E9F4;
}

* {
  font-family: "Manrope";
}

body {
  background: var(--body-color);
}

.wrapper {
  min-height: 100%;
  width: 100%;
  overflow: hidden;
}

.container {
  max-width: 1430px;
  padding: 0 15px;
  margin: 0 auto;
  height: 100%;
}

.title {
  color: var(--black-color);
  font-weight: 600;
  font-size: 48px;
  line-height: normal;
}

.description {
  color: var(--grey-color);
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
}

.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.776);
}

.modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  min-width: 670px;
  height: 419px;
  -webkit-box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.492), 0 7px 20px 0 rgba(0, 0, 0, 0.554);
          box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.492), 0 7px 20px 0 rgba(0, 0, 0, 0.554);
  background: #fff;
  padding: 25px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
}

.modal__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}

.modal__heading-info {
  line-height: normal;
}

.modal__heading-title {
  color: #131314;
  font-size: 48px;
  font-weight: 600;
}

.modal__heading-please {
  color: #7B7B7B;
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  margin: 15px 0 30px;
}

.modal__heading-contact {
  color: var(--black-color);
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
}

.modal__form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 55px);
  gap: 10px;
}

.modal__form-button {
  grid-area: 2/1/3/3;
  background: var(--primary-color);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  min-width: 100%;
}

.oneLabel {
  grid-area: 1/1/2/2;
}

.twoLabel {
  grid-area: 1/2/2/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal__form-label {
  width: 100%;
  padding: 15px 30px 16px 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #F7F7FC;
  overflow: hidden;
}
.modal__form-label input {
  min-width: 100%;
  background: transparent;
  height: 100%;
  color: var(--black-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  font-family: "Manrope";
}

.inputOne::-webkit-input-placeholder {
  color: #949494;
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  font-family: "Manrope";
}

.inputOne::-moz-placeholder {
  color: #949494;
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  font-family: "Manrope";
}

.inputOne:-ms-input-placeholder {
  color: #949494;
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  font-family: "Manrope";
}

.inputOne::-ms-input-placeholder {
  color: #949494;
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  font-family: "Manrope";
}

.inputOne::placeholder {
  color: #949494;
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  font-family: "Manrope";
}

.inputTwo {
  padding-left: 10px;
}
.inputTwo::-webkit-input-placeholder {
  color: var(--black-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  font-family: "Manrope";
}
.inputTwo::-moz-placeholder {
  color: var(--black-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  font-family: "Manrope";
}
.inputTwo:-ms-input-placeholder {
  color: var(--black-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  font-family: "Manrope";
}
.inputTwo::-ms-input-placeholder {
  color: var(--black-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  font-family: "Manrope";
}
.inputTwo::placeholder {
  color: var(--black-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  font-family: "Manrope";
}

.modal__form-icon {
  padding-right: 10px;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}
.modal__form-icon img {
  width: 25.2px;
  height: 18px;
}

.modal__bottom {
  margin-top: 30px;
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
}

.modal__bottom-description {
  color: #7B7B7B;
}

.modal__bottom-privacy {
  color: #131314;
}

.modal__thanks {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  min-width: 485px;
  height: 407px;
  -webkit-box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.492), 0 7px 20px 0 rgba(0, 0, 0, 0.554);
          box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.492), 0 7px 20px 0 rgba(0, 0, 0, 0.554);
  background: #fff;
  padding: 25px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
}

.modal__thanks-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 45px;
}

.modal__thanks-info {
  line-height: normal;
}

.modal__thanks-title {
  color: #131314;
  font-size: 48px;
  font-weight: 600;
}

.modal__thanks-desscription {
  color: #7B7B7B;
  font-size: 15px;
  font-weight: 150%;
  margin-top: 15px;
  max-width: 375px;
}

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

.hidden {
  display: none;
}

@media (max-width: 700px) {
  .modal__form {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 55px);
  }
  .modal__form-button {
    grid-area: 3/1/4/2;
  }
  .oneLabel,
  .twoLabel {
    grid-area: auto;
  }
  .modal__content {
    min-width: 359px;
    height: 452px;
    padding: 20px;
  }
  .modal__heading-title {
    font-size: 20px;
  }
  .modal__heading-please {
    margin: 10px 0 20px;
  }
  .modal__bottom {
    margin-top: 20px;
  }
  .modal__thanks {
    min-width: 359px;
    height: 385px;
    padding: 20px;
  }
  .modal__thanks-title {
    font-size: 20px;
  }
  .modal__thanks-desscription {
    margin-top: 10px;
  }
}
@media (max-width: 390px) {
  .modal__content {
    min-width: 290px;
    height: 410px;
    padding: 15px;
  }
  .modal__heading-please {
    font-size: 13px;
    margin: 10px 0;
  }
  .modal__bottom-privacy,
  .modal__bottom-description {
    font-size: 13px;
  }
  .modal__bottom {
    margin-top: 10px;
  }
  .modal__heading {
    margin-bottom: 10px;
  }
  .modal__thanks {
    min-width: 290px;
  }
  .modal__thanks-desscription {
    font-size: 13px;
    max-width: 100%;
  }
}
.header {
  height: 80px;
}

.header__top {
  border-bottom: 1px solid var(--border-color);
  padding: 25px 0;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.header__logo {
  margin-right: 27px;
}

.header__menu {
  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;
  width: 100%;
  position: relative;
}
.header__menu::before {
  content: "";
  width: 1px;
  height: 81px;
  background: var(--border-color);
  position: absolute;
  left: 0;
}

.header__menu-info {
  padding: 0 50px 0 30px;
  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;
  width: 100%;
}

.header__menu-name {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--grey-color);
}

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

.header__menu-number {
  margin-right: 50px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black-color);
}

.header__menu-location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--black-color);
}
.header__menu-location svg {
  margin-right: 10px;
}

.header__menu-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 50px;
  white-space: nowrap;
  position: relative;
}
.header__menu-contact::before {
  content: "";
  width: 1px;
  height: 81px;
  background: var(--border-color);
  position: absolute;
  left: 0;
}

.header__menu-application {
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--black-color);
  margin-right: 20px;
}
.header__menu-application svg {
  margin-right: 10px;
}

.header__menu-messenger {
  padding-left: 20px;
  border-left: 1px solid var(--border-color);
}

.header__menu-link:last-child {
  margin-left: 20px;
}

.hero {
  padding-top: 25px;
}

.hero__inner {
  position: relative;
}
.hero__inner::before {
  content: "";
  width: 1px;
  height: 436px;
  background: var(--border-color);
  display: block;
  position: absolute;
  top: -25px;
  left: 320px;
}

.hero__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}

.hero__top-link {
  color: var(--black-color);
  text-transform: uppercase;
  line-height: 140%;
  max-width: 193px;
  font-weight: 700;
  text-align: right;
  font-size: 24px;
  display: inline-block;
  margin-right: 127px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hero__top-link::before {
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 24px;
  height: 24px;
  position: absolute;
  background: url("../images/icon/arrows.svg");
  top: 0;
  right: -34px;
}
.hero__top-link:hover::before {
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg);
}

.hero__top-title {
  font-size: 84px;
  font-weight: 600;
  line-height: 125%;
  color: var(--black-color);
  max-width: 909px;
  margin-left: 60px;
}
.hero__top-title span {
  color: var(--primary-color);
}

.hero__images {
  position: relative;
  z-index: 2;
  max-width: 1400px;
}
.hero__images img {
  width: 100%;
}

.devices {
  padding: 150px 0 100px;
}

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

.devices__heading-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
}

.devices__heading-number {
  color: var(--grey-color);
  margin-right: 10px;
}

.devices__heading-item {
  color: var(--black-color);
}

.devices__heading-info {
  margin: 0 auto;
}

.devices__heading-subtitle {
  margin-top: 15px;
  color: var(--grey-color);
  font-weight: 400;
}

.devices__slider {
  padding: 40px 0 0;
  max-width: 100%;
}

.my-carousel-progress {
  background: #E8E9F4;
  margin-top: 60px;
  max-width: 1020px;
  margin-left: auto;
  height: 4px;
}

.my-carousel-progress-bar {
  background: var(--primary-color);
  height: 100%;
  -webkit-transition: width 400ms ease;
  transition: width 400ms ease;
  width: 0;
  min-width: 33%;
}

.splide__slide {
  background: #fff;
  min-height: 320px;
  max-height: 320px;
}

.oneSlide {
  max-width: 360px;
}
.oneSlide .devices__slider-images {
  max-width: 310px;
  overflow: hidden;
}
.oneSlide .devices__slider-images img {
  width: 100%;
}

.twoSlide {
  min-width: 520px;
  max-width: 100%;
}
.twoSlide .devices__slider-images {
  max-width: 470px;
  overflow: hidden;
}
.twoSlide .devices__slider-images img {
  width: 100%;
}

.threeSlide {
  overflow: hidden;
  min-width: 480px;
}
.threeSlide .devices__slider-images {
  max-width: 100%;
  overflow: hidden;
}
.threeSlide .devices__slider-images img {
  width: 100%;
}

.devices__slider-inner {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 25px 20px 20px;
  display: block;
}
.devices__slider-inner:hover svg {
  fill: var(--primary-color);
}

.devices__slider-row {
  margin-top: 25px;
  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;
}
.devices__slider-row svg {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.devices__slider-name {
  color: var(--black-color);
  font-weight: 600;
  font-size: 22px;
  line-height: normal;
}

.splide__arrow {
  background: transparent;
}

.splide__arrow svg {
  width: 24px;
  height: 24px;
}

.splide__arrow--next {
  right: -57px;
  top: 45%;
}

.splide__arrow--prev {
  top: 45%;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  left: -57px;
}

.advantages {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.advantages__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  text-transform: uppercase;
  padding-right: 169px;
  margin-top: 23px;
  padding-top: 100px;
}

.advantages__step-number {
  color: var(--grey-color);
  margin-right: 10px;
  font-weight: 500;
}

.advantages__step-item {
  color: var(--black-color);
  font-weight: 500;
}

.advantages__inforamtion {
  padding: 100px 0 100px 60px;
  border-left: 1px solid var(--border-color);
}

.advantages__inforamtion-title {
  margin-bottom: 15px;
}

.advantages__inforamtion-subtitle {
  color: var(--grey-color);
  font-weight: 400;
  font-size: 15px;
}

.advantages__inforamtion-grid {
  display: grid;
  grid-template-columns: repeat(2, 480px);
  grid-template-rows: repeat(2, 153px);
  margin-top: 40px;
  gap: 80px 60px;
}

.advantages__inforamation-BoxSubtitle {
  color: var(--black-color);
  font-weight: 600;
  font-size: 22px;
  padding: 20px 0;
}

.advantages__inforamtion-description {
  max-width: 400px;
}

.box---two {
  max-width: 300px;
}

.brands {
  padding: 100px 0;
}

.brands__heading {
  min-width: 100%;
  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;
  margin-bottom: 40px;
}

.brands__heading-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  line-height: normal;
}

.brands__heading-number {
  color: var(--grey-color);
  margin-right: 10px;
}

.brands__heading-name {
  color: var(--black-color);
}

.brands__heading-info {
  margin: 0 auto;
}

.brands__heading-subtitle {
  margin-top: 15px;
  color: var(--grey-color);
  font-size: 15px;
  font-weight: 400;
}

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

.oneGrid {
  display: grid;
  grid-template-columns: 360px 220px;
  grid-template-rows: repeat(2, 180px);
  gap: 20px;
  margin-right: 20px;
}

.oneBoxGrid {
  grid-area: 1/1/2/2;
  display: grid;
  place-items: center;
}

.twoBoxGrid {
  grid-area: 1/2/2/3;
}

.threeBoxGrid {
  grid-area: 2/1/3/3;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.threeBoxGrid img {
  width: 24px;
  height: 24px;
}

.brands__grid-box {
  background: #fff;
}

.brands__grid-info {
  line-height: normal;
}

.brands__grid-subtitle {
  color: var(--grey-color);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
}

.brands__grid-item {
  color: var(--black-color);
  font-weight: 400;
  font-size: 30px;
  margin-top: 10px;
  max-width: 307px;
}

.twoGrid {
  display: grid;
  grid-template-rows: 180px 180px;
  grid-template-columns: 280px 490px;
  gap: 20px;
}
.twoGrid li {
  display: grid;
  place-items: center;
}

.boxTwoGrid {
  grid-row: 1/2;
  grid-column: 2/3;
  width: 490px;
}

.boxThreeGrid {
  grid-row: 2/3;
  grid-column: 1/2;
  width: 490px;
}

.boxFourGrid {
  grid-row: 2/3;
  grid-column: 2/3;
  width: 270px;
  margin: 0 0 0 220px;
}

.reviews {
  border-top: 1px solid var(--border-color);
}

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

.reviews__left {
  padding-right: 122px;
}

.reviews__left-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  line-height: normal;
}

.reviews__left-number {
  color: var(--grey-color);
  margin-right: 10px;
}

.reviews__left-item {
  color: var(--black-color);
}

.reviews__left-rating {
  line-height: normal;
  font-weight: 500;
  margin-top: 114px;
}

.reviews__left-num {
  color: var(--primary-color);
  font-size: 96px;
}

.reviews__left-assessments {
  font-size: 30px;
  color: var(--black-color);
  margin-top: 10px;
  white-space: nowrap;
}

.reviews__info {
  padding: 100px 0 100px 60px;
  border-left: 1px solid var(--border-color);
  max-width: 100%;
}

.reviews__info-subtitle {
  color: var(--grey-color);
  font-weight: 400;
  margin-top: 15px;
  font-size: 15px;
}

.reviews__slider {
  padding: 40px 0;
  max-width: 1020px;
}

.reviews__slider-slide {
  line-height: normal;
  max-width: 100%;
}

.reviews__slider-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--black-color);
  font-size: 22px;
  font-weight: 600;
}
.reviews__slider-name img {
  margin-left: 15px;
}

.reviews__slider-description {
  margin: 20px 0 40px;
  color: var(--black-color);
  font-size: 15px;
  font-weight: 400;
  max-width: 840px;
}

.reviews__slider-grade {
  font-size: 15px;
  color: var(--black-color);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
}
.reviews__slider-grade span {
  color: var(--primary-color);
  margin-left: 10px;
}

.reviews__slider-nav {
  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;
  padding: 40px 0;
}

.swiper-scrollbar .reviews__slider-scrollbar {
  background: var(--primary-color);
}

.swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--primary-color);
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal.reviews__slider-scrollbar {
  max-width: 912px;
  position: relative;
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
  background: #E8E9F4;
}

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

.buttonPrev {
  margin-left: 20px;
}

.reviews__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
}

.reviews__list-companies {
  margin-right: 40px;
}
.reviews__list-companies:last-child {
  margin-right: 0;
}

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

.reviews-list-name {
  color: var(--black-color);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 10px;
}

.reviewsRatingTwo {
  display: none;
}

.work {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.work__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 123px 157px 0 0;
  white-space: nowrap;
}

.work__step-number {
  margin-right: 10px;
  color: var(--grey-color);
}

.work__step-item {
  color: var(--black-color);
}

.work__right {
  padding: 100px 0 100px 60px;
  border-left: 1px solid var(--border-color);
  width: 100%;
}

.work__right-heading {
  margin-bottom: 50px;
}

.work__right-title {
  margin-bottom: 15px;
}

.work__right-subtitle {
  color: var(--grey-color);
  font-size: 15px;
  font-weight: 400;
}

.work__right-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.work__right-row {
  width: 100%;
}

.work__right-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  height: 150px;
}
.work__right-item:hover .work__right-images {
  display: block;
}

.work__right-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 15px;
}

.work__right-number {
  color: var(--primary-color);
  font-size: 96px;
  font-weight: 500;
  min-width: 120px;
}

.work__right-box {
  line-height: normal;
  max-width: 322px;
  margin-left: 30px;
}

.work__tight-item {
  height: 100px;
}

.workBoxOne {
  margin-bottom: 109px;
}

.workBoxTwo {
  margin-bottom: 100px;
}

.infoBoxOne {
  max-width: 280px;
}

.work__right-subtitle {
  color: var(--black-color);
  font-size: 22px;
  font-weight: 600;
}

.work__right-description {
  color: var(--grey-color);
  font-size: 15px;
  font-weight: 400;
  margin-top: 20px;
}

.work__right-images {
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: none;
}

.work__right-button {
  position: absolute;
  top: 25px;
  left: -50px;
}

.questions {
  overflow: hidden;
}

.questions__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.questions__inner::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: var(--primary-color);
  position: absolute;
  right: -100%;
}

.questions__left {
  padding: 0 101px 0 0;
  position: relative;
  z-index: 1;
}

.questions__left-link {
  color: var(--black-color);
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.questions__left-link img {
  white-space: nowrap;
  width: 24px;
  height: 24px;
  margin-left: 10px;
}

.questions__information {
  padding: 100px 15px 120px 60px;
  background: var(--primary-color);
  color: #fff;
  position: relative;
  z-index: 1;
}

.questions__information-title {
  font-size: 48px;
  font-weight: 600;
  line-height: normal;
}

.questions__information-subtitle {
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  margin: 15px 0 40px;
}

.questions__information-description {
  font-size: 32px;
  font-weight: 400;
  line-height: normal;
}

.faq {
  border-top: 1px solid var(--border-color);
  overflow: hidden;
}

.faq__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.faq__step {
  padding: 123px 176px 0 0;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
}

.faq__step-number {
  color: var(--grey-color);
  margin-right: 10px;
}

.faq__step-item {
  color: var(--black-color);
}

.faq__information {
  padding: 100px 0;
  border-left: 1px solid var(--border-color);
  min-width: 100%;
}

.faq__information-heading {
  padding-left: 60px;
}

.faq__information-title {
  margin-bottom: 15px;
}

.faq__information-subtitle {
  color: var(--grey-color);
  font-size: 15px;
  font-weight: 400;
}

.faq__information-accordion {
  width: 100%;
}

.faq__information-list {
  width: 100%;
}

.faq__information-item {
  padding: 50px 10px 50px 60px;
  display: block;
  position: relative;
  cursor: pointer;
  min-width: 100%;
  border-bottom: 1px solid var(--border-color);
}
.faq__information-item.active .faq__information-description {
  display: block;
}

.faq__item-last {
  border: none;
}

.faq__information-item.active .faq__information-info svg {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}

.faq__information-info {
  color: var(--black-color);
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.faq__information-info svg {
  margin-left: 10px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.faq__information-body {
  padding: 20px 0;
}

.faq__information-description {
  color: var(--black-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  max-width: 771px;
  display: none;
  -webkit-transition: display 0.3s ease;
  transition: display 0.3s ease;
}

.faq__information-questions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--grey-color);
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
}
.faq__information-questions span {
  margin-left: 10px;
}

.about {
  border-top: 1px solid var(--border-color);
}

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

.about__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  padding: 123px 247px 0 0;
  white-space: nowrap;
}

.about__step-number {
  color: var(--grey-color);
  margin-right: 10px;
}

.about__step-item {
  color: var(--black-color);
}

.about__right {
  border-left: 1px solid var(--border-color);
}

.about__inforamtion {
  padding: 100px 0 0 60px;
}

.about__inforamtion-subtitle {
  font-size: 15px;
  font-weight: 400;
  color: var(--grey-color);
  margin-top: 15px;
}

.about__inforamtion-description {
  font-size: 32px;
  font-weight: 500;
  color: #181818;
  padding: 15px 0 40px;
  line-height: normal;
}

.about__images {
  max-width: 1180px;
}
.about__images img {
  width: 100%;
}

.footer {
  border-top: 1px solid var(--border-color);
}

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

.footer__contact-step {
  padding-top: 123px;
  margin-right: 182px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  text-transform: uppercase;
  line-height: normal;
}

.footer__contact-number {
  color: var(--grey-color);
  margin-right: 10px;
  font-weight: 500;
}

.footer__contact-item {
  color: var(--black-color);
  font-weight: 500;
}

.footer__contact-information {
  padding-left: 60px;
  padding-top: 100px;
  border-left: 1px solid var(--border-color);
  padding-bottom: 60px;
}

.footer__contact-subtitle {
  margin-top: 15px;
  margin-bottom: 40px;
}

.footer__contact-tell {
  color: var(--black-color);
  font-size: 64px;
  font-weight: 500;
  line-height: normal;
}

.footer__contact-row {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__contact-row li {
  padding-right: 20px;
}

.footer__contact-location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--black-color);
}
.footer__contact-location svg {
  margin-right: 10px;
}

.footer__contact-time {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: normal;
  color: var(--grey-color);
  border-right: 1px solid var(--border-color);
}

.footer__contact-messenger {
  padding-left: 20px;
  border-right: 1px solid var(--border-color);
}

.footer__contact-link:last-child {
  margin-left: 20px;
}

.footer__contact-city {
  padding-left: 20px;
  border-left: 1px solid var(--border-color);
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
}

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

.footer__center-box {
  padding: 40px;
  min-height: 100%;
  background: var(--primary-color);
  min-width: 320px;
}

.footer__center-application {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: right;
  line-height: 140%;
}
.footer__center-application svg {
  margin-left: 10px;
}

.footer__center-maps {
  max-width: 1180px;
}
.footer__center-maps iframe {
  max-width: 100%;
}

.footer__bottom {
  padding: 40px 0;
  position: relative;
}

.footer__bottom-item {
  left: 380px;
  font-size: 15px;
  color: #8A8A8A;
  font-weight: 400;
}

@media (max-width: 1550px) {
  .splide__arrow--next {
    right: 0;
  }
  .splide__arrow--prev {
    left: 0;
  }
  .work__step {
    padding: 123px 87px 0 0;
  }
}
@media (max-width: 1450px) {
  .advantages__step {
    padding-right: 50px;
  }
  .reviews__left {
    padding-right: 50px;
  }
  .reviews__info {
    padding: 100px 0 100px 60px;
  }
  .brands__grid {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .oneGrid {
    grid-template-columns: 220px 220px;
  }
  .twoGrid {
    grid-template-columns: repeat(2, 220px);
    grid-template-rows: repeat(2, 180px);
    gap: 20px;
  }
  .boxOneGrid {
    display: none;
  }
  .boxTwoGrid {
    grid-area: 1/1/2/2;
    max-width: 220px;
  }
  .boxThreeGrid {
    grid-area: 1/2/2/3;
    max-width: 220px;
  }
  .boxFourGrid {
    grid-area: 2/1/3/3;
    width: 460px;
    margin: 0;
  }
  .swiper-horizontal > .swiper-scrollbar,
  .swiper-scrollbar.swiper-scrollbar-horizontal.reviews__slider-scrollbar {
    max-width: 700px;
  }
  .reviews__slider-nav {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .reviews__slider-btn {
    margin-left: 30px;
  }
  .reviews__info {
    overflow: hidden;
  }
  .swiper-scrollbar .swiper-scrollbar-drag {
    max-width: 33%;
  }
  .twoSlide {
    min-width: 360px;
  }
  .twoSlide .devices__slider-images {
    max-width: 100%;
    height: 220px;
  }
  .twoSlide .devices__slider-images img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    max-width: 100%;
    height: 220px;
  }
  .threeSlide {
    min-width: 360px;
  }
  .threeSlide .devices__slider-images {
    max-width: 100%;
    height: 220px;
  }
  .threeSlide .devices__slider-images img {
    max-width: 100%;
    height: 220px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 1350px) {
  .advantages__inforamtion-grid {
    grid-template-columns: repeat(2, 350px);
    grid-template-rows: repeat(2, 153px);
    gap: 60px;
  }
  .work__right-img {
    width: 350px;
  }
  .work__right-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;
  }
  .work__right-button {
    left: -30px;
  }
  .work__right-button img {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 1300px) {
  .footer__contact-row {
    display: grid;
    grid-template-columns: repeat(1, 350px);
    grid-template-rows: repeat(4, 50px);
  }
  .footer__contact-row li {
    padding: 0;
    border: none;
  }
}
@media (max-width: 1200px) {
  .hero__top-title {
    font-size: clamp(40px, 5vw, 84px);
  }
  .questions__information-title {
    font-size: clamp(25px, 5vw, 84px);
  }
  .questions__information-description {
    font-size: 25px;
  }
  .faq__information-body {
    max-width: 600px;
  }
  .about__inforamtion-description {
    font-size: 25px;
  }
  .work__right-number {
    font-size: 70px;
    min-width: 80px;
  }
  .work__right-box {
    margin-left: 10px;
  }
}
@media (max-width: 1150px) {
  .header__menu-info {
    padding: 0 15px;
  }
  .header__menu-number {
    margin-right: 15px;
  }
  .header__menu-contact {
    padding-left: 15px;
  }
  .header__menu-link:last-child {
    margin-left: 10px;
  }
  .splide__arrows {
    display: none;
  }
  .work__right-item {
    cursor: default;
  }
  .work__right-item:hover .work__right-images {
    display: none;
  }
}
@media (max-width: 1100px) {
  .devices {
    padding: 50px 0;
  }
  .faq__information {
    padding: 50px 0;
  }
  .advantages__inforamtion {
    padding: 50px 0 50px 50px;
  }
  .brands {
    padding: 50px 0;
  }
  .reviews__info {
    padding: 50px 0 50px 50px;
  }
  .reviews__list {
    margin: 0;
  }
  .questions__information {
    padding: 50px 15px 50px 50px;
  }
  .questions__left {
    padding-right: 50px;
  }
  .questions__left-link {
    font-size: 21.2px;
  }
  .faq__step {
    padding: 50px 100px 0 0;
  }
  .about__step {
    padding: 50px 170px 0 0;
  }
  .about__inforamtion {
    padding: 50px 0 0 50px;
  }
  .footer__contact-information {
    padding-top: 50px;
  }
  .footer__contact-step {
    margin-right: 105px;
  }
  .footer__center-box {
    padding: 40px 0 0 10px;
    min-width: 241.7px;
  }
  .footer__center-application {
    font-size: 17px;
  }
  .work__right {
    padding: 50px 0 50px 50px;
  }
  .work__right-item {
    -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;
  }
  .work__right-images {
    display: none;
  }
}
@media (max-width: 1050px) {
  .header__inner {
    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;
  }
  .header__toggle {
    cursor: pointer;
    padding: 12px 0;
    z-index: 10000;
  }
  .header__toggle span {
    position: relative;
    display: block;
    width: 20px;
    height: 2px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background: var(--black-color);
    border-radius: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    cursor: pointer;
  }
  .header__toggle span:before, .header__toggle span:after {
    position: absolute;
    background: var(--black-color);
    content: "";
    width: 25px;
    height: 2px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background: var(--black-color);
    border-radius: 30px;
    cursor: pointer;
  }
  .header__toggle span:before {
    top: -8px;
  }
  .header__toggle span:after {
    top: 8px;
  }
  .header__toggle.active span {
    background: transparent;
  }
  .header__toggle.active span:before {
    -webkit-transform: rotate(45deg) translate(5px, 6px);
        -ms-transform: rotate(45deg) translate(5px, 6px);
            transform: rotate(45deg) translate(5px, 6px);
    background: #fff;
  }
  .header__toggle.active span:after {
    -webkit-transform: rotate(-45deg) translate(5px, -6px);
        -ms-transform: rotate(-45deg) translate(5px, -6px);
            transform: rotate(-45deg) translate(5px, -6px);
    background: #fff;
  }
  .header__menu {
    position: absolute;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    top: 0;
    right: 0;
    -webkit-transform: translateY(-120%);
        -ms-transform: translateY(-120%);
            transform: translateY(-120%);
    width: 350px;
    height: 500px;
    background-color: rgba(0, 0, 0, 0.9450980392);
    padding: 5px;
    -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__menu.active {
    -webkit-transform: translateY(-25px);
        -ms-transform: translateY(-25px);
            transform: translateY(-25px);
  }
  .header__menu::before {
    display: none;
  }
  .header__menu-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__menu-row {
    -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;
  }
  .header__menu-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
  .header__menu-contact::before {
    display: none;
  }
  .header__menu-location {
    margin-bottom: 30px;
    color: #fff;
  }
  .header__menu-messenger {
    border: none;
    padding: 0;
  }
  .header__menu-name {
    margin: 0 0 30px 0;
  }
  .header__menu-number {
    margin: 0 0 30px 0;
    color: #fff;
  }
  .header__menu-application {
    margin: 0 0 30px 0;
    color: #fff;
  }
  .advantages__inforamtion-grid {
    gap: 15px;
  }
  .advantages__step {
    padding: 50px 50px 0 0;
  }
}
@media (max-width: 1000px) {
  .advantages__inforamtion-grid {
    grid-template-columns: repeat(1, 350px);
    grid-template-rows: repeat(4, 153px);
    gap: 30px;
  }
  .title {
    font-size: clamp(20px, 5vw, 48px);
  }
  .brands__heading {
    -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;
  }
  .brands__heading-info {
    margin: 0;
    margin-top: 20px;
  }
  .brands__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .oneGrid {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .twoGrid {
    margin: 0 0 20px;
  }
  .reviews {
    padding: 50px 0;
  }
  .reviews__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px;
  }
  .reviews__inner {
    -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;
  }
  .reviews__info {
    border: none;
    padding: 0;
    margin-top: 20px;
  }
  .reviews__left {
    padding: 0;
  }
  .reviews__left-rating {
    margin: 0;
  }
  .reviewsRatingOne {
    display: none;
  }
  .reviewsRatingTwo {
    display: block;
    margin-top: 20px;
  }
}
@media (max-width: 950px) {
  .faq__information-body {
    max-width: 500px;
  }
  .footer__contact-tell {
    font-size: 40px;
  }
}
@media (max-width: 850px) {
  .questions__inner {
    -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;
  }
  .questions__inner::before {
    content: "";
    width: 0;
    height: 0;
  }
  .questions {
    padding: 50px 0;
  }
  .questions__information {
    padding: 10px;
  }
  .questions__left {
    width: 100%;
    margin-bottom: 20px;
  }
  .faq__step {
    padding: 50px 50px 0 0;
  }
  .about__step {
    padding: 50px 120px 0 0;
  }
  .work__inner {
    -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;
  }
  .work__right {
    border: none;
    padding: 30px 0 0 0;
  }
  .work {
    padding: 50px 0;
  }
  .work__step {
    padding: 0;
  }
  .workBoxTwo,
  .workBoxOne {
    margin-bottom: 30px;
  }
  .work__right-item {
    height: 100px;
  }
  .work__right-number {
    font-size: 96px;
    min-width: 120px;
  }
  .work__right-box {
    margin-left: 30px;
  }
}
@media (max-width: 800px) {
  .hero__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .hero__top-title {
    margin: 0;
  }
  .hero__top-link {
    position: relative;
    min-width: 220px;
    text-align: left;
    font-size: 17px;
    margin: 0 0 20px;
    white-space: nowrap;
  }
  .hero__top-link::before {
    content: "";
    right: -30px;
  }
  .hero__top-link {
    margin: 30px 0 0;
  }
  .hero__inner:before {
    content: "";
    width: 0;
    height: 0;
  }
  .devices__slider-slide {
    min-width: 50%;
  }
  .devices__slider-inner {
    padding: 10px;
  }
  .splide__slide {
    min-height: 215px;
    max-height: 215px;
  }
  .oneSlide {
    min-height: 215px;
  }
  .oneSlide .devices__slider-images {
    min-width: 100%;
    height: 140px;
    background: url("../images/devices/iphone.png") no-repeat;
    background-size: contain;
    background-position: center;
  }
  .oneSlide .devices__slider-images img {
    display: none;
  }
  .twoSlide {
    min-height: 215px;
  }
  .twoSlide .devices__slider-images {
    min-width: 100%;
    height: 140px;
    background: url("../images/devices/macbook.png") no-repeat;
    background-size: contain;
    background-position: center;
  }
  .twoSlide .devices__slider-images img {
    display: none;
  }
  .threeSlide {
    min-height: 215px;
  }
  .threeSlide .devices__slider-images {
    min-width: 100%;
    height: 140px;
    background: url("../images/devices/tv.png") no-repeat;
    background-size: contain;
    background-position: center;
  }
  .threeSlide .devices__slider-images img {
    display: none;
  }
  .my-carousel-progress {
    margin-top: 30px;
  }
  .faq__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .faq {
    padding: 50px 0;
  }
  .faq__step {
    padding: 0;
  }
  .faq__information {
    padding: 30px 0;
    border: none;
  }
  .faq__information-body {
    max-width: 100%;
  }
  .faq__information-item {
    padding: 30px 0;
  }
  .faq__information-heading {
    padding: 0;
  }
  .about__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about__right {
    border: none;
  }
  .about__inforamtion {
    padding: 30px 0 0 0;
  }
  .about {
    padding: 50px 0;
  }
  .about__step {
    padding: 0;
  }
  .footer {
    padding-top: 50px;
  }
  .footer__center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__center-box {
    padding: 20px 0 20px 20px;
  }
  .footer__center-application {
    max-width: 100%;
  }
  .footer__contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__contact-information {
    border: none;
    padding: 30px 0;
  }
  .footer__contact-step {
    padding: 0;
  }
  .footer__bottom {
    padding: 20px 0;
    text-align: center;
  }
  .footer__bottom-item {
    position: static;
  }
}
@media (max-width: 700px) {
  .advantages {
    padding: 50px 0;
  }
  .advantages__step {
    margin: 0;
    padding: 0;
  }
  .advantages__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .advantages__inforamtion {
    padding: 0;
    margin-top: 20px;
    border: none;
  }
}
@media (max-width: 650px) {
  .header__menu {
    width: 100%;
    height: 100vh;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__menu.active {
    -webkit-transform: translateY(-25px);
        -ms-transform: translateY(-25px);
            transform: translateY(-25px);
  }
  .about__inforamtion-description {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .devices__heading {
    -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;
  }
  .devices__heading-info {
    margin: 20px 0 0 0;
  }
  devices__slider {
    min-width: 100%;
    min-height: 290px;
    max-width: 290px;
  }
  .oneSlide {
    min-width: 100%;
    min-height: 290px;
    max-width: 290px;
  }
  .oneSlide .devices__slider-images {
    height: 200px;
  }
  .twoSlide {
    min-width: 100%;
    min-height: 290px;
    max-width: 290px;
  }
  .twoSlide .devices__slider-images {
    height: 200px;
  }
  .threeSlide {
    min-width: 100%;
    min-height: 290px;
    max-width: 290px;
  }
  .threeSlide .devices__slider-images {
    height: 200px;
  }
}
@media (max-width: 550px) {
  .questions__left-link {
    font-size: 17px;
  }
  .questions__information-subtitle {
    margin: 20px 0;
  }
  .questions__information-description {
    font-size: 17px;
  }
  .work__right-number {
    font-size: 50px;
    min-width: 60px;
  }
  .work__right-box {
    margin-left: 15px;
  }
  .work__right-description {
    margin-top: 10px;
  }
}
@media (max-width: 500px) {
  .advantages__inforamation-BoxSubtitle {
    font-size: 17px;
  }
  .oneGrid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 180px);
  }
  .oneBoxGrid {
    grid-area: 1/1/2/2;
  }
  .twoBoxGrid {
    grid-area: 2/1/3/2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .threeBoxGrid {
    grid-area: 3/1/4/2;
  }
  .twoGrid {
    display: grid;
    grid-template-rows: repeat(3, 180px);
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .boxTwoGrid {
    grid-row: 1/2;
    grid-column: 1/2;
    min-width: 100%;
  }
  .boxThreeGrid {
    grid-row: 2/3;
    grid-column: 1/2;
    min-width: 100%;
  }
  .boxFourGrid {
    grid-row: 3/4;
    grid-column: 1/2;
    width: 100%;
  }
  .brands__grid-item {
    font-size: 20px;
  }
  .faq__information-info {
    font-size: 17px;
  }
  .about__inforamtion-description {
    font-size: 17px;
  }
}
@media (max-width: 450px) {
  .reviews__slider-description {
    margin: 20px 0;
  }
  .reviews__slider-nav {
    -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;
    padding: 20px 0;
  }
  .reviews__slider-btn {
    display: none;
  }
  .reviews__list-companies {
    margin: 0;
  }
  .work__right-item {
    height: 230px;
  }
  .work__right-item:last-child {
    margin-bottom: 0;
  }
  .workBoxTwo,
  .workBoxOne {
    margin: 0;
  }
  .workBoxOne {
    height: 180px;
  }
  .work__right-info {
    -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;
    margin: 0;
  }
  .work__right-box {
    margin: 0;
  }
  .work__right-number {
    margin-bottom: 15px;
  }
}
@media (max-width: 400px) {
  .advantages__inforamtion-grid {
    grid-template-columns: repeat(1, 280px);
    grid-template-rows: repeat(4, 153px);
  }
  .footer__contact-tell {
    font-size: 20px;
  }
  .footer__contact-subtitle {
    margin: 20px 0;
  }
  .footer__contact-row {
    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: start;
        -ms-flex-pack: start;
            justify-content: start;
    -moz-text-align-last: left;
         text-align-last: left;
  }
  .footer__contact-row li {
    margin-bottom: 20px;
    margin-right: auto;
  }
  .footer__contact-row li:last-child {
    margin-bottom: 0;
  }
}