@charset "UTF-8";

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

html {
  font-family: "Formular";
  font-size: 0.5208335vw;
  font-style: normal;
  font-weight: normal;
  -webkit-animation: bugfix infinite 1s;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-style: normal;
  font-weight: normal;
  -webkit-animation: bugfix infinite 1s;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  color: #262525;
  background-color: #ffffff;
}

input,
textarea {
  -webkit-animation: bugfix infinite 1s;
  line-height: inherit;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  color: inherit;
}

a {
  color: unset;
}

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

button,
input,
a,
textarea {
  outline: none;
  cursor: pointer;
  font: inherit;
}

button:focus,
input:focus,
a:focus,
textarea:focus {
  outline: none;
}

button:active,
input:active,
a:active,
textarea:active {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font: inherit;
  margin: 0;
  padding: 0;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

button {
  border: none;
  color: inherit;
  font: inherit;
  text-align: inherit;
  padding: 0;
  background-color: transparent;
}

ul {
  padding: 0;
  margin: 0;
}

ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: 168rem;
  margin: 0 auto;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

section {
  margin-bottom: 20rem;
}

.setup--grey {
  color: #777777;
}

.setup--black,
.setup--section-title {
  color: #050505;
}

.setup--green {
  color: #03a081;
}

body {
  background-color: #eaeaea;
}

.setup--h1,
.setup--section-title {
  font-size: 7.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 7.2rem;
}

.setup--h2 {
  font-size: 4.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 4.6rem;
}

.setup--h3 {
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.setup--text-24px {
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.setup--text-18px {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.2rem;
}

.setup--section-title {
  margin-bottom: 6rem;
  font-family: NeueMachina;
}

.setup--section-head {
  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;
  font-family: NeueMachina;
}

.setup--swiper-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.clip-path-svg {
  width: 0;
  height: 0;
}

.tooltip {
  -webkit-clip-path: url("#modal");
          clip-path: url("#modal");
  /* Применяем обрезку из SVG */
  background-color: #fff;
  /* Цвет фона tooltip */
  color: #fff;
  /* Цвет текста tooltip */
  width: 100px;
  /* Ширина tooltip */
  height: 100px;
  /* Высота tooltip */
  position: relative;
}

@font-face {
  font-family: Formular;
  font-display: swap;
  src: url("../fonts/Formular.woff2") format("woff2"), url("../fonts/Formular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: NeueMachina;
  font-display: swap;
  src: url("../fonts/NeueMachina.woff2") format("woff2"), url("../fonts/NeueMachina.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

.component--green-btn {
  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: 1.2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.9rem 3.9rem;
  background-color: #03a081;
  border-radius: 5rem;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.component--green-btn::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 5rem;
  background-color: #050505;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
  z-index: 1;
}

.component--green-btn:hover::after {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}

.component--green-btn:hover .green-btn__text {
  -webkit-transform: translateY(-4.5rem);
      -ms-transform: translateY(-4.5rem);
          transform: translateY(-4.5rem);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.component--green-btn:hover .green-btn__text::before {
  -webkit-transform: translateY(0.5rem);
      -ms-transform: translateY(0.5rem);
          transform: translateY(0.5rem);
}

.component--green-btn.disactive {
  opacity: 0.5;
  pointer-events: none;
}

.component--green-btn .green-btn__text {
  position: relative;
  z-index: 2;
  color: #ffffff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.component--green-btn .green-btn__text::before {
  content: attr(data-hover);
  position: absolute;
  top: 4rem;
  left: 0;
  color: #03a081;
  -webkit-transform: translateY(4.5rem);
      -ms-transform: translateY(4.5rem);
          transform: translateY(4.5rem);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.component--green-btn .green-btn__icon {
  width: 1.6rem;
  height: auto;
}

.component--arrow-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.8rem;
  cursor: pointer;
}

.component--arrow-btn .arrow-btn__icon {
  width: 5rem;
  height: auto;
}

.component--arrow-btn .arrow-btn__icon.desktop {
  display: block;
}

.component--arrow-btn .arrow-btn__icon.mobile {
  display: none;
}

.component--arrow-btn.type-grey .arrow-btn__text {
  color: #777777;
}

.component--arrow-btn.type-grey .arrow-btn__icon path {
  fill: #777777;
}

.component--arrow-btn.type-green .arrow-btn__text {
  color: #03a081;
}

.component--arrow-btn.type-green .arrow-btn__icon path {
  fill: #03a081;
}

.component--green-arrow-btn {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: #03a081;
  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;
}

.component--green-arrow-btn > svg {
  width: 3rem;
  height: 3rem;
  fill: #ffffff;
}

.component--swap-btn {
  position: fixed;
  bottom: 5rem;
  right: 7rem;
  z-index: 1;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 0.2rem solid #03a081;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
}

.component--swap-btn > svg {
  width: 3rem;
  height: 3rem;
}

.component--enabled-btn .enabled-btn__box {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  border: 0.2rem solid;
  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;
}

.component--enabled-btn .enabled-btn__box > svg {
  width: 2.4rem;
  height: 2.4rem;
}

.component--enabled-btn .enabled-btn__box.disactive {
  border-color: #777777;
}

.component--enabled-btn .enabled-btn__box.active {
  border-color: #03a081;
}

.component--enabled-btn._disactive .enabled-btn__box.active {
  display: none;
}

.component--enabled-btn._active .enabled-btn__box.disactive {
  display: none;
}

.component--services {
  position: relative;
  width: 53.3rem;
  height: 36.7rem;
  overflow: hidden;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.component--services:hover .services__background--desktop {
  fill: #03a081;
}

.component--services:hover .services__background--mobile {
  fill: #03a081;
}

.component--services:hover .services__numbering,
.component--services:hover .services__title,
.component--services:hover .services__text {
  color: #ffffff;
}

.component--services:hover .services__numbering {
  -webkit-transform: scale(0.75) translateX(-1rem);
      -ms-transform: scale(0.75) translateX(-1rem);
          transform: scale(0.75) translateX(-1rem);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.component--services:hover .services__info {
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.component--services .services__background--desktop {
  display: block;
  width: 53.3rem;
  height: 36.7rem;
}

.component--services .services__background--mobile {
  display: none;
}

.component--services .services__content {
  position: absolute;
  width: 45.3rem;
  height: 26.8rem;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  top: 5rem;
  left: 4rem;
  overflow: hidden;
}

.component--services .services__icon-numbering {
  position: absolute;
  top: 0;
  left: 35.1rem;
}

.component--services .services__icon-numbering .icon-numbering {
  width: 5.3rem;
  height: 5.3rem;
}

.component--services .services__numbering,
.component--services .services__title {
  font-family: "NeueMachina";
}

.component--services .services__numbering {
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.component--services .services__title {
  margin-bottom: 4rem;
}

.component--services .services__info {
  -webkit-transform: translateY(52%);
      -ms-transform: translateY(52%);
          transform: translateY(52%);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.component--advantages {
  position: relative;
  width: 53.3rem;
  height: 56.3rem;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.component--advantages:hover .advantages__background--desktop path,
.component--advantages:hover .advantages__background--mobile path {
  fill: #ffffff;
  stroke: #ffffff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.component--advantages .advantages__background--desktop {
  display: block;
  width: 53.3rem;
  height: 56.3rem;
}

.component--advantages .advantages__background--mobile {
  display: none;
}

.component--advantages .advantages__numbering {
  position: absolute;
  top: 0;
  right: 0;
  width: 12.5rem;
  height: 12.5rem;
  padding: 2rem;
  background-image: url("../img/components/component-advantage/bg--white-panel.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.component--advantages .advantages__numbering-number {
  color: #03a081;
  text-align: right;
  font-family: "NeueMachina";
  font-size: 4.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.component--advantages .advantages__content {
  position: absolute;
  top: 3rem;
  left: 3rem;
  width: 47.3rem;
}

.component--advantages .advantages__text {
  max-height: 11.6rem;
  height: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 3rem;
}

.component--advantages .advantages__categories {
  position: relative;
}

.component--advantages .advantages__categories .categories__large-panel {
  width: 47.3rem;
  height: 35rem;
  background-image: url("../img/components/component-advantage/bg--green-large-panel-desktop.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.component--advantages .advantages__categories .categories__small-panel {
  position: absolute;
  right: 0;
  bottom: 5.3rem;
  width: 17rem;
  height: 14.7rem;
  background-image: url("../img/components/component-advantage/bg--green-small-panel.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.component--advantages .advantages__categories .categories__text {
  position: absolute;
  right: 0;
  bottom: -2%;
  font-family: "NeueMachina";
}

.component--articles {
  position: relative;
  width: 53.3rem;
  height: 47.4rem;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  cursor: pointer;
}

.component--articles:hover .articles__background > svg {
  fill: #03a081;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.component--articles:hover .articles__content {
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.component--articles:hover .articles__content .content__image {
  height: 0;
  -webkit-transition: height 1s ease-in-out;
  transition: height 1s ease-in-out;
}

.component--articles:hover .articles__content._hover {
  opacity: 1;
  -webkit-transition: all 2s ease-in-out;
  transition: all 2s ease-in-out;
}

.component--articles:hover .articles__content._hover .content-bottom {
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition: -webkit-transform 1s ease-in-out;
  transition: -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
}

.component--articles .articles__background--desktop {
  display: block;
  width: 53.3rem;
  height: 47.4rem;
}

.component--articles .articles__background--mobile {
  display: none;
}

.component--articles .articles__background--grid {
  display: none;
}

.component--articles .articles__content._hover {
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
  overflow: hidden;
}

.component--articles .articles__content._hover .content__icon {
  background-color: #ffffff;
}

.component--articles .articles__content._hover .content__icon > svg {
  width: 2.8rem;
  height: 2.8rem;
  fill: #03a081;
  stroke: #03a081;
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.component--articles .articles__content._hover .content-bottom {
  -webkit-transform: translateY(55%);
      -ms-transform: translateY(55%);
          transform: translateY(55%);
  -webkit-transition: -webkit-transform 1s ease-in-out;
  transition: -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
}

.component--articles .articles__content._hover .content__title {
  margin-bottom: 2.2rem;
}

.component--articles .articles__content._hover .content__title,
.component--articles .articles__content._hover .content__text {
  color: #ffffff;
}

.component--articles .articles__content {
  position: absolute;
  top: 4rem;
  left: 4rem;
  width: 45.7rem;
  height: 39rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.component--articles .articles__content .content__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.component--articles .articles__content .content__top .top-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.8rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.component--articles .articles__content .content__icon {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  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;
  background-color: #03a081;
}

.component--articles .articles__content .content__icon > svg {
  width: 3.6rem;
  height: 3.6rem;
  fill: none;
  stroke: #ffffff;
}

.component--articles .articles__content .content__image {
  width: 16.9rem;
  height: 16.9rem;
  border-radius: 2rem;
  background-color: #777777;
  -webkit-transition: height 1s ease-in-out;
  transition: height 1s ease-in-out;
}

.component--articles .articles__content .content__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
}

.component--articles .articles__content .content__time .time-value {
  color: #777777;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  padding: 1rem 1.8rem;
  border-radius: 8.5rem;
  border: 1px solid #777777;
}

.component--articles .articles__content .content__time .time-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid #777777;
  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;
}

.component--articles .articles__content .content__time .time-icon > svg {
  width: 2.4rem;
  height: 2.4rem;
  fill: none;
  stroke: #777777;
}

.component--articles .articles__content .content__date {
  color: #777777;
}

.component--articles .articles__numbering {
  position: absolute;
  top: -1rem;
  left: 16.8rem;
}

.component--articles .articles__numbering > p {
  width: 5.4rem;
  text-align: center;
}

.component--teams {
  position: relative;
  width: 53.3rem;
  height: 51.1rem;
  overflow: visible;
}

.component--teams:hover .teams__content .content__name {
  opacity: 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.component--teams:hover .teams__content .content__post {
  opacity: 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.component--teams:hover .teams__content .content__quote {
  opacity: 1;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.component--teams:hover .teams__content .content__btn {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.component--teams:hover .teams__avatar {
  -webkit-transform: translateY(2.5rem);
      -ms-transform: translateY(2.5rem);
          transform: translateY(2.5rem);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.component--teams .teams__background--desktop {
  width: 53.3rem;
  height: 48.1rem;
}

.component--teams .teams__background--mobile {
  display: none;
}

.component--teams .teams__background--grid {
  display: none;
}

.component--teams .teams__content {
  position: absolute;
  top: 6rem;
  left: 5rem;
  width: calc(100% - 10rem);
}

.component--teams .teams__content .content__name {
  font-family: NeueMachina;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1.4rem;
}

.component--teams .teams__content .content__post {
  margin-bottom: 15.5rem;
}

.component--teams .teams__content .content__quote {
  position: absolute;
  opacity: 0;
  -webkit-transform: translateY(-200%);
      -ms-transform: translateY(-200%);
          transform: translateY(-200%);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.component--teams .teams__content .content__btn {
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.component--teams .teams__avatar {
  position: absolute;
  bottom: 0;
  right: 3rem;
  width: 30.6rem;
  height: 32.2rem;
  background-color: #f7f7f7;
  border-radius: 4rem;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.component--letters {
  position: relative;
  width: 53.3rem;
  height: 55rem;
  cursor: pointer;
}

.component--letters:hover .letters__background svg path {
  fill: #ffffff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.component--letters:hover .letters__btn {
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.component--letters .letters__background svg path {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.component--letters .letters__background--desktop {
  display: block;
  width: 53.3rem;
  height: 55rem;
}

.component--letters .letters__background--mobile {
  display: none;
}

.component--letters .letters__content {
  width: calc(100% - 8rem);
  position: absolute;
  top: 4rem;
  left: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}

.component--letters .letters__content .content__date {
  text-align: right;
}

.component--letters .letters__content .content__image {
  width: 24.4rem;
  margin: 0 auto;
}

.component--letters .letters__numbering {
  position: absolute;
  top: 0;
  left: 0;
  width: 12.5rem;
  height: 12.5rem;
  padding: 2rem 0;
  background-image: url("../img/components/component-letters/bg--white-panel.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.component--letters .letters__numbering-number {
  width: 8rem;
  color: #03a081;
  text-align: center;
  font-family: "NeueMachina";
  font-size: 4.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.component--letters .letters__btn {
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.component--contact-us {
  width: 30.6rem;
  border: 2px solid #03a081;
  border-radius: 5.4rem;
  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: 0.3rem;
  cursor: pointer;
}

.component--contact-us:hover .contact-us__circle {
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
  will-change: width;
}

.component--contact-us:hover .contact-us__text {
  -webkit-transform: translateY(-5.25rem);
      -ms-transform: translateY(-5.25rem);
          transform: translateY(-5.25rem);
  -webkit-transition: -webkit-transform 0.75s ease-in-out;
  transition: -webkit-transform 0.75s ease-in-out;
  transition: transform 0.75s ease-in-out;
  transition: transform 0.75s ease-in-out, -webkit-transform 0.75s ease-in-out;
}

.component--contact-us:hover .contact-us__circle > svg {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.component--contact-us .contact-us__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 0;
          flex: 1 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.component--contact-us .contact-us__text {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  padding-left: 1.8rem;
  z-index: 2;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.component--contact-us .contact-us__text::before {
  content: attr(data-hover);
  color: #fff;
  position: absolute;
  top: 4rem;
  left: 1.8rem;
}

.component--contact-us .contact-us__circle {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 5rem;
  background-color: #03a081;
  padding: 1.6rem;
  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;
}

.component--contact-us .contact-us__circle > svg {
  width: 1.2rem;
  height: 1.2rem;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.component--contact-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}

.component--contact-links .contact-links__line {
  max-width: 22.8rem;
  width: 100%;
  height: 1px;
  background-color: #03a081;
}

.component--reviews {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin-top: 2rem;
}

.component--reviews._v1 .reviews__text {
  max-height: 7rem;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2rem;
  position: relative;
  transition:  max-height 0.3s ease ;
}

.component--reviews._v1 .reviews__text::after {
  content: '...'; /* Троеточие */
  position: absolute;
  bottom: 0.4rem;
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white 50%); /* Градиент для плавного исчезания троеточия */
  pointer-events: none; /* Предотвращает "перехват" кликов на троеточии */
  
}

.component--reviews._v1 .reviews__text.active {
 
  max-height: none;
}

.component--reviews._v1 .reviews__text.active::after {
  display: none;
}

.component--reviews._v1 .reviews__data {
  margin-top: 0.4rem;
}

.component--reviews._v2 .component--arrow-btn {
  display: none;
}

.component--reviews._v2 .reviews__data {
  margin-top: 2.4rem;
}

.component--reviews .reviews__content {
  width: 53.3rem;
  height: auto;
  transition: height 0.3s ease ;
  padding: 4rem 2rem 4rem 4rem;
  clip-path: url(#cl-figure-2);
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.component--reviews .reviews__inner {
  -webkit-box-flex: 1;
      -ms-flex: 1 0;
          flex: 1 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.component--reviews .reviews__title {
  width: 34.1rem;
  margin-bottom: 1.3rem;
}

.component--reviews .reviews__data {
  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;
}

.component--reviews .reviews__site {
  width: 9.4rem;
  height: 9.4rem;
  border-radius: 50%;
  background-color: #eaeaea;
  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;
}

.component--reviews .reviews__site img {
  width: 6rem;
}

.component--reviews .reviews__btn {
  position: absolute;
  top: -2rem;
  right: 0;
}

.component--clients {
  width: 24.7rem;
  height: 24.7rem;
  border-radius: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: contain;
}

.component--clients:hover {
  background-image: url("../img/components/component-client/clients-bg.svg");
}

.component--clients:hover .clients__logotype img {
  -webkit-filter: grayscale(1) brightness(1000%);
          filter: grayscale(1) brightness(1000%);
  will-change: filter;
}

.component--clients:hover .clients__name {
  opacity: 1;
}

.component--clients .clients__logotype img {
  width: 19.3rem;
}

.component--clients .clients__name {
  opacity: 0;
  position: absolute;
  bottom: 0.1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 15rem;
  padding: 1rem 0 0;
  text-align: center;
  color: #03a081;
}

.accordion-price-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1.4rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 0;
          flex: 1 0;
}

.accordion-price-box__line {
  -webkit-box-flex: 1;
      -ms-flex: 1 0;
          flex: 1 0;
  width: 100%;
  border-bottom: 1px solid rgba(119, 119, 119, 0.35);
  margin-bottom: 0.6rem;
}

.accordion-price-box__price {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.accordion-range-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
}

.accordion-range-box .range-btn {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  border: 0.15rem solid #03a081;
  position: relative;
}

.accordion-range-box .range-btn._disactive {
  opacity: 0.5;
  pointer-events: none;
}

.accordion-range-box .range-btn-minus::before {
  content: "";
  width: 1.3rem;
  height: 0.15rem;
  border-radius: 0.15rem;
  background-color: #03a081;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.accordion-range-box .range-btn-plus::before {
  content: "";
  width: 1.3rem;
  height: 0.15rem;
  border-radius: 0.15rem;
  background-color: #03a081;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.accordion-range-box .range-btn-plus::after {
  content: "";
  width: 0.15rem;
  height: 1.3rem;
  border-radius: 0.15rem;
  background-color: #03a081;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.accordion-range-box .range-value {
  width: 3rem;
  text-align: center;
}

.accordion-range-price-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.8rem;
}

.input {
  width: 100%;
  padding: 1.8rem 4rem;
  border-radius: 50rem;
  background-color: #fff;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
}

.input input[type=file] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}

.input._popup {
  background-color: #f7f7f7;
}

.input::-webkit-input-placeholder {
  font-family: Formular;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: rgba(119, 119, 119, 0.5);
}

.input::-moz-placeholder {
  font-family: Formular;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: rgba(119, 119, 119, 0.5);
}

.input:-ms-input-placeholder {
  font-family: Formular;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: rgba(119, 119, 119, 0.5);
}

.input::-ms-input-placeholder {
  font-family: Formular;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: rgba(119, 119, 119, 0.5);
}

.input::placeholder,
.input label {
  font-family: Formular;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: rgba(119, 119, 119, 0.5);
}

.stroke-panel {
  position: relative;
}

.stroke-panel::before {
  content: "";
  position: absolute;
  top: 58%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% + 3rem);
  height: 80%;
  border: 1px solid #050505;
  border-radius: 8rem;
}

.stroke-panel._teams::after {
  content: "";
  width: 4.2rem;
  height: 4.2rem;
  background-image: url("../img/sections/baner-teams/icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: -30%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.point-map {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: #03a081;
  position: relative;
  margin: 0.8rem;
}

.point-map::before {
  content: "";
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #03a081;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}

.point-map::after {
  content: "Первомайский пер., д. 3 кв.145";
  color: #ffffff;
  font-family: Formular;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 1.2rem 1.6rem;
  border-radius: 4rem;
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 0.8;
  -webkit-backdrop-filter: blur(61px);
          backdrop-filter: blur(61px);
  position: absolute;
  top: calc(100% + 1.2rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-button-prev,
.swiper-button-next {
  position: static !important;
  margin: 0 !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-next.btn-next {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 1.5px solid #03a081;
  background-color: #03a081;
}

.swiper-button-next.btn-next > svg {
  width: 3rem;
  height: 3rem;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  fill: #ffffff;
}

.swiper-button-next.swiper-button-disabled.btn-next {
  opacity: 1;
  background-color: transparent;
}

.swiper-button-next.swiper-button-disabled.btn-next > svg {
  fill: #03a081;
}

.swiper-button-prev.btn-prev {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 1.5px solid #03a081;
  background-color: #03a081;
}

.swiper-button-prev.btn-prev > svg {
  width: 3rem;
  height: 3rem;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  fill: #ffffff;
}

.swiper-button-prev.swiper-button-disabled.btn-prev {
  opacity: 1;
  background-color: transparent;
}

.swiper-button-prev.swiper-button-disabled.btn-prev > svg {
  fill: #03a081;
}

.swiper-slide.our-articles-slide {
  width: 53.3rem;
  margin-right: 4rem;
}

.swiper-slide.our-articles-slide:last-child {
  margin-right: 0;
}

.swiper-slide.our-teams-slide {
  width: 53.3rem;
  margin-right: 4rem;
  padding-bottom: 5rem;
}

.swiper-slide.our-teams-slide:last-child {
  margin-right: 0;
}

.swiper-slide.our-letters-slide {
  width: 53.3rem;
  margin-right: 4rem;
}

.swiper-slide.our-letters-slide:last-child {
  margin-right: 0;
}

.swiper.grid-articles-swiper .swiper-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: (auto)[2];
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
}

.swiper-slide.grid-articles-slide {
  width: 53.3rem;
}

.swiper-slide.grid-articles-slide:last-child {
  margin-right: 0;
}

.swiper.grid-teams-swiper .swiper-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: (auto)[2];
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
}

.swiper-slide.grid-teams-slide {
  width: 53.3rem;
}

.swiper-slide.grid-teams-slide:last-child {
  margin-right: 0;
}

.swiper.grid-reviews-swiper .swiper-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: (auto)[3];
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
}

.swiper-slide.grid-reviews-slide {
  width: 53.3rem;
}

.swiper-slide.grid-reviews-slide:last-child {
  margin-right: 0;
}

.swiper-slide.basic-direction-slide {
  width: 53.3rem;
}

.swiper-slide.basic-direction-slide:last-child {
  margin-right: 0;
}

.swiper.completing-tasks-swiper {
  margin-top: 2rem;
}

.swiper.completing-tasks-swiper .swiper-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: (auto)[2];
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
}

.swiper-slide.completing-tasks-slide {
  width: 53.3rem;
}

.swiper-slide.completing-tasks-slide:last-child {
  margin-right: 0;
}

.swiper.providing-solutions-swiper {
  height: 100%;
}

.swiper-slide.providing-solutions-slide.swiper-slide {
  -webkit-transform: translateY(12.5rem);
      -ms-transform: translateY(12.5rem);
          transform: translateY(12.5rem);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.swiper-slide.providing-solutions-slide.swiper-slide-active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.swiper.baner-services-swiper {
  width: 100%;
  height: 100%;
}

body::after {
  content: "";
  position: fixed;
  z-index: 149;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #eaeaea;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
}

.popup-show body::after {
  opacity: 0.7;
}

.lock {
  overflow: hidden;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 3rem 1rem;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: 100%;
  width: 100%;
}

.popup__close {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: #03a081;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
}

.popup__close > svg {
  width: 4rem;
  height: 4rem;
}

.popup__close._controls {
  position: static;
  border: 2px solid #03a081;
  background-color: transparent;
  z-index: 1;
}

.popup__close._controls > svg {
  width: 2.4rem;
  height: 2.4rem;
}

.popup__content {
  width: 100%;
  max-width: 122.4rem;
  visibility: hidden;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  position: relative;
}

.popup__content._letters {
  max-width: 96.3rem;
  height: 80rem;
  background-color: #f7f7f7;
  border-radius: 4rem;
  margin-bottom: 12rem;
  padding: 6rem 0;
}

.lock .popup__content {
  visibility: visible;
}

.popup__inner {
  width: 114.2rem;
  padding: 10rem 18rem 10rem 26.4rem;
  background-color: #fff;
  border-top-right-radius: 4rem;
  border-top-left-radius: 4rem;
  border-bottom-left-radius: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  position: relative;
}

.popup__inner._accepted {
  padding: 12rem 18rem 12rem 26.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.popup__inner::before {
  content: "";
  width: 8.2rem;
  height: calc(100% - 8.2rem);
  background-color: #fff;
  border-top-right-radius: 4rem;
  border-bottom-right-radius: 4rem;
  position: absolute;
  bottom: 0;
  left: 100%;
}

.popup__inner::after {
  content: "";
  position: absolute;
  top: 5.2rem;
  right: -3rem;
  bottom: 0rem;
  width: 3rem;
  height: 3rem;
  border-radius: 0 0 0 4rem;
  -webkit-box-shadow: -1rem 1rem 0 0.5rem #fff;
          box-shadow: -1rem 1rem 0 0.5rem #fff;
}

.popup__head {
  text-align: center;
}

.popup__head._accepted {
  width: 46.5rem;
}

.popup__title {
  font-family: NeueMachina;
  margin-bottom: 2.4rem;
}

.popup__forms {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.popup__forms-fields {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.popup__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
}

.popup__policy {
  color: rgba(30, 35, 40, 0.4);
}

.popup__policy span {
  text-decoration: underline;
}

.popup__controls._letters {
  position: absolute;
  bottom: -12rem;
  left: 0;
  width: 100%;
  max-width: 96.3rem;
  padding: 2rem;
  border-radius: 8rem;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2rem;
}

.popup-letters__slide {
  width: 49rem;
  padding-bottom: 18rem;
  border-radius: 2rem;
  margin: 0 auto;
  position: relative;
}

.popup-letters__name {
  font-family: NeueMachina;
  width: 100%;
  text-align: center;
  padding: 3.5rem 0;
  position: absolute;
  bottom: 0;
}

.popup-letters__cell {
  display: none;
}

.header {
  padding-top: 5rem;
  margin-bottom: 6rem;
  position: relative;
  z-index: 100;
}

.header._detail-services {
  margin-bottom: 3rem;
}

.header._services {
  margin-bottom: 4.2rem;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 6rem;
}

.header__logotype {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  cursor: pointer;
}

.header__logotype .logotype {
  width: 20.9rem;
  height: 6rem;
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
}

.header__menu .menu__item {
  cursor: pointer;
  overflow: hidden;
}

.header__menu .menu__item:hover .menu__link {
  -webkit-transform: translateY(-4rem);
      -ms-transform: translateY(-4rem);
          transform: translateY(-4rem);
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}

.header__menu .menu__item:hover .menu__link::before {
  -webkit-transform: translateY(0rem);
      -ms-transform: translateY(0rem);
          transform: translateY(0rem);
}

.header__menu .menu__link {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
  position: relative;
}

.header__menu .menu__link::before {
  content: attr(data-hover);
  position: absolute;
  top: 4rem;
  left: 0;
  color: #03a081;
  text-decoration: underline;
  -webkit-transform: translateY(4rem);
      -ms-transform: translateY(4rem);
          transform: translateY(4rem);
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}

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

.header__socials .socials__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
  margin-right: 2rem;
  cursor: pointer;
}

.header__socials .socials__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-left: 1rem;
}

.header__socials .socials__links a {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  margin-right: 1rem;
}

.header__socials .socials__links a:last-child {
  margin-right: 0;
}

.header__socials .socials__links a img {
  width: 100%;
  height: 100%;
}

.header__socials .socials__links .link {
  width: 6rem;
  height: 6rem;
  cursor: pointer;
}

.header__burger {
  display: none;
}

.header__burger-content {
  display: none;
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 19.367rem;
  height: 24rem;
  margin-bottom: 10rem;
}

.footer__logotype {
  cursor: pointer;
}

.footer__logotype .logotype {
  width: 21rem;
  height: 4.2rem;
}

.footer__right {
  width: 25.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__right .right__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
}

.footer__right .right__text {
  color: #777777;
}

.footer__center .center__list-left,
.footer__center .center__list-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
}

.footer__left .left__list-left,
.footer__left .left__list-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
}

.footer__left .left__list-left {
  width: 33.5rem;
}

.footer__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: 1.2rem;
}

.footer__list-title {
  color: #050505;
  margin-bottom: 0.6rem;
}

.footer__list-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 19.367rem;
}

.footer__item {
  color: #777777;
  cursor: pointer;
}

.footer__item._mob {
  display: none;
}

.baner-main__container {
  height: 86.9rem;
  position: relative;
}

.baner-main__employees {
  width: 39rem;
  height: 77rem;
  background-image: url("../img/sections/baner-main/baner-main-employee-card.svg");
  background-size: contain;
  background-repeat: no-repeat;
  padding: 9.5rem 0.4rem 3rem;
  overflow: hidden;
  position: relative;
}

.baner-main__employees::before {
  content: "";
  width: 6.2rem;
  height: 8rem;
  background-image: url("../img/sections/baner-main/baner-main-swiper-left.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 44.4rem;
  left: 0.15rem;
  z-index: 2;
}

.baner-main__employees::after {
  content: "";
  width: 6.25rem;
  height: 8rem;
  background-image: url("../img/sections/baner-main/baner-main-swiper-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 44.4rem;
  right: 0.15rem;
  z-index: 2;
}

.baner-main__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 7.4rem;
  left: 43rem;
}

.baner-main__heading .heading__subtitle {
  margin-bottom: 2.2rem;
}

.baner-main__heading .heading__line {
  width: 45.3rem;
  height: 1px;
  background-color: rgba(119, 119, 119, 0.5);
  margin-bottom: 3.6rem;
}

.baner-main__heading .heading__title {
  font-family: NeueMachina;
  max-width: 53.3rem;
}

.baner-main__robot {
  width: 93.2rem;
  position: absolute;
  top: -2.2rem;
  left: 79.2rem;
  z-index: -1;
}

.baner-main__robot img._mob {
  display: none;
}

.baner-main__informations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 32.9rem;
  position: absolute;
  top: 43.8rem;
  left: 43rem;
}

.baner-main__support-panel {
  width: 37.2rem;
  height: 34.5rem;
  background-image: url("../img/sections/baner-main/baner-main-support-panel-desc.svg");
  background-size: contain;
  background-repeat: no-repeat;
  padding: 2.6rem 3rem;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.baner-main__support-panel .support-panel__title {
  font-family: NeueMachina;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1.2rem;
}

.baner-main__white-panel {
  width: 39rem;
  height: 23.8rem;
  background-image: url("../img/sections/baner-main/baner-main-white-panel-desc.svg");
  background-size: contain;
  background-repeat: no-repeat;
  padding: 2.4rem;
  position: relative;
  margin-top: 2rem;
  margin-bottom: 1.4rem;
}

.baner-main__white-panel .white-panel__icon {
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 50%;
  background-color: #03a081;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 3rem;
}

.baner-main__white-panel .white-panel__icon > svg {
  width: 3.6rem;
  height: 3.6rem;
}

.baner-main__white-panel .white-panel__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: rgba(5, 5, 5, 0.5);
  padding: 1rem 1.8rem;
  border: 1px solid rgba(5, 5, 5, 0.25);
  border-radius: 8.5rem;
  margin-bottom: 1.8rem;
}

.baner-main__white-panel .white-panel__services {
  color: rgba(5, 5, 5, 0.5);
  position: absolute;
  top: 8rem;
  right: 3.8rem;
}

.baner-main__white-panel .white-panel__btn {
  position: absolute;
  top: -2rem;
  right: 0;
}

.baner-main__links {
  width: 100%;
  max-width: 79.2rem;
  position: absolute;
  bottom: 0;
  left: 0;
}

.baner-main__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  position: absolute;
  bottom: 0;
  right: 0;
}

.baner-main__socials .social__element {
  cursor: pointer;
}

.baner-main__socials .social__element > svg {
  width: 6rem;
  height: 6rem;
}

.baner-main__pagination {
  width: 100%;
  height: 0.8rem;
  position: absolute;
  bottom: 8.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.baner-main__pagination .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  border: 0.1rem solid #03a081;
  background-color: transparent;
  opacity: 1;
}

.baner-main__pagination .swiper-pagination-bullet-active {
  background-color: #03a081;
}

.baner-main__decoration-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  position: absolute;
  top: 14.4rem;
  right: -9rem;
}

.baner-main__decoration-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  position: absolute;
  top: 7.8rem;
  right: 4rem;
}

.baner-main__decoration-btn:hover .decoration-btn__arrow {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.baner-main__decoration-btn:hover .decoration-btn__button {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.baner-main__decoration-btn .decoration-btn__arrow {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.baner-main__decoration-btn .decoration-btn__button {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.baner-main__slide-employee-image {
  width: 39rem;
  margin-bottom: 2rem;
  border-radius: 4rem;
}

.baner-main__slide-employee-info {
  padding: 0 2.8rem;
  margin-bottom: 5rem;
}

.baner-main__slide-employee-info .employee-name {
  color: #fff;
  font-family: NeueMachina;
  font-size: 2.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 157%;
}

.baner-main__slide-employee-info .employee-post {
  max-width: 25rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: Formular;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.baner-main__slide-employee-quote {
  padding: 0 2.8rem;
}

.baner-teams__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 8.5rem;
}

.baner-teams__title {
  width: calc(100% - 6rem);
  font-family: NeueMachina;
  line-height: 120%;
}

.baner-teams__title ._important {
  padding: 0.8rem;
  border: 1px solid #050505;
  border-radius: 8rem;
  position: relative;
}

.baner-teams__title ._important::before {
  content: "";
  width: 4rem;
  height: 4rem;
  background-image: url("../img/sections/baner-teams/icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: -8rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.baner-teams__title p:nth-child(2) {
  padding-left: 33.5rem;
}

.baner-teams__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 39rem 1fr;
  grid-template-columns: 39rem 1fr;
  gap: 4rem;
}

.baner-teams__content .content-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  margin-top: 9rem;
}

.baner-teams__content .content-left__icon-box {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: #03a081;
  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;
}

.baner-teams__content .content-left__icon-box > svg {
  width: 3.8rem;
  height: 3.8rem;
}

.baner-teams__content .content-left__btn._mob {
  display: none;
}

.baner-teams__content .content-right {
  position: relative;
  padding-bottom: 10.5rem;
}

.baner-teams__content .content-right__image {
  height: 40rem;
  border-radius: 4rem;
  background-image: url("../img/sections/baner-teams/baner-teams-bg.webp");
  background-size: contain;
  background-repeat: no-repeat;
  padding: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
}

.baner-teams__content .content-right__decoration {
  width: 14.8rem;
  height: 14.8rem;
  background-image: url("../img/sections/baner-teams/baner-teams-dec.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -4.4rem;
  left: -4.4rem;
}

.baner-teams__content .content-right__icon-box {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: #ffffff;
  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;
}

.baner-teams__content .content-right__icon-box > svg {
  width: 3.8rem;
  height: 3.8rem;
}

.baner-teams__content .content-right__experiences {
  position: absolute;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 8.5rem;
}

.baner-teams__content .content-right__experiences-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

.baner-teams__content .content-right__experience {
  padding: 1.4rem 2.2rem;
  border: 1px solid rgba(119, 119, 119, 0.4);
  border-radius: 10rem;
}

.baner-teams__content .content-right__experience-panel {
  width: 39rem;
  height: 27rem;
  padding: 5rem 4rem 4rem;
  background-image: url("../img/sections/baner-teams/baner-teams-panel-desc.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.baner-teams__content .content-right__experience-panel .experience-panel__texts {
  color: #ffffff;
}

.baner-teams__content .content-right__experience-panel .experience-panel__title {
  font-family: NeueMachina;
}

.baner-teams__content .content-right__experience-panel .experience-panel__images {
  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;
}

.baner-teams__content .content-right__experience-panel .experience-panel__image {
  width: 15rem;
}

.baner-teams__content .content-right__experience-panel .experience-panel__icon > svg {
  width: 6rem;
  height: 6rem;
}

.baner-teams__content .content-right__experience-panel .experience-panel__icon-box {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: -1rem;
  right: -1rem;
}

.baner-teams__content .content-right__experience-panel .experience-panel__icon-box > svg {
  width: 3.2rem;
  height: 3.2rem;
}

.baner-services__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 53.3rem auto;
  grid-template-columns: 53.3rem auto;
  gap: 4rem;
}

.baner-services__content .content-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.2rem;
}

.baner-services__content .content-right__inner {
  padding: 8rem;
  border: 1px solid rgba(119, 119, 119, 0.4);
  border-radius: 4rem;
}

.baner-services__content .content-right__our-purpose {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14.4rem;
  padding-left: 8rem;
}

.baner-services__content .content-right__our-purpose .our-purpose__title {
  margin-bottom: 2rem;
}

.baner-services__content .content-right__our-purpose .our-purpose__image {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background-image: url("../img/sections/baner-services/baner-services-circle-img.webp");
  background-size: contain;
  background-repeat: no-repeat;
}

.baner-services__content .content-left {
  position: relative;
}

.baner-services__content .content-left__white-panel {
  width: 56.3rem;
  height: 43.8rem;
  position: absolute;
  top: -15rem;
  left: -3rem;
  background-image: url("../img/sections/baner-services/baner-services-white-panel.svg");
  background-size: contain;
  background-repeat: no-repeat;
  padding: 6.7rem 5.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.baner-services__content .content-left__white-panel > img {
  width: 16.8rem;
}

.baner-services__content .content-left__robot-panel {
  width: 24.1rem;
  height: 52.2rem;
  position: absolute;
  top: 4rem;
  left: -3rem;
  background-image: url("../img/sections/baner-services/baner-services-robot-panel.webp");
  background-size: contain;
  background-repeat: no-repeat;
}

.baner-services__content .content-left__green-panel {
  width: 56.3rem;
  height: 56.3rem;
  position: absolute;
  top: 32rem;
  left: -3rem;
  background-image: url("../img/sections/baner-services/baner-services-green-panel.svg");
  background-size: contain;
  background-repeat: no-repeat;
  padding: 6.5rem 5.6rem 5.1rem 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.baner-services__content .content-left__circle-panel {
  width: 24rem;
  height: 24rem;
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url("../img/sections/baner-services/baner-services-circle-panel.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.baner-services__content .content-left__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.baner-services__content .content-left__box._el1 {
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: 17rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.baner-services__content .content-left__box._el2 {
  -ms-flex-item-align: start;
      align-self: flex-start;
  justify-self: flex-end;
  width: 19.5rem;
}

.baner-services__content .content-left__icon-box {
  margin-bottom: 0.8rem;
}

.baner-services__content .content-left__icon-box > svg {
  width: 5.4rem;
  height: 5.4rem;
}

.baner-services__content .content-left__title {
  color: #ffffff;
  font-family: NeueMachina;
}

.baner-services__content .content-left__text {
  color: #ffffff;
}

.baner-services__content .content-left__text._el1 {
  text-align: center;
}

.baner-services__content .content-left__text._el2 {
  text-align: left;
}

.baner-services__content .content-left__image {
  width: 15rem;
  margin-top: 3rem;
}

.baner-services__content .content-left__btn {
  margin-top: 2.2rem;
}

.baner-services__content .content-left__btn .arrow-btn__text {
  color: #ffffff;
}

.baner-services__content .content-left__btn .arrow-btn__icon path {
  fill: #ffffff;
  stroke: #ffffff;
}

.baner-services__title {
  width: 74rem;
  font-family: NeueMachina;
  margin-bottom: 4rem;
  position: relative;
}

.baner-services__text {
  width: 74rem;
  margin-bottom: 7.4rem;
}

.baner-services__statistic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.baner-services__statistic .statistic__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.baner-services__statistic .statistic__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

.baner-services__statistic .statistic__element {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.4rem 2.2rem;
  border: 1px solid rgba(119, 119, 119, 0.4);
  border-radius: 10rem;
}

.baner-services__statistic .statistic__icon {
  width: 19rem;
  height: 10.5rem;
  background-image: url("../img/sections/baner-services/baner-services-dec-desc.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

#baner-services-accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.baner-details-services__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 62rem 1fr;
  grid-template-columns: 62rem 1fr;
  -ms-grid-rows: 88rem;
  grid-template-rows: 88rem;
  gap: 24rem;
}

.baner-details-services__content .content-left {
  margin-top: 7.4rem;
  position: relative;
}

.baner-details-services__content .content-right {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.baner-details-services__title {
  font-family: NeueMachina;
  margin-bottom: 2rem;
}

.baner-details-services__text {
  margin-bottom: 6rem;
}

.baner-details-services__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
}

.baner-details-services__links .component--arrow-btn .arrow-btn__text {
  color: #777777;
}

.baner-details-services__accordion {
  position: absolute;
  bottom: 0;
  left: 0;
}

.baner-details-services__accordion .baner-services-accordion__element {
  width: 53.3rem;
  padding: 1rem 1rem 1rem 3.5rem;
  background-color: #ffffff;
  border-radius: 4rem;
}

.baner-details-services__accordion .baner-services-accordion__element.acc_active .prices-list-accordion__btn {
  background-color: transparent;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  will-change: all;
}

.baner-details-services__accordion .baner-services-accordion__element.acc_active .prices-list-accordion__arrow {
  fill: #03a081;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  will-change: all;
}

.baner-details-services__accordion .baner-services-accordion__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.baner-details-services__accordion .baner-services-accordion__icon {
  width: 3.2rem;
  height: 3.2rem;
  margin-right: 2rem;
}

.baner-details-services__accordion .baner-services-accordion__title {
  margin-right: auto;
}

.baner-details-services__accordion .baner-services-accordion__inner {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.baner-details-services__accordion .baner-services-accordion__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: 0.4rem;
}

.baner-details-services__background {
  width: 91rem;
  height: 99rem;
  position: absolute;
  right: -9rem;
  top: -11rem;
  background-image: url("../img/sections/baner-details-services/baner-services-bg-desc.webp");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

.baner-details-services__whats-the-benefit {
  width: 81rem;
  height: 15.5rem;
  background-image: url("../img/sections/baner-details-services/baner-services-white-panel.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  padding: 2rem;
  margin: 1rem 0;
}

.baner-details-services__whats-the-benefit .whats-the-benefit__image {
  width: 19.5rem;
  border-radius: 2rem;
}

.baner-details-services__whats-the-benefit .whats-the-benefit__texts {
  width: 46.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
}

.baner-details-services__trade {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 1rem;
  bottom: 2rem;
}

.baner-details-services__trade img {
  width: 3.2rem;
  height: 3.2rem;
}

.baner-details-services__trade._mob {
  display: none;
}

.baner-details-services__swiper-desc {
  width: 47rem;
  position: absolute;
  top: 21.8rem;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
}

.baner-details-services__swiper-mob {
  display: none;
}

.baner-details-services__slide {
  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;
}

.baner-details-services__slide._dec {
  position: relative;
  padding-right: 9rem;
  margin-right: -9rem;
}

.baner-details-services__slide._dec .baner-services-swiper__element {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.baner-details-services__slide._dec .baner-services-swiper__numbering {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.baner-details-services__slide._dec::after {
  content: "";
  width: 2rem;
  height: 100%;
  border-radius: 4rem;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
}

.baner-details-services__slide._dec._active .baner-services-swiper__element {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.baner-details-services__slide._dec._active .baner-services-swiper__numbering {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.baner-details-services__slide._dec._active::after {
  background-color: #03a081;
  -webkit-transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
}

.baner-details-services__slide .baner-services-swiper__numbering p {
  color: #ffffff;
  font-family: NeueMachina;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.baner-details-services__slide .baner-services-swiper__element {
  width: 43rem;
  border-radius: 50rem;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(44.5px);
          backdrop-filter: blur(44.5px);
  padding: 1rem;
}

.baner-details-services__slide .baner-services-swiper__inner {
  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: 1rem 1rem 1rem 3rem;
  border-radius: 4rem;
  background-color: #fff;
}

.baner-details-services__slide .baner-services-swiper__icon {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: #03a081;
  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;
}

.baner-details-services__slide .baner-services-swiper__icon > svg {
  width: 3.2rem;
  height: 3.2rem;
}

.baner-details-services__pagination {
  width: 2rem;
  height: 31.6rem;
  position: absolute;
  top: 21.8rem;
  right: -9rem;
}

.baner-details-services__pagination .swiper-pagination-bullet {
  width: 2rem;
  height: 10rem;
  border-radius: 4rem;
  background-color: #fff;
  opacity: 1;
}

.baner-details-services__pagination .swiper-pagination-bullet-active {
  background-color: #03a081;
}

.baner-articles__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 96.2rem auto;
  grid-template-columns: 96.2rem auto;
  position: relative;
}

.baner-articles__content .content-decoration {
  width: 92rem;
  height: 81.6rem;
  background-image: url("../img/sections/baner-articles/baner-articles-bg-white-panel-desc.webp");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
}

.baner-articles__content .content-decoration._mob {
  display: none;
}

.no-webp .baner-articles__content .content-decoration__green-panel{
  background-image: url("../img/sections/baner-articles/baner-articles-green-panel.png"); }

.baner-articles__content .content-decoration__green-panel {
  width: 24.9rem;
  height: 24.9rem;
  border-radius: 4rem;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 39rem;
  left: 0;
}

.baner-articles__content .content-decoration__robot-panel {
  width: 31.5rem;
  height: 43rem;
  background-image: url("../img/sections/baner-articles/baner-articles-robot-panel-desc.webp");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 8.5rem;
  left: 27rem;
}

.baner-articles__content .content-decoration__white-panel {
  width: 21.4rem;
  height: 12rem;
  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: 2px solid #ffffff;
  border-radius: 4rem;
  position: absolute;
  top: 0;
  left: 4rem;
}

.baner-articles__content .content-decoration__white-panel > svg {
  width: 4.2rem;
  height: 4.2rem;
}

.baner-articles__content .content-decoration__content-panel {
  width: 27.5rem;
  height: 20.4rem;
  border-radius: 4rem;
  padding: 2.6rem 2rem;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #ffffff;
  background-image: url("../img/sections/baner-articles/baner-articles-content-panel-desc.webp");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  right: 1.8rem;
}

.baner-articles__content .content-decoration__content-panel .component--arrow-btn .arrow-btn__icon path {
  fill: #ffffff;
}

.baner-articles__count {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  border: 1px solid #03a081;
  border-radius: 8rem;
  padding: 1.2rem 2.2rem 1.2rem 1.2rem;
  margin-bottom: 6.5rem;
  margin-top: 2.9rem;
}

.baner-articles__count-icon-box > svg {
  width: 2.6rem;
  height: 2.6rem;
}

.baner-articles__title {
  font-family: NeueMachina;
  margin-bottom: 4.4rem;
}

.baner-articles__text {
  max-width: 53.3rem;
  margin-bottom: 6rem;
}

.baner-articles__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7rem;
  margin-bottom: 16.3rem;
}

.baner-articles__services {
  width: 67.7rem;
  height: 13.9rem;
  margin-top: 10.4rem;
  background-image: url("../img/sections/baner-articles/baner-articles-white-panel-desc.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}

.baner-articles__services-element {
  padding: 1.2rem 1.4rem;
  width: 13rem;
  height: 16.4rem;
  background-size: contain;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
}

.baner-articles__services-element._el1 {
  background-image: url("../img/sections/baner-articles/baner-articles-white-file.svg");
  left: 2.2rem;
  bottom: 8rem;
}

.baner-articles__services-element._el2 {
  background-image: url("../img/sections/baner-articles/baner-articles-green-file.svg");
  left: 17rem;
  bottom: 3.8rem;
}

.baner-articles__services-element .services-element__text {
  text-transform: uppercase;
}

.baner-articles__services-element .services-element__text._el1 {
  color: #03a081;
}

.baner-articles__services-element .services-element__text._el2 {
  color: #ffffff;
}

.baner-articles__services-link {
  position: absolute;
  top: 1.6rem;
  left: 39.8rem;
}

.baner-articles__services-link .component--arrow-btn {
  color: #777777;
}

.baner-articles__services-link .component--arrow-btn .arrow-btn__icon path {
  fill: #777777;
}

.baner-company__content {
  height: 83.2rem;
  position: relative;
  margin-bottom: 23.4rem;
}

.baner-company__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  position: absolute;
  top: 0;
  left: 0;
}

.baner-company__hand {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 24.8rem;
  height: 30.8rem;
  background-image: url("../img/sections/baner-company/baner-company-hand-desc.webp");
  background-size: contain;
  background-repeat: no-repeat;
}

.baner-company__title {
  font-family: NeueMachina;
  width: 56.8rem;
}

.baner-company__title span._mob {
  display: none;
}

.baner-company__decoration {
  width: 39rem;
  border-radius: 4rem;
  position: absolute;
  top: 19.8rem;
  right: 14.4rem;
}

.baner-company__background {
  width: 82.6rem;
  position: absolute;
  top: -18.8rem;
  right: -12rem;
  z-index: -1;
}

.baner-company__background ._mob {
  display: none;
}

.baner-company__green-panel {
  width: 96.4rem;
  height: 40rem;
  padding: 10rem 6rem 6rem;
  background-image: url("../img/sections/baner-company/baner-company-green-panel-desc.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6rem;
  position: absolute;
  bottom: 0;
  left: 28.8rem;
}

.baner-company__green-panel .green-panel__title {
  color: #ffffff;
  margin-bottom: 1.4rem;
}

.baner-company__green-panel .green-panel__title._mob {
  display: none;
}

.baner-company__green-panel .green-panel__text {
  width: 41.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.6rem;
}

.baner-company__green-panel .green-panel__icon-box {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  position: absolute;
  top: 10rem;
  left: 6rem;
}

.baner-company__green-panel .green-panel__circle {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.baner-company__green-panel .green-panel__circle p {
  width: 17.2rem;
  font-family: NeueMachina;
}

.baner-company__green-panel .green-panel__btn .component--green-btn {
  background-color: #ffffff;
}

.baner-company__green-panel .green-panel__btn .component--green-btn p {
  color: #03a081 !important;
}

.baner-company__white-panel {
  width: 39rem;
  height: 28.6rem;
  background-image: url("../img/sections/baner-company/baner-company-white-panel-desc.svg");
  background-size: contain;
  background-repeat: no-repeat;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5rem 5.2rem 6rem;
  text-align: center;
  position: absolute;
  bottom: 11.8rem;
  right: 14.4rem;
}

.baner-company__white-panel .white-panel__title {
  font-family: NeueMachina;
}

.baner-company__icon-panel {
  width: 17.8rem;
  height: 13.2rem;
  background-image: url("../img/sections/baner-company/baner-company-icon-panel.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 6.5rem;
  right: 0;
}

.baner-company__icon-panel > svg {
  width: 6rem;
  height: 6rem;
}

.baner-company__spot-panel {
  width: 10.4rem;
  height: 10.4rem;
  border-radius: 50%;
  background-image: url("../img/sections/baner-company/baner-company-spot-panel.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: -3rem;
  right: 14.4rem;
}

.baner-company__spot-panel img {
  width: 5.6rem;
}

.baner-company__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.2rem;
  position: absolute;
  bottom: 0;
  left: 0;
}

.baner-company__links-element {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background-color: #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;
  cursor: pointer;
}

.baner-company__links-element._whatsapp > svg {
  width: 4.2rem;
  height: 4.2rem;
}

.baner-company__links-element._gmail > svg {
  width: 4rem;
  height: 4rem;
}

.baner-company__links-element._telegram {
  padding-right: 1rem;
}

.baner-company__links-element._telegram > svg {
  width: 3.8;
  height: 3.4rem;
}

.baner-company__contact-us {
  position: absolute;
  top: 0.2rem;
  left: 76.3rem;
}

.baner-company__contact-us .component--contact-us {
  width: 22rem;
}

.baner-company__contact-us._mob {
  display: none;
}

.baner-company__guarantee {
  position: absolute;
  right: -7rem;
  bottom: 23.7rem;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.baner-company__experience {
  position: absolute;
  right: 0;
  bottom: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.4rem 2.2rem;
  border: 1px solid rgba(119, 119, 119, 0.4);
  border-radius: 10rem;
}

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

.baner-company__footer::before {
  content: "";
  width: 18rem;
  height: 18rem;
  position: absolute;
  left: 75rem;
  background-image: url("../img/sections/baner-company/baner-company-green-dec.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.baner-company__footer::after {
  content: "";
  width: calc(100% + 12rem);
  height: calc(100% + 5.8rem);
  border: 2px solid #03a081;
  border-radius: 50rem;
  position: absolute;
  top: -3.3rem;
  left: -6rem;
}

.baner-company__footer-element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}

.baner-company__footer-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}

.baner-company__footer-icon {
  display: none;
}

.baner-company__number {
  font-family: NeueMachina;
}

.baner-reviews__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 82rem auto;
  grid-template-columns: 82rem auto;
  -ms-grid-rows: 73rem;
  grid-template-rows: 73rem;
  gap: 18.4rem;
  margin-bottom: 5.8rem;
}

.baner-reviews__content .content-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.baner-reviews__content .content-right {
  position: relative;
}

.baner-reviews__content .content-right__background {
  position: absolute;
  bottom: 0;
  right: 4rem;
  width: 63.8rem;
  height: 69.2rem;
  background-image: url("../img/sections/baner-reviews/baner-reviews-bg.webp");
  background-size: contain;
  background-repeat: no-repeat;
}

.baner-reviews__content .content-right__green-panel {
  position: absolute;
  top: 1rem;
  right: 0;
  width: 21.8rem;
  height: 23.5rem;
  background-image: url("../img/sections/baner-reviews/baner-reviews-green-panel-desc.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

.baner-reviews__content .content-right__reviews-panel {
  position: absolute;
  top: 0;
  left: -7rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.6rem 2.8rem;
  background-color: #ffffff;
  border-radius: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
}

.baner-reviews__content .content-right__reviews-panel .reviews-panel__image {
  width: 14rem;
}

.baner-reviews__content .content-right__reviews-panel .reviews-panel__text {
  width: 22.4rem;
}

.baner-reviews__content .content-mobile {
  display: none;
}

.baner-reviews__title {
  font-family: NeueMachina;
  margin-bottom: 5.2rem;
}

.baner-reviews__title .stroke-panel::before {
  top: 44%;
}

.baner-reviews__text {
  margin-bottom: 5rem;
}

.baner-reviews__statistic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.baner-reviews__statistic .statistic__element {
  max-width: 21.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 14.2rem;
  padding: 0 4rem;
  padding-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.baner-reviews__statistic .statistic__element:first-child {
  padding-left: 0;
  border-right: 1px solid #03a081;
}

.baner-reviews__statistic .statistic__element:last-child {
  padding-right: 0;
  border-left: 1px solid #03a081;
}

.baner-reviews__statistic .statistic__value {
  font-family: NeueMachina;
}

.baner-reviews__support-panel {
  position: absolute;
  bottom: -5.8rem;
  right: 0;
  width: 48.2rem;
  height: 27rem;
  background-image: url("../img/sections/baner-reviews/baner-reviews-white-panel.svg");
  background-size: contain;
  background-repeat: no-repeat;
  padding: 6.8rem 2rem 2.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.baner-reviews__support-panel .support__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2rem;
}

.baner-reviews__support-panel .support__btn .component--green-btn {
  width: 100%;
}

.IT-support__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.IT-support__content .content-right {
  max-width: 110.8rem;
}

.IT-support__content .content-left {
  max-width: 37.7rem;
  padding-top: 2.5rem;
}

.IT-support__experience {
  max-width: 19.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 6rem;
}

.IT-support__experience .experience__title {
  color: #050505;
  font-family: Formular;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.IT-support__experience .experience__content {
  margin-bottom: 1.8rem;
}

.IT-support__experience .experience__images {
  width: 15rem;
}

.IT-support__quote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.8rem;
}

.IT-support__quote .quote__text {
  color: #050505;
  font-family: "Formular";
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.IT-support__quote .quote__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.7rem;
}

.IT-support__quote .quote__author span {
  width: 5.6rem;
  height: 0.1rem;
  background-color: #777777;
}

.IT-support__title {
  margin-bottom: 6.7rem;
}

.IT-support__title._mob {
  display: none;
}

.IT-support__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}

.IT-support__text-left,
.IT-support__text-right {
  max-width: 53.3rem;
}

.IT-support__btn {
  position: absolute;
  bottom: 0;
  right: -4.4rem;
}

.our-advantages__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

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

.our-services__decoration-panel {
  width: 53.3rem;
  height: 36.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-size: contain;
  background-repeat: no-repeat;
}

.our-services__decoration-panel._reliability {
  background-image: url(../img/components/component-services/services-v1.webp);
  padding: 0.9rem 2.3rem;
}

.our-services__decoration-panel._guarantees {
  background-image: url(../img/components/component-services/services-v2.webp);
  padding: 0.9rem 4.1rem;
}

.our-services__decoration-panel .decoration-panel__text {
  font-size: 2.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #050505;
}

.our-services__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4rem;
}

.our-articles__controls {
  margin-top: 6rem;
}

.our-teams__controls {
  margin-top: 1rem;
}

.our-letters__title._mob {
  display: none;
}

.our-contacts__head {
  margin-bottom: 3.5rem;
  text-align: center;
}

.our-contacts__map {
  width: 147.5rem;
  height: 50.5rem;
  border-radius: 4rem;
  overflow: hidden;
  margin: 0 auto;
}

.our-contacts__map [class*=copyrights-pane] {
  display: none !important;
}

.our-contacts__map [class*=ground-pane] {
  -webkit-filter: grayscale(1) brightness(0.8) invert(1);
          filter: grayscale(1) brightness(0.8) invert(1);
}

.our-contacts__container {
  padding-bottom: 14rem;
}

.our-contacts__content {
  position: relative;
}

.our-contacts__informations {
  width: 168rem;
  height: 28rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 11.4rem 10.5rem 6rem;
  background-image: url("../img/sections/our-contacts/our-contacts-bg-desc.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  bottom: -16rem;
}

.our-contacts__element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

.our-contacts__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.our-contacts__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
}

.our-contacts__text._size {
  width: 28rem;
}

.our-contacts__icon-box {
  width: 2.4rem;
  height: 2.4rem;
  margin-top: 0.25rem;
}

.our-contacts__icon-box._mob {
  display: none;
}

.our-contacts__icon {
  fill: none;
  width: 2.4rem;
  height: 2.4rem;
}

.our-contacts__panel {
  width: 37.7rem;
  height: 3.4rem;
  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;
  background-image: url("../img/sections/our-contacts/our-contacts-panel-desc.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -0.1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.our-contacts__panel p {
  padding-bottom: 1rem;
}

.our-clients__swiper._mob {
  display: none;
}

#prices-list-accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}

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

.prices-list__btn._mob {
  display: none;
}

.prices-list-accordion__element {
  background-color: #ffffff;
  border-radius: 4rem;
}

.prices-list-accordion__element.acc_active .prices-list-accordion__btn {
  background-color: transparent;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  will-change: all;
}

.prices-list-accordion__element.acc_active .prices-list-accordion__arrow {
  fill: #03a081;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  will-change: all;
}

.prices-list-accordion__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4.5rem 4rem;
  cursor: pointer;
}

.prices-list-accordion__inner {
  padding: 1.5rem 12.4rem 6rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  row-gap: 4rem;
  -webkit-column-gap: 8rem;
     -moz-column-gap: 8rem;
          column-gap: 8rem;
}

.prices-list-accordion__icon {
  width: 5.4rem;
  height: 5.4rem;
  margin-right: 3rem;
}

.prices-list-accordion__icon > svg {
  width: 100%;
  height: 100%;
}

.prices-list-accordion__title {
  font-family: NeueMachina;
  margin-right: auto;
}

.prices-list-accordion__title._ask-questions {
  font-size: 3.2rem;
}

.prices-list-accordion__btn {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 0.2rem solid #03a081;
  background-color: #03a081;
}

.prices-list-accordion__arrow {
  width: 2.8rem;
  height: 2.8rem;
  fill: #ffffff;
}

.cost-calculation-accordion__result {
  font-family: NeueMachina;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0 12.4rem 6rem;
  gap: 5.6rem;
}

.cost-calculation-accordion__result span {
  font-family: Formular;
}

.cost-calculation-accordion__selected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
  margin-right: 4.8rem;
}

.cost-calculation-accordion__title {
  margin-right: auto;
}

.cost-calculation-accordion__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.prices-list-accordion__title._cost-calculation-accordion {
  -webkit-box-flex: 1;
      -ms-flex: 1 0;
          flex: 1 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 0;
}

.prices-list-accordion__icon._cost-calculation-accordion._mob {
  display: none;
}

.total-calculation__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #03a081;
  border-radius: 4rem;
  padding: 0.4rem;
  overflow: hidden;
}

.total-calculation__content .content-left,
.total-calculation__content .content-right {
  border-radius: 3.8rem;
  background-color: #ffffff;
}

.total-calculation__content .content-left {
  -webkit-box-flex: 1;
      -ms-flex: 1 0;
          flex: 1 0;
  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: 4.5rem 6rem;
  position: relative;
}

.total-calculation__content .content-left::before {
  content: "";
  position: absolute;
  top: -0.6rem;
  right: -0.2rem;
  width: 10rem;
  height: 100%;
  border-right: 0.4rem dashed #03a081;
}

.total-calculation__content .content-right {
  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: 4rem;
}

.total-calculation__title {
  font-family: NeueMachina;
}

.total-calculation__total {
  font-family: NeueMachina;
}

.total-calculation__total span {
  font-family: Formular;
}

.choose-tariffs__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}

.choose-tariffs__element {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 26.4rem auto 25.8rem;
  grid-template-columns: 26.4rem auto 25.8rem;
  padding: 3.6rem 4rem;
  border: 0.2rem solid #fff;
  border-radius: 4rem;
}

.choose-tariffs__element:hover {
  background-color: #fff;
  -webkit-transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
}

.choose-tariffs__element:hover .choose-tariffs__btn .component--green-btn {
  background-color: #000;
  -webkit-transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
}

.choose-tariffs__element._active {
  background-color: #fff;
}

.choose-tariffs__element._active .choose-tariffs__btn .component--green-btn {
  background-color: #000;
}

.choose-tariffs__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  padding: 0 4rem;
  border-left: 1px solid #03a081;
  border-right: 1px solid #03a081;
}

.choose-tariffs__description .description__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
}

.choose-tariffs__btn {
  justify-self: flex-end;
}

.choose-tariffs__btn .component--green-btn {
  width: 21.8rem;
}

.basic-direction__element {
  width: 53.3rem;
  height: 68.8rem;
  padding: 4rem;
  border-radius: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}

.basic-direction__element._v1 {
  background-image: url("../img/sections/basic-directions/basic-direction-bg-v1.webp");
}

.basic-direction__element._v2 {
  background-image: url("../img/sections/basic-directions/basic-direction-bg-v2.webp");
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.basic-direction__element._v3 {
  background-image: url("../img/sections/basic-directions/basic-direction-bg-v3.webp");
}

.basic-direction__numbering {
  width: 12.5rem;
  height: 12.5rem;
  position: absolute;
  padding: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-size: contain;
  background-repeat: no-repeat;
}

.basic-direction__numbering > p {
  width: 8rem;
  text-align: center;
  font-family: NeueMachina;
  font-size: 4.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #03a081;
}

.basic-direction__numbering._v1 {
  top: 0;
  right: 0;
  background-image: url("../img/sections/basic-directions/basic-direction-panel-v1.svg");
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.basic-direction__numbering._v2 {
  bottom: 0;
  right: 0;
  background-image: url("../img/sections/basic-directions/basic-direction-panel-v2.svg");
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.basic-direction__text {
  font-family: NeueMachina;
  color: #ffffff;
}

.reliable-professional__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6rem;
}

.reliable-professional__content .content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}

.reliable-professional__content .content-top__right {
  width: 73.2rem;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

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

.reliable-professional__content .content-bottom__left {
  width: 50.4rem;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.reliable-professional__content .content-bottom__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 4rem;
}

.reliable-professional__image-box {
  width: 82rem;
  height: 43rem;
  background-size: contain;
  background-repeat: no-repeat;
}

.reliable-professional__image-box._top {
  background-image: url("../img/sections/reliable-professional/rp-bg-top-desc.webp");
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.reliable-professional__image-box._bottom {
  background-image: url("../img/sections/reliable-professional/rp-bg-bottom-desc.webp");
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.reliable-professional__image-text._top {
  padding-right: 4rem;
  padding-bottom: 1rem;
}

.reliable-professional__image-text._bottom {
  padding-left: 4rem;
  padding-top: 1rem;
}

.reliable-professional__decoration {
  width: 24.7rem;
  height: 24.7rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../img/sections/reliable-professional/rp-bg-decoration.webp");
}

.reliable-professional__title {
  font-family: NeueMachina;
  margin-bottom: 4rem;
}

.reliable-professional__text {
  margin-bottom: 4rem;
}

.reliable-professional__btn._top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.service-price__content {
  background-color: #ffffff;
  border-radius: 4rem;
}

.service-price__content-head {
  padding: 4.5rem 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service-price__content-title {
  font-family: NeueMachina;
}

.service-price__content-inner {
  padding: 1.5rem 12.4rem 6rem;
}

.service-price__content-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 8rem;
     -moz-column-gap: 8rem;
          column-gap: 8rem;
  row-gap: 4rem;
  margin-bottom: 4rem;
}

.service-price__content-icon {
  margin-right: 3rem;
}

.service-price__content-icon > svg {
  width: 5.4rem;
  height: 5.4rem;
}

.service-price__content-btn {
  margin-left: auto;
}

.service-price__content-btn._mob {
  display: none;
}

.service-price__content-result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.service-price__content-price {
  font-family: NeueMachina;
}

.service-price__content-price span {
  font-family: Formular;
}

.prices-list-accordion__element._ask-questions {
  position: relative;
  overflow: hidden;
}

.prices-list-accordion__element._ask-questions.acc_active .ask-questions__decoration {
  opacity: 0.1;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}

.prices-list-accordion__head._ask-questions {
  position: relative;
  z-index: 1;
}

.prices-list-accordion__inner._ask-questions {
  padding: 1.5rem 4rem 6rem;
  -ms-grid-columns: minmax(auto, 90.4rem);
  grid-template-columns: minmax(auto, 90.4rem);
  position: relative;
  z-index: 1;
}

#ask-questions-accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}

.ask-questions__decoration {
  width: 95rem;
  position: absolute;
  top: -50rem;
  right: 0;
  opacity: 0;
  z-index: 0;
}

.completing-tasks__title {
  width: 110.5rem;
}

.completing-tasks__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}

.completing-tasks__content .content-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  width: 55.3rem;
  padding: 4rem 2rem 2rem 4rem;
  background-image: url("../img/sections/completing-tasks/completing-tasks-bg.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.completing-tasks__content .content-right {
  width: 111rem;
}

.completing-tasks__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.completing-tasks__box._v1 {
  gap: 13rem;
}

.completing-tasks__box._v2 {
  gap: 4rem;
}

.completing-tasks__image {
  width: 22.6rem;
  border-radius: 3rem;
}

.component--services._completing-tasks {
  width: 53.3rem;
  height: 32.2rem;
}

.component--services._completing-tasks:hover .services__numbering {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.component--services._completing-tasks .services__background--desktop {
  width: 53.3rem;
  height: 32.2rem;
}

.component--services._completing-tasks .services__content {
  top: 5rem;
  left: 4rem;
  height: 23.2rem;
}

.what-includes__head {
  width: 105.5rem;
  margin-bottom: 6rem;
}

.what-includes__title {
  font-family: NeueMachina;
  margin-bottom: 2.2rem;
}

.what-includes__text {
  width: 63.8rem;
}

.what-includes__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 125rem auto;
  grid-template-columns: 125rem auto;
  gap: 4rem;
}

.what-includes__content .content-right__text {
  margin-bottom: 5rem;
}

.what-includes__link .component--arrow-btn .arrow-btn__text {
  color: #777777;
}

.what-includes-swiper {
  margin-bottom: 4rem;
}

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

.what-includes__slide {
  width: 39rem;
  height: 26.4rem;
  border-radius: 4rem;
  position: relative;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.what-includes__slide._v1::before {
  background: url("../img/sections/what-includes/what-includes-bg-v1.webp") center center no-repeat;
  background-size: contain;
}

.what-includes__slide._v2::before {
  background: url("../img/sections/what-includes/what-includes-bg-v2.webp") center center no-repeat;
  background-size: contain;
}

.what-includes__slide._v3::before {
  background: url("../img/sections/what-includes/what-includes-bg-v3.webp") center center no-repeat;
  background-size: contain;
}

.what-includes__slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  z-index: -1;
}

.what-includes__slide:hover::before {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.what-includes__slide .what-includes-swiper__icon {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  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;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.what-includes__slide .what-includes-swiper__icon img {
  width: 3.2rem;
  height: 3.2rem;
}

.what-includes__slide .what-includes-swiper__text {
  color: #ffffff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.8rem 2.4rem;
  border-radius: 50px;
  border: 1px solid #ffffff;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(27.5px);
          backdrop-filter: blur(27.5px);
}

.article-info__head {
  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;
  margin-bottom: 14.2rem;
}

.article-info__head._mob {
  display: none;
}

.article-info__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  padding: 4.4rem 4.4rem 6rem;
  border: 2px solid #03a081;
  border-radius: 4rem;
  position: relative;
}

.article-info__content::before {
  content: "";
  width: 168rem;
  height: 14.8rem;
  border-radius: 4rem;
  border: 2px solid #03a081;
  position: absolute;
  top: -2px;
  left: -2px;
  z-index: -1;
}

.article-info__content .content-left {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  position: relative;
  overflow: hidden;
}

.article-info__btn {
  width: 8rem;
  height: 8rem;
  border-bottom-right-radius: 2rem;
  background-color: #eaeaea;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: absolute;
  top: 0;
  left: 0;
}

.article-info__btn .component--green-arrow-btn {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.article-info__btn::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  bottom: 0rem;
  width: 3rem;
  height: 2.5rem;
  border-radius: 5rem 0 0 0;
  -webkit-box-shadow: -1rem -1rem 0 0.5rem #eaeaea;
          box-shadow: -1rem -1rem 0 0.5rem #eaeaea;
}

.article-info__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 99.5%;
  bottom: 0rem;
  width: 3rem;
  height: 2.5rem;
  border-radius: 5rem 0 0 0;
  -webkit-box-shadow: -1rem -1rem 0 0.5rem #eaeaea;
          box-shadow: -1rem -1rem 0 0.5rem #eaeaea;
}

.article-info__image {
  width: 49rem;
  border-radius: 2rem;
  margin-bottom: 4.4rem;
}

.article-info__title {
  font-family: NeueMachina;
  margin-bottom: 4.4rem;
}

.article-info__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.8rem;
}

.article-info__text._size {
  width: 35rem;
}

.article-info__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
}

.article-info__time .time-value {
  color: #777777;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  padding: 1rem 1.8rem;
  border-radius: 8.5rem;
  border: 1px solid #777777;
}

.article-info__time .time-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid #777777;
  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;
}

.article-info__time .time-icon > svg {
  width: 2.4rem;
  height: 2.4rem;
  fill: none;
  stroke: #777777;
}

.article-info__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: 1.6rem;
}

.article-info__list .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

.article-info__list .list-circle {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #03a081;
  margin-top: 1rem;
}

.order-callback._company .company-callback__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.order-callback._company .company-callback__content .content-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9.2rem;
  padding-left: 3.3rem;
}

.order-callback._company .company-callback__content .content-left__decoration {
  width: 40.8rem;
  margin-top: 4rem;
}

.order-callback._company .company-callback__content .content-left__white-panel {
  width: 32rem;
  height: 27rem;
  background-image: url("../img/sections/order-callback/company-callback-white-panel-desc.svg");
  background-repeat: no-repeat;
  background-size: contain;
  padding: 4rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 1rem 1rem 0 0;
}

.order-callback._company .company-callback__content .content-left__white-panel .white-panel__title {
  font-family: NeueMachina;
}

.order-callback._company .company-callback__content .content-left__white-panel .white-panel__img {
  width: 24rem;
}

.order-callback._company .company-callback__content .content-left__white-panel .white-panel__img ._mob {
  display: none;
}

.order-callback._company .company-callback__content .content-left__white-panel .white-panel__btn {
  position: absolute;
  top: -1rem;
  right: -1rem;
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.order-callback._company .company-callback__content .content-right {
  width: 67.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  padding-bottom: 8.4rem;
  border-bottom: 1px solid rgba(119, 119, 119, 0.4);
  margin-top: 2.4rem;
}

.order-callback._company .company-callback__content .content-right__title {
  font-family: NeueMachina;
}

.order-callback._company .order-callback__container {
  padding-top: 18rem;
  position: relative;
}

.order-callback._company .order-callback__head {
  margin-bottom: 4rem;
}

.order-callback._company .order-callback__content {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 18.4rem;
}

.order-callback._company .order-callback__content .content-right {
  padding-bottom: 9.6rem;
}

.order-callback._company .order-callback__title {
  margin-bottom: 0;
}

.order-callback._company .order-callback__box {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
}

.order-callback__head {
  width: 67.7rem;
  margin-bottom: 6rem;
}

.order-callback__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 82rem auto;
  grid-template-columns: 82rem auto;
  gap: 4rem;
}

.order-callback__content .content-left {
  width: 82rem;
  height: 57.7rem;
  background-image: url("../img/sections/order-callback/order-callback-bg.webp");
  background-size: contain;
  background-repeat: no-repeat;
  padding: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 6rem;
}

.order-callback__content .content-left__panel {
  width: 39rem;
  height: 23.8rem;
  background-image: url("../img/sections/order-callback/order-callback-panel-desc.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  padding: 2.4rem;
}

.order-callback__content .content-left__icon-box {
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 50%;
  background-color: #03a081;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2.9rem;
}

.order-callback__content .content-left__icon-box > svg {
  width: 3.2rem;
  height: 3.2rem;
}

.order-callback__content .content-left__data {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 1.8rem;
  border: 1px solid rgba(5, 5, 5, 0.25);
  border-radius: 8.5rem;
  margin-bottom: 1.9rem;
}

.order-callback__content .content-left__data br {
  display: none;
}

.order-callback__content .content-left__btn {
  position: absolute;
  top: -2rem;
  right: 0;
}

.order-callback__title {
  font-family: NeueMachina;
  margin-bottom: 2.4rem;
}

.order-callback__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  margin-bottom: 4rem;
}

.order-callback__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.order-callback__textarea {
  height: 12rem;
  border-radius: 2rem;
  resize: none;
}

.order-callback__textarea._popup {
  height: 13rem;
}

.order-callback__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5rem;
}

.order-callback__policy {
  width: 42rem;
}

.order-callback__policy span {
  text-decoration: underline;
  cursor: pointer;
}

.providing-solutions__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 49.5rem 110.7rem;
  grid-template-columns: 49.5rem 110.7rem;
  gap: 8rem;
}

.providing-solutions__content .content-right {
  position: relative;
}

.providing-solutions__title {
  font-family: NeueMachina;
  margin-bottom: 6rem;
}

.providing-solutions__quote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
  padding: 3rem 0;
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  margin-bottom: 12.8rem;
}

.providing-solutions__quote-image {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 17rem;
  border-radius: 5rem;
}

.providing-solutions__quote-image img._mob {
  display: none;
}

.providing-solutions__controls {
  position: absolute;
  top: 0;
  right: 0;
}

.providing-solutions__slide {
  width: 53.3rem;
  height: 55.9rem;
  background-color: #ffffff;
  border-radius: 4rem;
  padding: 4rem 4rem 4rem 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.providing-solutions__slide:hover .providing-solutions__spot {
  -webkit-transform: scale(1.23);
      -ms-transform: scale(1.23);
          transform: scale(1.23);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.providing-solutions__icon-box {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.providing-solutions__icon-box > svg {
  width: 5.3rem;
  height: 5.3rem;
}

.providing-solutions__spot {
  position: absolute;
  top: 8.2rem;
  left: 5rem;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.providing-solutions__spot-image {
  width: 23.6rem;
}

.providing-solutions__spot-effect {
  width: 20rem;
  height: 20rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.providing-solutions__spot-effect img {
  height: 100%;
}

.providing-solutions__btn._mob {
  display: none;
}

.freelancer__swiper {
  width: 110.6rem;
}

.freelancer__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}

.freelancer__element {
  width: 53.3rem;
  height: 37.9rem;
  padding: 4rem 3rem 3rem;
  border: 2px solid #ffffff;
  border-radius: 4rem;
  background-color: #eaeaea;
}

.freelancer__element .element__panel {
  width: 100%;
  padding: 2.5rem 0;
  border-radius: 10rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 4rem;
}

.freelancer__element .element__panel._first {
  background-color: #777777;
}

.freelancer__element .element__panel._second {
  background-color: #03a081;
}

.freelancer__element .element__title {
  font-family: NeueMachina;
  margin-bottom: 3rem;
}

.freelancer__controls {
  display: none;
}

.grid-articles__controls._mob {
  display: none;
}

.grid-teams__controls._mob {
  display: none;
}

@media (hover: none) {
  .header__menu .menu__item {
    cursor: pointer;
    overflow: hidden;
    pointer-events: initial;
  }
}

@media (max-width: 48em ) {
  html {
    font-size: 5px;
    font-size: 1.5625vw;
    font-size: 1.3333333333vw;
    -webkit-text-size-adjust: none;
  }


  .component--green-btn .green-btn__text::before {
   display: none;
  }

  body {
    -webkit-text-size-adjust: none;
  }

  .container {
    padding: 0 2rem;
    width: 100%;
  }

  .setup--h1,
  .setup--section-title {
    font-size: 8rem;
    line-height: 104%;
  }


  .header__menu .menu__item:hover .menu__link {
    -webkit-transform: translateY(0rem);
        -ms-transform: translateY(0rem);
            transform: translateY(0rem);
    -webkit-transition: -webkit-transform 0.25s ease-in-out;
  
  }
  

  .setup--h2 {
    font-size: 5.2rem;
  }

  .setup--h3 {
    font-size: 4.4rem;
    line-height: 110%;
  }

  .setup--text-24px,
  .setup--text-18px {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }

  .setup--section-title {
    margin-bottom: 8rem;
  }

  .setup--section-head {
    padding: 0 2rem;
    -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;
    gap: 4rem;
  }

  .swiper.setup--mobile-swiper {
    margin-left: -2rem;
    margin-right: -2rem;
    padding: 0 2rem;
  }

  .component--green-btn {
    gap: 2rem;
    padding: 3.2rem 7.8rem;
    border-radius: 10rem;
  }

  .component--green-btn:hover .green-btn__text {
    -webkit-transform: translateY(-8rem);
        -ms-transform: translateY(-8rem);
            transform: translateY(-8rem);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }

  .component--green-btn:hover .green-btn__text::before {
    top: 8rem;
    -webkit-transform: translateY(0rem);
        -ms-transform: translateY(0rem);
            transform: translateY(0rem);
  }

  .component--green-btn .green-btn__icon {
    width: 3.2rem;
  }

  .component--arrow-btn {
    gap: 3rem;
  }

  .component--arrow-btn .arrow-btn__icon {
    width: 10rem;
  }

  .component--arrow-btn .arrow-btn__icon.desktop {
    display: none;
  }

  .component--arrow-btn .arrow-btn__icon.mobile {
    display: block;
  }

  .component--green-arrow-btn {
    width: 8rem;
    height: 8rem;
  }

  .component--green-arrow-btn > svg {
    width: 3.6rem;
    height: 3.6rem;
  }

  .component--swap-btn {
    width: 8rem;
    height: 8rem;
    border: 0.3rem solid #03a081;
    bottom: 4rem;
    right: 2rem;
  }

  .component--swap-btn > svg {
    width: 4rem;
    height: 4rem;
  }

  .component--enabled-btn .enabled-btn__box {
    width: 6.8rem;
    height: 6.8rem;
    border: 0.4rem solid;
  }

  .component--enabled-btn .enabled-btn__box > svg {
    width: 4.8rem;
    height: 4.8rem;
  }

  .component--services {
    width: 56rem;
    height: 41.4rem;
  }

  .component--services .services__background--desktop {
    display: none;
  }

  .component--services .services__background--mobile {
    display: block;
    width: 56rem;
    height: 41.4rem;
  }

  .component--services .services__content {
    width: 50rem;
    height: 35.5rem;
    top: 3rem;
    left: 3rem;
  }

  .component--services .services__icon-numbering {
    top: 0;
    left: 35.4rem;
  }

  .component--services .services__icon-numbering .icon-numbering {
    width: 6rem;
    height: 6rem;
  }

  .component--advantages {
    width: 57.6rem;
    height: 57rem;
  }

  .component--advantages .advantages__background--desktop {
    display: none;
  }

  .component--advantages .advantages__background--mobile {
    display: block;
    width: 57.6rem;
    height: 57rem;
  }

  .component--advantages .advantages__content {
    width: 51.6rem;
    top: 3rem;
    left: 3rem;
  }

  .component--advantages .advantages__numbering {
    width: 12rem;
    height: 12rem;
    padding: 2.4rem 2rem;
  }

  .component--advantages .advantages__text {
    max-height: 13.6rem;
  }

  .component--advantages .advantages__categories .categories__large-panel {
    width: 51.6rem;
    height: 34.4rem;
    background-image: url("../img/components/component-advantage/bg--green-large-panel-mobile.svg");
  }

  .component--advantages .advantages__categories .categories__small-panel {
    width: 17.8rem;
    height: 15.4rem;
    bottom: 6rem;
    background-image: url("../img/components/component-advantage/bg--green-small-panel-mobile.svg");
    background-position: bottom;
  }

  .component--articles {
    width: 57.8rem;
    height: 62rem;
  }

  .component--articles._grid {
    width: 71rem;
    height: 59.6rem;
  }

  .component--articles._grid .articles__background--mobile {
    display: none;
  }

  .component--articles._grid .articles__background--grid {
    display: block;
    width: 71rem;
    height: 59.6rem;
  }

  .component--articles._grid .articles__content {
    width: calc(100% - 6rem);
  }

  .component--articles .articles__background--desktop {
    display: none;
  }

  .component--articles .articles__background--mobile {
    display: block;
    width: 57.8rem;
    height: 62rem;
  }

  .component--articles .articles__content._hover {
    opacity: 0;
  }

  .component--articles .articles__content._hover .content__icon > svg {
    width: 3.5rem;
    height: 3.5rem;
  }

  .component--articles .articles__content._hover .content__title {
    font-size: 3.8rem;
    margin-bottom: 2rem;
  }

  .component--articles .articles__content {
    width: 51.6rem;
    height: 52.6rem;
    top: 3rem;
    left: 3rem;
  }

  .component--articles .articles__content .content__top .top-right {
    gap: 5rem;
  }

  .component--articles .articles__content .content__icon {
    width: 8rem;
    height: 8rem;
  }

  .component--articles .articles__content .content__icon > svg {
    width: 4.8rem;
    height: 4.8rem;
  }

  .component--articles .articles__content .content__image {
    width: 21.8rem;
    height: 21.8rem;
  }

  .component--articles .articles__content .content__time .time-value {
    font-size: 2.8rem;
    padding: 1.2rem 2.2rem 1rem;
  }

  .component--articles .articles__content .content__time .time-value > span {
    display: none;
  }

  .component--articles .articles__content .content__time .time-icon {
    width: 6rem;
    height: 6rem;
  }

  .component--articles .articles__content .content__time .time-icon > svg {
    width: 3.2rem;
    height: 3.2rem;
  }

  .component--articles .articles__numbering {
    left: 17rem;
  }

  .component--teams {
    width: 58rem;
    height: 60.4rem;
  }

  .component--teams._grid {
    width: 71rem;
    height: 73rem;
  }

  .component--teams._grid .teams__background--mobile {
    display: none;
  }

  .component--teams._grid .teams__background--grid {
    display: block;
    width: 71rem;
    height: 69rem;
  }

  .component--teams._grid .teams__content .content__post {
    margin-bottom: 20rem;
  }

  .component--teams._grid .teams__content .content__quote {
    -webkit-transform: translateY(-290%);
        -ms-transform: translateY(-290%);
            transform: translateY(-290%);
  }

  .component--teams._grid .teams__content .content__btn {
    width: 9.8rem;
    height: 9.8rem;
  }

  .component--teams._grid .teams__content .content__btn > svg {
    width: 4.6rem;
    height: 4.6rem;
  }

  .component--teams .teams__background--desktop {
    display: none;
  }

  .component--teams .teams__background--mobile {
    display: block;
    width: 58rem;
    height: 56.4rem;
  }

  .component--teams .teams__content {
    width: calc(100% - 6rem);
    top: 4rem;
    left: 3rem;
  }

  .component--teams .teams__content .content__name {
    font-size: 5.2rem;
  }

  .component--teams .teams__avatar {
    width: 35.6rem;
    height: 37.6rem;
    right: 4rem;
  }

  .component--letters {
    width: 57.6rem;
    height: 57rem;
  }

  .component--letters .letters__background--desktop {
    display: none;
  }

  .component--letters .letters__background--mobile {
    display: block;
    width: 57.6rem;
    height: 57rem;
  }

  .component--letters .letters__numbering {
    width: 12rem;
    height: 12rem;
    padding: 2.4rem 0;
  }

  .component--contact-us {
    width: 41.4rem;
    border-radius: 10.8rem;
    padding: 0.6rem;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  .component--contact-us:hover .contact-us__text {
    -webkit-transform: translateY(-10rem);
        -ms-transform: translateY(-10rem);
            transform: translateY(-10rem);
  }

  .component--contact-us .contact-us__text {
    padding-left: 3.6rem;
  }

  .component--contact-us .contact-us__text::before {
    top: 8rem;
    left: 3.6rem;
  }

  .component--contact-us .contact-us__circle {
    width: 6.8rem;
    height: 6.8rem;
    border-radius: 10rem;
    padding: 2.4rem;
  }

  .component--contact-us .contact-us__circle > svg {
    width: 2rem;
    height: 2rem;
  }

  .component--contact-links .contact-links__line {
    max-width: 22.8rem;
    width: 100%;
  }

  .component--reviews {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    margin-top: 0;
  }

  .component--reviews._v1 .component--arrow-btn {
    display: none;
  }

  .component--reviews._v1 .reviews__text {
    display: block;
    margin-bottom: 0;
    max-height: fit-content;
  }

  .component--reviews._v1 .reviews__data {
    margin-top: 2rem;
  }

  .component--reviews._v2 .component--arrow-btn {
    display: none;
  }

  .component--reviews._v2 .reviews__data {
    margin-top: 2rem;
  }

  .component--reviews .reviews__content {
    width: 100%;
    height: auto;
    padding: 3rem;
    background-image: none;
    background-color: #ffffff;
    border-radius: 4rem;
    margin-bottom: 4rem;
    clip-path: none;
  }

  .component--reviews .reviews__title {
    width: 100%;
    margin-bottom: 2rem;
  }

  .component--reviews .reviews__title br {
    display: none;
  }

  .component--reviews .reviews__site {
    width: 10rem;
    height: 10rem;
  }

  .component--reviews .reviews__btn {
    position: static;
  }

  .component--reviews .reviews__text {
    max-height: auto;
  }

  .component--reviews .reviews__text:after {
    display: none;
  }

  .component--clients {
    width: 30.4rem;
    height: 0;
    min-height: 10.4rem;
    pointer-events: none;
  }

  .component--clients .clients__logotype img {
    width: 30.4rem;
  }

  .accordion-price-box {
    gap: 1.2rem;
  }

  .accordion-price-box__line {
    margin-bottom: 0;
  }

  .accordion-range-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.8rem;
  }

  .accordion-range-box .range-btn {
    width: 5.6rem;
    height: 5.6rem;
    border: 0.3rem solid #03a081;
  }

  .accordion-range-box .range-btn-minus::before {
    width: 2.2rem;
    height: 0.25rem;
    border-radius: 0.15rem;
  }

  .accordion-range-box .range-btn-plus::before {
    width: 2.2rem;
    height: 0.25rem;
    border-radius: 0.15rem;
  }

  .accordion-range-box .range-btn-plus::after {
    width: 0.25rem;
    height: 2.2rem;
    border-radius: 0.15rem;
  }

  .accordion-range-box .range-value {
    width: 4rem;
  }

  .accordion-range-price-box {
    gap: 1.2rem;
  }

  .input {
    padding: 3.2rem 8rem 3.2rem 4rem;
    font-size: 2.8rem;
    border-radius: 100rem;
  }

  .input::-webkit-input-placeholder {
    font-size: 2.8rem;
  }

  .input::-moz-placeholder {
    font-size: 2.8rem;
  }

  .input:-ms-input-placeholder {
    font-size: 2.8rem;
  }

  .input::-ms-input-placeholder {
    font-size: 2.8rem;
  }

  .input::placeholder,
  .input label {
    font-size: 2.8rem;
  }

  .stroke-panel::before {
    width: calc(100% + 4rem);
    height: calc(100% + 2rem);
  }

  .stroke-panel._teams::after {
    width: 6rem;
    height: 6rem;
    left: 115%;
  }

  .swiper-button-next.btn-next {
    width: 8rem;
    height: 8rem;
  }

  .swiper-button-next.btn-next > svg {
    width: 4rem;
    height: 4rem;
  }

  .swiper-button-prev.btn-prev {
    width: 8rem;
    height: 8rem;
  }

  .swiper-button-prev.btn-prev > svg {
    width: 4rem;
    height: 4rem;
  }

  .swiper.our-articles-swiper {
    padding: 0 2rem;
  }

  .swiper-slide.our-articles-slide {
    width: 57.8rem;
  }

  .swiper.our-teams-swiper {
    padding: 0 2rem;
  }

  .swiper-slide.our-teams-slide {
    width: 58rem;
  }

  .swiper.our-letters-swiper {
    padding: 0 2rem;
  }

  .swiper-slide.our-letters-slide {
    width: 57.6rem;
  }

  .swiper.grid-articles-swiper .swiper-wrapper {
    -ms-grid-rows: (auto)[4];
    grid-template-rows: repeat(4, auto);
  }

  .swiper-slide.grid-articles-slide {
    width: 57.6rem;
  }

  .swiper.grid-teams-swiper .swiper-wrapper {
    -ms-grid-rows: (auto)[5];
    grid-template-rows: repeat(5, auto);
  }

  .swiper-slide.grid-teams-slide {
    width: 57.6rem;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }

  .swiper.grid-reviews-swiper .swiper-wrapper {
    -ms-grid-rows: (auto)[1];
    grid-template-rows: repeat(1, auto);
  }

  .swiper.grid-reviews-swiper {
    padding: 0 2rem;
  }

  .swiper-slide.grid-reviews-slide {
    width: 57.6rem;
  }

  .swiper.basic-direction-swiper {
    padding: 0 2rem;
  }

  .swiper-slide.basic-direction-slide {
    width: 57.6rem;
  }

  .swiper.completing-tasks-swiper {
    margin-top: 0;
  }

  .swiper.completing-tasks-swiper .swiper-wrapper {
    -ms-grid-rows: (auto)[1];
    grid-template-rows: repeat(1, auto);
  }

  .swiper-slide.completing-tasks-slide {
    width: 57.6rem;
  }

  .swiper.providing-solutions-swiper {
    margin-bottom: 8rem;
  }

  .swiper-slide.providing-solutions-slide {
    width: 58rem;
  }

  .swiper-slide.providing-solutions-slide.swiper-slide {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }

  .swiper-slide.baner-services-slide {
    width: 58rem;
  }

  .swiper-slide.what-includes-slide {
    width: 58rem;
  }

  .popup__close {
    width: 8rem;
    height: 8rem;
  }

  .popup__close > svg {
    width: 4.8rem;
    height: 4.8rem;
  }

  .popup__close._controls > svg {
    width: 4.8rem;
    height: 4.8rem;
  }

  .popup__content {
    width: 100%;
    max-width: 71rem;
  }

  .popup__content._letters {
    width: 71rem;
    height: 91.4rem;
    margin-bottom: 30rem;
    padding: 3rem 0;
  }

  .popup__inner {
    width: 60rem;
    padding: 6rem 0 6rem 4rem;
    background-color: #fff;
    border-top-right-radius: 4rem;
    border-top-left-radius: 4rem;
    border-bottom-left-radius: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
    position: relative;
  }

  .popup__inner._accepted {
    padding: 29rem 0 29rem 12rem;
  }

  .popup__inner::before {
    content: "";
    width: 11rem;
    height: calc(100% - 11rem);
    background-color: #fff;
    border-top-right-radius: 4rem;
    border-bottom-right-radius: 4rem;
    position: absolute;
    bottom: 0;
    left: 100%;
    z-index: -1;
  }

  .popup__inner::after {
    content: "";
    position: absolute;
    top: 6rem;
    right: -6rem;
    bottom: 0rem;
    width: 6rem;
    height: 5rem;
    border-radius: 0 0 0 5rem;
    -webkit-box-shadow: -1rem 1rem 0 0.5rem #fff;
            box-shadow: -1rem 1rem 0 0.5rem #fff;
  }

  .popup__head {
    text-align: left;
  }

  .popup__head._accepted {
    width: 62rem;
    text-align: center;
  }

  .popup__text {
    width: 59rem;
  }

  .popup__forms {
    -ms-grid-columns: 62rem;
    grid-template-columns: 62rem;
    gap: 2rem;
  }

  .popup__forms-fields {
    -ms-grid-columns: 62rem;
    grid-template-columns: 62rem;
  }

  .popup__buttons {
    width: 62rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .popup__controls._letters {
    bottom: -30rem;
  }

  .popup-letters__slide {
    width: 65rem;
    padding-bottom: 17rem;
  }

  .popup-letters__slide img {
    height: 85.6rem;
  }

  .popup-letters__cell {
    display: block;
    width: 100%;
    max-width: 96.3rem;
    height: 12rem;
    border-radius: 16rem;
    background-color: #f7f7f7;
    position: absolute;
    bottom: -14rem;
    left: 0;
  }

  .header {
    padding-top: 3rem;
    margin-bottom: 3.6rem;
    background-color: #eaeaea;
  }

  .header__menu {
    display: none;
  }

  .header__menu._burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }

  .header__menu .menu__item {
  
    padding: 3.6rem 0;
    border-top: 1px solid rgba(119, 119, 119, 0.1);
  }

  .header__menu .menu__item:last-child {
    border-bottom: 1px solid rgba(119, 119, 119, 0.1);
  }

  .header__menu .menu__link::before {
    display: none;
  }

  .header__socials {
    display: none;
  }

  .header__socials._burger {
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8rem;
    margin-top: 8rem;
  }

  .header__socials .socials__links {
    margin-left: 0;
    gap: 2rem;
  }

  .header__socials .socials__links .link {
    width: 10rem;
    height: 10rem;
  }

  .header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    width: 6rem;
    height: 4rem;
  }

  .header__burger-content {
    display: block;
  }

  .header__burger._open::before {
    top: 2rem;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: top 0.15s, -webkit-transform 0.15s 0.15s linear;
    transition: top 0.15s, -webkit-transform 0.15s 0.15s linear;
    transition: top 0.15s, transform 0.15s 0.15s linear;
    transition: top 0.15s, transform 0.15s 0.15s linear, -webkit-transform 0.15s 0.15s linear;
  }

  .header__burger._open::after {
    bottom: 1.6rem;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transition: bottom 0.15s, -webkit-transform 0.15s 0.15s linear;
    transition: bottom 0.15s, -webkit-transform 0.15s 0.15s linear;
    transition: bottom 0.15s, transform 0.15s 0.15s linear;
    transition: bottom 0.15s, transform 0.15s 0.15s linear, -webkit-transform 0.15s 0.15s linear;
  }

  .header__burger._open span {
    display: none;
    -webkit-transition: all 0.15s 0.15s linear;
    transition: all 0.15s 0.15s linear;
  }

  .header__burger::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.4rem;
    border-radius: 1rem;
    background-color: #050505;
    -webkit-transition: top 0.15s 0.15s linear, -webkit-transform 0.15s;
    transition: top 0.15s 0.15s linear, -webkit-transform 0.15s;
    transition: transform 0.15s, top 0.15s 0.15s linear;
    transition: transform 0.15s, top 0.15s 0.15s linear, -webkit-transform 0.15s;
  }

  .header__burger::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.4rem;
    border-radius: 1rem;
    background-color: #050505;
    -webkit-transition: bottom 0.15s 0.15s linear, -webkit-transform 0.15s;
    transition: bottom 0.15s 0.15s linear, -webkit-transform 0.15s;
    transition: transform 0.15s, bottom 0.15s 0.15s linear;
    transition: transform 0.15s, bottom 0.15s 0.15s linear, -webkit-transform 0.15s;
  }

  .header__burger span {
    display: inlile-block;
    width: 100%;
    height: 0.4rem;
    border-radius: 1rem;
    background-color: #050505;
    -webkit-transition: all 0.15s linear;
    transition: all 0.15s linear;
  }

  .header__burger-content {
    position: fixed;
    top: 9rem;
    left: -100%;
    width: 100%;
    min-height: 100%;
    padding: 2rem;
    padding-top: 4.6rem;
    background-color: #eaeaea;
  }

  .header__burger-content._show {
    left: 0;
    -webkit-transition: all 0.15s linear;
    transition: all 0.15s linear;
  }

  .footer__container {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8rem;
  }

  .footer__right {
    width: 100%;
  }

  .footer__right .right__top {
    margin-bottom: 4rem;
  }

  .footer__center .center__list-left,
  .footer__center .center__list-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }

  .footer__left .left__list-left,
  .footer__left .left__list-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }

  .footer__list-title {
    margin-bottom: 0;
  }

  .footer__list-center {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (32.4rem)[2];
    grid-template-columns: repeat(2, 32.4rem);
    gap: 6rem;
  }

  .footer__list-left {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (32.4rem)[2];
    grid-template-columns: repeat(2, 32.4rem);
    gap: 6rem;
  }

  .footer__item._desc {
    display: none;
  }

  .footer__item._mob {
    display: block;
  }

  .baner-main__container {
    height: auto;
  }

  .baner-main__employees {
    display: none;
  }

  .baner-main__heading {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: static;
    margin-bottom: 51rem;
  }

  .baner-main__heading .heading__subtitle {
    margin-bottom: 2.4rem;
  }

  .baner-main__heading .heading__line {
    width: 22.8rem;
    margin-bottom: 2.4rem;
  }

  .baner-main__heading .heading__title {
    max-width: 57rem;
    text-align: center;
  }

  .baner-main__robot {
    width: 67.6rem;
    position: absolute;
    top: 34rem;
    left: 3.5rem;
    z-index: -1;
  }

  .baner-main__robot img._desc {
    display: none;
  }

  .baner-main__robot img._mob {
    display: block;
  }

  .baner-main__informations {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 4rem;
    position: static;
    margin-bottom: 8.4rem;
  }

  .baner-main__support-panel {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 33.2rem;
    height: 32.2rem;
    background-image: url("../img/sections/baner-main/baner-main-support-panel-mob.svg");
    padding: 3rem;
  }

  .baner-main__support-panel .support-panel__title {
    font-size: 2.8rem;
    margin-bottom: 0;
  }

  .baner-main__white-panel {
    width: 33.6rem;
    height: 32.6rem;
    background-image: url("../img/sections/baner-main/baner-main-white-panel-mob.svg");
    padding: 3rem;
    margin-top: 0;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .baner-main__white-panel .white-panel__icon {
    width: 8rem;
    height: 8rem;
    margin-bottom: 0;
    position: absolute;
    top: 0;
    right: 0;
  }

  .baner-main__white-panel .white-panel__icon > svg {
    width: 5rem;
    height: 5rem;
  }

  .baner-main__white-panel .white-panel__title {
    display: none;
  }

  .baner-main__white-panel .white-panel__services {
    display: none;
  }

  .baner-main__white-panel .white-panel__btn {
    position: static;
  }

  .baner-main__white-panel .white-panel__btn .component--green-btn {
    padding: 3.2rem 6rem;
  }

  .baner-main__links {
    max-width: 100%;
    position: static;
  }

  .baner-main__socials {
    display: none;
  }

  .baner-main__decoration-text {
    display: none;
  }

  .baner-main__decoration-btn {
    position: absolute;
    top: 7.8rem;
    right: 12rem;
    pointer-events: none;
  }

  .baner-main__decoration-btn .decoration-btn__button {
    display: none;
  }

  .baner-main__slide {
    display: none;
  }

  .baner-teams__head {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 8rem;
  }

  .baner-teams__title {
    width: 100%;
    line-height: 120%;
  }

  .baner-teams__title .stroke-panel::before {
    height: 80%;
  }

  .baner-teams__title p:nth-child(2) {
    padding-left: 0;
  }

  .baner-teams__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 7.2rem;
  }

  .baner-teams__content .content-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4.8rem;
    margin-top: 0;
  }

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

  .baner-teams__content .content-left__icon-box {
    width: 10rem;
    height: 10rem;
  }

  .baner-teams__content .content-left__icon-box > svg {
    width: 6.4rem;
    height: 6.4rem;
  }

  .baner-teams__content .content-left__btn._desc {
    display: none;
  }

  .baner-teams__content .content-left__btn._mob {
    display: block;
  }

  .baner-teams__content .content-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6rem;
    padding-bottom: 10.5rem;
  }

  .baner-teams__content .content-right__image {
    height: 20.4rem;
    background-size: cover;
    padding: 2rem;
  }

  .baner-teams__content .content-right__decoration {
    width: 13.6rem;
    height: 13.6rem;
    top: -7rem;
    left: calc(100% - 13.6rem);
  }

  .baner-teams__content .content-right__icon-box {
    width: 8rem;
    height: 8rem;
  }

  .baner-teams__content .content-right__icon-box > svg {
    width: 5rem;
    height: 5rem;
  }

  .baner-teams__content .content-right__experiences {
    position: static;
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 6rem;
  }

  .baner-teams__content .content-right__experiences-left {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .baner-teams__content .content-right__experience {
    padding: 2rem 4.4rem;
    border-radius: 20rem;
  }

  .baner-teams__content .content-right__experience-panel {
    width: 69rem;
    height: 24.4rem;
    padding: 4rem;
    background-image: url("../img/sections/baner-teams/baner-teams-panel-mob.svg");
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .baner-teams__content .content-right__experience-panel .experience-panel__title {
    margin-bottom: 2.4rem;
  }

  .baner-teams__content .content-right__experience-panel .experience-panel__image {
    width: 22rem;
    margin-top: 8rem;
  }

  .baner-teams__content .content-right__experience-panel .experience-panel__icon {
    display: none;
  }

  .baner-teams__content .content-right__experience-panel .experience-panel__icon-box {
    width: 8rem;
    height: 8rem;
    top: -2rem;
    right: -2rem;
  }

  .baner-teams__content .content-right__experience-panel .experience-panel__icon-box > svg {
    width: 4.2rem;
    height: 4.2rem;
  }

  .baner-services__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 8rem;
  }

  .baner-services__content .content-right {
    gap: 8rem;
  }

  .baner-services__content .content-right__inner {
    padding: 0;
    border: none;
  }

  .baner-services__content .content-right__our-purpose {
    gap: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-left: 0;
  }

  .baner-services__content .content-right__our-purpose .our-purpose__title {
    margin-bottom: 2rem;
  }

  .baner-services__content .content-right__our-purpose .our-purpose__information {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 54.8rem;
  }

  .baner-services__content .content-right__our-purpose .our-purpose__image {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 12.4rem;
    height: 22.4rem;
    border-radius: 0%;
    background-image: url("../img/sections/baner-services/baner-services-dec-mob.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }

  .baner-services__content .content-left {
    position: relative;
  }

  .baner-services__content .content-left__white-panel {
    display: none;
  }

  .baner-services__content .content-left__robot-panel {
    display: none;
  }

  .baner-services__content .content-left__green-panel {
    width: 100%;
    height: 34.4rem;
    position: static;
    background-image: none;
    padding: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2rem;
  }

  .baner-services__content .content-left__circle-panel {
    display: none;
  }

  .baner-services__content .content-left__box {
    background-color: #03a081;
    border-radius: 4rem;
    padding: 5.6rem 2rem;
  }

  .baner-services__content .content-left__box._el1 {
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .baner-services__content .content-left__box._el2 {
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    -ms-grid-column-align: stretch;
        justify-self: stretch;
    width: 100%;
  }

  .baner-services__content .content-left__icon-box {
    margin-bottom: 1.6rem;
  }

  .baner-services__content .content-left__icon-box > svg {
    width: 9.2rem;
    height: 9.2rem;
  }

  .baner-services__content .content-left__title {
    color: #ffffff;
    font-family: NeueMachina;
  }

  .baner-services__content .content-left__text {
    color: #ffffff;
  }

  .baner-services__content .content-left__text._el1 {
    text-align: left;
  }

  .baner-services__content .content-left__text._el2 {
    text-align: left;
  }

  .baner-services__content .content-left__image {
    width: 22rem;
    margin-top: 3rem;
  }

  .baner-services__content .content-left__btn {
    margin-top: 2.2rem;
  }

  .baner-services__content .content-left__btn .arrow-btn__text {
    color: #ffffff;
  }

  .baner-services__content .content-left__btn .arrow-btn__icon path {
    fill: #ffffff;
    stroke: #ffffff;
  }

  .baner-services__title {
    width: 100%;
  }

  .baner-services__title::before {
    content: "";
    width: 9.2rem;
    height: 8.2rem;
    background-image: url("../img/sections/baner-services/baner-services-green-spot.webp");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .baner-services__text {
    width: 100%;
    margin-bottom: 6rem;
  }

  .baner-services__statistic {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    overflow: hidden;
    padding-right: 2rem;
    margin-right: -2rem;
  }

  .baner-services__statistic .statistic__boxes {
    width: 73rem;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 2rem;
    overflow-x: auto;
    padding-right: 2rem;
  }

  .baner-services__statistic .statistic__boxes::-webkit-scrollbar {
    display: none;
  }

  .baner-services__statistic .statistic__box {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
  }

  .baner-services__statistic .statistic__element {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 1.4rem 2.2rem;
    border: 1px solid rgba(119, 119, 119, 0.4);
    border-radius: 10rem;
  }

  .baner-services__statistic .statistic__icon {
    display: none;
  }

  .baner-details-services__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    gap: 8rem;
  }

  .baner-details-services__content .content-left {
    margin-top: 0;
  }

  .baner-details-services__content .content-right {
    position: static;
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .baner-details-services__title {
    margin-bottom: 4rem;
  }

  .baner-details-services__text {
    margin-bottom: 4rem;
  }

  .baner-details-services__links {
    margin-bottom: 8rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }

  .baner-details-services__links .component--green-btn {
    padding: 3.2rem 4.6rem;
  }

  .baner-details-services__accordion {
    position: static;
  }

  .baner-details-services__accordion .baner-services-accordion__element {
    width: 100%;
    padding: 1rem 1rem 1rem 4.8rem;
    border-radius: 4rem;
  }

  .baner-details-services__accordion .baner-services-accordion__icon {
    width: 4.8rem;
    height: 4.8rem;
  }

  .baner-details-services__accordion .baner-services-accordion__inner {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .baner-details-services__accordion .baner-services-accordion__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: 0.8rem;
  }

  .baner-details-services__background {
    width: 71rem;
    height: 21rem;
    position: relative;
    right: 0;
    top: 0;
    background-image: url("../img/sections/baner-details-services/baner-services-bg-mob.svg");
    z-index: 0;
  }

  .baner-details-services__whats-the-benefit {
    width: 100%;
    height: auto;
    background-image: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
    padding: 0;
    margin: 4rem 0;
  }

  .baner-details-services__whats-the-benefit .whats-the-benefit__image {
    display: none;
  }

  .baner-details-services__whats-the-benefit .whats-the-benefit__title {
    font-size: 3.6rem;
  }

  .baner-details-services__whats-the-benefit .whats-the-benefit__texts {
    width: 100%;
  }

  .baner-details-services__swiper-desc {
    display: none;
  }

  .baner-details-services__swiper-mob {
    display: block;
    width: 71rem;
  }

  .baner-details-services__trade {
    width: 8rem;
    height: 8rem;
    right: 0;
    bottom: 0;
  }

  .baner-details-services__trade img {
    width: 4.2rem;
    height: 4.2rem;
  }

  .baner-details-services__trade._desc {
    display: none;
  }

  .baner-details-services__trade._mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .baner-details-services__slide {
    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;
  }

  .baner-details-services__slide .baner-services-swiper__numbering {
    display: none;
  }

  .baner-details-services__slide .baner-services-swiper__element {
    width: 58rem;
    border-radius: 8rem;
    border: none;
    background-color: #ffffff;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    padding: 1rem;
  }

  .baner-details-services__slide .baner-services-swiper__inner {
    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: 1rem 1rem 1rem 3rem;
    border-radius: 4rem;
    background-color: #fff;
  }

  .baner-details-services__slide .baner-services-swiper__icon {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background-color: #03a081;
    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;
  }

  .baner-details-services__slide .baner-services-swiper__icon > svg {
    width: 3.2rem;
    height: 3.2rem;
  }

  .baner-details-services__pagination {
    display: none;
  }

  .baner-articles__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .baner-articles__content .content-decoration {
    width: 100%;
    height: 43.6rem;
    background-image: url("../img/sections/baner-articles/baner-articles-bg-white-panel-mob.webp");
    position: relative;
  }

  .baner-articles__content .content-decoration._desc {
    display: none;
  }

  .baner-articles__content .content-decoration._mob {
    display: block;
    margin-bottom: 18rem;
  }

  .baner-articles__content .content-decoration__green-panel {
    width: 18rem;
    height: 18rem;
    border-radius: 4rem;
    top: 0;
    left: 23rem;
  }

  .baner-articles__content .content-decoration__robot-panel {
    width: 21rem;
    height: 25.4rem;
    background-image: url("../img/sections/baner-articles/baner-articles-robot-panel-mob.webp");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
  }

  .baner-articles__content .content-decoration__white-panel {
    display: none;
  }

  .baner-articles__content .content-decoration__content-panel {
    width: 34.8rem;
    height: 21.6rem;
    border-radius: 4rem;
    padding: 3rem 1rem 3rem 3rem;
    background-image: url("../img/sections/baner-articles/baner-articles-content-panel-mob.webp");
    bottom: 0;
    right: 1.8rem;
  }

  .baner-articles__content .content-decoration__content-panel .component--arrow-btn .arrow-btn__icon path {
    fill: #ffffff;
  }

  .baner-articles__count {
    display: none;
  }

  .baner-articles__title {
    margin-bottom: 4rem;
  }

  .baner-articles__text {
    max-width: 100%;
    margin-bottom: 4.4rem;
  }

  .baner-articles__contacts {
    gap: 2.4rem;
    margin-bottom: 8rem;
  }

  .baner-articles__services {
    width: 100%;
    height: 21.8rem;
    margin-top: 10rem;
    background-image: url("../img/sections/baner-articles/baner-articles-white-panel-mob.svg");
  }

  .baner-articles__services-element {
    padding: 3rem 2rem;
    width: 20rem;
    height: 25.8rem;
  }

  .baner-articles__services-element._el1 {
    left: 2rem;
    bottom: 6rem;
  }

  .baner-articles__services-element._el2 {
    left: 24rem;
    bottom: 2rem;
  }

  .baner-articles__services-link {
    top: -10rem;
    left: 48.8rem;
  }

  .baner-articles__services-link .component--arrow-btn .arrow-btn__text {
    width: 9.6rem;
  }

  .baner-company__content {
    height: auto;
    position: relative;
  }

  .baner-company__head {
    position: relative;
  }

  .baner-company__hand {
    position: absolute;
    top: -10rem;
    right: -2rem;
    width: 24rem;
    height: 35rem;
    background-image: url("../img/sections/baner-company/baner-company-hand-mob.svg");
  }

  .baner-company__title {
    width: 100%;
    position: static;
  }

  .baner-company__title .stroke-panel::before {
    height: 80%;
  }

  .baner-company__title span._desc {
    display: none;
  }

  .baner-company__title span._mob {
    display: inline-block;
  }

  .baner-company__decoration {
    display: none;
  }

  .baner-company__background {
    width: 55.4rem;
    top: -17rem;
    right: -2rem;
  }

  .baner-company__background ._desc {
    display: none;
  }

  .baner-company__background ._mob {
    display: block;
  }

  .baner-company__green-panel {
    width: 100%;
    height: 48.8rem;
    padding: 8rem 4rem 4rem;
    background-image: url("../img/sections/baner-company/baner-company-green-panel-mob.svg");
    position: relative;
    left: 0;
    margin-bottom: 8rem;
  }

  .baner-company__green-panel .green-panel__title {
    margin-bottom: 3.2rem;
    line-height: normal;
  }

  .baner-company__green-panel .green-panel__title._desc {
    display: none;
  }

  .baner-company__green-panel .green-panel__title._mob {
    font-family: NeueMachina;
    display: block;
  }

  .baner-company__green-panel .green-panel__text {
    width: 100%;
    margin-bottom: 3.2rem;
  }

  .baner-company__green-panel .green-panel__icon-box {
    width: 8rem;
    height: 8rem;
    top: 2rem;
    left: calc(100% - 10rem);
  }

  .baner-company__green-panel .green-panel__circle {
    display: none;
  }

  .baner-company__green-panel .green-panel__btn .component--green-btn {
    background-color: #ffffff;
  }

  .baner-company__green-panel .green-panel__btn .component--green-btn p {
    color: #050505;
  }

  .baner-company__white-panel {
    width: 100%;
    height: 28rem;
    background-image: url("../img/sections/baner-company/baner-company-white-panel-mob.svg");
    padding: 4rem 5.2rem 8rem;
    position: static;
    margin-bottom: 6rem;
  }

  .baner-company__white-panel .white-panel__title {
    font-family: NeueMachina;
  }

  .baner-company__icon-panel {
    display: none;
  }

  .baner-company__spot-panel {
    display: none;
  }

  .baner-company__links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.2rem;
    position: static;
  }

  .baner-company__links-element {
    width: 8.8rem;
    height: 8.8rem;
  }

  .baner-company__links-element._whatsapp > svg {
    width: 4.2rem;
    height: 4.2rem;
  }

  .baner-company__links-element._gmail > svg {
    width: 4.2rem;
    height: 4.2rem;
  }

  .baner-company__links-element._telegram {
    padding-right: 1rem;
  }

  .baner-company__links-element._telegram > svg {
    width: 4.2;
    height: 3.6rem;
  }

  .baner-company__contact-us {
    position: static;
  }

  .baner-company__contact-us .component--contact-us {
    width: 38rem;
  }

  .baner-company__contact-us._desc {
    display: none;
  }

  .baner-company__contact-us._mob {
    display: block;
  }

  .baner-company__guarantee {
    display: none;
  }

  .baner-company__experience {
    display: none;
  }

  .baner-company__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10rem;
  }

  .baner-company__footer::before {
    display: none;
  }

  .baner-company__footer::after {
    display: none;
  }

  .baner-company__footer-element {
    gap: 4rem;
    position: relative;
  }

  .baner-company__footer-element._el1 {
    padding-left: 5rem;
  }

  .baner-company__footer-element._el1::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: calc(100% + 2rem);
    height: calc(100% + 8rem);
    border-top: 1px solid #03a081;
    border-bottom: 1px solid #03a081;
    border-left: 1px solid #03a081;
    border-top-left-radius: 4rem;
    border-bottom-left-radius: 4rem;
  }

  .baner-company__footer-element._el2 {
    padding-left: 4rem;
    gap: 6rem;
  }

  .baner-company__footer-element._el2::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: calc(100% + 2rem);
    height: calc(100% + 4rem);
    border-top: 1px solid #03a081;
    border-bottom: 1px solid #03a081;
    border-right: 1px solid #03a081;
    border-top-right-radius: 4rem;
    border-bottom-right-radius: 4rem;
  }

  .baner-company__footer-text {
    gap: 2rem;
  }

  .baner-company__footer-icon {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    display: block;
    width: 10rem;
    height: 10rem;
  }

  .baner-reviews__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    gap: 8rem;
    margin-bottom: 0;
  }

  .baner-reviews__content .content-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .baner-reviews__content .content-right {
    position: relative;
    height: 38rem;
    margin-top: 4rem;
  }

  .baner-reviews__content .content-right__background {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 63rem;
    height: 38rem;
    background-image: url("../img/sections/baner-reviews/baner-reviews-bg-mob.webp");
  }

  .baner-reviews__content .content-right__green-panel {
    position: absolute;
    top: -4rem;
    left: 5rem;
    right: 0;
    width: 32rem;
    height: 15rem;
    background-image: url("../img/sections/baner-reviews/baner-reviews-green-panel-mob.svg");
  }

  .baner-reviews__content .content-right__reviews-panel {
    position: absolute;
    top: -4rem;
    left: 30rem;
    padding: 3rem;
    border-radius: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }

  .baner-reviews__content .content-right__reviews-panel .reviews-panel__image {
    width: 15rem;
  }

  .baner-reviews__content .content-right__reviews-panel .reviews-panel__text {
    width: 35rem;
  }

  .baner-reviews__content .content-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 8rem;
  }

  .baner-reviews__title {
    margin-bottom: 4rem;
  }

  .baner-reviews__text {
    margin-bottom: 4rem;
  }

  .baner-reviews__statistic {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .baner-reviews__statistic._desc {
    display: none;
  }

  .baner-reviews__statistic .statistic__element {
    max-width: 30.2rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-height: 16rem;
    padding: 0 7.4rem;
    padding-top: 1.8rem;
  }

  .baner-reviews__statistic .statistic__element:first-child {
    padding-left: 2rem;
  }

  .baner-reviews__statistic .statistic__element:last-child {
    padding-right: 2rem;
  }

  .baner-reviews__support-panel {
    position: static;
    width: 100%;
    height: auto;
    background-image: none;
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 1rem;
  }

  .baner-reviews__support-panel._desc {
    display: none;
  }

  .baner-reviews__support-panel .support__texts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
  }

  .baner-reviews__support-panel .support__line {
    width: 6.4rem;
    height: 0.2rem;
    background-color: #03a081;
  }

  .baner-reviews__support-panel .support__text._mob {
    display: none;
  }

  .baner-reviews__support-panel .support__btn .component--green-btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .IT-support__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .IT-support__content .content-right {
    max-width: 100%;
  }

  .IT-support__content .content-left {
    max-width: 100%;
    padding-top: 0;
  }

  .IT-support__experience {
    max-width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 8rem;
  }

  .IT-support__experience .experience__title {
    font-size: 3.6rem;
  }

  .IT-support__experience .experience__content {
    margin-bottom: 0;
  }

  .IT-support__experience .experience__images {
    width: 30rem;
  }

  .IT-support__quote {
    gap: 3.6rem;
    margin-bottom: 4rem;
  }

  .IT-support__quote .quote__text {
    font-size: 3.6rem;
  }

  .IT-support__quote .quote__author {
    gap: 3.4rem;
  }

  .IT-support__quote .quote__author span {
    width: 11.2rem;
    height: 0.3rem;
  }

  .IT-support__title {
    margin-bottom: 4rem;
  }

  .IT-support__title._desc {
    display: none;
  }

  .IT-support__title._mob {
    display: block;
  }

  .IT-support__texts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
  }

  .IT-support__text-left,
  .IT-support__text-right {
    max-width: 100%;
  }

  .IT-support__btn {
    right: 0;
  }

  .our-advantages__container {
    padding-right: 0;
  }

  .our-advantages__content {
    overflow: hidden;
  }

  .our-advantages__list {
    overflow: auto;
    gap: 2rem;
    padding-right: 2rem;
  }

  .our-advantages__list::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .our-services__head .component--arrow-btn {
    display: none;
  }

  .our-services__head .component--green-btn {
    display: none;
  }

  .our-services__container {
    padding-right: 0;
  }

  .our-services__content {
    overflow: hidden;
  }

  .our-services__decoration-panel {
    display: none;
  }

  .our-services__list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow: auto;
    padding-right: 2rem;
  }

  .our-services__list::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .our-articles__container {
    padding-right: 0;
    padding-left: 0;
  }

  .our-articles__controls {
    display: none;
  }

  .our-teams__container {
    padding-right: 0;
    padding-left: 0;
  }

  .our-teams__controls {
    display: none;
  }

  .our-letters__container {
    padding-right: 0;
    padding-left: 0;
  }

  .our-letters__title._desc {
    display: none;
  }

  .our-letters__title._mob {
    display: block;
  }

  .our-letters__controls {
    display: none;
  }

  .our-contacts__map {
    width: 71rem;
    height: 101rem;
  }

  .our-contacts__container {
    padding-bottom: 66rem;
  }

  .our-contacts__informations {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4.2rem;
    width: 75rem;
    height: 83.2rem;
    padding: 16.4rem 14.4rem 8rem;
    background-image: url("../img/sections/our-contacts/our-contacts-bg-mob.svg");
    left: -2rem;
    bottom: -66rem;
  }

  .our-contacts__element {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }

  .our-contacts__subtitle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .our-contacts__icon-box {
    width: 4rem;
    height: 4rem;
  }

  .our-contacts__icon-box._desc {
    display: none;
  }

  .our-contacts__icon-box._mob {
    display: block;
  }

  .our-contacts__icon {
    width: 4rem;
    height: 4rem;
  }

  .our-contacts__text._wrap {
    text-wrap: nowrap;
  }

  .our-contacts__text._size {
    width: 100%;
  }

  .our-contacts__panel {
    width: 34.8rem;
    height: 5rem;
    background-image: url("../img/sections/our-contacts/our-contacts-panel-mob.svg");
  }

  .our-clients__swiper._desc {
    display: none;
  }

  .our-clients__swiper._mob {
    display: block;
  }

  .our-clients__controls {
    display: none;
  }

  .our-clients__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 10rem;
    margin-bottom: 8rem;
  }

  .prices-list__btn._desc {
    display: none;
  }

  .prices-list__btn._mob {
    display: block;
  }

  .prices-list__content {
    margin-bottom: 8rem;
  }

  .prices-list-accordion__head {
    padding: 4rem 3rem;
  }

  .prices-list-accordion__inner {
    padding: 0 3rem 4rem;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 4rem;
  }

  .prices-list-accordion__icon {
    width: 6rem;
    height: 6rem;
  }

  .prices-list-accordion__title {
    max-width: 40rem;
  }

  .prices-list-accordion__btn {
    width: 8rem;
    height: 8rem;
    border: 0.3rem solid #03a081;
  }

  .prices-list-accordion__arrow {
    width: 3.8rem;
    height: 3.8rem;
  }

  .cost-calculation-accordion__result {
    display: none;
  }

  .cost-calculation-accordion__title {
    max-width: 53rem;
  }

  .prices-list-accordion__title._cost-calculation-accordion {
    -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;
    gap: 3rem;
  }

  .prices-list-accordion__icon._cost-calculation-accordion._desc {
    display: none;
  }

  .prices-list-accordion__icon._cost-calculation-accordion._mob {
    display: block;
  }

  .prices-list-accordion__head._cost-calculation-accordion {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .total-calculation__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .total-calculation__content .content-left {
    -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;
    gap: 4rem;
    padding: 4rem 3rem;
  }

  .total-calculation__content .content-left::before {
    width: 100%;
    height: 1rem;
    top: 97.45%;
    right: 0;
    border-right: none;
    border-bottom: 0.3rem dashed #03a081;
  }

  .total-calculation__title {
    margin-bottom: 2.4rem;
  }

  .total-calculation__btn {
    -webkit-box-flex: 1;
        -ms-flex: 1 0;
            flex: 1 0;
  }

  .total-calculation__btn .component--green-btn {
    width: 100%;
  }

  .choose-tariffs__element {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 4rem 3rem;
  }

  .choose-tariffs__description {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 4rem 0;
    border-left: none;
    border-right: none;
    border-top: 0.5px solid #03a081;
    border-bottom: 0.5px solid #03a081;
  }

  .choose-tariffs__btn .component--green-btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .basic-direction__container {
    padding-left: 0;
    padding-right: 0;
  }

  .basic-direction__controls {
    display: none;
  }

  .basic-direction__element {
    width: 57.6rem;
    height: 74.4rem;
  }

  .basic-direction__numbering {
    width: 14rem;
    height: 14rem;
    padding: 2rem 0;
  }

  .reliable-professional__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12rem;
  }

  .reliable-professional__content .content-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6rem;
  }

  .reliable-professional__content .content-top__right {
    width: 100%;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }

  .reliable-professional__content .content-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 6rem;
  }

  .reliable-professional__content .content-bottom__left {
    width: 100%;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }

  .reliable-professional__content .content-bottom__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 4rem;
  }

  .reliable-professional__image-box {
    width: 71rem;
    height: 37.2rem;
  }

  .reliable-professional__image-box._top {
    background-image: url("../img/sections/reliable-professional/rp-bg-top-mob.webp");
  }

  .reliable-professional__image-box._bottom {
    background-image: url("../img/sections/reliable-professional/rp-bg-bottom-mob.webp");
  }

  .reliable-professional__image-text {
    font-size: 3.6rem;
  }

  .reliable-professional__image-text._top {
    padding-right: 2rem;
    padding-bottom: 1rem;
  }

  .reliable-professional__image-text._bottom {
    padding-left: 2rem;
    padding-top: 1rem;
  }

  .reliable-professional__decoration {
    display: none;
  }

  .reliable-professional__title {
    margin-bottom: 4.4rem;
  }

  .reliable-professional__btn._top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .service-price__content-inner {
    padding: 0 3rem 4rem;
  }

  .service-price__content-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-bottom: 8rem;
  }

  .service-price__content-icon > svg {
    width: 8rem;
    height: 8rem;
  }

  .service-price__content-btn._desc {
    display: none;
  }

  .service-price__content-btn._mob {
    display: inline-block;
    margin-top: 4rem;
  }

  .service-price__content-result {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .prices-list-accordion__title._ask-questions {
    max-width: 100%;
    font-size: 4.4rem;
  }

  .ask-questions__decoration {
    display: none;
  }

  .completing-tasks__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .completing-tasks__content .content-left {
    width: 100%;
    padding: 4.6rem 2rem 4rem 4.6rem;
    background-image: url("../img/sections/completing-tasks/completing-tasks-bg-mob.svg");
  }

  .completing-tasks__content .content-right {
    width: 100%;
  }

  .completing-tasks__box._v1 {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .completing-tasks__box._v2 {
    gap: 6.4rem;
  }

  .completing-tasks__image {
    width: 29rem;
    height: 29.6rem;
  }

  .completing-tasks__image > img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 29.6rem;
    border-radius: 4rem;
  }

  .completing-tasks__title {
    width: 100%;
  }

  .component--services._completing-tasks {
    width: 56rem;
    height: 41.4rem;
  }

  .component--services._completing-tasks .services__background--mobile {
    width: 56rem;
    height: 41.4rem;
  }

  .component--services._completing-tasks .services__content {
    width: 50rem;
    height: 35rem;
    top: 3rem;
    left: 3rem;
  }

  .what-includes__head {
    width: 100%;
    margin-bottom: 8rem;
  }

  .what-includes__title {
    margin-bottom: 4rem;
  }

  .what-includes__text {
    width: 100%;
  }

  .what-includes__content {
    -ms-grid-columns: 71rem;
    grid-template-columns: 71rem;
    gap: 10rem;
  }

  .what-includes__content .content-right__text {
    margin-bottom: 4rem;
  }

  .what-includes__controls {
    display: none;
  }

  .what-includes-swiper {
    margin-bottom: 4rem;
  }

  .what-includes__slide {
    width: 58rem;
    height: 52.8rem;
    border-radius: 4rem;
    padding: 2rem;
  }

  .what-includes__slide._v1::before {
    background: url("../img/sections/what-includes/what-includes-bg-v1.webp") center center no-repeat;
    background-size: cover;
  }

  .what-includes__slide._v2::before {
    background: url("../img/sections/what-includes/what-includes-bg-v2.webp") center center no-repeat;
    background-size: cover;
  }

  .what-includes__slide._v3::before {
    background: url("../img/sections/what-includes/what-includes-bg-v3.webp") center center no-repeat;
    background-size: cover;
  }

  .what-includes__slide .what-includes-swiper__icon {
    width: 12rem;
    height: 12rem;
  }

  .what-includes__slide .what-includes-swiper__icon img {
    width: 6.4rem;
    height: 6.4rem;
  }

  .what-includes__slide .what-includes-swiper__text {
    padding: 1.6rem 4.8rem;
  }

  .article-info__head {
    margin-bottom: 4rem;
  }

  .article-info__head._desc {
    display: none;
  }

  .article-info__head._mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .article-info__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 7rem;
    padding: 3rem;
  }

  .article-info__content::before {
    width: 71rem;
    height: 20rem;
  }

  .article-info__title {
    font-size: 8rem;
    margin-bottom: 6rem;
    line-height: 104%;
  }

  .article-info__btn {
    width: 11rem;
    height: 11rem;
    border-bottom-right-radius: 4rem;
  }

  .article-info__btn::before {
    width: 4rem;
    height: 4rem;
  }

  .article-info__btn::after {
    width: 4rem;
    height: 4rem;
  }

  .article-info__image {
    width: 100%;
    margin-bottom: 6rem;
  }

  .article-info__list .list-item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .article-info__time .time-value {
    font-size: 2.8rem;
    padding: 1.2rem 2.2rem 1rem;
  }

  .article-info__time .time-value > span {
    display: none;
  }

  .article-info__time .time-icon {
    width: 6rem;
    height: 6rem;
  }

  .article-info__time .time-icon > svg {
    width: 3.2rem;
    height: 3.2rem;
  }

  .article-info__texts {
    gap: 2.4rem;
  }

  .article-info__text._allot {
    font-family: NeueMachina;
    font-size: 4.4rem;
    padding: 3.6rem 0;
    line-height: 110%;
  }

  .article-info__text._size {
    width: 100%;
  }

  .order-callback._company .company-callback__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 8rem;
    position: static;
    margin-bottom: 16rem;
  }

  .order-callback._company .company-callback__content .content-left {
    padding-left: 0;
  }

  .order-callback._company .company-callback__content .content-left__decoration {
    display: none;
  }

  .order-callback._company .company-callback__content .content-left__white-panel {
    width: 100%;
    height: 24.4rem;
    background-image: url("../img/sections/order-callback/company-callback-white-panel-mob.svg");
    padding: 4rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 3.6rem 2rem 0 0;
  }

  .order-callback._company .company-callback__content .content-left__white-panel .white-panel__title {
    margin-bottom: 2.4rem;
  }

  .order-callback._company .company-callback__content .content-left__white-panel .white-panel__img {
    width: 24rem;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .order-callback._company .company-callback__content .content-left__white-panel .white-panel__img ._desc {
    display: none;
  }

  .order-callback._company .company-callback__content .content-left__white-panel .white-panel__img ._mob {
    display: block;
  }

  .order-callback._company .company-callback__content .content-left__white-panel .white-panel__btn {
    top: -2rem;
    right: -1.6rem;
  }

  .order-callback._company .company-callback__content .content-right {
    width: 100%;
    gap: 3.2rem;
    padding-bottom: 0;
    border-bottom: none;
    margin-top: 0;
  }

  .order-callback._company .order-callback__container {
    padding-top: 0;
  }

  .order-callback._company .order-callback__head {
    margin-bottom: 4rem;
  }

  .order-callback._company .order-callback__content {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 8rem;
  }

  .order-callback._company .order-callback__content .content-right {
    padding-bottom: 0;
  }

  .order-callback._company .order-callback__box {
    gap: 4rem;
  }

  .order-callback__head {
    width: 100%;
    margin-bottom: 4rem;
  }

  .order-callback__slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 28rem;
    padding: 3rem 2rem;
  }

  .order-callback__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 8rem;
  }

  .order-callback__content .content-left {
    width: 100%;
    height: 50rem;
    background-image: url("../img/sections/order-callback/order-callback-bg-mob.webp");
    padding: 6rem;
    gap: 7.2rem;
  }

  .order-callback__content .content-left__panel {
    width: 33.6rem;
    height: 28rem;
    background-image: url("../img/sections/order-callback/order-callback-panel-mob.svg");
    padding: 0;
    position: relative;
  }

  .order-callback__content .content-left__icon-box {
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    margin-bottom: 0;
  }

  .order-callback__content .content-left__icon-box > svg {
    width: 4.8rem;
    height: 4.8rem;
  }

  .order-callback__content .content-left__data {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    width: 29.6rem;
    height: 10rem;
    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: 0;
    border: none;
    border-radius: 10rem;
    color: #ffffff;
    font-size: 2.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background-color: #03a081;
    margin-bottom: 0;
    text-align: center;
  }

  .order-callback__content .content-left__data br {
    display: block;
  }

  .order-callback__content .content-left__btn {
    display: none;
  }

  .order-callback__title {
    margin-bottom: 4rem;
  }

  .order-callback__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
  }

  .order-callback__inputs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }

  .order-callback__textarea {
    display: none;
  }

  .order-callback__textarea._popup {
    display: block;
    height: 30rem;
    border-radius: 4rem;
  }

  .order-callback__box {
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 4rem;
  }

  .order-callback__policy {
    width: 100%;
  }

  .providing-solutions__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6rem;
  }

  .providing-solutions__quote {
    gap: 5.8rem;
    padding: 4rem 0;
    margin-bottom: 6rem;
  }

  .providing-solutions__quote-image {
    width: 32rem;
    border-radius: 10rem;
  }

  .providing-solutions__quote-image img._desc {
    display: none;
  }

  .providing-solutions__quote-image img._mob {
    display: block;
  }

  .providing-solutions__controls {
    display: none;
  }

  .providing-solutions__slide {
    width: 58rem;
    height: 49.6rem;
    padding: 3rem;
  }

  .providing-solutions__slide:hover .providing-solutions__spot {
    -webkit-transform: scale(1.23);
        -ms-transform: scale(1.23);
            transform: scale(1.23);
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  }

  .providing-solutions__icon-box > svg {
    width: 6rem;
    height: 6rem;
  }

  .providing-solutions__spot {
    top: 5rem;
    left: 5rem;
  }

  .providing-solutions__spot-image {
    width: 22rem;
  }

  .providing-solutions__spot-effect {
    width: 8.5rem;
  }

  .providing-solutions__btn._desc {
    display: none;
  }

  .providing-solutions__btn._mob {
    display: block;
  }

  .freelancer__swiper {
    width: 100%;
  }

  .freelancer__slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
  }

  .freelancer__element {
    width: 100%;
    height: auto;
    padding: 4rem;
  }

  .freelancer__element .element__panel {
    padding: 2.8rem 0;
    border-radius: 4rem;
    margin-bottom: 5.6rem;
  }

  .freelancer__element .element__title {
    margin-bottom: 2.4rem;
  }

  .freelancer__title .stroke-panel::before {
    height: calc(100% + 0.5rem);
  }

  .freelancer__controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 4rem;
  }

  .grid-articles__controls._desc {
    display: none;
  }

  .grid-articles__controls._mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 8rem;
  }

  .grid-teams__controls._desc {
    display: none;
  }

  .grid-teams__controls._mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 8rem;
  }

  .grid-reviews__controls {
    display: none;
  }
}

.webp .baner-articles__content .content-decoration__green-panel{ background-image: url(../img/sections/baner-articles/baner-articles-green-panel.webp); }