:root {
  --font-family: "Rubik", sans-serif;
  --content-width: 1180px;
  --container-offset: 20px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --main-color: #000;
  --secondary-color: #fff;
  --light-green-color: #25bb4f;
  --green-color: #0e8d32;
  --dark-green-color: #086a23;
  --grey-color: #7d8c8f;
}

.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: red solid 2px;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

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

@font-face {
  font-family: Rubik;
  src: url(../fonts/Rubik-Medium.woff2) format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: Rubik;
  src: url(../fonts/Rubik-Bold.woff2) format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

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

@font-face {
  font-family: Geometria;
  src: url(../fonts/Geometria-Bold.woff2) format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

.page {
  height: 100%;
  font-family: var(--font-family);
  -webkit-text-size-adjust: 100%;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 20px;
  line-height: 118.5%;
}

.page__body .main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  -ms-grid-rows: auto 1fr auto;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

.page__body.sidebar--active {
  overflow: hidden;
}

.page__body.sidebar--active .footer,
.page__body.sidebar--active .header,
.page__body.sidebar--active .main {
  -webkit-transform: translateX(-456px);
  -ms-transform: translateX(-456px);
  transform: translateX(-456px);
}

.footer,
.header,
.main {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important;
}

.btn-reset {
  border: none;
  padding: 0;
  background: 0 0;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-right: auto;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}

.input-reset::-webkit-search-cancel-button,
.input-reset::-webkit-search-decoration,
.input-reset::-webkit-search-results-button,
.input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: 0;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.btn {
  display: inline-block;
  font-family: Geometria, sans-serif;
  color: var(--secondary-color);
  padding: 17px 51px;
  background: var(--light-green-color);
  -webkit-box-shadow: 0 2px 42px rgba(37, 187, 79, 0.8);
  box-shadow: 0 2px 42px rgba(37, 187, 79, 0.8);
  border-radius: 74px;
  text-align: center;
  font-weight: 700;
  -webkit-transition: background 0.3s, color 0.3s, border 0.3s;
  -o-transition: background 0.3s, color 0.3s, border 0.3s;
  transition: background 0.3s, color 0.3s, border 0.3s;
  border: 2px solid transparent;
  font-size: 20px;
  line-height: 125%;
  cursor: pointer;
}

.btn--active,
.btn:active {
  background: var(--secondary-color);
  color: var(--light-green-color);
  border: 2px solid var(--light-green-color);
}

.title {
  font-weight: 700;
  font-size: 36px;
  line-height: 119.4444444444%;
  text-align: center;
  margin: 0;
}

.title span {
  color: var(--light-green-color);
}

.subtitle {
  text-align: center;
  margin: 20px 0 0;
}

.page__body.scroll .header {
  background: #fff;
}

.header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  top: 0;
  left: 0;
  font-family: Geometria, sans-serif;
  padding: 20px 0;
  background: #fff;
}

.header__container {
  max-width: 1310px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo {
  margin-right: 37px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.header__menu {
  /*margin-right: 37px;*/
}

.header__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 25px;
}

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

.header__search {
  margin: 0 1em 0 0;
}

.header__search-btn {
  min-height: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__btn:not(:last-child) {
  margin-right: 20px;
}

.header__burger {
  display: none;
}

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

.logo__img {
  width: 140px;
  min-width: 140px;
}

.menu {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

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

.menu__item:not(:last-child) {
  margin-right: 9px;
}

.menu__link {
  display: inline-block;
  padding: 5px;
  font-size: 15px;
  line-height: 125.8%;
  text-align: center;
  color: var(--main-color);
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
}

.menu__link--attention {
  font-weight: 700;
  color: #25bb4f;
  text-transform: uppercase;
}

.social__img {
  width: 25px;
  min-width: 25px;
  height: 25px;
}

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

.social__link--active path,
.social__link:active path {
  fill: var(--grey-color);
}

.social__link path {
  -webkit-transition: fill 0.3s;
  -o-transition: fill 0.3s;
  transition: fill 0.3s;
}

.social__link:not(:last-child) {
  margin-right: 20px;
}

.social__text {
  display: inline-block;
  color: #000;
  margin-left: 7px;
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.btn-menu--light {
  font-size: 15px;
  line-height: 126.6666666667%;
  text-align: center;
  text-transform: uppercase;
  color: var(--light-green-color);
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
}

.btn-menu {
  font-size: 15px;
  line-height: 126.6666666667%;
  text-align: center;
  color: var(--secondary-color);
  padding: 12px 47px;
  background: var(--light-green-color);
  border-radius: 6px;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}

.btn-menu--active,
.btn-menu:active {
  background: var(--grey-color);
}

.sidebar {
  height: 100%;
  width: 100%;
  max-width: 456px;
  background: var(--light-green-color);
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  padding: 30px 40px;
  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: end;
  -ms-flex-align: end;
  align-items: flex-end;
  background-image: url(../img/sidebar-bg.svg);
  background-repeat: no-repeat;
  background-size: 236px;
  background-position: -100px calc(100% + 72px);
  -webkit-transition: right 0.5s;
  -o-transition: right 0.5s;
  transition: right 0.5s;
  -webkit-transform: translateX(456px);
  -ms-transform: translateX(456px);
  transform: translateX(456px);
  -webkit-transition: max-width 0.5s, visibility 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, max-width 0.5s, visibility 0.5s, -webkit-transform 0.5s;
  -o-transition: transform 0.5s, max-width 0.5s, visibility 0.5s;
  visibility: hidden;
}

.sidebar__close {
  position: relative;
  border: none;
  padding: 0;
  width: 20px;
  height: 20px;
  min-height: 20px;
  color: var(--secondary-color);
  background-color: transparent;
  cursor: pointer;
  margin-bottom: 58px;
}

.sidebar__close::after,
.sidebar__close::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}

.sidebar__close::before {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.sidebar__close::after {
  top: calc(100% - var(--burger-line-height));
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.sidebar__list {
  margin-bottom: 42px;
}

.sidebar__item:not(:last-child) {
  margin-bottom: 25px;
}

.sidebar__link {
  font-size: 19.5px;
  line-height: 128.2051282051%;
  color: var(--secondary-color);
  font-weight: 400;
}

.sidebar__link._parent {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sidebar__link._parent svg {
  margin-left: 5px;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.sidebar__link._parent svg path {
  stroke: #fff;
}

.sidebar__link._parent.active svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.sidebar__link--attention {
  font-weight: 700;
  text-transform: uppercase;
}

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

.sidebar__btn:not(:last-child) {
  margin-right: 22px;
}

.sidebar__btn--normal {
  padding: 12px 50px;
  border-radius: 6px;
  color: var(--light-green-color);
  font-size: 16px;
  line-height: 125%;
  background: var(--secondary-color);
}

.sidebar__btn--light {
  color: var(--secondary-color);
  font-size: 16px;
  line-height: 125%;
  text-transform: uppercase;
}

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

.sidebar__social path {
  fill: var(--secondary-color);
}

.sidebar .social__img {
  width: 29px;
  height: 29px;
}

.sidebar .social__link--active path,
.sidebar .social__link:active path {
  fill: var(--secondary-color);
}

.sidebar--active .sidebar {
  visibility: visible;
  overflow: auto;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.sidebar__item {
  text-align: right;
  opacity: 0;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
  will-change: transform;
}

.sidebar--active .sidebar__item {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.hero {
  background: url(../img/hero-top-bg.svg) top center no-repeat;
  margin-bottom: 100px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  background: url(../img/left-circle-bg.svg) right top no-repeat;
  left: -320px;
  top: 163px;
  width: 440px;
  height: 440px;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 1s ease-in;
  transition: -webkit-transform 1s ease-in;
  transition: transform 1s ease-in;
  -o-transition: transform 1s ease-in;
  transition: transform 1s ease-in, -webkit-transform 1s ease-in;
  -webkit-animation: 1.5s forwards slideInDown;
  animation: 1.5s forwards slideInDown;
}

.hero::after {
  content: "";
  position: absolute;
  background: url(../img/right-circle-bg.svg) left top no-repeat;
  right: -320px;
  top: 41px;
  width: 400px;
  height: 400px;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-animation: 2s 0.2s forwards slideInDown;
  animation: 2s 0.2s forwards slideInDown;
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.hero__container {
  padding: 0 20px;
  max-width: 1400px;
}

.hero__container::after {
  content: "";
  position: absolute;
  background: url(../img/right-line-bg.svg) right top no-repeat;
  right: 0;
  top: 520px;
  width: 104px;
  height: 87px;
  pointer-events: none;
  z-index: 0;
}

.hero__body {
  position: relative;
  z-index: 5;
  padding-top: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero__left {
  padding-left: 90px;
  margin-right: 100px;
}

.hero__left > :not(:last-child) {
  margin: 0 0 30px;
}

.hero__title {
  font-weight: 700;
  font-size: 60px;
  line-height: 118.3333333333%;
  color: var(--light-green-color);
}

.hero__text {
  max-width: 441px;
}

.hero__right {
  background-color: #eaf3f7;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 636px;
  height: 430px;
  border-radius: 29px;
  overflow: hidden;
}

.video {
  width: 100%;
  height: 100%;
  background-image: url(../img/video-preview.png);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: inline-block;
  overflow: hidden;
  -webkit-transition: 0.2s ease-out;
  -o-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  cursor: pointer;
}

.video__play {
  position: absolute;
  height: 140px;
  width: 140px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.video__play circle {
  -webkit-transition: fill 0.3s, stroke 0.3s;
  -o-transition: fill 0.3s, stroke 0.3s;
  transition: fill 0.3s, stroke 0.3s;
  stroke: transparent;
  stroke-width: 2px;
}

.video__play path {
  -webkit-transition: fill 0.3s;
  -o-transition: fill 0.3s;
  transition: fill 0.3s;
}

.video__info {
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../img/background-video-info.jpg) center/cover no-repeat;
  width: 100%;
  padding: 17px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.video__title {
  font-size: 15px;
  line-height: 120%;
  max-width: 254px;
  margin: 0;
}

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

.video__views {
  font-size: 10.2px;
  line-height: 117.6470588235%;
  margin-right: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.video__views::before {
  content: "";
  width: 21px;
  height: 21px;
  background: url(../img/view.svg) center/cover no-repeat;
  margin-right: 8.5px;
}

.video__likes {
  font-size: 10.2px;
  line-height: 117.6470588235%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.video__likes::before {
  content: "";
  width: 21px;
  height: 21px;
  background: url(../img/like.svg) center/cover no-repeat;
  margin-right: 8.5px;
}

.advantages {
  margin-bottom: 100px;
}

.advantages__title {
  margin-bottom: 75px;
}

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

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

.advantages__items:not(:last-child) {
  margin: 0 0 80px;
}

.advantages__items:nth-child(1) .advantages__item:nth-child(1)::before {
  background-image: url(../img/briefcase.svg);
}

.advantages__items:nth-child(1) .advantages__item:nth-child(2)::before {
  background-image: url(../img/people.svg);
}

.advantages__items:nth-child(2) .advantages__item:nth-child(1)::before {
  background-image: url(../img/domen.svg);
}

.advantages__items:nth-child(2) .advantages__item:nth-child(2)::before {
  background-image: url(../img/person.svg);
  width: 60px;
}

.advantages__items:nth-child(3) .advantages__item:nth-child(1)::before {
  background-image: url(../img/control.svg);
}

.advantages__items:nth-child(3) .advantages__item:nth-child(2)::before {
  background-image: url(../img/stat.svg);
}

.advantages__items:nth-child(4) .advantages__item:nth-child(1)::before {
  background-image: url(../img/globe.svg);
}

.advantages__items:nth-child(4) .advantages__item:nth-child(2)::before {
  background-image: url(../img/cards.svg);
}

.advantages__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 430px;
  flex: 0 0 430px;
  font-size: 24px;
  line-height: 116.6666666667%;
  margin: 0;
}

.advantages__item:not(:last-child) {
  margin: 0 60px 0 0;
}

.advantages__item::before {
  content: "";
  width: 110px;
  height: 68px;
  margin-right: 15px;
  display: block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.advantages__body {
  position: relative;
}

.advantages__scroll {
  position: absolute;
  top: 240px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 240px;
  height: 240px;
  background: url(../img/mouse.svg) bottom center no-repeat;
  border-top: 1px solid var(--light-green-color);
  pointer-events: none;
}

.advantages__scroll::before {
  content: "";
  position: absolute;
  bottom: 130px;
  left: 50%;
  display: block;
  width: 116px;
  height: 1px;
  background: var(--light-green-color);
  -webkit-transform: translateX(-50%) rotate(90deg);
  -ms-transform: translateX(-50%) rotate(90deg);
  transform: translateX(-50%) rotate(90deg);
}

.advantages__scroll::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 50%;
  display: block;
  width: 7px;
  height: 2px;
  border-radius: 50px;
  background: var(--main-color);
  -webkit-transform: translateX(-50%) rotate(90deg);
  -ms-transform: translateX(-50%) rotate(90deg);
  transform: translateX(-50%) rotate(90deg);
  -webkit-animation: 3s infinite scroll;
  animation: 3s infinite scroll;
}

@-webkit-keyframes scroll {
  from, to {
    bottom: 20px;
  }

  50% {
    bottom: 36px;
  }
}

@keyframes scroll {
  from, to {
    bottom: 20px;
  }

  50% {
    bottom: 36px;
  }
}

[data-aos=hidden] {
  opacity: 1;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

[data-aos=hidden].aos-animate {
  opacity: 0;
}

.offer {
  margin-bottom: 100px;
}

.offer-map {
  margin-bottom: -30px;
}

.offer-map .offer__body::before {
  background: none;
}

.offer-map .offer__body::after {
  background: url(../img/offter-map-bg-top.svg) right top no-repeat;
}

.offer__container {
  padding: 0 40px;
  max-width: 1326px;
}

.offer__body {
  position: relative;
  background: #ffd029;
  border-radius: 25px;
  overflow: hidden;
  text-align: center;
  padding: 64px;
  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;
}

.offer__body::before {
  content: "";
  position: absolute;
  background: url(../img/offer-left-bg.svg) left top no-repeat;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.offer__body::after {
  content: "";
  position: absolute;
  background: url(../img/offer-right-bg.svg) right bottom no-repeat;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.offer__title {
  font-weight: 700;
  font-size: 36px;
  line-height: 119.4444444444%;
  color: var(--secondary-color);
  margin: 0 0 27px;
}

.offer__text {
  color: var(--secondary-color);
  max-width: 513px;
  margin: 0 0 27px;
}

.offer__btn {
  font-family: Geometria, sans-serif;
  color: #ffd029;
  padding: 17px 67px;
  background: var(--secondary-color);
  border-radius: 58px;
  text-align: center;
  font-weight: 700;
  -webkit-transition: color 0.3s, -webkit-box-shadow 0.3s;
  transition: color 0.3s, -webkit-box-shadow 0.3s;
  -o-transition: box-shadow 0.3s, color 0.3s;
  transition: box-shadow 0.3s, color 0.3s;
  transition: box-shadow 0.3s, color 0.3s, -webkit-box-shadow 0.3s;
  border: 2px solid transparent;
  font-size: 20px;
  line-height: 125%;
}

.offer__btn--active,
.offer__btn:active {
  -webkit-box-shadow: 0 2px 42px rgba(255, 255, 255, 0.8);
          box-shadow: 0 2px 42px rgba(255, 255, 255, 0.8);
  color: var(--light-green-color);
}

.cases {
  margin-bottom: 100px;
}

.cases.cases__lg {
  padding: em(50) em(0) em(100);
}

.cases__container {
  max-width: 1492px;
  padding: 0 40px;
}

.cases__body {
  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;
  width: 100%;
}

.cases__title {
  margin-bottom: 42px;
}

.tabs {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.tabs__nav {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  background-color: #f9f9f9;
  border-radius: 46px;
  margin-bottom: 20px;
}

.tabs__nav.tabs__nav_lg .tabs__nav-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.333%;
          flex: 0 1 33.333%;
}

.tabs__nav.tabs__nav_lg .tabs__nav-item button {
  width: 100%;
}

.tabs__nav-item:not(:last-child) {
  margin: 0 20px 0 0;
}

.tabs__nav-btn {
  padding: 15px 25px;
  border-radius: 44px;
  -webkit-transition: color 0.3s, background 0.3s;
  -o-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
  outline: 0 !important;
}

.tabs__nav-btn--active {
  background: var(--light-green-color);
  color: var(--secondary-color);
}

.tabs__content {
  background: #f9f9f9;
  border-radius: 25px;
  padding: 60px 30px;
}

.tabs__panel {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  display: none;
}

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

.panel-tabs__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: 67px;
  width: 100%;
  padding-left: 25px;
}

.panel-tabs__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
  margin: 0 0 24px;
}

.panel-tabs__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 27px;
}

.panel-tabs__description-text {
  margin: 0;
}

.panel-tabs__description-text:not(:last-child) {
  margin: 0 0 20px;
}

.panel-tabs__description-text span {
  color: var(--light-green-color);
}

.panel-tabs__result {
  position: relative;
  background: -o-linear-gradient(177.89deg, #17bb45 -0.65%, #2dd65d 95.14%);
  background: linear-gradient(272.11deg, #17bb45 -0.65%, #2dd65d 95.14%);
  -webkit-box-shadow: 0 30px 57px rgba(0, 0, 0, 0.13);
  box-shadow: 0 30px 57px rgba(0, 0, 0, 0.13);
  border-radius: 12px;
  overflow: hidden;
  padding: 35px 38px;
  width: 100%;
}

.panel-tabs__result::after {
  content: "";
  display: block;
  position: absolute;
  top: -60px;
  right: -60px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: url(../img/panel-tabs-result-bg.svg) right top no-repeat;
}

.panel-tabs__result-title {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 116.6666666667%;
  color: var(--secondary-color);
}

.panel-tabs__result-text {
  margin: 0;
  font-size: 18px;
  line-height: 116.6666666667%;
  color: var(--secondary-color);
}

.panel-tabs__right {
  padding-top: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 730px;
  flex: 0 1 730px;
}

.panel-tabs__right img {
  width: 100%;
}

.graph__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 14px;
}

.graph__header-point {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: block;
  font-size: 11px;
  line-height: 118.1818181818%;
  position: relative;
  padding-left: 23px;
}

.graph__header-point::before {
  content: "";
  display: block;
  position: absolute;
  left: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--light-green-color);
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
}

.graph__header-point.is-none {
  display: none;
}

.graph__content {
  position: relative;
}

.graph__content-item {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.7s;
  -o-transition: opacity 0.7s;
  transition: opacity 0.7s;
  position: absolute;
  top: 0;
  left: 0;
}

.graph__content-item.is-selected {
  position: relative;
  visibility: visible;
  opacity: 1;
}

.custom-select-container {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 2%;
}

.custom-select-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.custom-select-container.is-disabled {
  opacity: 0.333;
}

.custom-select-opener {
  color: var(--light-green-color);
  font-size: 14px;
  line-height: 121.4285714286%;
  display: block;
  cursor: pointer;
  width: 100%;
  position: relative;
  padding-right: 20px;
}

.custom-select-opener::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
  height: 4px;
  background: url(../img/arrow-down.svg) center/cover no-repeat;
}

.custom-select-container select {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.custom-select-panel {
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  position: absolute;
  top: 100%;
  z-index: 1;
  width: 100%;
  margin-top: 9px;
}

.custom-select-container.is-open .custom-select-panel {
  max-height: 10.7em;
  overflow-y: auto;
}

.custom-select-option {
  font-size: 11px;
  line-height: 118.1818181818%;
  padding: 11px 8px;
  cursor: pointer;
}

.custom-select-option.has-focus {
  background-color: #25bb4f83;
}

.custom-select-optgroup::before {
  content: attr(data-label);
  display: block;
  padding: 0.5em;
  color: #888;
}

.tariff {
  margin-bottom: 100px;
}

.tariff__container {
  max-width: 1256px;
  padding: 0 40px;
}

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

.tariff__title {
  margin-bottom: 45px;
}

.tariff__main {
  width: 100%;
}

.tariff__content {
  position: relative;
  width: 100%;
  background: -o-linear-gradient(353.44deg, #80e29c 8.56%, #2dd65d 51.04%, #08ea48 101.33%);
  background: linear-gradient(96.56deg, #80e29c 8.56%, #2dd65d 51.04%, #08ea48 101.33%);
  border-radius: 37px;
  padding: 55px 30px 25px;
  margin-bottom: 30px;
  overflow: hidden;
  color: var(--secondary-color);
}

.tariff__content::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 9px;
  left: 0;
  background: #128834;
  top: 0;
}

.tariff__wrap {
  position: relative;
  text-align: center;
}

.tariff__scale {
  position: relative;
  z-index: 10;
  padding: 0 52px;
}

.tariff__scale-nums {
  position: absolute;
  top: 33px;
  width: 100%;
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 18px;
  line-height: 116.6666666667%;
  text-align: center;
  color: rgba(0, 0, 0, 0.26);
}

.tariff__scale-nums span {
  position: relative;
  width: 1px;
  height: 26px;
  background: var(--secondary-color);
}

.tariff__scale-nums span::after {
  content: "10";
  position: absolute;
  top: -42px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 18px;
  line-height: 116.6666666667%;
  text-align: center;
  color: rgba(0, 0, 0, 0.26);
}

.tariff__scale-nums span:nth-child(2)::after {
  content: "20";
}

.tariff__scale-nums span:nth-child(3)::after {
  content: "30";
}

.tariff__scale-nums span:nth-child(4) {
  height: 53px;
}

.tariff__scale-nums span:nth-child(4)::after {
  content: "40";
}

.tariff__scale-nums span:nth-child(5)::after {
  content: "50";
}

.tariff__scale-nums span:nth-child(6)::after {
  content: "60";
}

.tariff__scale-nums span:nth-child(7) {
  height: 53px;
}

.tariff__scale-nums span:nth-child(7)::after {
  content: "70";
}

.tariff__scale-nums span:nth-child(8)::after {
  content: "80";
}

.tariff__scale-nums span:nth-child(9)::after {
  content: "90";
}

.tariff__scale-nums span:nth-child(10) {
  height: 53px;
}

.tariff__scale-nums span:nth-child(10)::after {
  content: "100";
}

.tariff__scale-nums span:nth-child(11)::after {
  content: "110";
}

.tariff__scale-nums span:nth-child(12)::after {
  content: "120";
}

.tariff__scale-nums span:nth-child(13) {
  height: 53px;
}

.tariff__scale-nums span:nth-child(13)::after {
  content: "130";
}

.tariff__scale-nums span:nth-child(14)::after {
  content: "140";
}

.tariff__scale-nums span:nth-child(15)::after {
  content: "150";
}

.tariff__scale-nums span:nth-child(16)::after {
  content: "160";
}

.tariff__descr {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.79);
}

.tariff__descr-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  left: 9px;
  width: 23px;
  min-width: 23px;
  height: 23px;
  border: 1px solid rgba(255, 255, 255, 0.79);
  border-radius: 50%;
  font-size: 12px;
  line-height: 116.6666666667%;
  cursor: pointer;
}

.tariff__descr-wrap:hover .tariff__descr-text {
  opacity: 1;
  visibility: visible;
}

.tariff__descr-text {
  position: absolute;
  bottom: 22px;
  right: -28px;
  background: var(--secondary-color);
  padding: 10px 20px;
  border-radius: 15px;
  -webkit-box-shadow: 0 1px 3px rgba(55, 104, 4, 0.35);
  box-shadow: 0 1px 3px rgba(55, 104, 4, 0.35);
  color: grey;
  font-size: 14px;
  width: 200px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  -o-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 10;
}

.tariff__descr-text::after {
  content: "";
  position: absolute;
  bottom: -9px;
  right: 28px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0;
  border-color: #fff transparent transparent;
  z-index: 10;
}

.tariff__prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  padding: 0 2.8%;
  margin-bottom: 18px;
}

.tariff__prices span {
  font-weight: 500;
  font-size: 23px;
  line-height: 117.3913043478%;
}

.tariff__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 6px;
}

.tariff__price-text {
  margin-right: 10px;
}

.tariff__price-output {
  font-weight: 700;
  font-size: 32px;
  line-height: 118.75%;
}

.tariff__amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 60px;
}

.tariff__amount-text {
  margin-right: 10px;
}

.tariff__amount-output {
  font-weight: 400;
  font-size: 32px;
  line-height: 118.75%;
}

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

.tariff__bottom-text {
  margin-right: 20px;
}

.tariff__range {
  position: relative;
  top: 15px;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  height: 9px;
  width: 100%;
  background: #128834;
  cursor: pointer;
  border-radius: 10px;
}

.tariff__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 22px;
  width: 22px;
  border: 6px solid #fff;
  border-radius: 50%;
  background: #128834;
  cursor: pointer;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.tariff__range::-moz-range-thumb {
  -webkit-appearance: none;
  height: 22px;
  width: 22px;
  border: 6px solid #fff;
  border-radius: 50%;
  background: #128834;
  cursor: pointer;
  -moz-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.tariff__range::-ms-thumb {
  -webkit-appearance: none;
  height: 22px;
  width: 22px;
  border: 6px solid #fff;
  border-radius: 50%;
  background: #128834;
  cursor: pointer;
  -ms-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.tariff__range::-webkit-slider-thumb:hover {
  background: #128834;
}

.tariff__range::-moz-range-thumb:hover {
  background: #128834;
}

.tariff__range::-ms-thumb:hover {
  background: #128834;
}

.tariff__range::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  background: 0 0;
}

.tariff__range::-moz-range-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: 0 0;
}

.tariff__range::-ms-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: 0 0;
}

.tariff__bottom-chekbox {
  width: 124px;
  height: 42px;
  border-radius: 21px;
  overflow: hidden;
  position: relative;
  background: var(--secondary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.tariff__en,
.tariff__ru {
  position: relative;
  color: var(--secondary-color);
  font-size: 18px;
  line-height: 21px;
  padding: 5px 17px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
  font-weight: 700;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 45%;
  flex: 0 0 45%;
}

.tariff__en:after,
.tariff__ru:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #37d664;
  z-index: -1;
}

.tariff__ru {
  color: var(--secondary-color);
  -webkit-transition: color 0.3s 0.3s, font-weight 0.3s 0.3s;
  -o-transition: color 0.3s 0.3s, font-weight 0.3s 0.3s;
  transition: color 0.3s 0.3s, font-weight 0.3s 0.3s;
}

.tariff__en {
  color: var(--main-color);
  font-weight: 400;
  -webkit-transition: color 0.3s, font-weight 0.3s;
  -o-transition: color 0.3s, font-weight 0.3s;
  transition: color 0.3s, font-weight 0.3s;
}

.tariff__ru:after {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 0.3s 0.3s;
  -o-transition: transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
}

.tariff__en:after {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.tariff__checkbox {
  width: 124px;
  height: 42px;
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  left: 0;
  top: 0;
  margin: 0;
  z-index: 2;
}

.tariff__checkbox:checked ~ .tariff__ru {
  color: var(--main-color);
  font-weight: 400;
  -webkit-transition: color 0.3s, font-weight 0.3s;
  -o-transition: color 0.3s, font-weight 0.3s;
  transition: color 0.3s, font-weight 0.3s;
}

.tariff__checkbox:checked ~ .tariff__en {
  color: var(--secondary-color);
  font-weight: 700;
  -webkit-transition: color 0.3s 0.3s, font-weight 0.3s 0.3s;
  -o-transition: color 0.3s 0.3s, font-weight 0.3s 0.3s;
  transition: color 0.3s 0.3s, font-weight 0.3s 0.3s;
}

.tariff__checkbox:checked ~ .tariff__ru:after {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.tariff__checkbox:checked ~ .tariff__en:after {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 0.3s 0.3s;
  transition: -webkit-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
  -o-transition: transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
}

.how-to-work {
  margin-bottom: 100px;
}

.how-to-work__subtitle {
  margin-bottom: 65px;
}

.how-to-work__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.how-to-work__first {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 20px;
}

.how-to-work__last {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  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;
}

.how-to-work__advantage-list {
  width: 100%;
  background: url(../img/how-to-work-bg.svg) bottom right no-repeat #2dd65d;
  border-radius: 20px;
  padding: 59px 70px 59px 48px;
  margin-bottom: 36px;
  color: var(--secondary-color);
}

.how-to-work__advantage-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.how-to-work__advantage-item:not(:last-child) {
  margin: 0 0 86px;
}

.how-to-work__advantage-num {
  font-family: Geometria, sans-serif;
  margin-right: 19px;
  font-weight: 700;
  font-size: 37.5px;
  line-height: 122.6666666667%;
  color: rgba(255, 255, 255, 0.24);
}

.how-to-work__advantage-content {
  max-width: 320px;
}

.how-to-work__advantage-title {
  margin: 0;
  font-weight: 700;
}

.how-to-work__advantage-title:not(:last-child) {
  margin: 0 0 15px;
}

.how-to-work__advantage-text {
  margin: 0;
  font-size: 17.4px;
  line-height: 120.6896551724%;
  color: rgba(255, 255, 255, 0.8);
}

.how-to-work__advantage-text:not(:last-child) {
  margin: 0 0 5px;
}

.ac {
  background: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
}

.ac:not(:last-child) {
  margin: 0 0 20px;
}

.ac:nth-child(2) .ac-trigger::before {
  background: url(../img/feedback.svg) center/contain no-repeat;
}

.ac:nth-child(3) .ac-trigger::before {
  background: url(../img/catalog.svg) center/contain no-repeat;
}

.ac:nth-child(4) .ac-trigger::before {
  background: url(../img/board.svg) center/contain no-repeat;
}

.ac:nth-child(5) .ac-trigger::before {
  background: url(../img/faq.svg) center/contain no-repeat;
}

.ac:nth-child(6) .ac-trigger::before {
  background: url(../img/comment.svg) center/contain no-repeat;
}

.ac-header {
  margin: 0;
}

.ac-trigger {
  position: relative;
  padding: 26px 55px;
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  width: 100%;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ac-trigger::before {
  content: "";
  display: block;
  width: 33px;
  height: 28px;
  background: url(../img/forum.svg) center/contain no-repeat;
  margin-right: 18px;
}

.ac-trigger.no-icon {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1875;
}

.ac-trigger.no-icon::before {
  display: none;
}

.ac-trigger span {
  position: absolute;
  right: 33px;
  top: 35px;
  display: block;
  width: 13px;
  height: 6.5px;
  overflow: hidden;
  -webkit-transition: height 0.3s;
  -o-transition: height 0.3s;
  transition: height 0.3s;
}

.ac-trigger span::after,
.ac-trigger span::before {
  content: "";
  position: absolute;
  right: -2.5px;
  top: 6px;
  display: block;
  width: 18px;
  height: 1px;
  background: var(--light-green-color);
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.ac-trigger span::after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.ac-trigger span.ac-rate {
  margin-left: auto;
  margin-right: 45px;
  position: relative;
  min-width: 120px;
  top: auto;
  right: auto;
  height: auto;
  overflow: visible;
  display: none;
}

.ac-trigger span.ac-rate::after,
.ac-trigger span.ac-rate::before {
  display: none;
}

.ac-trigger span.rounded {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  border: 1px solid #25bb4f;
  background: rgba(37, 187, 79, 0.1);
}

.ac-trigger span.rounded::after,
.ac-trigger span.rounded::before {
  top: 50%;
  left: 50%;
}

.ac-trigger span.rounded::after {
  -webkit-transform: translate(-50%, 3px) rotate(-45deg);
      -ms-transform: translate(-50%, 3px) rotate(-45deg);
          transform: translate(-50%, 3px) rotate(-45deg);
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, var(--light-green-color)));
  background: -o-linear-gradient(left, transparent 50%, var(--light-green-color) 50%);
  background: linear-gradient(90deg, transparent 50%, var(--light-green-color) 50%);
}

.ac-trigger span.rounded::before {
  -webkit-transform: translate(-50%, 3px) rotate(45deg);
      -ms-transform: translate(-50%, 3px) rotate(45deg);
          transform: translate(-50%, 3px) rotate(45deg);
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, var(--light-green-color)), color-stop(50%, transparent));
  background: -o-linear-gradient(left, var(--light-green-color) 50%, transparent 50%);
  background: linear-gradient(90deg, var(--light-green-color) 50%, transparent 50%);
}

.ac-content {
  padding: 0 55px 26px;
  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;
}

.ac-text {
  margin: 0;
  color: rgba(0, 0, 0, 0.5);
  max-width: 400px;
}

.ac-btn {
  margin-top: 28px;
  font-weight: 700;
  font-size: 16.6px;
  line-height: 120.4819277108%;
  color: var(--light-green-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ac-btn::after {
  content: "";
  display: block;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-left: 26px;
  border: 0.8px solid var(--light-green-color);
  background: url(../img/arrow-right.svg) center/16px no-repeat;
}

.ac.is-active .ac-trigger span {
  height: 13px;
}

.ac.is-active .ac-trigger span.rounded {
  height: 25px;
}

.ac.is-active .ac-trigger span.rounded::before,
.ac.is-active .ac-trigger span.rounded::after {
  background: var(--light-green-color);
}

.ac.is-active .ac-trigger span.rounded::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.ac.is-active .ac-trigger span.rounded::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.ac.is-active .ac-trigger span.ac-rate {
  height: auto;
}

.feedback {
  margin-bottom: 100px;
}

.feedback__container {
  max-width: 1595px;
}

.feedback__title {
  margin-bottom: 56px;
}

.feedback__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: -5.8%;
  margin-bottom: -45px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.feedback__item {
  width: 225px;
  height: 105px;
  border: 1px solid var(--light-green-color);
  border-radius: 13px;
  margin-right: 5.8%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 45px;
}

.feedback__link {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.feedback__img {
  padding: 33px 23px;
  max-height: 100%;
}

.footer {
  background: var(--light-green-color);
  padding: 46px 0 88px;
  color: var(--secondary-color);
}

.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.footer__logo .logo__img {
  width: 192px;
  height: 53px;
}

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

.footer__row:not(:last-child) {
  margin: 0 0 20px;
}

.footer__col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.footer__col:not(:last-child) {
  margin: 0;
}

.footer__col-left {
  -webkit-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
}

.footer__col-right {
  -webkit-box-flex: 6;
  -ms-flex: 6;
  flex: 6;
  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: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.footer__text {
  font-size: 15px;
  line-height: 120%;
}

.footer__text-link {
  font-weight: 700;
  font-size: 15px;
  line-height: 120%;
  color: var(--secondary-color);
}

.footer__menu {
  font-family: Geometria, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 23px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-right: -19px;
}

.footer__menu-item {
  margin-right: 19px;
  text-align: center;
}

.footer__menu-link {
  font-size: 15px;
  line-height: 126.6666666667%;
  text-align: center;
  color: var(--secondary-color);
}

.footer__menu-link--attention {
  font-weight: 700;
  text-transform: uppercase;
}

.footer__submenu {
  font-family: Geometria, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-right: -19px;
  position: relative;
}

.footer__submenu-item {
  margin-right: 19px;
}

.footer__submenu-link {
  font-size: 18px;
  line-height: 127.7777777778%;
  text-align: center;
  color: var(--secondary-color);
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.footer__social .social__link {
  font-size: 15px;
  line-height: 120%;
  color: var(--secondary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__social .social__link .social__img {
  margin-right: 7px;
}

.footer__social .social__link path {
  fill: var(--secondary-color);
}

.footer__address {
  display: inline-block;
  font-size: 15px;
  line-height: 120%;
  color: var(--secondary-color);
}

.footer__payment {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 14px;
}

.footer__payment-img {
  height: 25px;
}

.footer__payment-img:not(:last-child) {
  margin: 0 20px 0 0;
}

.footer__copyright {
  margin: 0;
  font-size: 13px;
  line-height: 115.3846153846%;
  color: #5aeb83;
}

.tap-to-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  right: -67px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
  font-weight: 500;
  font-size: 17px;
  line-height: 117.6470588235%;
  color: var(--light-green-color);
  background: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s, visibility 0.5s;
  -o-transition: opacity 0.5s, visibility 0.5s;
  transition: opacity 0.5s, visibility 0.5s;
}

.tap-to-top::after {
  content: "";
  display: block;
  height: 13px;
  width: 103px;
  padding-left: 14px;
  background: url(../img/arrow-to-top.svg) center right no-repeat;
}

.tap-to-top--visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 1s, visibility 1s;
  -o-transition: opacity 1s, visibility 1s;
  transition: opacity 1s, visibility 1s;
}

.another_links {
  font-size: 15px;
  line-height: 126.6666666667%;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50px;
}

.another_links a {
  color: var(--secondary-color);
  margin-right: 5px;
}

.popup {
  position: fixed;
  background: rgba(0, 0, 0, 0.73);
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  inset: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  z-index: 55555;
  padding: 2.55em 1em;
}

.popup.open {
  opacity: 1;
  visibility: visible;
}

.popup.open .popup__body {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.popup__content {
  position: relative;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.popup__body {
  -webkit-transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
  -o-transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
  transition: all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
  opacity: 0;
  background: -o-linear-gradient(325.6deg, #48dc72 17.77%, #25bb4f 89.82%);
  background: linear-gradient(124.4deg, #48dc72 17.77%, #25bb4f 89.82%);
  max-width: 1270px;
  border-radius: 40px;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  overflow: hidden;
}

.popup__close {
  position: absolute;
  top: 1.125rem;
  right: 1.125rem;
  width: 20px;
  height: 20px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 10;
  color: currentColor;
  background: transparent;
  font-size: 1.25rem;
  z-index: 20;
}

.popup__close::before,
.popup__close::after {
  content: "";
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 100%;
  height: 3px;
  background: #bdbdbd;
}

.popup__close::before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: calc(50% - 2px);
}

.popup__close:after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  bottom: calc(50% - 1px);
}

.popup-form {
  display: -ms-grid;
  display: grid;
}

.popup-form__column {
  padding: 1.9em 1em;
}

.popup-form__column:nth-child(1) {
  color: #fff;
}

.popup-form__column:nth-child(2) {
  background: url("../img/modal-bg.svg") center 0/cover no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.popup-form__title {
  text-align: left;
}

.popup-form__subtitle {
  font-size: 12px;
}

.popup-form__input {
  margin: 1.1111111111em 0em 0em 0em;
  background: rgba(255, 255, 255, 0.17);
  border-radius: 15px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1666666667;
  padding: 1.2777777778em 1.4444444444em;
  width: 100%;
  color: rgba(255, 255, 255, 0.7);
  border: 0;
}

.popup-form__input::-webkit-input-placeholder {
  color: currentColor;
  font-size: inherit;
  font-weight: 400;
}

.popup-form__input:-moz-placeholder {
  color: currentColor;
  font-size: inherit;
  font-weight: 400;
}

.popup-form__input::-moz-placeholder {
  color: currentColor;
  font-size: inherit;
  font-weight: 400;
}

.popup-form__input:-ms-input-placeholder {
  color: currentColor;
  font-size: inherit;
  font-weight: 400;
}

.popup-form__footer {
  margin: 1em 0em 0em 0em;
  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;
}

.popup-form__btn {
  margin: 0.6em 0em 0em 0em;
}

.popup-form__btn .btn-white {
  background: #ffffff;
  color: #000000;
  border-radius: 15px;
}

.popup-form__question {
  text-align: center;
}

.popup-form__question-list {
  margin: 1.2em 0em 0em 0em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.popup-form__question-item:not(:last-child) {
  margin: 0em 0em 0.75em 0rem;
}

.popup-form__question-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0.86px solid #25bb4f;
  color: #25bb4f;
  border-radius: 50.6864px;
  padding: 0.65em 0.6em;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.popup-form__question-btn span {
  margin: 0em 0em 0em 0.25em;
  font-size: 14px;
  line-height: 1.1428571429;
}

.popup-form__question-btn svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.checkbox {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2142857143;
  color: rgba(255, 255, 255, 0.7);
}

.checkbox__input:checked + .checkbox__text::before {
  background: url("data:image/svg+xml,%3Csvg width='9' height='6' viewBox='0 0 9 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 2.33333L3.66667 5L7.66667 1' stroke='white' stroke-width='0.888889' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") center/contain no-repeat;
}

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

.checkbox__text::before {
  content: "";
  width: 14px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14px;
          flex: 0 0 14px;
  height: 14px;
  border: 1px solid #ffffff;
  border-radius: 3px;
  margin: 0.25em 0.5em 0em 0em;
  cursor: pointer;
}

.checkbox a {
  color: #fff;
  text-decoration: underline;
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.navigation {
  padding-top: 4.8em;
}
.search__input {
  color: rgba(0, 0, 0, 0.5);
}

.navigation__container {
  max-width: 1310px;
  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;
}

.navigation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
}

.navigation__list-item:not(:last-child) {
  margin-right: 0.4666666667em;
}

.navigation__list-item:not(:first-child) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navigation__list-item:not(:first-child)::before {
  content: "";
  width: 5px;
  height: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  background: #25bb4f;
  margin-right: 0.35em;
  margin-top: 0.35em;
}

.navigation__list-link {
  color: rgba(0, 0, 0, 0.5);
}

.navigation__list-link.active {
  color: #25bb4f;
  cursor: default;
}

.text-overflow {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.case_button {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}

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

.search__input {
  background: #f7f7f7;
  border: 1px solid #f7f7f7;
  border-radius: 102px;
  outline: none;
  font-size: 12px;
  line-height: 1.1666666667;
  padding: 0.75em 1.25em;
  margin: 0em 0.8333333333em 0em 0em;
}

.search__input:focus {
  border: 1px solid #25bb4f;
}

.search__btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
  color: #000;
}

.search__btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

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

.pagination__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
  background: #fff;
  color: rgba(0, 0, 0, 0.5);
  -webkit-transition: background-color 0.15s linear 0s, color 0.15s ease 0s;
  -o-transition: background-color 0.15s linear 0s, color 0.15s ease 0s;
  transition: background-color 0.15s linear 0s, color 0.15s ease 0s;
  margin: 0 0.05em;
}

.pagination__item_active {
  background: #25bb4f;
  color: #fff;
  pointer-events: none;
}

.pagination__item_left,
.pagination__item_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgba(0, 0, 0, 0.8);
}

.pagination__item_left svg,
.pagination__item_right svg {
  width: 0.9444444444em;
  height: 0.9444444444em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  fill: currentColor;
}

.pagination__item_left[aria-disabled=true],
.pagination__item_right[aria-disabled=true] {
  pointer-events: none;
  color: rgba(0, 32, 51, 0.26);
}

.pagination__item_left {
  margin: 0em 1.2222222222em 0em 0em;
}

.pagination__item_left svg {
  margin: 0em 1.3333333333em 0em 0em;
}

.pagination__item_right {
  margin: 0em 0em 0em 1.2222222222em;
}

.pagination__item_right svg {
  margin: 0em 0em 0em 1.3333333333em;
}

.progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #f2f2f2;
  z-index: 1010;
}

/* The progress bar (scroll indicator) */

.progress-bar {
  height: 5px;
  background: #25bb4f;
  width: 0%;
}

.menu__item._parent {
  position: relative;
}

.menu__link {
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu__link.active svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  color: #000;
}

.menu__link svg {
  margin: 0em 0em 0em 0.25em;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.submenu.sidebar__submenu {
  display: none;
  padding: 0.75em 0em;
}

.submenu.sidebar__submenu.open {
  display: block;
}

.submenu.sidebar__submenu .submenu__item {
  font-size: 16px;
  line-height: 1.1875;
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
}

.submenu.sidebar__submenu .submenu__item:not(:last-child) {
  margin: 0em 0em 0.75em 0rem;
}

.submenu.menu__submenu {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 0.75em 0em 0em 0em;
  display: block;
  opacity: 0;
  visibility: hidden;
  top: 100%;
  min-width: 278px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.submenu.menu__submenu.open {
  opacity: 1;
  visibility: visible;
}

.submenu.menu__submenu::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 0.75em);
  background: #ffffff;
  -webkit-box-shadow: 0px 6px 33px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 6px 33px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  z-index: -1;
}

.submenu.menu__submenu .submenu__item {
  text-align: left;
  color: #000;
  padding: 1em 1.6em;
  font-size: 15px;
  line-height: 1.2;
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.submenu__item {
  display: block;
}

.disabled-link {
  pointer-events: none;
}


.swiper-button-prev,
.swiper-button-next {
  position: static;
  margin: 0;
  inset: 0;
  width: 38px;
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  border: 1px solid #25bb4f;
  color: #25bb4f;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 14px;
}

::-moz-selection {
  color: #fff;
  background-color: #f58a07;
  box-shadow: none;
}

::selection {
  color: #fff;
  background-color: #f58a07;
  -webkit-box-shadow: none;
  box-shadow: none;
}

::-moz-selection {
  color: #fff;
  background-color: #f58a07;
  box-shadow: none;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: var(--light-green-color);
  border-radius: 4px;
}

.hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
}

.cover-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.map {
  padding: 1.7em 0em 4.5em 0em;
}

.map__title {
  text-align: left;
}

.map__columns {
  margin-top: 1.7em;
  display: -ms-grid;
  display: grid;
  gap: 40px;
}

.map__column-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1785714286;
  color: #25bb4f;
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.map__column-list {
  margin: 1.5em 0em 0em 0em;
}

.map__column-item {
  font-size: 15px;
  line-height: 1.2;
}

.map__column-item:not(:last-child) {
  margin-bottom: 0.8em;
}

.map__column-link {
  color: #000;
  text-decoration: underline;
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.map__column-text p {
  margin: 0;
}

.map__column-text a {
  font-weight: 600;
  color: var(--light-green-color);
}

.map__socials {
  margin-top: 1.95em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.error {
  padding: 6.7em 0em 4.5em 0em;
}

.error__container {
  position: relative;
  color: #fff;
}

.error__container::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 240px;
  background: url("../img/404.png") 0 0/contain no-repeat;
}

.error__decor {
  font-size: 144px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.15);
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.error__decor:first-of-type {
  display: none;
}

.error__decor:last-of-type {
  top: 0;
  left: 55%;
  font-size: 118px;
}

.error__content {
  padding: 10.2em 1.2em 4.6em;
  background: #68df8a;
  border-radius: 25px;
  max-width: 835px;
}

.error__title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.015em;
  max-width: 340px;
}

.error__body {
  margin-top: 0.9em;
}

.error__body-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15625;
  max-width: 340px;
}

.error__body-columns {
  margin-top: 1.8em;
  display: -ms-grid;
  display: grid;
  gap: 18px;
}

.error__column-title {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2222222222;
}

.error__column-list {
  margin-top: 1.35em;
}

.error__column-item {
  font-size: 12px;
  line-height: 1.1666666667;
}

.error__column-item:not(:last-child) {
  margin-bottom: 0.6666666667em;
}

.error__column-link {
  color: #fff;
  text-decoration: underline;
}

.faq {
  padding: 1.5em 0em 4.5em 0em;
}

.faq__container {
  max-width: 1310px;
}

.faq__item:not(:last-child) {
  margin-bottom: 3.5em;
}

.faq__title {
  background: rgba(37, 187, 79, 0.1);
  border-radius: 10px;
  padding: 1.0714285714em 1.7142857143em;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1785714286;
  color: #25bb4f;
}

.faq__body {
  margin-top: 0.5em;
  display: -ms-grid;
  display: grid;
  gap: 10px;
}

.faq__body .ac {
  background: #ffffff;
  -webkit-box-shadow: 0px 4px 40px rgba(82, 82, 82, 0.1);
          box-shadow: 0px 4px 40px rgba(82, 82, 82, 0.1);
  border-radius: 12px;
}

.faq__body .ac-trigger {
  padding: 0.9375rem 2.75em 0.9375rem 0.9375rem;
}

.faq__body .ac-content {
  padding: 0em 0.9375rem 1.25rem;
  font-size: 14px;
}

.faq__body-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.about {
  padding: 0em 0em 5em 0em;
}

.about__label {
  margin: 1.3em 0em 0em 0em;
  font-size: 12px;
  line-height: 1.2;
  color: #ffffff;
  padding: 2.325em 2em;
  background: #2dd65d;
  border-radius: 20px;
}

.about__desc {
  margin: 1.3em 0em 0em 0em;
}

.about__desc-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1666666667;
}

.about__desc-text {
  margin: 1em 0em 0em 0em;
  font-size: 14px;
  line-height: 1.2;
}

.about__desc-text p:not(:last-child) {
  margin: 0em 0em 0.75em 0rem;
}

.about__mission {
  margin: 2.5em 0em 0em 0em;
}

.about__mission-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1666666667;
}

.about__numbers {
  margin: 5em 0em 0em 0em;
}

.about__numbers-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1944444444;
}

.about__subtitle {
  margin: 1.2em 0em 0em 0em;
  font-size: 12px;
  line-height: 1.2;
  max-width: 450px;
}

.about__numbers-items {
  margin: 1em -0.75em 0em -0.75em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.about__numbers-item {
  font-size: 16px;
  padding: 0.5em 0.75em;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.about__numbers-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.about__numbers-value {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1818181818;
  color: #25bb4f;
}

.about__numbers-caption {
  color: rgba(0, 0, 0, 0.43);
  margin: 0em 0em 0.5em 0.375rem;
}

.about__numbers-text {
  margin: 0.3em 0em 0em 0em;
  line-height: 1.1875;
}

.about__benefits {
  margin: 4em 0em 0em 0em;
}

.about__benefits-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1944444444;
}

.about__benefits-subtitle {
  margin: 1.3333333333em 0em 0em 0em;
  line-height: 1.1666666667;
  font-size: 12px;
  max-width: 450px;
}

.about__benefits-items {
  margin: 1.05em 0em 0em 0em;
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 24px;
}

.about__benefits-item {
  counter-increment: num;
  position: relative;
  border: 1px solid #25bb4f;
  border-radius: 15px;
  font-size: 12px;
  padding: 1.25em 2.9166666667em 1.25em 1.6666666667em;
  min-height: 127px;
  line-height: 1.1666666667;
  color: rgba(0, 0, 0, 0.7);
}

.about__benefits-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 15px 0;
  background-color: #25bb4f;
}

.about__benefits-item::after {
  content: "0" counter(num);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -o-linear-gradient(36.03deg, rgba(255, 255, 255, 0) 14.91%, #ffffff 84.46%);
  background: linear-gradient(53.97deg, rgba(255, 255, 255, 0) 14.91%, #ffffff 84.46%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1666666667;
}

.about__contacts {
  margin: 4em 0em 0em 0em;
}

.about__contacts-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1944444444;
}

.about__contacts-items {
  margin: 3.4em 0em 0em 0em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.about__contacts-item {
  background: #f8f8f8;
  border-radius: 27px;
  padding: 0em 1.7em 1.5em 1.7em;
}

.about__contacts-item:not(:last-child) {
  margin: 0em 0em 3.5em 0em;
}

.about__contacts-thumb {
  display: block;
  margin-top: -32.5px;
  width: 65px;
  height: 65px;
}

.about__contacts-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.about__contacts-name {
  margin: 0.5em 0em 0em 0em;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.1818181818;
  color: #25bb4f;
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.about__contacts-text {
  margin: 1.5555555556em 0em 0em 0em;
  font-size: 12px;
  line-height: 1.1666666667;
}

.about__side {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 325px;
          flex: 0 0 325px;
  padding: 2em 1.2em;
  background: #ffffff;
  -webkit-box-shadow: 0px 4px 60px rgba(145, 145, 145, 0.1);
          box-shadow: 0px 4px 60px rgba(145, 145, 145, 0.1);
  border-radius: 33px;
}

.about__side-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1785714286;
}

.about__side-items {
  margin: 1.7em 0em 0em 0em;
}

.about__side-item:not(:last-child) {
  margin: 0em 0em 1.8em 0rem;
}

.about__side-header {
  background: #f8f8f8;
  border-radius: 89px;
  padding: 0.35em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about__side-thumb {
  width: 45px;
  height: 45px;
  margin: 0em 0.4em 0em 0em;
}

.about__side-caption {
  font-size: 18px;
  line-height: 1.1666666667;
  color: rgba(0, 0, 0, 0.5);
}

.about__side-link {
  display: inline-block;
  font-size: 12px;
  line-height: 1.1666666667;
  color: #20a0e2;
  max-width: 160px;
  word-break: break-all;
}

.about__side-link.green {
  color: #25bb4f;
}

.about__side-link.black {
  color: #0d1522;
}

.about__side-text {
  margin: 0.85em 0em 0em 0em;
  line-height: 1.1875;
}

.about__side-footer {
  margin: 1.4444444444em 0em 0em 0em;
  font-size: 18px;
  line-height: 1.1666666667;
  color: #25bb4f;
}

.about__clients {
  margin: 4.5em 0em 0em 0em;
  max-width: 1000px;
  line-height: 1.1914893617;
  text-align: center;
  color: rgba(0, 0, 0, 0.27);
}

.road {
  position: relative;
  margin: 2.25em 0em 0em 0em;
  max-width: 750px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.road::before {
  content: "";
  position: absolute;
  left: 0;
  top: 164px;
  width: 200%;
  height: 3px;
  background: #25bb4f;
}

.road::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 231px;
  width: 200%;
  height: 3px;
  background: #25bb4f;
  z-index: -1;
}

.road__item {
  position: relative;
  padding: 6.7em 0em;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.333%;
          flex: 0 0 33.333%;
  margin: 0em 0em 3.35em 0rem;
}

.road__item:nth-child(even) .road__item-text {
  top: 0;
  left: 0;
  padding: 0em 0em 0em 3.2857142857em;
}

.road__item:nth-child(even) .road__item-text::before {
  top: 0;
  left: 23px;
}

.road__item:nth-child(even) .road__item-text::after {
  top: 20.5px;
  left: 29.5px;
  height: 112px;
}

.road__item:nth-child(odd) .road__item-text {
  bottom: 0;
  left: 0;
  width: 250px;
}

.road__item:nth-child(odd) .road__item-text::before {
  top: -23px;
  left: 23px;
}

.road__item:nth-child(odd) .road__item-text::after {
  bottom: calc(100% + 25.5px);
  left: 29.5px;
}

.road__item-year {
  position: relative;
  z-index: 2;
  background: #25bb4f;
  color: #fff;
  font-size: 14px;
  line-height: 1.2142857143;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 60px;
  max-width: 60px;
  height: 60px;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  border-radius: 50%;
}

.road__item-text {
  font-size: 14px;
  line-height: 1.2142857143;
  position: absolute;
  padding: 0em 0em 0em 1.6428571429em;
  width: 210px;
  display: block;
  color: rgba(0, 0, 0, 0.7);
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.road__item-text::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #25bb4f;
  -webkit-box-shadow: 0px 4px 16px #25bb4f;
          box-shadow: 0px 4px 16px #25bb4f;
}

.road__item-text::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 74px;
  border-left: 1px dashed rgba(0, 0, 0, 0.25);
}

.questions {
  padding: 3em 0em 5.85em;
}

.questions__title {
  text-align: left;
}

.questions__body {
  margin: 2em 0em 0em 0em;
}

.questions__body-item .ac.is-active .ac-trigger span {
  height: 13px;
}

.questions__body-item .ac-content {
  padding: 1em 0em;
  font-size: 14px;
  background: #fff;
}

.questions__body-title.ac-trigger {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1818181818;
  background: #fff;
  border-bottom: 1px solid #c9c9c9;
  padding: 1.5em 3em 1.5em 0em;
  border-radius: 0;
}

.questions__body-title.ac-trigger span {
  position: absolute;
  right: 33px;
  top: 40px;
  display: block;
  width: 23px;
  height: 6.5px;
  overflow: hidden;
  -webkit-transition: height 0.3s;
  -o-transition: height 0.3s;
  transition: height 0.3s;
}

.questions__body-title.ac-trigger span::after,
.questions__body-title.ac-trigger span::before {
  content: "";
  position: absolute;
  right: -2.5px;
  top: 6px;
  display: block;
  width: 18px;
  height: 1px;
  background: var(--light-green-color);
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.questions__body-title.ac-trigger span::after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.blog {
  padding: 1.5em 0em 4em;
}

.blog__filtres {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -0.5em;
}

.blog__filter {
  padding: 0.25em;
  display: block;
}

.blog__filter-input:checked + .blog__filter-content {
  color: #ffffff;
  border-color: #25bb4f;
  background-color: #25bb4f;
  pointer-events: none;
}

.blog__filter-content {
  border: 1px solid #cbcbcb;
  border-radius: 27px;
  font-size: 12px;
  line-height: 1.1666666667;
  padding: 0.6666666667em 1.5555555556em;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  display: block;
  color: #7d8c8f;
}

.blog__tags {
  margin: 0.75em auto 0em auto;
  max-width: 1160px;
}

.blog__tags-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 1.1875;
  font-size: 12px;
  margin: 0 -0.375em;
}

.blog__tag {
  padding: 0.375em;
}

.blog__tag-link {
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
  color: #25bb4f;
}

.blog__body {
  margin: 1.75em 0em 0em 0em;
  display: -ms-grid;
  display: grid;
  gap: 20px;
}

.blog__item {
  position: relative;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 59px rgba(123, 123, 123, 0.1);
          box-shadow: 0px 0px 59px rgba(123, 123, 123, 0.1);
  border-radius: 20px;
  padding: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.blog__item.swiper-slide {
  max-width: 240px;
}

.blog__item.swiper-slide:not(.swiper-slide-visible) {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.blog__link {
  position: absolute;
  inset: 0;
}

.blog__image {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.blog__image img {
  border-radius: 10px;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  max-width: 100%;
}

.blog__stats {
  margin: 0.9em -0.3em 0em -0.3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.blog__stats-item {
  padding: 0.3em;
}

.blog__stat {
  background: #ffffff;
  -webkit-box-shadow: 0px 4px 13px rgba(75, 75, 75, 0.1);
          box-shadow: 0px 4px 13px rgba(75, 75, 75, 0.1);
  border-radius: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  line-height: 1.2142857143;
  padding: 0.7857142857em 1.5714285714em;
}

.blog__stat img {
  margin: 0em 0.25em 0em 0em;
  width: 13px;
}

.blog__info {
  padding: 0.35em 0em 0.35em 0.7em;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
}

.blog__item-tags {
  position: relative;
  z-index: 2;
  margin: 0.5em -0.25em 0em -0.25em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.blog__item-tag {
  color: #25bb4f;
  line-height: 1.1875;
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
  font-size: 12px;
  padding: 0.25em;
  display: block;
}

.blog__time {
  margin: 0.5em 0em 0em 0em;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.1875;
  font-size: 12px;
}

.blog__title {
  position: relative;
  z-index: 2;
  margin: 0.5555555556em 0em 0em 0em;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1666666667;
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
  color: #000000;
}

.blog__desc {
  margin: 0.5em 0em auto 0em;
  font-size: 12px;
  line-height: 1.1875;
}

.blog__more {
  position: relative;
  z-index: 2;
  margin: 0.5em 0em 0em 0em;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1875;
  text-decoration: underline;
  color: #25bb4f;
}

.blog__pagination {
  margin: 2.75em 0em 0em 0em;
}

.article {
  padding: 0.6em 0em 0em 0em;
}

.article__main {
  max-width: 570px;
}

.article__category {
  font-size: 12px;
  line-height: 1.1666666667;
  color: #25bb4f;
}

.article__title {
  text-align: left;
}

.article__stats {
  margin: 0.75em -0.5em 0em -0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.article__stat {
  padding: 0.3571428571em 0.7142857143em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 10px;
  line-height: 1.2142857143;
  color: rgba(0, 0, 0, 0.5);
}

.article__stat-icon {
  margin: 0em 0.3571428571em 0em 0em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.article__tags {
  margin: 0.1em 0em 0em 0em;
  font-size: 12px;
  line-height: 1.1875;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  row-gap: 5px;
  flex-flow: wrap;
}

.article__tag {
  color: #25bb4f;
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.article__image {
  display: none;
}

.article__info {
  margin: 1em 0em 0em 0em;
  display: -ms-grid;
  display: grid;
  gap: 20px;
}

.article__info-column:nth-child(1) {
  background: #f8f8f8;
  border-radius: 20px;
  padding: 1em 1.5em;
}

.article__info-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1666666667;
}

.article__info-filtres {
  margin: 1.5em -0.375em 0em -0.375em;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.article__info-list {
  margin: 1.5em 0em 0em 0em;
  line-height: 1.1875;
  font-size: 14px;
}

.article__info-list li {
  position: relative;
  padding: 0em 0em 0em 0.65em;
}

.article__info-list li:not(:last-child) {
  margin: 0em 0em 0.75em 0rem;
}

.article__info-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #25bb4f;
}

.article__info-list li a {
  color: #000000;
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.article__body {
  margin: 1.85em 0em 0em 0em;
}

.article__body-section:not(:last-child) {
  margin: 0em 0em 1.85em 0rem;
}

.article__body-caption {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: #25bb4f;
}

.article__body-text {
  margin: 1em 0em 0em 0em;
  font-size: 13px;
  line-height: 1.25;
}

.article__body-text p:not(:last-child) {
  margin: 0em 0em 1em 0rem;
}

.article__body-image {
  margin: 1.85em 0em 0em 0em;
  display: block;
}

.article__body-image img {
  border-radius: 20px;
  height: 290px;
}

.article__label {
  background: url("../img/article-1.svg") 0 0 no-repeat, url("../img/article-2.svg") 100% 100% no-repeat #25bb4f;
  background-size: 30% auto;
  color: #fff;
  border-radius: 25px;
  padding: 1.85em 1.7em;
  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;
}

.article__label-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1944444444;
  text-align: center;
  margin: 0;
}

.article__label-text {
  margin: 1.5em auto 0em auto;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  max-width: 570px;
  text-align: center;
}

.article__label-btn {
  margin: 1.5em 0em 0em 0em;
  background: #fff;
  color: #25bb4f;
}

.article__footer {
  margin: 1.85em 0em 0em 0em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.article__back {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2777777778;
  text-align: center;
  padding: 0.6666666667em 1.4444444444em;
  color: #000000;
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
  border: 1px solid #f2f2f2;
  border-radius: 65px;
}

.article__socials {
  max-width: 175px;
}

.article__socials-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2727272727;
}

.article__socials-items {
  margin: 0.9em 0em 0em 0em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.article__socials-item {
  color: #25bb4f;
  border: 1.07px solid #25bb4f;
  width: 28px;
  height: 28px;
  padding: 0.25em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color 0.3s ease 0s, background-color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s, background-color 0.3s ease 0s;
  transition: color 0.3s ease 0s, background-color 0.3s ease 0s;
}

.article__socials-item path {
  fill: currentColor;
}

.more {
  padding: 5em 0em;
  max-width: 100%;
}

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

.more__title {
  text-align: left;
}

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

.more__prev {
  margin: 0em 0.75em 0em 0em;
}

.more-slider {
  margin: 1.75em 0em 0em 0em;
  padding: 1em 0;
  min-width: auto;
  max-width: none;
  width: 100%;
}

.case {
  padding: 1.5em 0em 4em 0em;
}

.case__title {
  max-width: 780px;
  margin: 0 auto;
}

.case__benefits {
  margin: 1.75em 0em 0em 0em;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.5fr 1fr;
  grid-template-columns: 1.5fr 1fr;
  gap: 11px;
}

.case__benefit {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 0.9em 0.9em 1.85em;
}

.case__benefit:nth-child(3) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.case__benefit-title {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2727272727;
  color: #25bb4f;
}

.case__benefit-text {
  margin: 0.75em 0em 0em 0em;
  font-size: 11px;
  line-height: 1.2;
}

.case-benefits {
  padding: 0em 0em 2.5em 0em;
}

.case-benefits__desc {
  font-size: 14px;
  line-height: 1.25;
}

.case-benefits__desc > *:not(:last-child) {
  margin: 0em 0em 1.25em 0rem;
}

.audience {
  padding: 2.5em 0em 5em;
}

.audience__container {
  max-width: 1412px;
}

.audience__tabs {
  margin: 2.5em 0em 0em 0em;
}

.audience__tabs-buttons {
  background: #f9f9f9;
  border-radius: 46px;
  padding: 0.5em;
  font-size: 20px;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.audience__tabs-button {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.333%;
          flex: 0 1 33.333%;
}

.audience__tabs-button.active {
  background: #25bb4f;
  border-radius: 46px;
  color: #fff;
  padding: 0.775em;
}

.audience__tabs-content {
  margin: 1em 0em 0em 0em;
  background: #f9f9f9;
  border-radius: 25px;
  padding: 4.3em 3.1em 4.45em 5.8em;
}

.audience-item__text {
  font-size: 14px;
  line-height: 1.2;
}

.audience-item__text p:not(:last-child) {
  margin: 0em 0em 1em 0rem;
}

.audience-item__btn {
  margin: 1.4444444444em 0em 0em 0em;
  font-size: 14px;
  padding: 1.1111111111em;
  width: 100%;
}

.reviews {
  padding: 2.5em 0em;
}

.reviews__title {
  margin: 0em 0em 0.5em 0rem;
  text-align: left;
}

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

.reviews__prev {
  margin: 0em 1em 0em 0em;
}

.review-slider {
  margin: 1.45em 0em 0em 0em;
  padding: 1em 0em 2.5em;
}

.review {
  position: relative;
  background: #ffffff;
  -webkit-box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.07);
  padding: 1.5em 0.5em 0em 0.5em;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 320px;
}

.review::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 70px;
  background: url("../img/quote.svg") center/contain no-repeat;
}

.review:not(.swiper-slide-visible) {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.review__quoute {
  font-size: 14px;
  line-height: 1.1666666667;
  text-align: center;
  margin: 0;
}

.review__name {
  position: relative;
  margin: 1.9444444444em auto 0em;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1666666667;
  text-align: center;
}

.review__name::before,
.review__name::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 26.5px;
  height: 1px;
  background: #25bb4f;
}

.review__name::before {
  left: -36px;
}

.review__name::after {
  right: -36px;
}

.review__company {
  margin: 0.75em 0em 0em 0em;
  text-align: center;
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
}

.review__company a {
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
  color: #25bb4f;
}

.review__thumb {
  margin: 0.9375rem auto -1.875rem;
  text-align: center;
  padding: 0.3125rem;
  background: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-box-shadow: 0px 30px 40px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 30px 40px rgba(0, 0, 0, 0.07);
}

.review__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

@media (min-width: 576px) {
  .header__search {
    display: none;
  }

  .ac-trigger span.ac-rate {
    display: block;
  }

  .navigation__list {
    padding: 0em 1em 0em 0em;
  }

  .error__container {
    border-radius: 50px;
    background: url("../img/404-top.svg") 0 0/132px auto no-repeat, #68df8a;
  }

  .error__container::before {
    top: -91px;
    width: 65%;
    height: 60%;
    right: 0;
    left: auto;
  }

  .error__decor:first-of-type {
    display: block;
    top: calc(100% - 40px);
    left: 65%;
  }

  .error__content {
    background: transparent;
    padding: 9.35em 2em 4.1em;
  }

  .error__title {
    font-size: 24px;
  }

  .error__body-title {
    font-size: 32px;
  }

  .error__body-columns {
    margin-top: 2.5em;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .faq {
    padding: 1.5em 0em 8.75em 0em;
  }

  .faq__title {
    padding: 0.75em 1.2142857143em;
    border-radius: 20px;
    font-size: 28px;
  }

  .faq__body .ac-trigger {
    padding: 0.9375rem;
  }

  .blog {
    padding: 3.6em 0em 5em;
  }

  .blog__body {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .article {
    padding: 3.1em 0em 0em 0em;
  }

  .article__header {
    background: #f8f8f8;
    border-radius: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.75em;
  }

  .article__main {
    padding: 1.15em 1.15em 1.15em 0em;
  }

  .article__image {
    border: 1px solid #25bb4f;
    border-radius: 20px;
    overflow: hidden;
    display: block;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

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

  .reviews__title {
    margin: 0em 1em 0em 0em;
  }
}

@media (min-width: 768px) {
  .footer__payment {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .popup {
    padding: 3.6em 2.85em;
  }

  .popup-form__column {
    padding: 3.3em;
  }

  .popup-form__subtitle {
    font-size: 20px;
  }

  .popup-form__footer {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .popup-form__btn {
    margin: 0em 1.35em 0em 0em;
  }

  .pagination__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48px;
            flex: 0 0 48px;
    height: 48px;
    font-size: 18px;
  }

  .error__column-title {
    font-size: 18px;
  }

  .error__column-item {
    font-size: 18px;
  }

  .about__label {
    font-size: 20px;
  }

  .about__desc-title {
    font-size: 24px;
  }

  .about__desc-text {
    font-size: 20px;
  }

  .about__mission-title {
    font-size: 24px;
  }

  .about__numbers-title {
    font-size: 36px;
  }

  .about__subtitle {
    font-size: 20px;
  }

  .about__numbers-items {
    margin: 2.1em -0.75em 0em -0.75em;
  }

  .about__numbers-value {
    font-size: 55px;
  }

  .about__benefits {
    margin: 5em 0em 0em 0em;
  }

  .about__benefits-title {
    font-size: 36px;
  }

  .about__benefits-subtitle {
    font-size: 18px;
  }

  .about__benefits-items {
    margin: 2.3em 0em 0em 0em;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .about__benefits-item {
    border-radius: 20px;
    font-size: 18px;
    padding: 1.1111111111em 3.0555555556em 2.0555555556em 1.6666666667em;
  }

  .about__benefits-item::before {
    width: 50px;
    height: 50px;
    border-radius: 20px 0px;
  }

  .about__benefits-item::after {
    font-size: 18px;
    width: 50px;
    height: 50px;
  }

  .about__contacts {
    margin: 5em 0em 0em 0em;
  }

  .about__contacts-title {
    font-size: 36px;
  }

  .about__contacts-items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 4.6em 0em 0em 0em;
  }

  .about__contacts-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 380px;
            flex: 0 1 380px;
  }

  .about__contacts-item:not(:last-child) {
    margin: 0em 1em 0em 0em;
  }

  .about__contacts-thumb {
    margin-top: -47px;
    width: 94px;
    height: 94px;
  }

  .about__contacts-name {
    font-size: 22px;
  }

  .about__contacts-text {
    font-size: 18px;
  }

  .about__clients {
    margin: 2.1276595745em auto 0em;
    font-size: 47px;
  }

  .questions__body-item .ac-content {
    font-size: 20px;
  }

  .questions__body-title.ac-trigger {
    font-size: 22px;
  }

  .blog__filtres {
    margin: 0 -0.6em;
  }

  .blog__filter {
    padding: 0.3em 0.6em;
  }

  .blog__filter-content {
    font-size: 16px;
  }

  .blog__tags {
    margin: 1.25em auto 0em auto;
  }

  .blog__tags-items {
    font-size: 16px;
  }

  .blog__body {
    margin: 2.75em 0em 0em 0em;
    row-gap: 55px;
  }

  .blog__item.swiper-slide {
    max-width: 320px;
  }

  .blog__stat {
    font-size: 12px;
  }

  .blog__stat img {
    width: 20px;
  }

  .blog__info {
    padding: 0.5em 0em 0.5em 1em;
  }

  .blog__item-tag {
    font-size: 16px;
  }

  .blog__time {
    font-size: 16px;
  }

  .blog__title {
    font-size: 18px;
  }

  .blog__desc {
    font-size: 16px;
  }

  .blog__more {
    font-size: 16px;
  }

  .article__category {
    font-size: 18px;
  }

  .article__stats {
    margin: 1.8em -0.5em 0em -0.5em;
  }

  .article__stat {
    font-size: 14px;
  }

  .article__tags {
    font-size: 16px;
  }

  .article__info {
    margin: 2.5em 0em 0em 0em;
    gap: 25px;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .article__info-column {
    padding: 2em 1em 1.4em 2em;
  }

  .article__info-column:nth-child(1) {
    padding: 2em 3.4em 2.2em 2.25em;
  }

  .article__info-title {
    font-size: 24px;
  }

  .article__info-filtres .blog__filter {
    padding: 0.3em 0.375em;
  }

  .article__info-list {
    font-size: 16px;
  }

  .article__body {
    margin: 2.5em 0em 0em 0em;
  }

  .article__body-section:not(:last-child) {
    margin: 0em 0em 2.5em 0rem;
  }

  .article__body-caption {
    font-size: 24px;
  }

  .article__body-text {
    font-size: 20px;
  }

  .article__body-image {
    margin: 2.5em 0em 0em 0em;
  }

  .article__body-image img {
    height: 451px;
  }

  .article__label {
    background-size: 18% auto;
    padding: 2.8em;
  }

  .article__label-title {
    font-size: 36px;
  }

  .article__label-text {
    font-size: 20px;
  }

  .article__footer {
    margin: 2.5em 0em 0em 0em;
  }

  .article__back {
    font-size: 18px;
  }

  .article__socials {
    max-width: 241px;
  }

  .article__socials-title {
    font-size: 22px;
  }

  .article__socials-item {
    width: 37px;
    height: 37px;
  }

  .case {
    padding: 3.5em 0em 2.5em 0em;
  }

  .case__benefits {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 2.5em 0em 0em 0em;
    gap: 20px;
  }

  .case__benefit {
    padding: 1.55em 1.7em 1.95em;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(33.333% - 20px);
            flex: 0 1 calc(33.333% - 20px);
  }

  .case__benefit:nth-child(3) {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .case__benefit:last-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .case__benefit-title {
    font-size: 22px;
  }

  .case__benefit-text {
    font-size: 20px;
  }

  .case-benefits {
    padding: 2.5em 0em 2.5em 0em;
  }

  .case-benefits__desc {
    font-size: 20px;
  }

  .audience-item__text {
    font-size: 20px;
  }

  .audience-item__btn {
    font-size: 18px;
  }

  .review-slider {
    padding: 1em 2em 5em;
  }

  .review {
    padding: 2.8em 2.25em 0em 2.25em;
  }

  .review {
    max-width: 540px;
  }

  .review::before {
    width: 118px;
    height: 143px;
  }

  .review__quoute {
    font-size: 18px;
  }

  .review__name {
    font-size: 18px;
  }

  .review__company {
    font-size: 18px;
  }

  .review__thumb {
    margin: 2.1875rem auto -3.75rem;
    padding: 0.625rem;
    width: 121px;
    height: 121px;
  }
}

@media (min-width: 991.98px) {
  .offer-map .offer__body::before {
    background: url(../img/offer-map-bg-left.svg) left bottom no-repeat;
  }
}

@media (min-width: 1000px) {
  .footer__payment {
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .popup-form {
    -ms-grid-columns: 55% 45%;
    grid-template-columns: 55% 45%;
  }

  .map {
    padding: 1.7em 0em 8.7em 0em;
  }

  .map__columns {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .map__column-title {
    font-size: 28px;
  }

  .map__column-item {
    font-size: 20px;
  }

  .error {
    padding: 6.7em 0em 5em 0em;
  }

  .error__container {
    border-radius: 84px;
    background: url("../img/404-right.svg") 102.5% 102.5%/235px auto no-repeat, #68df8a;
  }

  .error__container::before {
    top: -29px;
    right: -110px;
    width: 55%;
    height: 70%;
  }

  .error__decor {
    font-size: 208px;
  }

  .error__decor:first-of-type {
    top: calc(100% - 80px);
    left: -60px;
  }

  .error__content {
    padding: 8em 6.5em 5.2em;
  }

  .error__body-columns {
    margin-top: 3.25em;
  }

  .faq__body {
    gap: 20px;
    margin-top: 1.6em;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .about__label {
    margin: 2.25em 0em 0em 0em;
  }

  .about__desc {
    margin: 2em 0em 0em 0em;
  }

  .about__mission {
    margin: 3.7em 0em 0em 0em;
  }

  .road {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .road::before {
    width: 100%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%;
  }

  .road::after {
    display: none;
  }

  .road__item {
    margin: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }

  .blog {
    padding: 5em 0em;
  }

  .blog__filter-content {
    font-size: 18px;
  }

  .blog__body {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    row-gap: 20px;
  }

  .article {
    padding: 4.65em 0em 0em 0em;
  }

  .article__header {
    padding: 0.95em 0.95em 0.95em 3.95em;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .article__main {
    max-width: 494px;
  }

  .article__image {
    max-width: 480px;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .article__body-image img {
    height: auto;
  }

  .more-slider {
    padding: 1em 2em;
  }

  .case__benefits {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .case__benefit {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }

  .case__benefit:last-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 480px;
            flex: 0 0 480px;
  }
}

@media (min-width: 1110px) {
  .panel-tabs__left {
    max-width: 455px;
  }

  .panel-tabs__right {
    padding-top: 0;
  }
}

@media (min-width: 1200px) {
  .map__columns {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .about__numbers-items {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .about__numbers-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 154px;
            flex: 1 0 154px;
  }

  .about__benefits-subtitle {
    display: none;
  }
}

@media (min-width: 1400px) {
  .popup-form__column {
    padding: 3.45em 4.95em;
  }

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

  .about__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    margin: 0em 2.5em 0em 0em;
  }
}

@media (max-width: 1595px) {
  .feedback__list {
    margin-right: -4%;
  }

  .feedback__item {
    margin-right: 4%;
    width: 183px;
    height: 100px;
  }
}

@media (max-width: 1400px) {
  .about__side {
    display: none;
  }
}

@media (max-width: 1310px) {
  .header__logo {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .header__menu {
    display: none;
  }

  .header__login {
    margin-right: 30px;
  }

  .burger {
    display: block;
    --burger-width: 31px;
    --burger-height: 24px;
    --burger-line-height: 4px;
    position: relative;
    border: none;
    padding: 0;
    width: var(--burger-width);
    height: var(--burger-height);
    color: var(--green-color);
    background-color: transparent;
    cursor: pointer;
  }

  .burger::after,
  .burger::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: var(--burger-line-height);
    border-radius: 47px;
    background-color: currentColor;
    -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  }

  .burger::before {
    top: 0;
  }

  .burger::after {
    top: calc(100% - var(--burger-line-height));
  }

  .burger__line {
    position: absolute;
    right: 0;
    top: 50%;
    width: 77.4193548387%;
    height: var(--burger-line-height);
    border-radius: 47px;
    background-color: currentColor;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }

  .burger--active::before {
    top: 50%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  }

  .burger--active::after {
    top: 50%;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  }

  .burger--active .burger__line {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }

  .hero__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 150px;
  }

  .hero__left {
    padding: 0;
    margin: 0 0 83px;
    text-align: center;
  }

  .hero__left > :not(:last-child) {
    margin: 0 auto 30px;
  }
}

@media (max-width: 1110px) {
  .tabs__panel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .panel-tabs__left {
    margin-right: 0;
    margin-bottom: 60px;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }

  .panel-tabs__right {
    padding-top: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}

@media (max-width: 1024px) {
  .hero {
    background: 0 0;
  }

  .hero::before {
    background: url(../img/left-circle-tablet-bg.svg) left top no-repeat;
    left: 0;
    width: 79px;
    height: 454px;
    top: 66px;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-animation: none;
    animation: none;
  }

  .hero::after {
    background: url(../img/right-line-tablet-bg.svg) right top no-repeat;
    right: 0;
    width: 154px;
    height: 68px;
    top: 103px;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-animation: none;
    animation: none;
  }

  .hero__container::before {
    content: "";
    position: absolute;
    background: url(../img/left-arrow-tablet-bg.svg) left top no-repeat;
    left: 0;
    top: 830px;
    width: 129px;
    height: 80px;
    pointer-events: none;
    z-index: 10;
  }

  .hero__container::after {
    background: url(../img/right-circle-tablet-bg.svg) right top no-repeat;
    width: 69px;
    height: 258px;
    top: 320px;
  }

  .hero__title {
    font-size: 42px;
  }

  .advantages__title {
    margin-bottom: 57px;
  }

  .advantages__items:not(:last-child) {
    margin: 0 0 60px;
  }

  .advantages__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 330px;
    flex: 0 0 330px;
    font-size: 18.3px;
    line-height: 120.218579235%;
  }

  .advantages__item:not(:last-child) {
    margin: 0 40px 0 0;
  }

  .advantages__item:before {
    width: 85px;
    height: 52px;
  }

  .advantages__scroll {
    top: 200px;
    width: 200px;
    height: 200px;
  }

  .advantages__scroll::before {
    bottom: 110px;
    width: 90px;
  }

  .cases__title {
    margin-bottom: 132px;
  }

  .tabs__nav {
    margin-bottom: 30px;
    padding: 0;
    -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;
    position: absolute;
    width: auto;
    top: -80px;
    background: #fff;
    border-radius: 34px;
    height: 53px;
    overflow: hidden;
  }

  .tabs__nav--active {
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    height: auto;
  }

  .tabs__nav--active .tabs__nav-btn--active::after {
    display: none;
  }

  .tabs__nav-item {
    width: 100%;
  }

  .tabs__nav-item:not(:last-child) {
    margin: 0;
  }

  .tabs__nav-btn {
    width: 100%;
    text-align: left;
    border-radius: 0;
  }

  .tabs__nav-btn--active {
    padding: 15px 50px 15px 25px;
  }

  .tabs__nav-btn--active::after {
    content: "";
    display: block;
    position: absolute;
    right: 25px;
    top: calc(50% + 1px);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 14px;
    height: 7px;
    background: url(../img/arrow-down-fat.svg) center/cover no-repeat;
  }

  .tabs__nav-btn--hide {
    display: none;
  }

  .how-to-work__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 0 74px;
  }

  .how-to-work__first {
    margin-right: 0;
  }

  .how-to-work__last {
    margin-bottom: 68px;
  }

  .pagination__item:nth-child(6),
  .pagination__item:nth-child(7),
  .pagination__item:nth-child(8) {
    display: none;
  }

  .error__decor:last-of-type {
    display: none;
  }

  .road__item:nth-child(4),
  .road__item:nth-child(5),
  .road__item:nth-child(6) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .road__item:nth-child(4) .road__item-text {
    left: calc(100% - 60px);
  }

  .road__item:nth-child(5) .road__item-text {
    left: calc(100% - 60px);
  }

  .road__item:nth-child(6) .road__item-text {
    left: auto;
    right: 0;
    padding: 0em 2.475em 0em 0em;
  }

  .road__item:nth-child(6) .road__item-text::before {
    left: auto;
    right: 23.5px;
  }

  .road__item:nth-child(6) .road__item-text::after {
    left: auto;
    right: 29.5px;
  }
}

@media (max-width: 991.98px) {
  .social__text {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .hero {
    margin-bottom: 80px;
    background: 0 0;
  }

  .hero::before {
    background: url(../img/left-circle-mobile-bg.svg) left top no-repeat;
    left: 0;
    width: 33px;
    height: 237px;
    top: 140px;
  }

  .hero::after {
    background: url(../img/right-circle-mobile-bg.svg) right top no-repeat;
    width: 100%;
    left: 0;
    min-width: 320px;
    height: 82px;
    top: 64px;
  }

  .hero__container::before {
    background: url(../img/left-arrow-mobile-bg.svg) left top no-repeat;
    width: 35px;
    height: 20px;
    top: 80px;
    z-index: 0;
  }

  .hero__container::after {
    background: url(../img/right-line-mobile-bg.svg) right top no-repeat;
    width: 100%;
    left: 0;
    min-width: 320px;
    height: 18px;
    top: 325px;
  }

  .hero__body {
    padding-top: 110px;
  }

  .hero__left {
    margin-bottom: 60px;
  }

  .hero__left > :not(:last-child) {
    margin-bottom: 24px;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__text {
    font-size: 16px;
    padding: 0 15px;
  }

  .hero__right {
    width: 450px;
    height: 300px;
    border-radius: 20px;
  }

  .video__play {
    width: 105px;
    height: 105px;
  }

  .video__info {
    padding: 13px 30px;
  }

  .video__title {
    font-size: 12px;
    max-width: 200px;
  }

  .video__likes,
  .video__views {
    margin-right: 17px;
    font-size: 8px;
    line-height: 118%;
  }

  .video__likes::before,
  .video__views::before {
    width: 17px;
    height: 17px;
    margin-right: 7px;
  }

  .video__likes {
    margin-right: 0;
  }

  .advantages {
    margin-bottom: 80px;
  }

  .advantages__title {
    margin-bottom: 37px;
  }

  .advantages__list {
    max-width: 260px;
    margin: 0 auto;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .advantages__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .advantages__items:not(:last-child) {
    margin: 0 0 30px;
  }

  .advantages__item {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    font-size: 13.7px;
    line-height: 116.7883211679%;
  }

  .advantages__item:not(:last-child) {
    margin: 0 0 30px;
  }

  .advantages__item:before {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45px;
    flex: 0 0 45px;
    width: 45px;
    height: 40px;
  }

  .advantages__scroll {
    top: 210px;
    width: 160px;
    height: 160px;
  }

  .advantages__scroll::before {
    bottom: 90px;
    width: 70px;
  }

  .offer__body {
    padding: 84px;
  }

  .offer__body::before {
    background: url(../img/offer-left-tablet-bg.svg) left top no-repeat;
  }

  .offer__body::after {
    display: none;
  }

  .offer__title {
    margin-bottom: 20px;
    max-width: 420px;
  }

  .offer__text {
    max-width: 370px;
    margin-bottom: 20px;
  }

  .graph__header-point {
    font-size: 9.5px;
    padding-left: 18px;
  }

  .graph__header-point::before {
    left: 2px;
    width: 9px;
    height: 9px;
    border: 1px solid var(--secondary-color);
  }

  .custom-select-opener {
    font-size: 12px;
    padding-right: 13px;
  }

  .custom-select-opener::after {
    width: 7px;
    height: 3.5px;
  }

  .custom-select-option {
    font-size: 12px;
    padding: 9px 6px;
  }

  .tariff__container {
    padding: 0 20px;
  }

  .tariff__title {
    margin-bottom: 50px;
  }

  .tariff__scale {
    padding: 0 32px;
  }

  .tariff__scale-nums span::after {
    font-size: 12px;
    top: -32px;
  }

  .tariff__scale-nums span {
    height: 15px;
  }

  .tariff__scale-nums span:nth-child(10),
  .tariff__scale-nums span:nth-child(13),
  .tariff__scale-nums span:nth-child(4),
  .tariff__scale-nums span:nth-child(7) {
    height: 30px;
  }

  .tariff__prices {
    padding: 0 2%;
    margin-bottom: 49px;
  }

  .tariff__prices span {
    font-size: 13px;
  }

  .tariff__content {
    padding: 36px 30px 18px;
  }

  .tariff__descr {
    margin-bottom: 49px;
  }

  .tariff__amount {
    margin-bottom: 70px;
  }

  .tariff__bottom-chekbox,
  .tariff__checkbox {
    width: 101px;
    height: 34px;
  }

  .tariff__en,
  .tariff__ru {
    font-size: 14.6px;
    line-height: 119.1780821918%;
    padding: 4px 13.8px;
  }

  .how-to-work__subtitle {
    margin-bottom: 40px;
  }

  .how-to-work__content {
    padding: 0;
    max-width: 580px;
    margin: 0 auto;
  }

  .feedback__container {
    padding: 0 40px;
  }

  .feedback__title {
    margin-bottom: 42px;
  }

  .feedback__item {
    width: 183px;
    height: 93px;
    border-radius: 12px;
  }

  .feedback__img {
    padding: 25px 28px;
  }

  .footer {
    padding: 61px 0;
  }

  .footer__payment {
    margin-bottom: 25px;
  }

  .footer__submenu-link {
    font-size: 15px;
  }

  .footer__social .social__link .social__img {
    margin-right: 0;
  }

  .footer__social span {
    display: none;
  }

  .tap-to-top {
    display: none;
  }

  .popup-form__column:nth-child(2) {
    padding-bottom: 6em;
  }

  .pagination__item:nth-child(5) {
    display: none;
  }

  .about__numbers-text {
    font-size: 12px;
  }

  .road::before {
    width: 3px;
    height: 95%;
    top: 0;
    left: 20px;
  }

  .road::after {
    display: none;
  }

  .road__item:nth-child(even) .road__item-text::before {
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 120px;
  }

  .road__item:nth-child(even) .road__item-text::after {
    left: 45px;
    top: 50%;
  }

  .road__item:nth-child(odd) .road__item-text {
    width: 100%;
  }

  .road__item:nth-child(odd) .road__item-text::before {
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 120px;
  }

  .road__item:nth-child(odd) .road__item-text::after {
    left: 45px;
    top: 50%;
  }

  .road__item:nth-child(4),
  .road__item:nth-child(5),
  .road__item:nth-child(6) {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .road__item:nth-child(6) .road__item-text::after {
    left: 45px;
    top: 50%;
  }

  .road__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .road__item:nth-child(even) .road__item-text {
    padding: 0;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .road__item:nth-child(odd) .road__item-text {
    padding: 0;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .road__item:not(:last-child) {
    margin: 0em 0em 2.5em 0rem;
  }

  .road__item-year {
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    font-size: 9px;
  }

  .road__item-text {
    position: static;
    width: 100%;
    margin: 0em 0em 0em 6.6666666667em;
    font-size: 12px;
  }

  .road__item-text::before {
    margin: 0em 0em 0em -2em;
  }

  .road__item-text::after {
    width: 40px;
    height: 1px;
    border-left: 0px;
    top: 50%;
    border-top: 1px dashed rgba(0, 0, 0, 0.25);
  }
}

@media (max-width: 768px) and (max-width: 768px) {
  .road__item:nth-child(6) .road__item-text::before {
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 120px;
  }
}

@media (max-width: 700px) {
  .header__social {
    display: none;
  }
}

@media (max-width: 576px) {
  .page__body.sidebar--active .footer,
  .page__body.sidebar--active .header,
  .page__body.sidebar--active .main {
    -webkit-transform: translateX(-320px);
    -ms-transform: translateX(-320px);
    transform: translateX(-320px);
  }

  .btn {
    padding: 11px 39px;
    font-size: 12px;
    line-height: 125%;
  }

  .title {
    font-size: 24px;
    line-height: 116.6666666667%;
  }

  .subtitle {
    font-size: 12px;
    line-height: 116.6666666667%;
    margin-top: 7px;
  }

  .header__login {
    display: none;
  }

  .sidebar {
    max-width: 320px;
    -webkit-transform: translateX(320px);
    -ms-transform: translateX(320px);
    transform: translateX(320px);
    padding: 15px 20px;
  }

  .sidebar__close {
    width: 16px;
    height: 16px;
    min-height: 16px;
    margin-bottom: 44px;
  }

  .sidebar__list {
    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: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 21px;
    pointer-events: none;
  }

  .sidebar__item {
    pointer-events: auto;
    text-align: right;
  }

  .sidebar__item:not(:last-child) {
    margin-bottom: 19px;
  }

  .sidebar__link {
    font-size: 15px;
    line-height: 126.6666666667%;
  }

  .sidebar__login {
    pointer-events: none;
    margin-bottom: 21px;
  }

  .sidebar__btn {
    pointer-events: auto;
  }

  .sidebar__btn:not(:last-child) {
    margin-right: 17px;
  }

  .sidebar__btn--normal {
    padding: 10px 39px;
    border-radius: 5px;
    font-size: 12.5px;
    line-height: 128%;
  }

  .sidebar__btn--light {
    font-size: 12.5px;
    line-height: 128%;
  }

  .sidebar .social__img {
    width: 22px;
    height: 22px;
  }

  .hero::before {
    left: -10px;
  }

  .hero__container {
    padding: 0 10px;
  }

  .hero__body {
    padding-top: 86px;
  }

  .hero__left {
    margin-bottom: 39px;
  }

  .hero__left > :not(:last-child) {
    margin-bottom: 22px;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__text {
    font-size: 14px;
    line-height: 121.4285714286%;
  }

  .hero__right {
    width: 301px;
    height: 203px;
    border-radius: 14px;
  }

  .video__play {
    width: 70px;
    height: 70px;
  }

  .video__info {
    padding: 9px 19px;
  }

  .video__title {
    font-size: 9px;
    line-height: 122.2222222222%;
    max-width: 121px;
  }

  .video__likes,
  .video__views {
    margin-right: 13px;
    font-size: 6.58382px;
    line-height: 121.2121212121%;
  }

  .video__likes::before,
  .video__views::before {
    width: 13px;
    height: 13px;
    margin-right: 5.5px;
  }

  .video__likes {
    margin-right: 0;
  }

  .advantages__item {
    -webkit-transform: translateZ(0) !important;
    transform: translateZ(0) !important;
    opacity: 1 !important;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    font-size: 13.7px;
    line-height: 116.7883211679%;
  }

  .advantages__scroll {
    display: none;
  }

  .offer {
    margin-bottom: 80px;
  }

  .offer__container {
    padding: 0 12px;
  }

  .offer__body {
    padding: 64px 12px;
  }

  .offer__body::before {
    background: url(../img/offer-left-mobile-bg.svg) left top no-repeat;
  }

  .offer__body::after {
    display: block;
    background: url(../img/offer-right-mobile-bg.svg) right bottom no-repeat;
  }

  .offer__title {
    font-size: 24px;
    line-height: 118.75%;
    max-width: 270px;
    margin-bottom: 15px;
  }

  .offer__text {
    font-size: 12px;
    line-height: 118.3333333333%;
    max-width: 198px;
    margin-bottom: 15px;
  }

  .offer__btn {
    font-size: 12px;
    line-height: 125%;
    padding: 11px 41px;
  }

  .cases__container {
    padding: 0;
  }

  .cases {
    margin-bottom: 80px;
  }

  .cases__title {
    margin-bottom: 63px;
    padding: 0 40px;
  }

  .tabs__content {
    border-radius: 0;
    padding: 42px 20px 40px;
  }

  .tabs__nav {
    height: 32px;
    border-radius: 18px;
    top: -48px;
    left: 20px;
    width: 85%;
  }

  .tabs__nav--active {
    height: auto;
  }

  .tabs__nav-btn {
    font-size: 10px;
    line-height: 120%;
    padding: 10px 21px;
  }

  .tabs__nav-btn--active {
    padding: 10px 40px 10px 21px;
  }

  .tabs__nav-btn--active::after {
    right: 20px;
    top: calc(50% + 1px);
    width: 8px;
    height: 4px;
  }

  .panel-tabs__left {
    padding-left: 0;
    margin-bottom: 45px;
  }

  .panel-tabs__description {
    margin-bottom: 17px;
  }

  .panel-tabs__title {
    font-size: 22px;
    line-height: 118.1818181818%;
  }

  .panel-tabs__description-text {
    font-size: 12px;
    line-height: 116.6666666667%;
  }

  .panel-tabs__description-text:not(:last-child) {
    margin: 0 0 15px;
  }

  .panel-tabs__result {
    max-width: 280px;
    width: 100%;
    padding: 20px 22px;
  }

  .panel-tabs__result::after {
    bottom: 5px;
    right: -110px;
    top: auto;
    -webkit-transform: rotate(90deg) scale(0.7);
    -ms-transform: rotate(90deg) scale(0.7);
    transform: rotate(90deg) scale(0.7);
  }

  .panel-tabs__result-text,
  .panel-tabs__result-title {
    font-size: 12px;
    line-height: 116.6666666667%;
  }

  .panel-tabs__right {
    width: 100%;
  }

  .graph__content {
    overflow-y: scroll;
  }

  .graph__content-item {
    min-width: 650px;
    overflow-y: auto;
  }

  .graph__header {
    margin-bottom: 0;
  }

  .graph__header-point {
    font-size: 8px;
    line-height: 125%;
  }

  .custom-select-opener {
    font-size: 8.5px;
    padding-right: 10px;
  }

  .custom-select-opener::after {
    width: 5px;
    height: 2.5px;
  }

  .custom-select-option {
    font-size: 8.5px;
    padding: 7px 5px;
  }

  .tariff {
    margin-bottom: 80px;
  }

  .tariff__container {
    padding: 0 10px;
  }

  .tariff__title {
    margin-bottom: 20px;
  }

  .tariff__scale {
    padding: 0 16px;
  }

  .tariff__scale-nums {
    top: 29px;
  }

  .tariff__scale-nums span {
    width: 0.37px;
    height: 10px;
  }

  .tariff__scale-nums span::after {
    font-size: 7px;
    top: -20px;
  }

  .tariff__range {
    top: 13px;
    height: 5px;
  }

  .tariff__range::-webkit-slider-thumb {
    height: 18px;
    width: 18px;
    border: 5px solid #fff;
  }

  .tariff__range::-moz-range-thumb {
    height: 18px;
    width: 18px;
    border: 5px solid #fff;
  }

  .tariff__range::-ms-thumb {
    height: 18px;
    width: 18px;
    border: 5px solid #fff;
  }

  .tariff__content::before {
    height: 5px;
  }

  .tariff__scale-nums span:nth-child(10),
  .tariff__scale-nums span:nth-child(13),
  .tariff__scale-nums span:nth-child(4),
  .tariff__scale-nums span:nth-child(7) {
    height: 20px;
  }

  .tariff__prices {
    padding: 0 2%;
    margin-bottom: 13px;
  }

  .tariff__prices span {
    font-size: 8.5px;
  }

  .tariff__content {
    padding: 30px 15px 15px;
    border-radius: 20px;
    margin-bottom: 16px;
  }

  .tariff__descr {
    margin-bottom: 40px;
    font-size: 10.2px;
  }

  .tariff__descr-wrap {
    font-size: 6.2px;
    left: 4.6px;
    width: 12px;
    min-width: 12px;
    height: 12px;
    border: 0.4px solid rgba(255, 255, 255, 0.79);
  }

  .tariff__descr-text {
    display: inline-block;
    font-size: 8px;
    width: 150px;
    bottom: 16px;
    right: -25px;
    padding: 6px 10px;
    border-radius: 8px;
  }

  .tariff__descr-text::after {
    bottom: -7px;
    right: 22px;
    border-width: 8px 8px 0;
  }

  .tariff__price {
    font-size: 12.4px;
    margin-right: 6px;
    line-height: 116.1290322581%;
    margin-bottom: 4px;
  }

  .tariff__price-output {
    font-size: 20px;
    line-height: 117.5%;
  }

  .tariff__amount {
    font-size: 12.4px;
    margin-right: 6px;
    line-height: 116.1290322581%;
    margin-bottom: 47px;
  }

  .tariff__amount-output {
    font-size: 20px;
    line-height: 117.5%;
  }

  .tariff__bottom-text {
    font-size: 9.6px;
    line-height: 114.5833333333%;
  }

  .tariff__bottom-chekbox,
  .tariff__checkbox {
    width: 65px;
    height: 22px;
  }

  .tariff__en,
  .tariff__ru {
    font-size: 9.4px;
    line-height: 119.1489361702%;
    padding: 3px 9px;
  }

  .ac {
    border-radius: 5px;
  }

  .ac:not(:last-child) {
    margin: 0 0 10px;
  }

  .ac::before {
    width: 20px;
    height: 14px;
    margin-right: 8.5px;
  }

  .ac-trigger {
    padding: 12px 26px;
    font-size: 9.6px;
    line-height: 114.5833333333%;
  }

  .ac-trigger.no-icon {
    font-size: 12px;
  }

  .ac-trigger span {
    width: 7px;
    height: 3.8px;
    right: 15px;
    top: 18px;
  }

  .ac-trigger span::after,
  .ac-trigger span::before {
    width: 8.5px;
    right: -1px;
    top: 3px;
  }

  .ac-trigger span.rounded {
    width: 17px;
    height: 17px;
  }

  .ac-trigger span.rounded::after,
  .ac-trigger span.rounded::before {
    width: 10px;
  }

  .ac-content {
    padding: 0 26px 12px;
  }

  .ac-text {
    font-size: 9.6px;
    line-height: 114.5833333333%;
  }

  .ac-btn {
    margin-top: 14px;
    font-size: 10px;
    line-height: 120%;
  }

  .ac-btn::after {
    width: 19px;
    height: 19px;
    margin-left: 7px;
    padding: 8px 6px;
    border: 0.8px solid var(--light-green-color);
    background: url(../img/arrow-right.svg) center/7.6px no-repeat;
  }

  .ac.is-active .ac-trigger span.rounded {
    height: 17px;
  }

  .ac.is-active .ac-trigger span {
    height: 7px;
  }

  .how-to-work {
    margin-bottom: 80px;
  }

  .how-to-work__last {
    margin-bottom: 37px;
  }

  .how-to-work__subtitle {
    margin-bottom: 22px;
  }

  .how-to-work__advantage-list {
    padding: 29px 40px 29px 23px;
    margin-bottom: 23px;
    background-size: 20%;
  }

  .how-to-work__advantage-item:not(:last-child) {
    margin: 0 0 41px;
  }

  .how-to-work__advantage-num {
    font-size: 18px;
    line-height: 122.2222222222%;
    margin-right: 9px;
  }

  .how-to-work__advantage-content {
    max-width: 250px;
  }

  .how-to-work__advantage-title {
    font-size: 9.6px;
    line-height: 114.5833333333%;
  }

  .how-to-work__advantage-title:not(:last-child) {
    margin: 0 0 7.2px;
  }

  .how-to-work__advantage-text {
    font-size: 8.4px;
    line-height: 119.0476190476%;
  }

  .feedback {
    margin-bottom: 80px;
  }

  .feedback__title {
    margin-bottom: 28px;
  }

  .feedback__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: -40px;
    margin-right: 0;
  }

  .feedback__item {
    width: 183px;
    height: 85px;
    border-radius: 11px;
    margin-bottom: 40px;
    margin-right: 0;
  }

  .feedback__img {
    padding: 23px 25px;
  }

  .footer {
    padding: 44px 0 22px;
  }

  .footer__logo {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 48px;
    display: contents;
  }

  .logo__link {
    display: contents;
  }

  .footer__row {
    margin-left: 20px !important;
  }

  .footer__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer__row--revers {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .footer__col {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 15px;
    margin-right: 0;
  }

  .footer__menu-item {
    margin: 0;
  }

  .footer__menu-item:not(:last-child) {
    margin: 0 0 15px;
  }

  .footer__submenu {
    -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;
    margin-bottom: 48px;
    margin-right: 0;
  }

  .footer__submenu-item {
    margin: 0;
  }

  .footer__submenu-item:not(:last-child) {
    margin: 0 0 15px;
  }

  .footer__text {
    text-align: center;
  }

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

  .footer__address {
    margin-bottom: 32px;
  }

  .footer__payment {
    margin-bottom: 32px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer__payment-img {
    height: 22px;
  }

  .search {
    display: none;
  }

  .navigation__search.active {
    display: block;
    position: absolute;
    top: 28px;
    right: 70px;
    z-index: 1000;

  }
  .header__search-btn.hidden {
    display: none;
  }

  .faq__item:not(:last-child) {
    margin-bottom: 2em;
  }

  .faq__body .ac-content {
    font-size: 11px;
    line-height: 1.3333333333;
  }
}

@media (max-width: 575px) {
  .another_links {
    display: none;
  }
}

@media (max-width: 1000px) and (min-width: 576px) {
  .another_links {
    right: 15px;
    left: unset;
  }
}

@media (any-hover: hover) {
  .social__text:hover {
    color: var(--light-green-color);
  }

  .btn:hover {
    background: var(--secondary-color);
    color: var(--light-green-color);
    border: 2px solid var(--light-green-color);
  }

  .menu__link:hover {
    color: var(--light-green-color);
    text-decoration: underline;
  }

  .social__link:hover path {
    fill: var(--grey-color);
  }

  .btn-menu--light:hover {
    color: var(--green-color);
    text-decoration: underline;
  }

  .btn-menu:hover {
    background: var(--grey-color);
  }

  .offer__btn:hover {
    -webkit-box-shadow: 0 2px 42px rgba(255, 255, 255, 0.8);
            box-shadow: 0 2px 42px rgba(255, 255, 255, 0.8);
    color: var(--light-green-color);
  }

  .sidebar .social__link:hover path {
    fill: var(--secondary-color);
  }

  .video:hover .video__play circle {
    fill: var(--secondary-color);
    stroke: var(--light-green-color);
    stroke-width: 2px;
  }

  .video:hover .video__play path {
    fill: var(--light-green-color);
  }

  .custom-select-opener:hover {
    text-decoration: underline;
  }

  .ac-btn:hover {
    text-decoration: underline;
  }

  .popup__close:hover::before,
  .popup__close:hover::after {
    background: #000;
  }

  .popup-form__btn .btn-white:hover {
    background: var(--grey-color);
    color: #fff;
    border-color: var(--grey-color);
  }

  .popup-form__question-btn:hover {
    background-color: #25bb4f;
    color: #fff;
  }

  .popup-form__question-btn:hover svg path {
    fill: #fff;
  }

  .checkbox a:hover {
    text-decoration: none;
  }

  .navigation__list-link:not(.active):hover {
    text-decoration: underline;
  }

  .search__btn:hover {
    color: #25bb4f;
  }

  .pagination__item[href]:not(.pagination__item_left, .pagination__item_right):hover {
    background: #25bb4f;
    color: #fff;
  }

  .pagination__item_left:hover,
  .pagination__item_right:hover {
    color: black;
  }

  .menu__item._parent:hover .menu__link {
    color: #25bb4f;
    text-decoration: underline;
  }

  .menu__item._parent:hover .menu__link svg {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .menu__item._parent:hover .submenu {
    opacity: 1;
    visibility: visible;
    top: 100%;
  }

  .submenu.menu__submenu .submenu__item:hover {
    background: #f9f9f9;
    color: #000;
  }

  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    background: #25bb4f;
    color: #fff;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #ca7206;
  }

  .map__column-title:hover {
    text-decoration: underline;
  }

  .map__column-link:hover {
    color: var(--light-green-color);
  }

  .map__column-text a:hover {
    text-decoration: underline;
  }

  .error__column-title:hover {
    text-decoration: underline;
  }

  .error__column-link:hover {
    text-decoration: none;
  }

  .about__contacts-name:hover {
    color: #0a009c;
  }

  .about__side-link:hover {
    text-decoration: underline;
  }

  .road__item-year:hover {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
  }

  .road__item-text:hover {
    color: #0a009c;
  }

  .blog__filter-content:hover {
    background: rgba(203, 203, 203, 0.2);
  }

  .blog__tag-link:hover {
    color: #1d903d;
  }

  .blog__image:hover img {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
  }

  .blog__item-tag:hover {
    color: #1d903d;
  }

  .blog__title:hover {
    color: #25bb4f;
  }

  .blog__more:hover {
    text-decoration: none;
  }

  .article__tag:hover {
    color: #1d903d;
  }

  .article__info-list li a:hover {
    color: #25bb4f;
  }

  .article__label-btn:hover {
    background: #c3bfbf !important;
  }

  .article__back:hover {
    color: #25bb4f;
  }

  .article__socials-item:hover {
    color: #fff;
    background: #25bb4f;
  }

  .review__company a:hover {
    color: #1d903d;
  }
}

.case__benefits_links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.case__benefit_link {
  font-weight: 500;
  line-height: 1.2727272727;
  color: #25bb4f;
  margin: 15px;
  font-size: 16px;
}
.case__benefit_block {
  background: #f9f9f9;
  border-radius: 15px;
  width: 200px;
  height: 120px;
  padding: 25px;
}
@media (max-width: 576px) {
  .case__benefit_block {
    width: 120px;
    height: 90px;
    padding: 15px;
  }
  .case__benefit_link {
    font-weight: 300;
    font-size: 12px;
    margin: 10px;
  }
}

.article__body img {
  height: auto!important;
}


iframe {
  max-width: 100%;
}

strong {
  font-weight: bolder!important;
}
em {
  font-style: italic!important;
}