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

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

.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 {
  font: 700 20px/125% Geometria, sans-serif;
  display: inline-block;
  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;
  -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;
  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;
}

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

span.menu__link {
  color: var(--main-color);
  cursor:default;
  text-decoration: none;
}
span.menu__link:hover {
  color: var(--main-color) !important;
  cursor:default !important;
  text-decoration: none !important;
}

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


.submenu {
  display: none;
  position: absolute;
  z-index: 400;
  width: 290px;
  background-color: #fff;
  border-radius: 7px;
  box-shadow: 0 0 15px rgb(65 65 65 / 28%);
}

.submenu li {
  width: 100%;
}
.submenu li a, .submenu li span {
  color: #000;
  font-family: 'Rubik', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  display: inline-block;
  width: 100%;
  padding: 20px 32px;
}
.submenu li a:hover {
  background-color: #F9F9F9;
}
.menu__item--submenu:hover .submenu {
  display: block;
}

.sidebar__item.sub-item {
  margin-bottom: 10px !important;
  display: none;
}

.sidebar__link.openned svg {
  transform: rotate(180deg);
}

.sidebar__item.sub-item a {
  font-weight: normal;
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
}

.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 {
  background: url(../img/sidebar-bg.svg) no-repeat -100px calc(100% + 72px)/236px;
  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;
  -webkit-transform: translateX(456px);
  -ms-transform: translateX(456px);
  transform: translateX(456px);
  visibility: hidden;
}

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

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

.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--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: #eaf3f7;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 636px;
  height: 430px;
  border-radius: 29px;
  overflow: hidden;
}

.video {
  background: url(../img/video-preview.png) no-repeat center/100%;
  width: 100%;
  height: 100%;
  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: url(../img/briefcase.svg);
}

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

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

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

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

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

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

.advantages__items:nth-child(4) .advantages__item:nth-child(2)::before {
  background: 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: 700 20px/125% Geometria, sans-serif;
  color: #ffd029;
  padding: 17px 67px;
  background: var(--secondary-color);
  border-radius: 58px;
  text-align: center;
  -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;
}

.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__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 {
  background: #f9f9f9;
  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;
  border-radius: 46px;
  margin-bottom: 20px;
}

.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;
  max-width: 455px;
  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;
  -ms-flex-item-align: end;
  align-self: flex-end;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 730px;
  flex: 0 1 730px;
}

.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 {
  background: #fff;
  max-height: 0;
  overflow: hidden;
  -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: #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 {
  border: 10px 10px 0 solid #fff transparent transparent;
  content: "";
  position: absolute;
  bottom: -9px;
  right: 28px;
  width: 0;
  height: 0;
  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: 700 37.5px/122.6666666667% Geometria, sans-serif;
  margin-right: 19px;
  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;
}

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

.navigation {
  /*padding-top: 4.8em;*/
}

.navigation__container {
  max-width: 1310px;
}

.navigation__list {
  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;
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

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

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

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

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

::-moz-selection {
  background: #f58a07;
  color: #fff;
  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 {
  background: #25bb4f;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 15px 0;
}

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

@media (min-width: 576px) {
  .ac-trigger span.ac-rate {
    display: block;
  }

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

@media (min-width: 768px) {
  .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;
  }
}

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

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

@media (min-width: 1199.98px) {
  .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: 1399.98px) {
  .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: 1399.98px) {
  .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;
  }

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

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

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

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

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

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

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

  .faq__body .ac-content {
    font-size: 11px;
    line-height: 1.3333333333;
  }
}

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

  .navigation__list-link:not(.active):hover {
    text-decoration: underline;
  }

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