* {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
}

.page {
  overflow: hidden;
}

.container {
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.slider-top .swiper-slide {
  opacity: 0 !important;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.slider-top .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
  visibility: visible;
}

.page-title {
  color: #282828;
  font-size: 37px;
  font-weight: 700;
  margin-bottom: 55px;
}
@media (max-width: 768px) {
  .page-title {
    font-size: 25px;
    margin-bottom: 30px;
  }
}

.breadcrumbs {
  list-style: none;
  padding: 0;
  margin: 55px 0 10px;
  display: flex;
  gap: 5px;
}
.breadcrumbs li {
  font-size: 14px;
}
@media (max-width: 768px) {
  .breadcrumbs li {
    font-size: 13px;
  }
}
.breadcrumbs li a {
  text-decoration: none;
  color: #E51537;
}
.breadcrumbs li span {
  color: #737371;
}
.breadcrumbs li:after {
  content: "/";
  font-size: 12px;
  color: #E51537;
}
.breadcrumbs li:last-child:after {
  display: none;
}

.subtitle {
  color: #282828;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  margin: 50px 0;
  padding: 0;
  font-size: 25px;
  line-height: 32px;
}
@media (min-width: 768px) {
  .subtitle {
    font-size: 31px;
    line-height: 55px;
  }
}
@media (min-width: 992px) {
  .subtitle {
    font-size: 42px;
    line-height: 55px;
  }
}
.subtitle--left {
  text-align: left;
}

.subtext {
  font-size: 19px;
  line-height: 23px;
  color: #282828;
  font-weight: 700;
  text-align: center;
}

.btn-red-outline {
  cursor: pointer;
  display: inline-block;
  color: #282828;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 25px;
  border: 2px solid #F00;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
.btn-red-outline:hover {
  background-color: #F00;
  color: #fff;
}

.btn-red {
  cursor: pointer;
  display: inline-block;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 25px;
  background-color: #F00;
  border: 2px solid #F00;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
.btn-red:hover {
  background-color: #FF4572;
  color: #fff;
}

.btn-gray-outline {
  cursor: pointer;
  display: inline-block;
  color: #282828;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 25px;
  border: 2px solid #D2D2D2;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
.btn-gray-outline:hover {
  background-color: #FF4572;
  border-color: #FF4572;
  color: #fff;
}

.btn-white-outline {
  cursor: pointer;
  display: inline-block;
  color: #fff;
  background-color: transparent;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 25px;
  border: 2px solid #fff;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
.btn-white-outline:hover {
  background-color: #fff;
  border-color: #fff;
  color: #282828;
}

.btn-white {
  cursor: pointer;
  display: inline-block;
  color: #282828;
  background-color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 25px;
  border: 2px solid #fff;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
.btn-white:hover {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.btn--fw {
  box-sizing: border-box;
  width: 100%;
}

.btn--big {
  padding: 16px 47px;
  font-size: 15px;
}
@media (max-width: 768px) {
  .btn--big {
    padding: 16px 16px;
    font-size: 13px;
  }
}

ul.numbers {
  counter-reset: section;
  list-style: none;
  font-size: 16px;
  line-height: 23px;
  color: #464646;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
  margin: 0;
}
ul.numbers li {
  padding-top: 6px;
  color: #464646;
  padding-left: 55px;
  position: relative;
  counter-increment: section;
}
ul.numbers li:before {
  content: counter(section);
  background: #FF6363;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 4px;
  background-color: #D2D2D2;
  border-radius: 5px;
  display: inline-flex;
  transition: width 0.3s, background-color 0.3s;
}
.swiper-pagination .swiper-pagination-bullet-active {
  width: 40px;
  background-color: #464646;
}

@media (min-width: 992px) {
  .header-mobile {
    display: none;
  }
}
.header-mobile-bg {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgb(40, 40, 40);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.header-mobile-box {
  width: 284px;
  height: 100%;
  position: fixed;
  z-index: 110;
  left: 0;
  top: 0;
  background: rgb(255, 255, 255);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.header-mobile.active .header-mobile-bg {
  opacity: 0.4;
  visibility: visible;
}
.header-mobile.active .header-mobile-box {
  opacity: 1;
  visibility: visible;
}
.header-mobile-close {
  position: absolute;
  left: 100%;
  top: 10px;
  margin-left: 10px;
  background: url(/front/image/close.svg);
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.header-mobile-content ul {
  margin: 0 0 30px 0;
  padding: 0;
  list-style: none;
}
.header-mobile-content ul li {
  color: rgb(40, 40, 40);
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
}
.header-mobile-content ul li a {
  display: block;
  color: rgb(40, 40, 40);
  padding: 10px 0;
  text-decoration: none;
  transition: color 0.3s;
}
.header-mobile-content ul li a:hover {
  color: red;
}
.header-mobile-content ul li.active a {
  color: red;
}
.header-mobile-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.header {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.header-burger {
  background: url(/front/image/burger.svg) center no-repeat;
  width: 25px;
  height: 16px;
  margin-left: auto;
  margin-right: 30px;
  cursor: pointer;
}
@media (min-width: 992px) {
  .header-burger {
    display: none;
  }
}
.header-login {
  background: url(/front/image/login.svg) center no-repeat;
  width: 45px;
  height: 45px;
  cursor: pointer;
  border-radius: 50%;
}
@media (min-width: 992px) {
  .header-login {
    display: none;
  }
}
.header-buttons {
  align-items: center;
  gap: 10px;
  display: none;
}
@media (min-width: 992px) {
  .header-buttons {
    display: flex;
  }
}
.header-menu {
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
  display: none;
}
@media (min-width: 992px) {
  .header-menu {
    display: block;
  }
}
@media (min-width: 1200px) {
  .header-menu {
    padding: 0;
    margin-right: 70px;
  }
}
.header-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}
.header-menu ul li {
  list-style: none;
  color: #6E6E6E;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
}
.header-menu ul li a {
  display: block;
  text-decoration: none;
  color: #6E6E6E;
  padding-bottom: 2px;
  border-bottom: 3px solid transparent;
  transition: border-bottom-color 0.3s, color 0.3s;
}
.header-menu ul li a:hover {
  color: #282828;
  border-bottom-color: #F00;
}
.header-menu ul li.active a {
  color: #282828;
  border-bottom-color: #F00;
}

.footer {
  padding-bottom: 46px;
  margin-top: 105px;
}
.footer-top {
  padding-bottom: 34px;
  display: flex;
  align-items: center;
}
.footer-menu {
  margin-left: auto;
  margin-right: 70px;
}
@media (max-width: 992px) {
  .footer-menu {
    display: none;
  }
}
.footer-menu ul {
  display: flex;
  gap: 36px;
}
.footer-menu ul li {
  list-style: none;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  color: #6E6E6E;
}
.footer-menu ul li a {
  color: #6E6E6E;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-menu ul li a:hover {
  color: #282828;
}
.footer-menu ul li.active a {
  color: #282828;
}
@media (max-width: 992px) {
  .footer-button {
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  .footer-logo img {
    max-width: 130px;
  }
}
.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #D3D7E1;
  color: #A0A0A0;
  font-size: 13px;
  line-height: 1.2;
}
.footer-bottom a {
  color: #A0A0A0;
  text-decoration: none;
}
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
  }
}

/**
 * Swiper 11.0.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 5, 2024
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.top {
  background: url(/front/image/top-bg.svg) top center repeat-x;
}
@media (max-width: 1200px) {
  .top {
    background-position: bottom center;
  }
}

.home {
  background-image: url(/front/image/bg.svg);
  background-position: top 82px center;
  background-repeat: space;
}
.home .top {
  background-image: url(/front/image/bg.svg), url(/front/image/top-bg.svg);
  background-position: top 82px center, top center;
  background-repeat: space, repeat-x;
}
@media (max-width: 1200px) {
  .home .top {
    background-position: top 82px center, bottom center;
  }
}

.video {
  background-image: url(/front/image/top-bg-video.svg);
  background-position: top 82px center;
  background-repeat: space;
}
.video .top {
  background-image: url(/front/image/top-bg-video.svg), url(/front/image/top-bg.svg);
  background-position: top 82px center, top center;
  background-repeat: space, repeat-x;
}
@media (max-width: 1200px) {
  .video .top {
    background-position: top 82px center, bottom center;
  }
}

.slider-top {
  padding-bottom: 50px;
}
.slider-top .swiper {
  overflow: visible;
}
.slider-top .absolute {
  position: absolute;
  z-index: 2;
}
.slider-top__row {
  display: flex;
}
.slider-top__left {
  position: relative;
  margin-right: auto;
  padding-top: 10px;
  display: none;
}
.slider-top__left img {
  max-height: 354px;
}
@media (min-width: 768px) {
  .slider-top__left {
    display: block;
  }
}
@media (min-width: 1200px) {
  .slider-top__left img {
    max-height: none;
  }
}
.slider-top__middle {
  align-self: center;
  text-align: center;
  margin: 0 auto;
  padding-top: 40px;
}
@media (min-width: 768px) {
  .slider-top__middle {
    padding-top: 0;
  }
}
.slider-top__right {
  position: relative;
  padding-top: 85px;
  margin-left: auto;
  display: none;
}
.slider-top__right img {
  max-height: 354px;
}
@media (min-width: 768px) {
  .slider-top__right {
    display: block;
  }
}
@media (min-width: 1200px) {
  .slider-top__right img {
    max-height: none;
  }
}
.slider-top-title {
  color: #282828;
  text-align: center;
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
}
@media (min-width: 768px) {
  .slider-top-title {
    font-size: 32px;
    line-height: 36px;
  }
}
@media (min-width: 1200px) {
  .slider-top-title {
    font-size: 55px;
    line-height: 55.8px;
  }
}
.slider-top-subtitle {
  display: inline-block;
  color: #282828;
  text-align: center;
  font-weight: 700;
  background: #ECECEC;
  padding: 8px 12px 12px;
  border-right: 2px solid #282828;
  border-left: 2px solid #282828;
  font-size: 30px;
  line-height: 36px;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .slider-top-subtitle {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 16px;
    margin-top: 16px;
  }
}
@media (min-width: 1200px) {
  .slider-top-subtitle {
    font-size: 55px;
    line-height: 55.8px;
  }
}
.slider-top-text {
  color: #282828;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 36px;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .slider-top-text {
    font-size: 32px;
    line-height: 36px;
    margin-top: 16px;
  }
}
@media (min-width: 1200px) {
  .slider-top-text {
    font-size: 55px;
    line-height: 55.8px;
  }
}
.slider-top-button {
  margin-top: 38px;
  text-align: center;
}
@media (min-width: 768px) {
  .slider-top-button {
    margin-top: 60px;
  }
}

/* home */
.a2l2 {
  left: 61.7%;
  z-index: -1;
}
@media (max-width: 1200px) {
  .a2l2 {
    width: 193px;
  }
}

.a2l3 {
  left: -30px;
  top: 50%;
}
@media (max-width: 1200px) {
  .a2l3 {
    width: 50px;
  }
}

.a2r2 {
  left: -15%;
  bottom: 10%;
}
@media (max-width: 1200px) {
  .a2r2 {
    width: 50px;
  }
}

.a2r3 {
  right: -22px;
  top: 32%;
}
@media (max-width: 1200px) {
  .a2r3 {
    width: 50px;
  }
}

.a3r2 {
  left: -35px;
  top: 45%;
}
@media (max-width: 1200px) {
  .a3r2 {
    width: 118px;
  }
}

.a3l2 {
  top: 38%;
  left: 100%;
}
@media (max-width: 1200px) {
  .a3l2 {
    width: 29px;
  }
}

/* reviews */
.ar1l2 {
  top: 24%;
  right: -20px;
}
@media (max-width: 1200px) {
  .ar1l2 {
    top: 23%;
    right: -14px;
    width: 108px;
  }
}

/* video */
.av1l2 {
  top: 50%;
  right: -45px;
}
@media (max-width: 1200px) {
  .av1l2 {
    width: 60px;
    right: -25px;
  }
}

.av2l2 {
  top: 60%;
  right: -45px;
}
@media (max-width: 1200px) {
  .av2l2 {
    width: 60px;
    right: -25px;
  }
}

.av3r2 {
  right: 0;
  top: 10%;
}
@media (max-width: 1200px) {
  .av3r2 {
    width: 60px;
  }
}

.questions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 90px 0 134px 0;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .questions {
    margin: 60px 0;
  }
}
@media (min-width: 1200px) {
  .questions {
    flex-wrap: nowrap;
  }
}
.questions__title {
  color: #282828;
  font-weight: 700;
  font-size: 25px;
  line-height: 32px;
}
@media (min-width: 768px) {
  .questions__title {
    font-size: 31px;
    line-height: 55px;
  }
}
@media (min-width: 992px) {
  .questions__title {
    font-size: 42px;
    line-height: 55px;
  }
}
.questions__column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex-basis: 33.3333%;
}
.questions__column--second-title {
  display: none;
  text-align: center;
}
@media (max-width: 1200px) {
  .questions__column {
    flex-basis: calc(50% - 15px);
  }
  .questions__column--second-title {
    display: block;
    flex-basis: 100%;
  }
  .questions__column--title {
    display: none;
  }
}
@media (max-width: 768px) {
  .questions__column {
    flex-basis: 100%;
  }
}

.question {
  border-radius: 35px 0px 35px 35px;
  padding: 19px 15px;
  background: #F9F9F9;
  display: flex;
  gap: 12px;
}
.question-icon {
  flex-shrink: 0;
  flex-grow: 0;
}
.question-title {
  color: #282828;
  font-weight: 700;
  margin-bottom: 7px;
  font-size: 14px;
  line-height: 18px;
}
@media (min-width: 768px) {
  .question-title {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (min-width: 992px) {
  .question-title {
    font-size: 19px;
    line-height: 23px;
    margin-bottom: 10px;
  }
}
.question-text {
  color: #464646;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}

.products {
  margin: 134px 0;
}
@media (max-width: 1200px) {
  .products {
    margin: 60px 0;
  }
}
.products__row {
  display: flex;
  gap: 30px;
}
.products__row .product {
  flex-basis: 33.3333%;
}
@media (max-width: 992px) {
  .products__row {
    flex-wrap: wrap;
    gap: 50px;
  }
  .products__row .product {
    flex-basis: 100%;
  }
}
@media (max-width: 768px) {
  .products__row {
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .product {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .product {
    align-items: flex-start;
  }
}
.product-image {
  margin-bottom: 36px;
}
.product-image img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 992px) {
  .product-image {
    margin-bottom: 0;
    height: 180px;
    width: 160px;
    margin-right: 36px;
    flex-grow: 0;
    flex-shrink: 0;
  }
}
@media (max-width: 768px) {
  .product-image {
    margin-right: 10px;
    height: 96px;
    width: 84px;
  }
}
.product-title {
  color: #282828;
  text-align: center;
  font-size: 21px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 13px;
}
@media (max-width: 992px) {
  .product-title {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .product-title {
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 8px;
  }
}
.product-text {
  color: #464646;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .product-text {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .product-text {
    margin-bottom: 8px;
  }
}
.product-link {
  text-align: center;
}
@media (max-width: 992px) {
  .product-link {
    text-align: left;
  }
}
.product-link a {
  color: #A0A0A0;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
}

.promo {
  position: relative;
  margin-top: 178px;
  margin-bottom: 233px;
  border-radius: 35px;
  background: #FF6363;
  padding-top: 41px;
  padding-left: 71px;
  padding-bottom: 41px;
}
@media (max-width: 1200px) {
  .promo {
    margin: 60px 0;
    min-height: 240px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
  }
}
@media (max-width: 768px) {
  .promo {
    padding: 34px 20px;
    text-align: center;
    min-height: auto;
  }
}
.promo__title {
  color: #FFF;
  font-size: 36px;
  font-weight: 700;
  line-height: 41px;
  margin-bottom: 30px;
  max-width: 535px;
}
@media (max-width: 768px) {
  .promo__title {
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    max-width: 240px;
    margin: 0 auto 20px auto;
  }
}
.promo:before {
  content: "";
  background: url(/front/image/promo.png);
  width: 403px;
  height: 245px;
  position: absolute;
  bottom: 15px;
  right: 84px;
}
@media (max-width: 1200px) {
  .promo:before {
    right: -20px;
    bottom: 40px;
  }
}
@media (max-width: 992px) {
  .promo:before {
    display: none;
  }
}

.promo-qr {
  margin: 220px 0 120px 0;
  padding: 50px 90px;
  background: #FF6363;
  border-radius: 35px;
  display: flex;
}
@media (max-width: 768px) {
  .promo-qr {
    margin: 180px 0 60px 0;
  }
}
@media (max-width: 768px) {
  .promo-qr {
    margin-bottom: 120px;
  }
}
@media (max-width: 1200px) {
  .promo-qr {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 768px) {
  .promo-qr {
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.promo-qr-image {
  background: url(/front/image/promo-qr.png);
  width: 392px;
  height: 279px;
  padding-top: 50px;
  padding-left: 78px;
  box-sizing: border-box;
  margin-bottom: -50px;
  margin-top: -145px;
  margin-right: -20px;
  position: relative;
  right: -60px;
  flex-grow: 0;
  flex-shrink: 0;
}
@media (max-width: 1200px) {
  .promo-qr-image {
    margin-top: -140px;
    right: 0px;
  }
}
@media (max-width: 768px) {
  .promo-qr-image {
    background: url(/front/image/promo-qr-mini.png);
    width: 295px;
    height: 212px;
    margin: 20px auto -100px;
  }
  .promo-qr-image img {
    max-width: 150px;
  }
}
@media (max-width: 768px) {
  .promo-qr-box {
    width: 100%;
    text-align: center;
  }
}
.promo-qr-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 41px;
  color: #fff;
}
@media (max-width: 1200px) {
  .promo-qr-title {
    font-size: 28px;
    white-space: nowrap;
  }
}
@media (max-width: 768px) {
  .promo-qr-title {
    font-size: 21px;
  }
}
.promo-qr-text {
  font-size: 24px;
  line-height: 41px;
  color: #fff;
}
@media (max-width: 1200px) {
  .promo-qr-text {
    font-size: 16px;
    line-height: 22px;
  }
}

.integrations {
  margin: 130px 0;
}
@media (max-width: 992px) {
  .integrations {
    margin: 60px 0;
  }
}
.integrations__row {
  align-items: center;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.integrations__row .integration {
  flex-basis: calc(33.33333% - 20px);
}
@media (max-width: 1200px) {
  .integrations__row .integration {
    flex-basis: calc(50% - 30px);
  }
}
@media (max-width: 768px) {
  .integrations__row .integration {
    flex-basis: 100%;
  }
}

.integration {
  display: flex;
  align-items: center;
  gap: 18px;
}
.integration__icon {
  flex-grow: 0;
  flex-shrink: 0;
}
.integration__text {
  color: #464646;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
}
@media (max-width: 992px) {
  .integration__text {
    font-size: 14px;
  }
}

.cabinet {
  margin: 150px 0;
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cabinet {
    flex-wrap: wrap;
    margin: 60px 0;
  }
}
@media (max-width: 992px) {
  .cabinet--desktop {
    display: none;
  }
}
@media (min-width: 992px) {
  .cabinet--mobile {
    display: none;
  }
}
.cabinet__title {
  color: #282828;
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 25px;
  line-height: 32px;
}
@media (min-width: 768px) {
  .cabinet__title {
    font-size: 31px;
    line-height: 55px;
  }
}
@media (min-width: 992px) {
  .cabinet__title {
    font-size: 42px;
    line-height: 55px;
  }
}
@media (max-width: 992px) {
  .cabinet__title {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .cabinet__text {
    width: 100%;
  }
}
.cabinet__image img {
  max-width: 100%;
}
@media (max-width: 992px) {
  .cabinet__image {
    width: 100%;
    text-align: center;
  }
  .cabinet__image img {
    margin-bottom: 30px;
  }
}
.cabinet ul {
  counter-reset: section;
  max-width: 555px;
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}
@media (max-width: 992px) {
  .cabinet ul {
    max-width: none;
  }
}
.cabinet ul li {
  padding-top: 8px;
  display: flex;
  gap: 22px;
  counter-increment: section;
  margin-bottom: 23px;
  color: #464646;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}
.cabinet ul li:before {
  content: counter(section);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid #D2D2D2;
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #282828;
  font-size: 15px;
  font-weight: 600;
  line-height: 25px;
  margin-top: -8px;
}
.cabinet ul li a {
  color: #464646;
}

.simple-slider-image {
  display: flex;
  border: 1px solid rgb(210, 210, 210);
  border-radius: 15px;
  padding: 16px 34px;
  text-align: center;
}
.simple-slider-image img {
  height: auto;
  width: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.partners {
  margin: 120px 0;
}
@media (max-width: 992px) {
  .partners {
    margin: 60px 0;
  }
}

.reviews-slider {
  position: relative;
}
.reviews-slider .swiper-button-prev {
  cursor: pointer;
  position: absolute;
  right: 100%;
  top: 50%;
  margin-top: -25px;
  margin-right: 20px;
  background-image: url(/front/image/slide-left.svg);
  width: 50px;
  height: 50px;
  border: 1px solid rgb(210, 210, 210);
  border-radius: 50%;
}
.reviews-slider .swiper-button-prev.swiper-button-disabled {
  opacity: 0.6;
}
@media (max-width: 768px) {
  .reviews-slider .swiper-button-prev {
    top: 100%;
    right: 50%;
    margin-top: 20px;
    margin-right: 5px;
  }
}
.reviews-slider .swiper-button-next {
  cursor: pointer;
  position: absolute;
  left: 100%;
  top: 50%;
  margin-left: 20px;
  margin-top: -25px;
  background-image: url(/front/image/slide-right.svg);
  width: 50px;
  height: 50px;
  border: 1px solid rgb(210, 210, 210);
  border-radius: 50%;
}
.reviews-slider .swiper-button-next.swiper-button-disabled {
  opacity: 0.6;
}
@media (max-width: 768px) {
  .reviews-slider .swiper-button-next {
    top: 100%;
    left: 50%;
    margin-top: 20px;
    margin-left: 5px;
  }
}

.reviews {
  margin: 120px 0;
}
@media (max-width: 992px) {
  .reviews {
    margin: 60px 0 120px 0;
  }
}

.review {
  padding: 30px;
  position: relative;
}
@media (max-width: 768px) {
  .review {
    padding: 0;
  }
}
.review:before {
  content: "";
  position: absolute;
  background: url(/front/image/quote.svg);
  width: 42px;
  height: 33px;
  right: 30px;
  top: 30px;
}
@media (max-width: 768px) {
  .review:before {
    display: none;
  }
}
.review-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.review-title {
  display: flex;
  gap: 14px;
  margin-bottom: 6px;
}
.review-rating ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 6px;
}
.review-rating ul li {
  background: url(/front/image/star.svg);
  width: 16px;
  height: 15px;
}
.review-rating ul li.active {
  background: url(/front/image/star-active.svg);
}
.review-date {
  color: rgb(110, 110, 110);
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
}
.review-avatar {
  flex-grow: 0;
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  overflow: hidden;
  border-radius: 50%;
}
.review-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.review-name {
  color: rgb(40, 40, 40);
  font-size: 20px;
  font-weight: 600;
  line-height: 21px;
}
.review-text {
  color: rgb(70, 70, 70);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}

.for {
  margin: 120px 0;
}
@media (max-width: 992px) {
  .for {
    margin: 60px 0;
  }
}
.for-list {
  gap: 25px;
  display: flex;
}
@media (max-width: 768px) {
  .for-list {
    flex-wrap: wrap;
  }
}

.for-item {
  flex-basis: 25%;
  text-align: center;
}
@media (max-width: 768px) {
  .for-item {
    flex-basis: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
  }
}
.for-item-icon {
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .for-item-icon {
    margin-bottom: 0;
  }
}
.for-item-text {
  font-size: 15px;
  line-height: 23px;
  font-weight: 500;
  color: rgb(70, 70, 70);
}
@media (max-width: 992px) {
  .for-item-text {
    font-size: 13px;
    line-height: 21px;
  }
}

.how {
  margin: 120px 0;
}
@media (max-width: 992px) {
  .how {
    margin: 60px 0;
  }
}
.how .swiper-slide {
  width: 264px;
}

.how-item-image {
  position: relative;
  margin-bottom: 27px;
}
.how-item-next {
  position: absolute;
  top: 50%;
  right: 0;
  width: 29px;
  height: 13px;
  background: url(/front/image/how-right.svg);
  margin-top: -6px;
}
.how-item-text {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: rgb(40, 40, 40);
}

.tariff-line {
  display: flex;
  gap: 45px;
  border-top: 15px solid #FF6363;
  border-radius: 15px;
  background: #F9F9F9;
  padding: 24px 50px 30px;
}
@media (max-width: 992px) {
  .tariff-line {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 768px) {
  .tariff-line {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.tariff-line > div {
  flex-basis: 33.3333%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .tariff-line > div {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .tariff-line > div {
    flex-basis: 100%;
  }
}

.tariff {
  margin: 120px 0;
}
@media (max-width: 992px) {
  .tariff {
    margin: 60px 0;
  }
}
.tariff-title {
  min-height: 85px;
  border-right: 1px solid #D9D9D9;
  font-size: 21px;
  font-weight: 700;
  color: #FF6363;
}
@media (max-width: 992px) {
  .tariff-title {
    border-right: 0;
  }
}
@media (max-width: 768px) {
  .tariff-title {
    min-height: 0;
  }
}
.tariff-price {
  min-height: 85px;
  border-right: 1px solid #D9D9D9;
}
@media (max-width: 992px) {
  .tariff-price {
    border-right: 0;
    margin-top: -10px;
  }
}
@media (max-width: 768px) {
  .tariff-price {
    min-height: 0;
  }
}
.tariff-button {
  padding-right: 0 !important;
  text-align: center;
}
@media (max-width: 768px) {
  .tariff-button {
    text-align: left;
  }
}
.tariff-price-value {
  font-weight: 700;
  font-size: 17px;
  line-height: 45px;
}
.tariff-price-title {
  font-size: 13px;
  line-height: 20px;
  color: #464646;
}

.why {
  margin: 120px 0;
}
@media (max-width: 768px) {
  .why {
    margin: 60px 0;
  }
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.why-item {
  padding: 30px;
  background: #F9F9F9;
  border-radius: 35px;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .why-item {
    align-items: flex-start;
  }
}
.why-item-title {
  color: #282828;
  font-size: 19px;
  line-height: 23px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .why-item-title {
    font-size: 15px;
    line-height: 21px;
  }
}
.why-item-image {
  flex-shrink: 0;
  flex-grow: 0;
}
.why-item-image img {
  max-width: 100%;
}
@media (max-width: 768px) {
  .why-item-image img {
    width: 60px;
  }
}
.why-item-text {
  font-size: 13px;
  line-height: 20px;
  color: #464646;
}

.whom {
  margin: 120px 0;
}
@media (max-width: 768px) {
  .whom {
    margin: 60px 0;
  }
}

.whom-items {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
}
@media (max-width: 992px) {
  .whom-items {
    max-height: 235px;
    overflow: hidden;
  }
}
.whom-items:before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(0deg, rgb(255, 255, 255) 6.538%, rgba(255, 255, 255, 0) 138.593%);
}

.whom-item {
  font-size: 15px;
  line-height: 23px;
  font-weight: 600;
  color: #282828;
  padding: 13px 25px;
  white-space: nowrap;
  border: 1px solid #D2D2D2;
  border-radius: 25px;
}
@media (max-width: 992px) {
  .whom-item {
    font-size: 14px;
    padding: 11px 20px;
  }
}
@media (max-width: 768px) {
  .whom-item {
    font-size: 13px;
    padding: 8px 15px;
  }
  .whom-item--hide-mobile {
    display: none;
  }
}

.example {
  margin: 120px 0;
}
@media (max-width: 768px) {
  .example {
    margin: 60px 0;
  }
}
.example-slider {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .example-slider {
    margin-bottom: 40px;
  }
}
.example-screen {
  margin: 0 auto;
  background: url(/front/image/screen-laptop.png);
  width: 812px;
  height: 473px;
  box-sizing: border-box;
  padding: 22px 99px 63px 99px;
}
.example-screen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 992px) {
  .example-screen {
    width: 720px;
    height: 419px;
    background-size: contain;
    padding: 19px 88px 54px 90px;
  }
}
@media (max-width: 768px) {
  .example-screen {
    width: 278px;
    height: 162px;
    padding: 8px 34px 21px 35px;
  }
}

.form-title {
  margin-bottom: 30px;
  font-size: 25px;
  color: #282828;
  font-weight: 700;
}
@media (max-width: 768px) {
  .form-title {
    font-size: 18px;
  }
}
.form-box {
  background-color: #6E85F8;
  border-radius: 15px;
  padding: 23px 30px;
}
.form-right {
  flex-grow: 0;
  flex-shrink: 0;
  width: 458px;
}
@media (max-width: 992px) {
  .form-right {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .form-left {
    width: 100%;
  }
}
.form-row {
  display: flex;
  gap: 30px;
}
@media (max-width: 992px) {
  .form-row {
    flex-wrap: wrap;
  }
}
.form-name {
  font-weight: 700;
  color: #fff;
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 20px;
}
.form-privacy {
  margin-top: 12px;
  color: #D6DCFC;
  font-size: 13px;
  line-height: 18px;
}
.form-privacy a {
  color: #fff;
  text-decoration: none;
}
.form-control {
  position: relative;
  margin-bottom: 13px;
}
.form-control input[type=text],
.form-control input[type=password],
.form-control input[type=email] {
  box-sizing: border-box;
  height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 10px;
  border: 0;
  width: 100%;
}
.form-control .password-hide {
  position: absolute;
  top: 50%;
  background: url(/front/image/password.svg);
  width: 23px;
  height: 18px;
  margin-top: -9px;
  right: 15px;
  cursor: pointer;
}

.products-video-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.products-video-row .product-video {
  flex-basis: calc(50% - 15px);
}
@media (max-width: 992px) {
  .products-video-row .product-video {
    flex-basis: 100%;
  }
}

.product-video {
  display: flex;
  gap: 25px;
}
.product-video-image {
  flex-shrink: 0;
  flex-grow: 0;
}
.product-video-image img {
  max-width: 100%;
  display: block;
}
@media (max-width: 768px) {
  .product-video-image {
    width: 90px;
  }
}
.product-video-title {
  font-size: 21px;
  line-height: 26px;
  font-weight: 700;
  color: #282828;
  margin-bottom: 13px;
}
@media (max-width: 768px) {
  .product-video-title {
    font-size: 15px;
    line-height: 21px;
  }
}
.product-video-text {
  font-size: 13px;
  line-height: 20px;
  color: #464646;
  margin-bottom: 18px;
}
.product-video-link {
  font-size: 14px;
  line-height: 20px;
  color: #A0A0A0;
}
.product-video-link a {
  color: #A0A0A0;
  text-decoration: none;
}

.steps {
  margin: 120px 0;
}
@media (max-width: 992px) {
  .steps {
    margin: 60px 0;
  }
}
.steps .swiper-slide {
  width: 264px;
}
.steps-text {
  margin-top: 40px;
  color: #464646;
  font-size: 14px;
  line-height: 23px;
}
.steps-buttons {
  margin-top: 37px;
  display: flex;
  justify-content: center;
}

.steps-item-image {
  position: relative;
  margin-bottom: 27px;
}
.steps-item-next {
  position: absolute;
  top: 50%;
  right: 0;
  width: 29px;
  height: 13px;
  background: url(/front/image/how-right.svg);
  margin-top: -6px;
}
.steps-item-text {
  font-size: 17px;
  line-height: 23px;
  font-weight: 600;
  color: #282828;
}

@media (max-width: 768px) {
  .tools-buttons {
    text-align: center;
  }
}
.tools .subtitle {
  margin-top: 0;
}
@media (max-width: 768px) {
  .tools .subtitle {
    text-align: center;
  }
}
.tools-row {
  display: flex;
  gap: 30px;
}
.tools-left {
  max-width: 654px;
}
@media (max-width: 1200px) {
  .tools-left {
    max-width: none;
  }
}
.tools-right {
  padding-top: 100px;
}
@media (max-width: 1200px) {
  .tools-right {
    display: none;
  }
}
.tools-right img {
  width: 580px;
  margin-right: -100px;
}
@media (max-width: 1200px) {
  .tools-right img {
    width: 400px;
  }
}

.tools-items {
  display: flex;
  gap: 10px;
  flex-direction: column;
  margin-bottom: 50px;
}

.tools-item {
  border-left: 10px solid transparent;
  border-radius: 10px;
  background: #F9F9F9;
  padding: 20px;
  cursor: pointer;
}
.tools-item--color-1 {
  border-left-color: #6E85F8;
}
.tools-item--color-2 {
  border-left-color: #FF6363;
}
.tools-item--color-3 {
  border-left-color: #FFD874;
}
.tools-item--color-4 {
  border-left-color: #68DECC;
}
.tools-item-title {
  color: #282828;
  font-size: 17px;
  line-height: 20px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .tools-item-title {
    font-size: 15px;
  }
}
.tools-item-text {
  font-size: 13px;
  line-height: 20px;
  color: #464646;
  max-height: 0;
  padding-top: 0;
  overflow: hidden;
  transition: max-height 0.3s linear, padding-top 0.3s linear;
}
.tools-item.active .tools-item-text {
  padding-top: 10px;
  max-height: 200px;
}

.cases {
  margin: 120px 0;
}
@media (max-width: 992px) {
  .cases {
    margin: 60px 0;
  }
}
.cases .swiper-slide {
  width: auto;
}
.cases .swiper-button-next {
  box-sizing: border-box;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -20px;
  background-image: url(/front/image/slide-right.svg);
  background-size: cover;
  width: 40px;
  height: 40px;
  border: 1px solid rgb(210, 210, 210);
  border-radius: 50%;
  z-index: 2;
}
.cases .swiper-button-next.swiper-button-disabled {
  opacity: 0.6;
}

.cases-content {
  margin-top: 30px;
}

.cases-tabs {
  position: relative;
}
.cases-tabs:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 74px;
  z-index: 2;
  background: linear-gradient(-88.45deg, rgb(255, 255, 255) 62.592%, rgba(255, 255, 255, 0) 99.612%);
}

.cases-tab {
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  line-height: 23px;
  font-weight: 600;
  color: #282828;
  padding: 13px 25px;
  white-space: nowrap;
  border: 1px solid #D2D2D2;
  border-radius: 25px;
  transition: background-color 0.3s, color 0.3s;
}
@media (max-width: 992px) {
  .cases-tab {
    font-size: 14px;
    padding: 11px 20px;
  }
}
@media (max-width: 768px) {
  .cases-tab {
    font-size: 13px;
    padding: 8px 15px;
  }
}
.cases-tab:hover, .cases-tab.active {
  background-color: #6E85F8;
  color: #fff;
}

.case {
  background-color: #F9F9F9;
  padding: 40px;
  margin-bottom: 20px;
  border-radius: 20px;
  color: #282828;
}
@media (max-width: 768px) {
  .case {
    padding: 15px;
  }
}
.case-top {
  display: flex;
  gap: 23px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .case-top {
    flex-wrap: wrap;
  }
}
.case-title {
  font-size: 17px;
  line-height: 23px;
  font-weight: 600;
  color: #282828;
  margin-bottom: 18px;
}
@media (max-width: 992px) {
  .case-title {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .case-title {
    font-size: 15px;
    line-height: 21px;
    text-align: center;
  }
}
.case-prop {
  margin-top: 7px;
  display: flex;
  gap: 50px;
  font-size: 15px;
  line-height: 23px;
}
@media (max-width: 992px) {
  .case-prop {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .case-prop {
    gap: 10px;
  }
}
.case-prop-title {
  width: 150px;
  flex-shrink: 0;
  flex-grow: 0;
}
@media (max-width: 992px) {
  .case-prop-title {
    width: 120px;
  }
}
@media (max-width: 768px) {
  .case-prop-title {
    width: 110px;
  }
}
.case-text {
  font-size: 15px;
  line-height: 23px;
}
@media (max-width: 992px) {
  .case-text {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 768px) {
  .case-text {
    font-size: 13px;
    line-height: 21px;
  }
}
@media (max-width: 768px) {
  .case-props {
    width: 100%;
  }
}
.case-media {
  box-sizing: border-box;
  flex-grow: 0;
  flex-shrink: 0;
  border-radius: 15px;
  padding: 15px 27px;
  background-color: #fff;
  width: 216px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-media img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .case-media {
    margin: 0 auto;
  }
}

.numbers {
  margin: 120px 0;
}
@media (max-width: 768px) {
  .numbers {
    margin: 60px 0;
  }
}
.numbers-list {
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .numbers-list {
    flex-wrap: wrap;
  }
}

.number-item {
  flex-basis: 25%;
}
@media (max-width: 768px) {
  .number-item {
    flex-basis: calc(50% - 15px);
  }
}
.number-item__text {
  color: #464646;
  font-size: 16px;
  line-height: 25px;
}
@media (max-width: 992px) {
  .number-item__text {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .number-item__text {
    font-size: 13px;
  }
}
.number-item__value {
  color: #FF6363;
  font-size: 65px;
  line-height: 55px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .number-item__value {
    font-size: 49px;
  }
}

.whom-video {
  margin: 120px 0;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .whom-video {
    margin: 60px 0;
  }
}
@media (max-width: 1200px) {
  .whom-video {
    flex-direction: column;
  }
}
.whom-video-title {
  font-size: 42px;
  line-height: 55px;
  font-weight: 700;
  color: #282828;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .whom-video-title {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .whom-video-title {
    font-size: 25px;
  }
}
.whom-video-text {
  font-size: 15px;
  line-height: 25px;
  color: #464646;
}
@media (max-width: 1200px) {
  .whom-video-text {
    display: none;
  }
}
.whom-video-text-mobile {
  display: none;
}
@media (max-width: 1200px) {
  .whom-video-text-mobile {
    text-align: center;
    display: block;
  }
}
.whom-video-info {
  min-width: 556px;
}
.whom-video-button {
  margin-top: 40px;
}
@media (max-width: 1200px) {
  .whom-video-button {
    display: none;
  }
}
.whom-video-button-mobile {
  display: none;
}
@media (max-width: 1200px) {
  .whom-video-button-mobile {
    display: block;
  }
}
.whom-video-items {
  max-width: 546px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 1200px) {
  .whom-video-items {
    max-width: none;
  }
}
@media (max-width: 768px) {
  .whom-video-items {
    gap: 20px;
  }
}
.whom-video-item {
  box-sizing: border-box;
  flex-basis: calc(50% - 20px);
  background: #F9F9F9;
  padding: 20px 15px 20px 30px;
  min-height: 160px;
  position: relative;
  border-radius: 20px;
}
@media (max-width: 1200px) {
  .whom-video-item {
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .whom-video-item {
    flex-basis: 100%;
  }
}
@media (min-width: 1200px) {
  .whom-video-item:nth-child(2) {
    margin-top: 30px;
  }
}
.whom-video-item:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #68DECC url(/front/image/whom-okay.svg) center no-repeat;
}
.whom-video-item__title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #282828;
  margin-bottom: 12px;
}
.whom-video-item__text {
  line-height: 20px;
  font-size: 13px;
  color: #464646;
}
.whom-video-item--color-1:before {
  background-color: #68DECC;
}
.whom-video-item--color-2:before {
  background-color: #FFD874;
}
.whom-video-item--color-3:before {
  background-color: #FF6363;
}
.whom-video-item--color-4:before {
  background-color: #6E85F8;
}

.other {
  margin: 120px 0;
}
@media (max-width: 992px) {
  .other {
    margin: 60px 0 120px 0;
  }
}
.other-slider {
  position: relative;
}
.other .swiper-slide {
  height: auto;
}
.other .swiper-button-prev {
  cursor: pointer;
  position: absolute;
  right: 100%;
  top: 50%;
  margin-top: -25px;
  margin-right: 20px;
  background-image: url(/front/image/slide-left.svg);
  width: 50px;
  height: 50px;
  border: 1px solid rgb(210, 210, 210);
  border-radius: 50%;
}
.other .swiper-button-prev.swiper-button-disabled {
  opacity: 0.6;
}
@media (max-width: 768px) {
  .other .swiper-button-prev {
    top: 100%;
    right: 50%;
    margin-top: 20px;
    margin-right: 5px;
  }
}
.other .swiper-button-next {
  cursor: pointer;
  position: absolute;
  left: 100%;
  top: 50%;
  margin-left: 20px;
  margin-top: -25px;
  background-image: url(/front/image/slide-right.svg);
  width: 50px;
  height: 50px;
  border: 1px solid rgb(210, 210, 210);
  border-radius: 50%;
}
.other .swiper-button-next.swiper-button-disabled {
  opacity: 0.6;
}
@media (max-width: 768px) {
  .other .swiper-button-next {
    top: 100%;
    left: 50%;
    margin-top: 20px;
    margin-left: 5px;
  }
}

.other-project {
  background-color: #F9F9F9;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
}
.other-project-detail {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .other-project-detail {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.other-project-logo {
  box-sizing: border-box;
  border: 1px solid #D2D2D2;
  border-radius: 10px;
  padding: 10px 20px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.other-project-logo img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  display: block;
}
.other-project-title {
  color: #282828;
  font-size: 17px;
  line-height: 25px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .other-project-title {
    width: 100%;
    text-align: center;
  }
}
.other-project-text {
  font-size: 14px;
  line-height: 22px;
  color: #6E6E6E;
}

.video-tariffs {
  margin: 120px 0;
}
@media (max-width: 768px) {
  .video-tariffs {
    margin: 60px 0;
  }
}
.video-tariffs-tab-container {
  display: flex;
  justify-content: center;
}
.video-tariffs-tabs {
  display: flex;
  background-color: #F0F0F0;
  justify-content: center;
  margin: 0 0 60px 0;
  border-radius: 25px;
  border: 3px solid #F0F0F0;
}
.video-tariffs-tabs > div {
  padding: 15px 35px;
  background-color: #F0F0F0;
  border-radius: 25px;
  font-size: 17px;
  line-height: 20px;
  font-weight: 700;
  color: #282828;
  cursor: pointer;
}
.video-tariffs-tabs > div.active {
  cursor: default;
  background-color: #fff;
}

.video-tariffs-list {
  display: flex;
  gap: 30px;
}
@media (max-width: 1200px) {
  .video-tariffs-list {
    flex-wrap: wrap;
  }
}

.video-tariff {
  padding: 30px;
  border-radius: 25px;
  background-color: #F9F9F9;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  flex-basis: 25%;
}
@media (max-width: 1200px) {
  .video-tariff {
    flex-basis: calc(50% - 15px);
  }
}
@media (max-width: 768px) {
  .video-tariff {
    flex-basis: 100%;
  }
}
.video-tariff__title {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 20px;
}
.video-tariff__price {
  font-size: 13px;
}
.video-tariff__price span {
  font-size: 37px;
  line-height: 45px;
  font-weight: 700;
  color: #282828;
}
.video-tariff__price .mini {
  font-size: 17px;
  line-height: 45px;
}
.video-tariff__text {
  font-size: 13px;
  line-height: 20px;
  margin-top: 10px;
  margin-bottom: 30px;
}
.video-tariff__bottom {
  margin: 30px -30px -30px;
  margin-top: auto;
  padding: 15px 30px 20px 30px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}
.video-tariff--color-1 .video-tariff__title {
  color: #6E85F8;
}
.video-tariff--color-1 .video-tariff__bottom {
  background-color: #6E85F8;
}
.video-tariff--color-2 .video-tariff__title {
  color: #FF6363;
}
.video-tariff--color-2 .video-tariff__bottom {
  background-color: #FF6363;
}
.video-tariff--color-3 .video-tariff__title {
  color: #68DECC;
}
.video-tariff--color-3 .video-tariff__bottom {
  background-color: #68DECC;
}
.video-tariff--color-4 .video-tariff__title {
  color: #FFD874;
}
.video-tariff--color-4 .video-tariff__bottom {
  background-color: #FFD874;
}

.real-reviews {
  margin: 120px 0;
  background: url(/front/image/real-reviews.png) center no-repeat;
  background-size: contain;
}
@media (max-width: 992px) {
  .real-reviews {
    margin: 60px 0;
  }
}
@media (max-width: 768px) {
  .real-reviews {
    background: none;
  }
}
.real-reviews .swiper-pagination {
  margin-top: 37px;
}
@media (max-width: 768px) {
  .real-reviews .swiper-slide {
    width: 180px;
  }
}

.real-review-wrapper {
  max-width: 500px;
  margin: 0 auto 0 auto;
}
.real-review-title {
  font-size: 19px;
  line-height: 21px;
  font-weight: 600;
  margin-bottom: 3px;
  color: #282828;
}
@media (max-width: 768px) {
  .real-review-title {
    font-size: 14px;
  }
}
.real-review-date {
  font-size: 14px;
  color: #282828;
}
@media (max-width: 768px) {
  .real-review-date {
    font-size: 13px;
  }
}
.real-review-media {
  height: 400px;
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 17px;
}
@media (max-width: 768px) {
  .real-review-media {
    height: 300px;
  }
}
.real-review-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
