[v-cloak] {
  display: none;
}

#bx-notifier-panel {
  display: none;
}

:root {
  --black: #222;
  --black-opacity-75: rgba(34, 34, 34, 0.75);
  --black1: #3f3f3f;
  --white: #fff;
  --white1: #f4f6f7;
  --grey: #d6d6d6;
  --grey1: #a6a6a6;
  --grey2: #737373;
  --grey3: #7a7a7a;
  --grey4: #e0e0e0;
  --grey5: #ccc;
  --grey6: #737373;
  --blue: #096de0;
  --blue1: #0458b8;
  --blue2: #def0ff;
  --blue3: #0b3c83;
  --blue4: #004799;
  --blue5: #0c66cc;
  --blue6: #e0efff;
  --blue7-opacity-75: rgba(33, 49, 68, 0.75);
  --green: #0fe17d;
  --green1: #0d835f;
  --green2: #c9f5cf;
  --green3: #08b98e;
  --green4: #0b481f;
  --orange: #ed500d;
  --orange1: #fd7136;
  --orange2: #e2561a;
  --purple: #ff9aac;
  --red: #ec284b;
}

@font-face {
  src: url("/local/html/fonts/OpenSans/OpenSans-Light.ttf") format("truetype");
  font-family: "Open-Sans";
  font-weight: 300;
  font-style: normal;
}
@font-face {
  src: url("/local/html/fonts/OpenSans/OpenSans-LightItalic.ttf") format("truetype");
  font-family: "Open-Sans";
  font-weight: 300;
  font-style: italic;
}
@font-face {
  src: url("/local/html/fonts/OpenSans/OpenSans-Regular.ttf") format("truetype");
  font-family: "Open-Sans";
  font-weight: 400;
  font-style: normal;
}
@font-face {
  src: url("/local/html/fonts/OpenSans/OpenSans-Italic.ttf") format("truetype");
  font-family: "Open-Sans";
  font-weight: 400;
  font-style: italic;
}
@font-face {
  src: url("/local/html/fonts/OpenSans/OpenSans-Medium.ttf") format("truetype");
  font-family: "Open-Sans";
  font-weight: 500;
  font-style: normal;
}
@font-face {
  src: url("/local/html/fonts/OpenSans/OpenSans-MediumItalic.ttf") format("truetype");
  font-family: "Open-Sans";
  font-weight: 500;
  font-style: italic;
}
@font-face {
  src: url("/local/html/fonts/OpenSans/OpenSans-SemiBold.ttf") format("truetype");
  font-family: "Open-Sans";
  font-weight: 600;
  font-style: normal;
}
@font-face {
  src: url("/local/html/fonts/OpenSans/OpenSans-Bold.ttf") format("truetype");
  font-family: "Open-Sans";
  font-weight: 700;
  font-style: normal;
}
@font-face {
  src: url("/local/html/fonts/OpenSans/OpenSans-ExtraBold.ttf") format("truetype");
  font-family: "Open-Sans";
  font-weight: 800;
  font-style: normal;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  width: 100%;
  height: auto;
  font-family: "Open-Sans", sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: var(--black);
  background-color: var(--white1);
}
@media (max-width: 767.98px) {
  html, body {
    font-size: 16px;
    line-height: 22px;
  }
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

main {
  flex: 1 1;
}

a {
  outline: none;
  border-bottom: 1px solid var(--theme-main);
  text-decoration: none;
  color: var(--blue);
  cursor: pointer;
  touch-action: manipulation;
}

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

button {
  outline: none;
  border-color: transparent;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  background-color: transparent;
}

.collapsing {
  position: relative;
  overflow: hidden;
  height: 0;
  transition: height 0.35s ease;
}

.collapse:not(.show) {
  display: none;
}

.fade {
  transition: opacity 0.15s linear;
}

.fade:not(.show) {
  opacity: 0;
}

.fw-bold {
  font-weight: 700;
}

.d-inline-block {
  display: inline-block;
}

.no-wrap {
  white-space: nowrap;
}

.button {
  display: flex;
  justify-content: center;
  outline: none;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: "Open-Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  background: transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  user-select: none;
  width: max-content;
}

.button--inline-flex {
  display: inline-flex;
}

.button--outline-grey {
  border-color: var(--grey);
  color: var(--black);
}

.button--outline-grey:hover {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
}

.button--blue {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
}

.button--blue:hover {
  border-color: var(--blue1);
  background: var(--blue1);
}

.button--blue1 {
  border-color: var(--blue1);
  color: var(--white);
  background: var(--blue1);
}

.button--blue1:hover {
  border-color: var(--blue4);
  background: var(--blue4);
}

.button--blue-5 {
  color: var(--white);
  background: var(--blue5);
}

.button--blue-5:hover {
  background: var(--blue1);
}

.button--green {
  border-color: var(--green);
  color: var(--white);
  background: var(--green);
}

.button--green:hover {
  border-color: var(--green1);
  background: var(--green1);
}

.button--orange {
  border-color: var(--orange1);
  color: var(--white);
  background: var(--orange1);
}

.button--orange:hover {
  border-color: var(--orange);
  background: var(--orange);
}

.button--md {
  padding: 16px 24px;
  font-size: 18px;
  line-height: 24px;
}

.button--md-a {
  padding: 15px 23px;
  font-size: 18px;
  line-height: 24px;
}
@media (max-width: 767.98px) {
  .button--md-a {
    padding: 11px 19px;
    font-size: 16px;
  }
}

.button--sm {
  padding: 7px 14px;
  font-size: 18px;
  line-height: 24px;
}

.button--sm-2 {
  padding: 12px 20px;
  font-size: 16px;
  line-height: 24px;
}

.button--xs {
  padding: 3px 15px;
  font-size: 14px;
  line-height: 24px;
}

.container {
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 508px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 700px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 928px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1120px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1312px;
  }
}
@media (max-width: 767.98px) {
  .container {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (max-width: 575.98px) {
  .container--xs-p0 {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (max-width: 991.98px) {
  .container--xs-p0 {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (max-width: 1199.98px) {
  .container--only-desktop {
    max-width: none;
  }
}

@media (max-width: 1199.98px) {
  .container--no-lg {
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .container--no-sm {
    padding-right: 0;
    padding-left: 0;
    max-width: none;
  }
}

@media (max-width: 991.98px) {
  .container--no-md {
    padding-right: 0;
    padding-left: 0;
    max-width: none;
  }
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  color: var(--black);
}

.h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
}

.h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 48px;
}

.h3 {
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
}

.h4 {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}

.h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.h6 {
  font-weight: 700;
  font-size: 44px;
  line-height: 56px;
}

@media (max-width: 1199.98px) {
  .h-lg-28 {
    font-size: 28px;
    line-height: 36px;
  }
}

@media (max-width: 1199.98px) {
  .h-lg-36 {
    font-size: 36px;
    line-height: 48px;
  }
}

@media (max-width: 1199.98px) {
  .h-lg-48 {
    font-size: 48px;
    line-height: 64px;
  }
}

@media (max-width: 767.98px) {
  .h-sm-18 {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 767.98px) {
  .h-sm-26 {
    font-size: 26px;
    line-height: 34px;
  }
}

@media (max-width: 767.98px) {
  .h-sm-28 {
    font-size: 28px;
    line-height: 36px;
  }
}

@media (max-width: 767.98px) {
  .h-sm-36 {
    font-size: 36px;
    line-height: 48px;
  }
}

.icon {
  display: block;
  width: 1em;
  height: 1em;
  fill: currentcolor;
  stroke: currentcolor;
  stroke-width: 0;
}

.link {
  outline: none;
  border-bottom: none;
  text-decoration: none;
  transition: 0.3s all;
  cursor: pointer;
  touch-action: manipulation;
}

p {
  margin: 0;
  padding: 0;
}

.p1 {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
}

.p2 {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}

.p2--lh {
  line-height: 28px;
}
@media (max-width: 767.98px) {
  .p2--lh {
    line-height: 24px;
  }
}

.p2a {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}
@media (max-width: 767.98px) {
  .p2a {
    font-size: 16px;
    line-height: 20px;
  }
}

.p3 {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}

.p4 {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}

.p5 {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}

@media (max-width: 767.98px) {
  .p-sm-18 {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 767.98px) {
  .p-sm-16 {
    font-size: 16px;
    line-height: 20px;
  }
}

@media (max-width: 767.98px) {
  .p-sm-14 {
    font-size: 14px;
    line-height: 18px;
  }
}

@media (max-width: 991.98px) {
  .p-md-18 {
    font-size: 18px;
    line-height: 24px;
  }
}

.d-none {
  display: none;
}

@media (max-width: 767.98px) {
  .d-block-sm {
    display: block;
  }
}

.tab-content > .tab-pane {
  display: none;
}

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

.card-small {
  border-radius: 16px;
  background-color: var(--white);
  padding: 24px;
}

.card-medium {
  border-radius: 16px;
  padding: 48px 38px;
  background-color: var(--white);
}
@media (max-width: 767.98px) {
  .card-medium {
    padding: 24px;
  }
}

.card-medium--px-0 {
  padding-right: 0;
  padding-left: 0;
}
@media (max-width: 767.98px) {
  .card-medium--px-0 {
    padding-right: 0;
    padding-left: 0;
  }
}

.detail-button {
  display: flex;
  align-items: center;
  color: var(--blue);
  gap: 8px;
}

.detail-button:not(.collapsed) .detail-button__icon {
  transform: rotate(180deg);
  transition: 0.5s all;
}

.detail-button__icon {
  font-size: 20px;
  transition: 0.5s all;
}

.header {
  position: relative;
  z-index: 10;
  margin-bottom: 48px;
  padding-top: 16px;
  padding-bottom: 16px;
  box-shadow: 0 1px 0 #e1e1e1;
  background-color: var(--white);
}
@media (min-width: 1200px) {
  .header {
    padding: 0;
  }
}
@media (max-width: 1199.98px) {
  .header {
    margin-bottom: 32px;
    padding: 12px 0;
  }
}

.header__container {
  display: grid;
  align-items: center;
  grid-template-columns: 152px auto 151px;
  gap: 0 36px;
}
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .header__container {
    gap: 0 28px;
  }
}
@media (max-width: 1199.98px) {
  .header__container {
    grid-template-columns: 24px auto 32px;
    padding-right: 34px;
    padding-left: 34px;
    max-width: none;
    gap: 0 15px;
  }
}
@media (max-width: 767.98px) {
  .header__container {
    padding-right: 16px;
    padding-left: 16px;
  }
}

.header__logo-link {
  display: flex;
  align-items: center;
}
@media (max-width: 1199.98px) {
  .header__logo-link {
    width: 100%;
    max-width: 133px;
  }
}

.header__logo {
  width: 100%;
  object-fit: contain;
}

.header__burger {
  display: none;
  font-size: 24px;
  color: var(--orange);
  cursor: pointer;
}
@media (max-width: 1199.98px) {
  .header__burger {
    display: block;
  }
}

.header__burger-close {
  padding-top: 5px;
}

/* menu: desktop & mobile */
.header__nav-list, .header__nav-item, .header__nav-list-inner {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.header__nav {
  display: flex;
  align-items: center;
}
@media (max-width: 1199.98px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  gap: 0 24px;
}
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .header__nav-list {
    gap: 0 20px;
  }
}

.header__nav-link {
  font-weight: 600;
  color: var(--black1);
}

@media (max-width: 1199.98px) {
  .header__contact-button {
    display: none;
  }
}

@media (min-width: 1200px) {
  /* lvl 1 */
  .header__nav-list > .header__nav-item {
    position: relative;
  }
  .header__nav-list > .header__nav-item > .header__nav-link {
    display: block;
    padding: 26px 0;
  }
  .header__nav-list > .header__nav-item:hover > .header__nav-link {
    color: var(--grey2);
  }
  /* lvl 2 */
  /* ul */
  .header__nav-list-inner {
    position: absolute;
    display: none;
    list-style-type: none;
    border: 1px solid var(--grey);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 288px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 6px 12px rgba(0, 0, 0, 0.05);
    background: var(--white);
  }
  .header__nav-item-deeper:hover .header__nav-list-inner {
    display: block;
  }
  /* li, a */
  .header__nav-list-inner .header__nav-link {
    display: block;
    padding: 8px 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--black);
  }
  .header__nav-list-inner .header__nav-link:hover {
    background-color: var(--white1);
  }
}
/* mobile */
@media (max-width: 1199.98px) {
  body.menu-opened {
    overflow: hidden;
  }
  body.menu-opened .mCSB_container {
    position: static !important;
  }
  body.menu-opened .header {
    position: fixed;
    flex-wrap: wrap;
    width: 100%;
    background: var(--white);
  }
  body.menu-opened .header__nav {
    display: block;
  }
  .header__nav {
    position: fixed;
    left: 0;
    top: 57px;
    display: none;
    overflow-y: auto;
    width: 100%;
    height: calc(100% - 50px);
    background: var(--white);
  }
  /* lvl all */
  .header__nav-list {
    flex-direction: column;
  }
  .header__nav-link {
    position: relative;
    display: block;
    border-bottom: 1px solid var(--grey4);
    padding: 24px 34px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: var(--black);
  }
  /* deeper */
  .header__nav-item-deeper > .header__nav-link {
    padding-right: 70px;
  }
  .header__nav-item-deeper > .header__nav-link::before {
    content: "";
    position: absolute;
    right: 40px;
    top: 50%;
    display: block;
    margin-top: -8px;
    width: 16px;
    height: 16px;
    background-image: url("/local/html/images/header-menu-arrow.svg");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.75;
    transform: rotate(180deg);
  }
  .header__nav-item-deeper-opened > .header__nav-link::before {
    opacity: 1;
    transform: rotate(0);
  }
  /* lvl 1 */
  .header__nav-link:focus-visible,
  .header__nav-link:hover,
  .header__nav-item-current > .header__nav-link {
    background: var(--white1);
  }
  /* lvl 2 */
  .header__nav-item-deeper > .header__nav-list-inner {
    display: none;
  }
  .header__nav-item-deeper-opened > .header__nav-list-inner {
    display: block;
  }
  .header__nav-list-inner .header__nav-link {
    font-weight: 400;
  }
}
@media (max-width: 1199.98px) and (max-width: 767px) {
  .header__nav-link {
    padding-right: 16px;
    padding-left: 16px;
  }
}
@media (max-width: 1199.98px) and (max-width: 767px) {
  .header__nav-item-deeper > .header__nav-link {
    padding-right: 48px;
  }
  .header__nav-item-deeper > .header__nav-link::before {
    right: 22px;
  }
}
.header__contact-icon {
  display: none;
  margin-left: auto;
  width: max-content;
  font-size: 32px;
  color: var(--orange1);
}
@media (max-width: 1199.98px) {
  .header__contact-icon {
    display: block;
  }
}

@media (max-width: 767.98px) {
  .header--mb-sm-0 {
    margin-bottom: 0;
  }
}

.list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.list--bullets li {
  position: relative;
  padding-left: 28px;
}

.list--bullets li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 14px;
  display: block;
  border-radius: 4px;
  width: 4px;
  height: 4px;
  background: var(--black);
}

.illustration {
  position: relative;
  margin-bottom: 32px;
  height: 272px;
  pointer-events: none;
  user-select: none;
}
@media (min-width: 992px) and (max-width: 1439.98px) {
  .illustration {
    margin-bottom: 12px;
    height: 195px;
  }
}
@media (max-width: 991.98px) {
  .illustration {
    margin-bottom: 48px;
  }
}
@media (max-width: 767.98px) {
  .illustration {
    margin-bottom: 30px;
    height: 180px;
  }
}

.illustration__window {
  position: absolute;
  left: 50%;
  top: 39px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 39px;
  width: 100%;
  height: 222px;
  max-width: 300px;
  box-shadow: 0 2.7px 37.7px rgba(120, 143, 187, 0.25);
  background: rgba(255, 255, 255, 0.4);
  transform: translateX(-50%);
}
@media (min-width: 992px) and (max-width: 1439.98px) {
  .illustration__window {
    top: -13px;
    transform: translateX(-50%) scale(0.65);
  }
}
@media (max-width: 991.98px) {
  .illustration__window {
    top: 55px;
  }
}
@media (max-width: 767.98px) {
  .illustration__window {
    top: -13px;
    transform: translateX(-50%) scale(0.65);
  }
}

.illustration__switch {
  position: absolute;
  left: 88px;
  top: -12px;
  border-radius: 31px;
  width: 46px;
  height: 22px;
  box-shadow: inset -2px 2px 2px rgba(255, 255, 255, 0.25);
  background: linear-gradient(90deg, #7ca7fb 0.35%, #136cfe 103%);
  filter: drop-shadow(0 9px 18px rgba(120, 143, 187, 0.47));
  backdrop-filter: blur(48px);
}

.illustration__switch::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 50%;
  border-radius: 40px;
  width: 18px;
  height: 18px;
  box-shadow: 0 3.65px 3.65px rgba(48, 78, 128, 0.25), inset -1.8px 1.8px 1px rgba(255, 255, 255, 0.25);
  background: linear-gradient(90deg, rgba(227, 242, 255, 0.5) 0%, rgba(250, 255, 255, 0.5) 100%);
  transform: translateY(-50%);
}

.illustration__browser-button {
  border-radius: 40px;
  width: 10.5px;
  height: 10.5px;
  box-shadow: 0 4.3px 4.3px rgba(120, 143, 187, 0.25), inset -2px 2px 1px rgba(255, 255, 255, 0.25);
  transition: 0.3s all;
}

.illustration__browser-control {
  position: absolute;
  left: 21px;
  top: 17px;
  display: flex;
  align-items: center;
  gap: 0 4px;
}

.illustration__button-green {
  background: linear-gradient(204deg, #61e1cb -10%, #00e16f 165%);
}

.illustration__button-yellow {
  background: linear-gradient(90deg, #ffd83d 0%, #ff9a00 100%);
}

.illustration__button-red {
  background: linear-gradient(90deg, #ff7968 0%, #ec284b 100%);
}

.illustration__query-input {
  position: absolute;
  left: 21px;
  top: 41px;
  border-radius: 17px;
  width: 220px;
  height: 12px;
  box-shadow: 0 3.5px 12.5px rgba(120, 143, 187, 0.25), inset -2px 2px 2px #fff;
  background: #f9f4f4;
}

.illustration__line {
  border: 1px solid rgba(34, 34, 34, 0.13);
  border-radius: 17px;
  height: 7px;
  box-shadow: -2px 2px 2px 0 rgba(255, 255, 255, 0.56) inset, 0 3.5px 12.5px 0 rgba(120, 143, 187, 0.25);
  background: linear-gradient(345deg, #fff -53%, #f9f4f4 100%);
  transform: matrix(-1, 0, 0, 1, 0, 0);
}

.illustration__line-1 {
  position: absolute;
  left: 127px;
  top: 67px;
  width: 61px;
}

.illustration__line-2 {
  position: absolute;
  left: 194px;
  top: 67px;
  width: 84px;
}

.illustration__line-3 {
  position: absolute;
  left: 127px;
  top: 80px;
  width: 150px;
}

.illustration__flecks-1 {
  position: absolute;
  left: calc(50% - 296px);
  top: -16px;
  border-radius: 50%;
  width: 370px;
  height: 370px;
  background: linear-gradient(200deg, rgba(0, 204, 249, 0.52) 0%, rgba(24, 241, 163, 0.52) 100%);
  opacity: 0.3;
  filter: blur(40px);
}
@media (min-width: 992px) and (max-width: 1439.98px) {
  .illustration__flecks-1 {
    left: calc(50% - 252px);
    top: -68px;
    transform: scale(0.65);
  }
}
@media (max-width: 767.98px) {
  .illustration__flecks-1 {
    left: calc(50% - 245px);
    top: -40px;
    transform: scale(0.53);
  }
}

.illustration__flecks-2 {
  position: absolute;
  left: calc(50% - 293px);
  top: -73px;
  border-radius: 50%;
  width: 100%;
  height: 341px;
  max-width: 345px;
  background: #2a7af1;
  opacity: 0.2;
  filter: blur(40px);
}
@media (min-width: 992px) and (max-width: 1439.98px) {
  .illustration__flecks-2 {
    left: calc(50% - 225px);
    top: -106px;
    transform: scale(0.53);
  }
}
@media (max-width: 991.98px) {
  .illustration__flecks-2 {
    left: calc(50% - 287px);
    top: -16px;
    transform: scale(0.94);
  }
}
@media (max-width: 767.98px) {
  .illustration__flecks-2 {
    left: calc(50% - 210px);
    top: -64px;
    transform: scale(0.5);
  }
}

.illustration__flecks-3 {
  position: absolute;
  right: calc(50% - 250px);
  top: -56px;
  border-radius: 50%;
  width: 157px;
  height: 159px;
  background: linear-gradient(90deg, rgba(255, 214, 0, 0.2) 0%, rgba(253, 106, 0, 0.2) 100%);
  filter: blur(36px);
}
@media (min-width: 992px) and (max-width: 1439.98px) {
  .illustration__flecks-3 {
    right: calc(50% - 210px);
    top: -71px;
    transform: scale(0.65);
  }
}
@media (max-width: 991.98px) {
  .illustration__flecks-3 {
    transform: scale(0.8);
  }
}
@media (max-width: 767.98px) {
  .illustration__flecks-3 {
    right: calc(50% - 180px);
    top: -20px;
    transform: scale(0.4);
  }
}

.illustration__flecks-4 {
  position: absolute;
  right: calc(50% - 275px);
  top: -66px;
  border-radius: 50%;
  width: 250px;
  height: 250px;
  background: linear-gradient(90deg, rgba(255, 216, 61, 0.2) 0%, rgba(255, 154, 0, 0.2) 100%);
  filter: blur(74px);
}
@media (min-width: 992px) and (max-width: 1439.98px) {
  .illustration__flecks-4 {
    right: calc(50% - 225px);
    top: -91px;
    transform: scale(0.7);
  }
}
@media (max-width: 767.98px) {
  .illustration__flecks-4 {
    right: calc(50% - 200px);
    top: -60px;
    transform: scale(0.65);
  }
}

.illustration__block-1 {
  position: absolute;
  left: 21px;
  bottom: 20px;
  border-radius: 18px;
  width: 91px;
  height: 135px;
  box-shadow: 0 4px 11.5px rgba(120, 143, 187, 0.25), 0 2.7px 37.7px rgba(255, 222, 106, 0.3), inset 6.7px -7.7px 8.7px rgba(237, 80, 13, 0.1), inset -2.8px 2.8px 2px rgba(255, 255, 255, 0.3);
  background: #ffde6a;
  backdrop-filter: blur(9.5px);
}

.illustration__block-2 {
  position: absolute;
  right: 20px;
  bottom: 20px;
  border-radius: 17px;
  width: 151px;
  height: 99px;
  box-shadow: 0 4px 15px rgba(120, 143, 187, 0.25), inset -4.5px 3.5px 4.5px rgba(255, 255, 255, 0.25), inset 3.5px -3.5px 8px rgba(101, 169, 255, 0.2);
  background: #f9f4f4;
}

.illustration__bulb {
  position: absolute;
  right: -15px;
  top: -43px;
  width: 88px;
}

.illustration__bulb-light {
  position: absolute;
  right: 10px;
  top: 35px;
  z-index: -1;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background: linear-gradient(90deg, #ffd83d 0%, #ff9a00 100%);
  filter: blur(44px);
}

.illustration__chart {
  position: absolute;
  left: 12px;
  top: 50%;
  width: 64px;
  height: 64px;
  transform: translateY(-50%);
}

.illustration__parallax-bitrix {
  position: absolute;
  right: -195px;
  top: 80px;
  z-index: 5;
  width: 90px;
}
@media (max-width: 1199.98px) {
  .illustration__parallax-bitrix {
    right: -170px;
  }
}
@media (max-width: 767.98px) {
  .illustration__parallax-bitrix {
    display: none;
  }
}

.illustration__image {
  width: 100%;
  object-fit: contain;
}

.illustration__parallax-code {
  position: absolute;
  left: -170px;
  top: -15px;
  z-index: 5;
  width: 80px;
}
@media (max-width: 1199.98px) {
  .illustration__parallax-code {
    left: -170px;
  }
}
@media (max-width: 767.98px) {
  .illustration__parallax-code {
    display: none;
  }
}

.illustration__list {
  position: absolute;
  left: 25px;
  top: 41px;
  display: grid;
  gap: 6px 0;
}

.illustration__list-item {
  position: relative;
  border-radius: 6px;
  width: 52px;
  height: 4px;
  box-shadow: 0 3px 6.7px 0 rgba(242, 168, 136, 0.4);
  background: linear-gradient(90deg, rgba(227, 242, 255, 0.5) 0%, rgba(250, 255, 255, 0.5) 100%), linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
}

.illustration__list-item::before {
  content: "";
  position: absolute;
  left: -11px;
  top: -1px;
  border: 1.17px solid;
  border-image-source: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 7.5px;
  width: 4.5px;
  height: 4.5px;
  box-shadow: 0 3.5px 8px rgba(242, 168, 136, 0.4);
  background: linear-gradient(90deg, rgba(227, 242, 255, 0.5) 0%, rgba(250, 255, 255, 0.5) 100%);
}

.illustration__rarus {
  position: absolute;
  left: 9.5px;
  bottom: 18.4px;
  width: 30px;
  height: 15px;
}

.illustration__black-line {
  border-radius: 17px;
  height: 4.5px;
  box-shadow: 0 4px 15px rgba(120, 143, 187, 0.25), inset -2px 2px 2px rgba(255, 255, 255, 0.56);
  background: linear-gradient(345deg, #3f3f3f -53%, #616161 99%);
}

.illustration__black-line-1 {
  position: absolute;
  right: 10px;
  top: 37px;
  width: 61px;
}

.illustration__black-line-2 {
  position: absolute;
  right: 18px;
  top: 47px;
  width: 53px;
}

.illustration__black-line-3 {
  position: absolute;
  right: 50px;
  top: 57px;
  width: 21px;
}

.illustration__black-line-4 {
  position: absolute;
  right: 24px;
  top: 57px;
  width: 21px;
}

.illustration__gear {
  position: absolute;
  right: -46px;
  bottom: -12px;
  border-radius: 18px;
  padding: 17px 15px 0;
  width: 91px;
  height: 90px;
  box-shadow: 0 2.6px 37.7px rgba(120, 143, 187, 0.25);
  background: linear-gradient(198deg, #7ca7fb -3%, #136cfe 72%);
  backdrop-filter: blur(9.5px);
}

.illustration__icon-a {
  position: absolute;
  left: -40px;
  bottom: 3px;
  border-radius: 17px;
  padding: 5px 0 0 5px;
  width: 61px;
  height: 61px;
  box-shadow: 0 4px 15px rgba(120, 143, 187, 0.25), inset 3.5px -4.5px 8px rgba(101, 169, 255, 0.2);
  background: #f9f4f4;
}

.illustration__check {
  position: absolute;
  left: 7px;
  bottom: -12px;
  border-radius: 8px;
  padding: 7px 2px 0 0;
  width: 26px;
  height: 27px;
  box-shadow: 0 4.3px 15px rgba(120, 143, 187, 0.25), inset 4.5px -3.5px 21px rgba(0, 0, 0, 0.06), inset -2px 2px 2px rgba(255, 255, 255, 0.62);
  background: linear-gradient(204deg, #61e1cb -10%, #00e16f 165%);
}

.illustration__close {
  position: absolute;
  width: 18px;
  height: 18px;
}

.illustration__close-1, .illustration__close-2 {
  position: relative;
  top: 50%;
  border-radius: 8px;
  width: 11px;
  height: 3px;
  background: #fff;
  transform-origin: center;
}

.illustration__close-1 {
  transform: translateY(-50%) rotate(45deg);
  transform-style: preserve-3d;
}

.illustration__close-2 {
  position: absolute;
  transform: translateY(-50%) rotate(-45deg);
}

.illustration__close-1::before, .illustration__close-1::after {
  content: "";
  position: absolute;
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(120, 143, 187, 0.5);
  inset: 0;
}

.illustration__close-1::before {
  transform: translateZ(-1px);
}

.illustration__close-1::after {
  transform: translateZ(-1px) rotate(90deg);
}

.illustration__block-1 .illustration__close {
  right: 3px;
  top: 5px;
}

.illustration__block-1 .illustration__close-1::before,
.illustration__block-1 .illustration__close-1::after {
  box-shadow: 0 0 4px #fed564;
}

.illustration__block-2 .illustration__close {
  right: 2px;
  top: 5px;
}

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

@media (max-width: 767.98px) {
  .text-sm-center {
    text-align: center;
  }
}
.development {
  margin: 0 auto;
  width: 100%;
}

.development__title {
  margin-bottom: 48px;
}
@media (max-width: 767.98px) {
  .development__title {
    margin-bottom: 32px;
  }
}

.development__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto 32px;
  width: 100%;
  max-width: 890px;
  gap: 32px;
}
@media (max-width: 991.98px) {
  .development__facts {
    grid-template-columns: repeat(2, 1fr);
    max-width: 458px;
    gap: 32px 59px;
  }
}
@media (max-width: 575.98px) {
  .development__facts {
    max-width: 287px;
    gap: 16px 36px;
  }
}

.development__facts-item {
  display: flex;
  align-content: center;
  gap: 0 8px;
}
@media (max-width: 575.98px) {
  .development__facts-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.development__facts-count {
  font-weight: 600;
  font-size: 36px;
  line-height: 36px;
}
@media (max-width: 575.98px) {
  .development__facts-count {
    font-size: 24px;
    line-height: 32px;
  }
}

.development__facts-name {
  font-weight: 600;
}

.development__description {
  margin: 0 auto 32px;
  width: 100%;
  max-width: 863px;
}

.development__button {
  width: 100%;
  max-width: none;
}
@media (min-width: 768px) {
  .development__button {
    margin: 0 auto;
    max-width: 195px;
  }
}

.direction__link, .direction__button {
  display: grid;
  border-radius: 16px;
  height: 100%;
  gap: 32px;
}

.direction__button {
  align-items: end;
  justify-content: normal;
  grid-template-columns: 64px auto 32px;
  padding: 72px 48px 72px 32px;
  background-color: var(--blue);
  width: 100%;
}
@media (max-width: 991.98px) {
  .direction__button {
    padding: 64px 32px;
  }
}
@media (max-width: 767.98px) {
  .direction__button {
    align-items: center;
    justify-items: center;
    grid-template-columns: 1fr;
    padding: 24px;
    max-width: 95%;
  }
}

.direction__link {
  grid-template-columns: 64px auto;
  padding: 32px;
  min-height: 208px;
  background-color: var(--white);
}
@media (max-width: 1439.98px) {
  .direction__link {
    min-height: 192px;
  }
}
@media (max-width: 767.98px) {
  .direction__link {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 16px;
  }
}

.direction__link:hover,
.direction__button:hover {
  box-shadow: 0 10px 25px rgba(120, 143, 187, 0.25);
  backdrop-filter: blur(50px);
}

.direction__icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
}

.direction__image {
  width: 100%;
  object-fit: contain;
}

.direction__body {
  display: flex;
  flex-direction: column;
  color: var(--black);
  gap: 8px;
}
@media (max-width: 767.98px) {
  .direction__body {
    gap: 16px;
  }
}

@media (max-width: 767.98px) {
  .direction__item-title {
    text-align: center;
  }
}

.direction__description {
  font-size: 18px;
  line-height: 24px;
}
@media (max-width: 767.98px) {
  .direction__description {
    font-size: 16px;
    line-height: 22px;
  }
}

.direction__description-item:not(:last-child) {
  margin-bottom: 8px;
}

.direction__button .direction__item-title {
  width: 100%;
  max-width: 260px;
  font-weight: 600;
  line-height: 32px;
  color: var(--white);
}

.direction__arrow {
  font-size: 32px;
  color: var(--white);
}
@media (max-width: 1199.98px) {
  .direction__arrow {
    align-self: center;
  }
}
@media (max-width: 991.98px) {
  .direction__arrow {
    font-size: 35px;
  }
}

.direction__item.swiper-slide {
  height: auto;
}

@media (min-width: 768px) {
  .direction__content.swiper {
    overflow: visible;
  }
}

.projects__slider {
  margin: 0 auto 80px;
  width: 100%;
  max-width: 1087px;
}
@media (max-width: 1199.98px) {
  .projects__slider {
    margin-bottom: 32px;
    max-width: none;
  }
}

.projects__content {
  position: relative;
}

.projects__item.swiper-slide {
  border-radius: 16px;
  height: auto;
}

@media (min-width: 1200px) {
  .projects__button {
    position: absolute;
    top: calc(50% - 70px);
    transform: translateY(-50%);
  }
}

@media (min-width: 1200px) {
  .projects__button.projects__prev,
  .projects__button.projects__next {
    position: absolute;
  }
}

@media (min-width: 1200px) {
  .projects__prev {
    left: calc(50% - 595px);
  }
}
@media (min-width: 1440px) {
  .projects__prev {
    left: calc(50% - 624px);
  }
}

@media (min-width: 1200px) {
  .projects__next {
    right: calc(50% - 595px);
  }
}
@media (min-width: 1440px) {
  .projects__next {
    right: calc(50% - 624px);
  }
}

.projects__all-projects {
  margin-right: auto;
  max-width: 158px;
}
@media (min-width: 1200px) {
  .projects__all-projects {
    margin: 0 auto;
  }
}

.projects__slider-container {
  position: relative;
}

.projects__slider-container::before, .projects__slider-container::after {
  content: "";
  position: absolute;
  left: 50%;
  border-radius: 16px;
  width: 100%;
  height: 100px;
  box-shadow: 0 4px 20px rgba(214, 214, 214, 0.2);
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(-50%);
}
@media (max-width: 1199.98px) {
  .projects__slider-container::before, .projects__slider-container::after {
    display: none;
  }
}

.projects__slider-container::before {
  bottom: -24px;
  max-width: 1027px;
}

.projects__slider-container::after {
  bottom: -48px;
  max-width: 967px;
}

.projects__controls {
  display: flex;
  gap: 8px;
}
@media (max-width: 767.98px) {
  .projects__controls {
    padding-right: 16px;
  }
}

.project-card {
  display: grid;
  grid-template-areas: "title picture " "description picture" "tags picture";
  grid-template-columns: auto 384px;
  grid-template-rows: auto auto 1fr; /* stylelint-disable-line declaration-block-no-redundant-longhand-properties */
  border-radius: 16px;
  padding: 48px;
  width: 100%;
  height: 100%;
  min-height: 376px;
  color: var(--black);
  background-color: #fff;
  gap: 16px 48px;
}
@media (max-width: 1199.98px) {
  .project-card {
    grid-template-areas: "title picture" "description description" "tags tags";
    grid-template-columns: auto 160px;
    gap: 24px 15px;
  }
}
@media (max-width: 767.98px) {
  .project-card {
    grid-template: "picture" "title" "description";
    grid-template-rows: auto auto 1fr; /* stylelint-disable-line declaration-block-no-redundant-longhand-properties */
    padding: 24px;
    gap: 0;
  }
}

.project-card__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.project-card__title {
  position: relative;
  grid-area: title;
  max-width: max-content;
  color: inherit;
}
@media (max-width: 1199.98px) {
  .project-card__title {
    line-height: 32px;
  }
}
@media (max-width: 767.98px) {
  .project-card__title {
    margin-bottom: 8px;
    line-height: 24px;
  }
}

.project-card__title:hover {
  color: var(--blue);
}

.project-card__description {
  grid-area: description;
}

.project-card__tags,
.project-card__tags.tags {
  align-items: flex-end;
  grid-area: tags;
}
@media (max-width: 767.98px) {
  .project-card__tags,
  .project-card__tags.tags {
    display: none;
  }
}

.project-card__picture {
  display: flex;
  grid-area: picture;
  width: 100%;
  height: auto;
  aspect-ratio: 549/400;
}
@media (max-width: 767.98px) {
  .project-card__picture {
    margin-bottom: 16px;
  }
}

@media (min-width: 768px) {
  .project-card--picture-left.project-card {
    grid-template-areas: "picture title" "description description" "tags tags";
    grid-template-columns: 160px auto;
  }
}
@media (min-width: 992px) {
  .project-card--picture-left.project-card {
    grid-template-areas: "picture title" "picture description" "picture tags";
    grid-template-columns: 384px auto;
  }
}

.button-arrow {
  position: relative;
  border: 1px solid var(--grey);
  border-radius: 40px;
  width: 48px;
  height: 48px;
  color: var(--black);
  background: transparent;
  transition: 0.3s all;
  cursor: pointer;
}

.button-arrow:hover {
  border-color: var(--blue);
  color: var(--white);
  background-color: var(--blue);
  transition: 0.3s all;
}

.button-arrow.swiper-button-disabled {
  border: 1px solid var(--grey);
  color: var(--grey);
  background: transparent;
  cursor: default;
}

.button-arrow__icon {
  position: absolute;
  left: 47%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.button-arrow--right .button-arrow__icon {
  left: 55%;
  transform: translate(-50%, -50%) rotate(180deg);
}

@media (min-width: 768px) {
  .products__content.swiper {
    border-radius: 16px;
    padding: 48px;
    box-sizing: border-box;
    background: #fff;
  }
}

.products__item.swiper-slide {
  height: auto;
}

.products__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  color: var(--black);
}
@media (max-width: 767.98px) {
  .products__link {
    border-radius: 16px;
    padding: 24px;
    background: var(--white);
  }
}

.products__picture {
  margin-bottom: 24px;
  height: 190px;
  transition: 0.3s all;
}
@media (max-width: 991.98px) {
  .products__picture {
    margin-bottom: 16px;
    height: 160px;
  }
}
@media (max-width: 767.98px) {
  .products__picture {
    height: 152px;
  }
}

.products__link:hover .products__picture {
  transform: scale(1.2);
  transition: 0.3s all;
}
@media (max-width: 767.98px) {
  .products__link:hover .products__picture {
    transform: scale(1.1);
  }
}

.products__image {
  height: 100%;
  object-fit: contain;
}

.products__item-title {
  margin-bottom: 8px;
}
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .products__item-title {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 767.98px) {
  .products__item-title {
    margin-bottom: 16px;
  }
}

.products__description {
  font-size: 16px;
}

.main-section {
  margin-bottom: 80px;
}
@media (max-width: 1199.98px) {
  .main-section {
    margin-bottom: 64px;
  }
}
@media (max-width: 767.98px) {
  .main-section {
    margin-bottom: 48px;
  }
}

.main-section__title {
  margin-bottom: 48px;
  text-align: center;
}
@media (max-width: 1199.98px) {
  .main-section__title {
    margin-bottom: 32px;
  }
}

@media (max-width: 767.98px) {
  .main-section__title--pr {
    padding-right: 16px;
  }
}

.main-section__title--left {
  text-align: left;
}

.body-spots {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.body-spots ~ * {
  position: relative;
}

.body-spots__item {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
}

.body-spots__item-blue {
  left: 0;
  top: 460px;
  width: 635px;
  height: 1085px;
  background-image: url("/local/html/images/body-bg_blue.svg");
  background-position: left top;
}
@media (max-width: 767.98px) {
  .body-spots__item-blue {
    top: 280px;
    width: 340px;
    height: 580px;
  }
}

.body-spots__item-blue-2 {
  top: 3450px;
}

.body-spots__item-orange {
  right: 0;
  top: 1380px;
  width: 484px;
  height: 1019px;
  background-image: url("/local/html/images/body-bg_orange.svg");
  background-position: right top;
}
@media (max-width: 767.98px) {
  .body-spots__item-orange {
    top: 800px;
    width: 258px;
    height: 544px;
  }
}

.body-spots__item-orange-2 {
  top: 3960px;
}

.breadcrumbs {
  margin-bottom: 64px;
  color: var(--black);
}
@media (max-width: 1199.98px) {
  .breadcrumbs {
    margin-bottom: 48px;
  }
}
@media (max-width: 767.98px) {
  .breadcrumbs {
    display: none;
  }
}

.breadcrumbs__list {
  display: flex;
  column-gap: 10px;
  align-items: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs__link {
  color: var(--grey2);
}
.breadcrumbs__link:hover {
  text-decoration: underline;
}

.breadcrumbs__separator {
  width: 6px;
  height: 8px;
  stroke: var(--grey2);
  stroke-width: 1px;
}

.breadcrumbs__text {
  overflow: hidden;
  max-width: 75vw;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (max-width: 1199.98px) {
  .breadcrumbs__text {
    max-width: 50vw;
  }
}

.footer {
  position: relative;
  padding: 32px 0;
  background-color: #fff;
}
.footer a:hover {
  text-decoration: underline;
}
.footer p {
  margin-bottom: 8px;
}
.footer p:last-child {
  margin-bottom: 0;
}
.footer, .footer a {
  color: var(--grey2);
}
@media (max-width: 767.98px) {
  .footer {
    padding: 24px 0;
  }
}

.footer__inner {
  display: flex;
  column-gap: 32px;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .footer__inner {
    display: block;
    text-align: center;
  }
}

.footer__copyright, .footer__copyright a {
  line-height: 24px;
  color: var(--grey3);
}

.footer__copyright a {
  white-space: normal;
  text-decoration: underline;
}
.footer__copyright a:hover {
  text-decoration: none;
  color: var(--black);
}

.footer__inline {
  display: inline-block;
}
@media (max-width: 991.98px) {
  .footer .footer__inline {
    display: block;
    margin-bottom: 0;
  }
}

@media (max-width: 991.98px) {
  .footer__conf {
    margin-top: 8px;
    white-space: nowrap;
  }
}
.footer__info {
  display: flex;
  column-gap: 36px;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .footer__info {
    margin-top: 24px;
    margin-bottom: 12px;
    text-align: center;
  }
}

.footer__contacts {
  font-weight: 600;
  text-align: right;
}
@media (max-width: 991.98px) {
  .footer__contacts {
    flex: 0 0 100%;
    margin-bottom: 24px;
  }
}
@media (max-width: 767.98px) {
  .footer__contacts {
    margin-top: 0;
    margin-bottom: 12px;
    text-align: center;
  }
}

.footer__phones {
  display: flex;
  column-gap: 16px;
  flex-wrap: wrap;
}

.footer__phones p {
  display: inline-block;
}
@media (max-width: 991.98px) {
  .footer__phones p {
    flex: 0 0 100%;
    margin-bottom: 0;
  }
}

.footer__icons {
  display: flex;
  column-gap: 16px;
}
@media (max-width: 991.98px) {
  .footer__icons {
    flex: 0 0 100%;
    justify-content: flex-end;
  }
}
@media (max-width: 767.98px) {
  .footer__icons {
    justify-content: center;
  }
}

.footer__icon .icon {
  width: 32px;
  height: 32px;
}

.consult-block {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 96px;
  border-radius: 16px;
  padding: 44px 48px;
  background: linear-gradient(270.79deg, #31baf4 -0.66%, #136cfe 98.88%);
}
@media (max-width: 991.98px) {
  .consult-block {
    margin-bottom: 64px;
  }
}
@media (max-width: 767.98px) {
  .consult-block {
    margin-bottom: 48px;
    padding: 24px;
  }
}

.consult-block__info {
  display: flex;
  column-gap: 32px;
  align-items: flex-end;
  padding-right: 284px;
}
@media (max-width: 1199.98px) {
  .consult-block__info {
    display: block;
  }
}
@media (max-width: 991.98px) {
  .consult-block__info {
    padding-right: 230px;
  }
}
@media (max-width: 767.98px) {
  .consult-block__info {
    padding-right: 0;
    padding-bottom: 110px;
    text-align: center;
  }
}

.consult-block__text * {
  color: #fff;
}
@media (max-width: 1199.98px) {
  .consult-block__text {
    margin-bottom: 24px;
  }
}

.consult-block__title {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
}
@media (max-width: 767.98px) {
  .consult-block__title {
    font-size: 18px;
    line-height: 24px;
  }
}

.consult-block__button {
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .consult-block__button {
    width: 100%;
  }
}

.consult-block__image {
  position: absolute;
  right: 70px;
  top: 8px;
}
@media (max-width: 1199.98px) {
  .consult-block__image {
    right: 40px;
    top: auto;
    bottom: 0;
  }
}
@media (max-width: 767.98px) {
  .consult-block__image {
    left: 50%;
    right: auto;
    bottom: -40px;
    margin-left: -98px;
    width: 176px;
  }
}

.category-filter {
  display: flex;
  column-gap: 16px;
  flex-wrap: wrap;
  row-gap: 12px;
}
@media (max-width: 991.98px) {
  .category-filter {
    display: none;
  }
}

.category-filter__item {
  border: 1px solid var(--grey);
  border-radius: 24px;
  padding: 14px 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--black);
  background: var(--white);
  transition: all 200ms;
  cursor: pointer;
}

.category-filter__item:hover, .category-filter__item-active {
  border-color: transparent;
  color: var(--white);
  background: var(--blue);
}

.category-filter-dropdown {
  appearance: none;
  position: relative;
  border: 1px solid var(--grey4);
  border-radius: 8px;
  padding: 14px 50px 14px 16px;
  max-width: 100%;
  font-size: 16px;
  line-height: 20px;
  background-image: url("/local/html/images/select_arrow.svg");
  background-position-x: calc(100% - 20px);
  background-position-y: 20px;
  background-repeat: no-repeat;
  background-color: var(--white);
}
.category-filter-dropdown:focus-visible {
  outline: none;
  border-color: var(--blue);
}
@media (min-width: 992px) {
  .category-filter-dropdown {
    display: none;
  }
}

.category-filter-dropdown__item {
  padding: 10px;
}

.project-list__more button {
  display: inline-flex;
}

.projects-list {
  margin-bottom: 60px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  height: fit-content;
  gap: 16px;
}

.tags__item {
  border: none;
  border-radius: 24px;
  padding: 8px 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--blue);
  background: var(--blue6);
  cursor: pointer;
}

.tags--gray .tags__item {
  color: var(--white);
  background: rgba(160, 160, 160, 0.8);
}

.status {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 767.98px) {
  .status {
    gap: 14px;
  }
}

.status__item {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 8px;
}
@media (max-width: 767.98px) {
  .status__item {
    align-items: center;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.status__picture {
  height: 48px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .status__picture {
    height: 32px;
  }
}

.status__image {
  height: 100%;
  object-fit: contain;
}

.status__name {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
}
@media (max-width: 767.98px) {
  .status__name {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  .status__info {
    text-align: center;
  }
}

.competencies {
  overflow: hidden;
  margin-bottom: 53px;
  padding-bottom: 24px;
}
@media (max-width: 1199.98px) {
  .competencies {
    margin-bottom: 56px;
  }
}

.competencies__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 46px;
  gap: 48px 0;
}
@media (max-width: 1199.98px) {
  .competencies__header {
    flex-direction: column;
  }
}
@media (max-width: 767.98px) {
  .competencies__header {
    gap: 32px 0;
  }
}

.competencies__header .status {
  margin-right: 120px;
}
@media (max-width: 1439.98px) {
  .competencies__header .status {
    margin-right: 0;
  }
}
@media (min-width: 1200px) {
  .competencies__header .status {
    gap: 0 72px;
  }
}

@media (max-width: 1199.98px) {
  .competencies__title {
    text-align: center;
  }
}

.competencies__slider.swiper {
  overflow: visible;
}

.competencies__slide.swiper-slide {
  width: 100%;
  height: auto;
  max-width: 208px;
}

.competencies__slider--few-elements::before,
.competencies__slider--few-elements::after {
  display: none;
}

.competencies__slider.competencies__slider--few-elements {
  overflow: visible;
  padding: 0 15px;
}

.competencies__slider::before,
.competencies__slider::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 10;
  width: 75px;
  height: 100%;
  background: linear-gradient(90deg, #f4f6f7 39.01%, rgba(244, 246, 247, 0) 106.85%);
}
@media (max-width: 767.98px) {
  .competencies__slider::before,
  .competencies__slider::after {
    display: none;
  }
}

.competencies__slider::before {
  left: -1px;
}

.competencies__slider::after {
  right: -1px;
  transform: rotate(180deg);
}

.competencies__item {
  display: grid;
  align-items: center;
  grid-template-columns: 36px auto;
  border: 1px solid #fff;
  border-radius: 16px;
  padding: 21px 28px 21px 23px;
  height: 100%;
  max-width: 208px;
  box-shadow: 0 4px 20px 0 rgba(214, 214, 214, 0.6);
  font-weight: 600;
  color: var(--grey1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  filter: drop-shadow(0 4px 20px rgba(214, 214, 214, 0.6));
  user-select: none;
  backdrop-filter: blur(50.6476px);
  gap: 8px;
}
@media (max-width: 767.98px) {
  .competencies__item {
    padding: 16px 14px;
  }
}

.competencies__icon {
  font-size: 36px;
}

.competencies__name {
  text-transform: uppercase;
}

.article-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--grey);
  border-radius: 16px;
  color: var(--black);
  background: var(--white);
}

.article-card .news-small__title {
  transition: 0.3s all;
}

.article-card:hover .news-small__title {
  color: var(--blue);
  transition: 0.3s all;
}

.article-card__picture {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 25/14;
}

.article-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card__info {
  padding: 24px;
}

.articles__item.swiper-slide {
  height: auto;
}

.articles__slider .article-card {
  height: 100%;
}

.articles__slider {
  margin-bottom: 32px;
}

.articles--in-box .articles__header, .articles--in-box .articles__controls {
  padding-right: 38px;
  padding-left: 38px;
}
@media (max-width: 767.98px) {
  .articles--in-box .articles__header, .articles--in-box .articles__controls {
    padding-right: 24px;
    padding-left: 24px;
  }
}
@media (min-width: 1200px) {
  .articles--in-box .articles__container {
    padding-right: 38px;
    padding-left: 38px;
  }
}

.controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.controls__arrows {
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-small {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.news-small__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-small__date {
  color: var(--grey6);
}

.news-small__duration-text {
  color: var(--grey6);
}

.news-small__duration {
  display: grid;
  grid-template-columns: 24px auto;
  gap: 6px;
}

.news-small__duration-icon {
  font-size: 24px;
  color: var(--grey5);
}

.news-small__title {
  color: var(--black);
}

.main-news__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 32px;
  gap: 32px;
}
@media (max-width: 991.98px) {
  .main-news__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .main-news__content {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 767.98px) {
  .main-news__content .news-small:last-child {
    display: none;
  }
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mb-64 {
  margin-bottom: 64px;
}

.mb-96 {
  margin-bottom: 96px;
}

@media (max-width: 1199.98px) {
  .mb-lg-24 {
    margin-bottom: 24px;
  }
}

@media (max-width: 991.98px) {
  .mb-md-32 {
    margin-bottom: 32px;
  }
}

@media (max-width: 991.98px) {
  .mb-md-64 {
    margin-bottom: 64px;
  }
}

@media (max-width: 767.98px) {
  .mb-sm-12 {
    margin-bottom: 12px;
  }
}

@media (max-width: 767.98px) {
  .mb-sm-24 {
    margin-bottom: 24px;
  }
}

@media (max-width: 767.98px) {
  .mb-sm-32 {
    margin-bottom: 32px;
  }
}

@media (max-width: 767.98px) {
  .mb-sm-48 {
    margin-bottom: 48px;
  }
}

.mt-32 {
  margin-top: 32px;
}

@media (max-width: 767.98px) {
  .mt-sm-24 {
    margin-top: 24px;
  }
}

.container-calc-centred {
  position: relative;
}
@media (max-width: 1199.98px) {
  .container-calc-centred {
    margin-left: calc(50% - 462px);
  }
}
@media (max-width: 991.98px) {
  .container-calc-centred {
    margin-left: calc(50% - 351px);
  }
}
@media (max-width: 767.98px) {
  .container-calc-centred {
    margin-left: calc(50% - 237px);
    padding-right: 0;
    padding-left: 0;
  }
}
@media (max-width: 575.98px) {
  .container-calc-centred {
    margin-left: 16px;
  }
}

.container-calc-centred--only-mobile {
  position: relative;
}
@media (min-width: 768px) {
  .container-calc-centred--only-mobile {
    margin-left: auto;
  }
}

@media (max-width: 1199.98px) {
  .container-calc-centred--in-card-medium {
    margin-left: calc(50% - 462px + 38px);
  }
}
@media (max-width: 991.98px) {
  .container-calc-centred--in-card-medium {
    margin-left: calc(50% - 351px + 38px);
  }
}
@media (max-width: 767.98px) {
  .container-calc-centred--in-card-medium {
    margin-left: calc(50% - 237px + 24px);
    padding-right: 0;
    padding-left: 0;
  }
}
@media (max-width: 575.98px) {
  .container-calc-centred--in-card-medium {
    margin-left: 0;
    padding-left: 24px;
  }
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-visible {
  overflow: visible;
}

.animation-reset {
  opacity: 0;
  animation-name: none;
}

.list-icon {
  display: flex;
  column-gap: 32px;
  flex-wrap: wrap;
  row-gap: 32px;
}
@media (max-width: 991.98px) {
  .list-icon {
    row-gap: 24px;
  }
}
@media (max-width: 767.98px) {
  .list-icon {
    row-gap: 12px;
  }
}

.list-icon__item {
  position: relative;
  display: flex;
  column-gap: 16px;
  width: 100%;
  max-width: calc(50% - 16px);
  row-gap: 32px;
}
@media (max-width: 991.98px) {
  .list-icon__item {
    row-gap: 24px;
  }
}
@media (max-width: 767.98px) {
  .list-icon__item {
    column-gap: 0;
    padding-left: 20px;
    max-width: 100%;
    row-gap: 16px;
  }
}

@media (max-width: 767.98px) {
  .list-icon__item::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 10px;
    width: 8px;
    height: 2px;
    background: var(--black);
  }
}
@media (max-width: 767.98px) {
  .list-icon__icon {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .list-icon--sm-dots .list-icon__item::before {
    left: 6px;
    top: 10px;
    border-radius: 4px;
    width: 4px;
    height: 4px;
  }
}
@media (max-width: 767.98px) {
  .list-icon--sm-images {
    row-gap: 12px;
  }
  .list-icon--sm-images .list-icon__item {
    column-gap: 16px;
    padding-left: 0;
  }
  .list-icon--sm-images .list-icon__item::before {
    content: none;
    display: none;
  }
  .list-icon--sm-images .list-icon__icon {
    display: block;
  }
  .list-icon--sm-images .list-icon__description {
    padding-top: 8px;
  }
}
.review-block {
  border-radius: 16px;
  padding: 48px;
  background: var(--white);
}
@media (max-width: 767.98px) {
  .review-block {
    padding: 32px 24px;
  }
}

.review-block__top {
  display: flex;
  column-gap: 24px;
}

.review-block__top + .author {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--grey);
}

.review-block__description {
  font-size: 16px;
  line-height: 24px;
}

.review-block__picture-link {
  display: inline-block;
  overflow: hidden;
  border-radius: 8px;
  filter: drop-shadow(0 0 10px rgba(114, 114, 114, 0.3));
}
@media (max-width: 767.98px) {
  .review-block__picture-link {
    display: none;
  }
}

.review-block__picture-img {
  width: 128px;
}

.project-intro__top {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  padding: 32px 48px;
  height: 320px;
}
.project-intro__top > * {
  position: relative;
}
@media (max-width: 1199.98px) {
  .project-intro__top {
    padding: 32px;
  }
}
@media (max-width: 767.98px) {
  .project-intro__top {
    border-radius: 0;
    padding: 32px 28px 0;
    height: auto;
    line-height: 36px;
    color: var(--black);
    background: var(--white);
  }
  .project-intro__top .project-intro__tags {
    display: none;
  }
}

.project-intro__title {
  color: var(--white);
}
@media (max-width: 767.98px) {
  .project-intro__title {
    color: var(--black);
  }
}

.project-intro__bottom {
  border-radius: 0 0 24px 24px;
  padding: 32px 48px 50px;
  background: var(--white);
}
@media (max-width: 767.98px) {
  .project-intro__bottom {
    padding: 12px 24px 34px;
  }
}

.project-intro__picture {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  inset: 0;
}
@media (max-width: 767.98px) {
  .project-intro__picture {
    display: none;
  }
}

.project-intro__picture::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(358.86deg, rgb(34, 34, 34) -0.49%, rgba(34, 34, 34, 0.07) 70%, rgba(34, 34, 34, 0) 100%);
  mix-blend-mode: darken;
  inset: 0;
}

.project-intro__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .project-intro__tags {
    display: none;
  }
}
.project-description {
  display: grid;
  gap: 32px;
}

.project-description__picture-text {
  display: grid;
  grid-template-columns: auto 191px;
  gap: 0 100px;
}
@media (max-width: 1199.98px) {
  .project-description__picture-text {
    grid-template-columns: auto 156px;
    gap: 0 30px;
  }
}
@media (max-width: 767.98px) {
  .project-description__picture-text {
    display: flex;
    flex-direction: column-reverse;
    align-items: start;
    gap: 12px;
  }
}

.project-description__picture {
  height: 110px;
}
@media (max-width: 767.98px) {
  .project-description__picture {
    height: 40px;
  }
}

.project-description__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-description__text {
  display: none;
  font-size: 18px;
  line-height: 28px;
}
@media (max-width: 1199.98px) {
  .project-description__text {
    line-height: 24px;
  }
}
@media (max-width: 767.98px) {
  .project-description__text {
    font-size: 16px;
    line-height: 22px;
  }
}

.project-description__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 1199.98px) {
  .project-description__features {
    gap: 20px;
  }
}
@media (max-width: 767.98px) {
  .project-description__features {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (min-width: 768px) {
  .project-description__features {
    display: flex;
    justify-content: space-evenly;
  }
}

.project-description__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  text-align: center;
  gap: 8px;
  min-width: 20%;
}
@media (max-width: 1199.98px) {
  .project-description__feature {
    flex-direction: column;
    gap: 12px;
  }
}

.project-description__feature:first-child {
  justify-self: start;
}
@media (max-width: 767.98px) {
  .project-description__feature:first-child {
    justify-self: center;
  }
}

.project-description__feature:last-child {
  justify-self: end;
}
@media (max-width: 767.98px) {
  .project-description__feature:last-child {
    justify-self: center;
  }
}

.project-description__feature-number {
  font-weight: 600;
  font-size: 36px;
  line-height: 1em;
}
@media (max-width: 1199.98px) {
  .project-description__feature-number {
    font-size: 24px;
  }
}
@media (max-width: 1199.98px) {
  .project-description__feature-number {
    font-size: 22px;
  }
}
@media (max-width: 767.98px) {
  .project-description__feature-number {
    font-size: 24px;
  }
}
@media (max-width: 575.98px) {
  .project-description__feature-number {
    font-size: 20px;
  }
}

@media (max-width: 991.98px) {
  .project-description__feature-text {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 767.98px) {
  .project-description__feature-text {
    font-size: 16px;
    line-height: 20px;
  }
}

.project-description__feature-text {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
}
@media (max-width: 1199.98px) {
  .project-description__feature-text {
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .project-description__feature-text {
    line-height: 20px;
  }
}

@media (min-width: 1200px) {
  .project-description__text--desktop {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .project-description__text--pad {
    display: block;
  }
}

@media (max-width: 767.98px) {
  .project-description__text--mobile {
    display: block;
  }
}

.container-narrow {
  margin: 0 auto;
  max-width: 864px;
}

.container-narrow--big {
  max-width: 1120px;
}

@media (max-width: 1439.98px) {
  .container-narrow--xl {
    max-width: 736px;
  }
}

.project-detail__section {
  margin-bottom: 48px;
}
@media (max-width: 767.98px) {
  .project-detail__section {
    margin-bottom: 32px;
  }
}

.project-detail__title {
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .project-detail__title {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .project-detail__title-left {
    text-align: left;
  }
}

.project-detail__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .project-detail__header {
    margin-bottom: 16px;
  }
}

.project-detail__header .project-detail__title {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .project-detail__header .controls {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .project-detail__process-description {
    display: none;
  }
}

.project-detail__section--mb-0 {
  margin-bottom: 0;
}

.double-slider {
  position: relative;
}

.double-slider__slider-1 {
  overflow: visible;
  margin: 0 auto 40px;
  width: 100%;
  max-width: 652px;
}
@media (max-width: 991.98px) {
  .double-slider__slider-1 {
    margin-bottom: 32px;
    max-width: 452px;
  }
}
@media (max-width: 767.98px) {
  .double-slider__slider-1 {
    margin-bottom: 20px;
    max-width: none;
  }
}

.double-slider__wrapper .project-detail__process-prev,
.double-slider__wrapper .project-detail__process-next {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
}

.double-slider__wrapper .project-detail__process-prev {
  left: 200px;
}
@media (max-width: 1439.98px) {
  .double-slider__wrapper .project-detail__process-prev {
    left: 125px;
  }
}
@media (max-width: 1199.98px) {
  .double-slider__wrapper .project-detail__process-prev {
    left: 40px;
  }
}

.double-slider__wrapper .project-detail__process-next {
  right: 200px;
}
@media (max-width: 1439.98px) {
  .double-slider__wrapper .project-detail__process-next {
    right: 125px;
  }
}
@media (max-width: 1199.98px) {
  .double-slider__wrapper .project-detail__process-next {
    right: 40px;
  }
}

@media (max-width: 767.98px) {
  .double-slider__wrapper .controls {
    display: none;
  }
}

.double-slider__picture {
  margin: 0 auto;
  width: max-content;
}
@media (max-width: 767.98px) {
  .double-slider__picture {
    width: 100%;
  }
}

.double-slider__image {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  max-width: 652px;
  max-height: 388px;
  box-shadow: 0 10px 20px rgba(120, 143, 187, 0.25);
  object-fit: contain;
  pointer-events: none;
}
@media (max-width: 991.98px) {
  .double-slider__image {
    max-width: 462px;
    max-height: 275px;
  }
}
@media (max-width: 767.98px) {
  .double-slider__image {
    max-width: none;
    max-height: none;
  }
}

.double-slider__slider-2 {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1088px;
}

.double-slider__slider-2::before,
.double-slider__slider-2::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 5;
  width: 112px;
  height: 100%;
  background: linear-gradient(90deg, #f4f6f7 39.01%, rgba(244, 246, 247, 0) 106.85%);
}
@media (max-width: 1199.98px) {
  .double-slider__slider-2::before,
  .double-slider__slider-2::after {
    display: none;
  }
}

.double-slider__slider-2::before {
  left: -1px;
}

.double-slider__slider-2::after {
  right: -1px;
  transform: rotate(-180deg);
}

@media (max-width: 767.98px) {
  .double-slider--controls-sm-static .double-slider__wrapper .controls {
    display: block;
    margin-bottom: 20px;
  }
  .double-slider--controls-sm-static .double-slider__wrapper .controls .controls__arrows {
    display: flex;
    justify-content: center;
    gap: 32px;
  }
  .double-slider--controls-sm-static .double-slider__wrapper .project-detail__process-prev,
  .double-slider--controls-sm-static .double-slider__wrapper .project-detail__process-next {
    position: relative;
    left: inherit;
    right: inherit;
    top: inherit;
    transform: none;
  }
}

.slider-step {
  cursor: pointer;
  user-select: none;
}

.slider-step__number, .slider-step__number-next-sm {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0;
  color: var(--white);
  background-color: var(--grey);
  transition: 0.5s all;
}

.slider-step__header {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  height: 48px;
}
@media (max-width: 767.98px) {
  .slider-step__header {
    justify-content: space-between;
  }
}

.slider-step__header::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 50%;
  z-index: -1;
  width: 100%;
  height: 1px;
  background-color: var(--grey);
  transform: translateY(-50%);
}

.slider-step__header::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 50%;
  z-index: -1;
  width: 0;
  height: 1px;
  background-color: var(--blue);
  transform: translateY(-50%);
  transition: 0.5s all;
}

.slider-step__active .slider-step__number {
  width: 48px;
  height: 48px;
  font-size: 30px;
  background-color: var(--blue);
  transition: 0.5s all;
}

.slider-step__prev .slider-step__number {
  background-color: #96bfed;
}

.slider-step__prev .slider-step__header::after {
  width: 100%;
}

.swiper-slide:last-child .slider-step__header::before,
.swiper-slide:last-child .slider-step__header::after,
.swiper-slide:last-child .slider-step__number-next-sm {
  display: none;
}

@media (max-width: 767.98px) {
  .slider-step__body {
    opacity: 0;
    transition: 0.5s all;
  }
}

.slider-step__body > b {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .slider-step__active .slider-step__body {
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .slider-step__number-next-sm {
    display: none;
  }
}

.slider-step__prev .slider-step__number-next-sm {
  opacity: 0;
}

.similar-slider {
  border-radius: 16px;
  padding: 48px 72px;
  background-color: var(--white);
}
@media (max-width: 1199.98px) {
  .similar-slider {
    padding: 32px 48px 48px;
  }
}
@media (max-width: 991.98px) {
  .similar-slider {
    padding-right: 0;
  }
}
@media (max-width: 767.98px) {
  .similar-slider {
    padding: 32px 0 32px 24px;
  }
}

.similar-slider__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
@media (max-width: 991.98px) {
  .similar-slider__header {
    padding-right: 48px;
  }
}
@media (max-width: 767.98px) {
  .similar-slider__header {
    margin-bottom: 24px;
    padding-right: 32px;
  }
}

@media (max-width: 767.98px) {
  .similar-slider__swiper {
    margin-bottom: 24px;
  }
}

.similar-slider__tags-wrapper {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .similar-slider__tags-wrapper {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .similar-slider__tags-wrapper {
    padding-right: 48px;
  }
}
@media (max-width: 767.98px) {
  .similar-slider__tags-wrapper {
    padding-right: 32px;
  }
}

.similar-slider__tags {
  border-top: 1px solid var(--grey);
  padding-top: 48px;
}
@media (max-width: 767.98px) {
  .similar-slider__tags {
    padding-top: 24px;
  }
}

@media (min-width: 768px) {
  .similar-slider > .controls {
    display: none;
  }
}

.similar-slider__header .controls {
  display: block;
}
@media (max-width: 767.98px) {
  .similar-slider__header .controls {
    display: none;
  }
}

.project-similar:hover .project-similar__body {
  color: var(--blue);
  transition: 0.3s all;
}

.project-similar__body {
  color: var(--black);
  transition: 0.3s all;
}

.project-similar__title {
  font-weight: 600;
}

.project-similar__picture {
  margin-bottom: 16px;
  width: 100%;
  height: auto;
  aspect-ratio: 549/400;
}
@media (max-width: 767.98px) {
  .project-similar__picture {
    margin-bottom: 8px;
  }
}

.project-similar__image {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author {
  display: flex;
  column-gap: 16px;
}

.author__avatar {
  width: 100%;
  height: 64px;
  max-width: 64px;
}
@media (max-width: 767.98px) {
  .author__avatar {
    height: 48px;
    max-width: 48px;
  }
}

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

.author__job {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: rgba(34, 34, 34, 0.75);
}
@media (max-width: 767.98px) {
  .author__job {
    margin-top: 4px;
  }
}

.author__author {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 767.98px) {
  .author__author {
    gap: 4px;
  }
}

.author__name {
  font-weight: 700;
}

.author--lg .author__avatar {
  width: 100%;
  height: 80px;
  max-width: 80px;
}

.author--lg .author__name {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
}
@media (max-width: 767.98px) {
  .author--lg .author__name {
    font-size: 18px;
  }
}

.news-page__date {
  display: block;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 24px;
  color: var(--grey3);
}

/* list-two-col */
.list-two-col {
  display: flex;
  column-gap: 24px;
}

@media (max-width: 991.98px) {
  .list-two-col {
    display: block;
  }
}
.list-two-col__list {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.content {
  font-size: 18px;
  line-height: 28px;
}
@media (max-width: 767.98px) {
  .content {
    font-size: 16px;
    line-height: 24px;
  }
}

.content p {
  margin-bottom: 16px;
}
@media (max-width: 991.98px) {
  .content p {
    margin-bottom: 14px;
  }
}

.content ul, .content ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.content ul {
  margin-bottom: 8px;
}

.content ul li {
  position: relative;
  margin-bottom: 4px;
  padding-left: 28px;
}

.content ul li::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 14px;
  display: block;
  border-radius: 4px;
  width: 4px;
  height: 4px;
  background: var(--black);
}

.content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
}
@media (max-width: 767.98px) {
  .content h2 {
    margin-top: 32px;
    font-size: 24px;
    line-height: 32px;
  }
}

.content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}
@media (max-width: 767.98px) {
  .content h3 {
    margin-top: 24px;
    font-size: 18px;
    line-height: 24px;
  }
}

.content img {
  margin-top: 16px;
  margin-bottom: 32px;
  border-radius: 16px;
  width: 100%;
  height: auto;
}
@media (max-width: 991.98px) {
  .content img {
    margin-bottom: 24px;
  }
}
@media (max-width: 767.98px) {
  .content img {
    margin-bottom: 18px;
  }
}

.content a {
  text-decoration: underline;
  color: var(--blue);
}

.news-list__item {
  display: block;
  padding-bottom: 32px;
}

@media (max-width: 767px) {
  .news-list__item {
    padding-bottom: 24px;
  }
}
.news-list__title {
  margin-bottom: 8px;
  font-size: 28px;
  line-height: 36px;
  color: #222;
}

.news-list__item:hover .news-list__title {
  color: #096de0;
}

.news-list__item ~ .news-list__item .news-list__title {
  border-top: 1px solid #d6d6d6;
  padding-top: 32px;
}

@media (max-width: 767px) {
  .news-list__item ~ .news-list__item .news-list__title {
    padding-top: 24px;
  }
}
@media (max-width: 767px) {
  .news-list__title {
    font-size: 16px;
    line-height: 24px;
  }
}
.news-list__date {
  font-size: 16px;
  line-height: 24px;
  color: #737373;
}

.page-list__title {
  margin-bottom: 50px;
}
@media (max-width: 1199.98px) {
  .page-list__title {
    margin-bottom: 36px;
  }
}
@media (max-width: 767.98px) {
  .page-list__title {
    margin-bottom: 32px;
  }
}

.page-list__tags {
  margin-bottom: 48px;
}
@media (max-width: 1199.98px) {
  .page-list__tags {
    margin-bottom: 32px;
  }
}

.articles-list__wrapper {
  margin-bottom: 96px;
}
@media (max-width: 1199.98px) {
  .articles-list__wrapper {
    margin-bottom: 64px;
  }
}
@media (max-width: 767.98px) {
  .articles-list__wrapper {
    margin-bottom: 48px;
  }
}

.articles-list__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 32px;
  gap: 32px;
}
@media (max-width: 1199.98px) {
  .articles-list__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991.98px) {
  .articles-list__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .articles-list__grid {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 48px;
    gap: 24px;
  }
}

.m-auto {
  margin: 0 auto;
}

.article-detail__content {
  margin-bottom: 80px;
}
@media (max-width: 767.98px) {
  .article-detail__content {
    margin-bottom: 64px;
  }
}

.article-detail__title,
.article-detail__date {
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .article-detail__title,
  .article-detail__date {
    margin-bottom: 16px;
  }
}

.article-detail__date {
  color: var(--grey2);
  opacity: 0.75;
}
@media (max-width: 991.98px) {
  .article-detail__date {
    font-size: 16px;
    line-height: 24px;
  }
}

.article-detail__detail-picture {
  width: 100%;
}

.article-detail__detail-image {
  margin-bottom: 28px;
  border-radius: 16px;
  width: 100%;
  height: auto;
}
@media (max-width: 991.98px) {
  .article-detail__detail-image {
    margin-bottom: 26px;
  }
}
@media (max-width: 767.98px) {
  .article-detail__detail-image {
    margin-bottom: 19px;
  }
}

.article-detail__table-contents {
  margin-bottom: 48px;
}
@media (max-width: 767.98px) {
  .article-detail__table-contents {
    margin-bottom: 32px;
  }
}

.article-detail__text {
  margin-bottom: 48px;
}
@media (max-width: 767.98px) {
  .article-detail__text {
    margin-bottom: 32px;
  }
}

.article-detail__authors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 48px;
  border-top: 1px solid var(--grey);
  padding-top: 48px;
  gap: 32px;
}
@media (max-width: 767.98px) {
  .article-detail__authors {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 32px;
    padding-top: 32px;
    gap: 16px;
  }
}

.article-detail__tags {
  gap: 24px 16px;
}
@media (max-width: 767.98px) {
  .article-detail__tags {
    gap: 16px;
  }
}

.table-contents {
  border-radius: 16px;
  color: var(--black);
  background-color: var(--white);
}

.table-contents__header-title {
  font-weight: 600;
}

.table-contents__header {
  display: flex;
  align-items: center;
  padding: 24px 32px;
  user-select: none;
  gap: 12px;
}
@media (max-width: 767.98px) {
  .table-contents__header {
    padding: 24px;
    cursor: pointer;
  }
}

.table-contents__content {
  padding: 0 24px 32px;
}

.table-contents__header.collapsed .table-contents__collapse-icon {
  transform: rotate(0);
}

.table-contents__icon {
  font-size: 24px;
}

.table-contents__collapse-icon {
  display: none;
  margin-left: auto;
  transform: rotate(180deg);
  transition: 0.3s all;
}
@media (max-width: 767.98px) {
  .table-contents__collapse-icon {
    display: block;
  }
}

.table-contents__link {
  border-bottom: 1px dashed rgba(34, 34, 34, 0.25);
  color: inherit;
}
@media (min-width: 992px) {
  .table-contents__link {
    line-height: 28px;
  }
}

.table-contents__link:hover {
  color: var(--blue);
}

.table-contents__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 576px) {
  .table-contents__body:not(.show) {
    display: block;
    height: 100%;
  }
}

.white-frame {
  margin-top: 32px;
  margin-bottom: 32px;
  border-radius: 16px;
  padding: 32px;
  word-break: break-word;
  background-color: var(--white);
}
@media (max-width: 991.98px) {
  .white-frame {
    padding: 30px 32px;
  }
}
@media (max-width: 767.98px) {
  .white-frame {
    margin-top: 24px;
    margin-bottom: 24px;
    padding: 24px;
  }
}

.white-frame p:last-child {
  margin-bottom: 0;
}

.product-info {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  padding: 64px;
  background: var(--white);
  gap: 56px;
}
@media (max-width: 1199.98px) {
  .product-info {
    padding: 48px;
  }
}
@media (max-width: 767.98px) {
  .product-info {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 32px 16px;
    gap: 48px;
  }
}

.product-info__main {
  display: flex;
  gap: 32px;
}
@media (max-width: 767.98px) {
  .product-info__main {
    flex-direction: column-reverse;
    gap: 24px;
  }
}

.product-info__basic {
  z-index: 1;
  width: 100%;
  max-width: 688px;
}
@media (max-width: 1439.98px) {
  .product-info__basic {
    max-width: 576px;
  }
}
@media (max-width: 991.98px) {
  .product-info__basic {
    max-width: calc(100vw - 385px);
  }
}
@media (max-width: 767.98px) {
  .product-info__basic {
    max-width: none;
    text-align: center;
  }
}

.product-info__title {
  margin-bottom: 24px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .product-info__title {
    font-size: 44px;
    line-height: 56px;
  }
}
@media (max-width: 767.98px) {
  .product-info__title {
    margin-bottom: 16px;
  }
}

.product-info__description {
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .product-info__description {
    margin-bottom: 24px;
    line-height: 24px;
  }
}

.product-info__button {
  padding: 15px 23px;
}
@media (max-width: 767.98px) {
  .product-info__button {
    margin: 0 auto;
  }
}

.product-info__picture {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: 528px;
  text-align: center;
}
@media (max-width: 1199.98px) {
  .product-info__picture {
    max-width: 350px;
  }
}
@media (max-width: 767.98px) {
  .product-info__picture {
    position: relative;
    max-width: none;
  }
}

.product-info__image {
  position: relative;
  left: -55px;
  top: 30px;
  z-index: 5;
  width: 268px;
  height: 291px;
  object-fit: contain;
}
@media (max-width: 1199.98px) {
  .product-info__image {
    left: 0;
  }
}
@media (max-width: 991.98px) {
  .product-info__image {
    top: 68px;
    width: 244px;
    height: 265px;
  }
}
@media (max-width: 767.98px) {
  .product-info__image {
    width: 185px;
    height: 199px;
    inset: 0;
  }
}

@media (max-width: 767.98px) {
  .product-info__list-item {
    line-height: 24px;
  }
}

.product-info__list-item:not(:last-child) {
  margin-bottom: 4px;
}
@media (max-width: 767.98px) {
  .product-info__list-item:not(:last-child) {
    margin-bottom: 12px;
  }
}

.product-info__picture--spots::before,
.product-info__picture--spots::after {
  content: "";
  position: absolute;
  top: 105px;
  z-index: 0;
  border-radius: 50%;
  width: 220px;
  height: 220px;
  filter: blur(50px);
}
@media (max-width: 991.98px) {
  .product-info__picture--spots::before,
  .product-info__picture--spots::after {
    left: 55px;
    top: 145px;
    width: 180px;
    height: 180px;
  }
}
@media (max-width: 767.98px) {
  .product-info__picture--spots::before,
  .product-info__picture--spots::after {
    top: 50%;
    transform: translateY(-50%);
  }
}

.product-info__picture--spots::before {
  left: 80px;
  opacity: 0.1;
}
@media (max-width: 1199.98px) {
  .product-info__picture--spots::before {
    left: 35px;
  }
}
@media (max-width: 991.98px) {
  .product-info__picture--spots::before {
    left: 55px;
  }
}
@media (max-width: 767.98px) {
  .product-info__picture--spots::before {
    left: calc(50% - 120px);
  }
}

.product-info__picture--spots::after {
  right: 145px;
  opacity: 0.2;
}
@media (max-width: 1199.98px) {
  .product-info__picture--spots::after {
    right: 15px;
  }
}
@media (max-width: 767.98px) {
  .product-info__picture--spots::after {
    left: calc(50% - 140px);
  }
}

.product-info__picture--blue-green::before {
  background: linear-gradient(203.97deg, #61e1cb -10%, #00e16f 165%);
}

.product-info__picture--blue-green::after {
  background: linear-gradient(204.85deg, #01c1f8 -10%, #00e4f2 128%);
}

.product-info__picture--yellow-red::before {
  background: linear-gradient(90deg, #ffd83d 0%, #ff9a00 100%);
}

.product-info__picture--yellow-red::after {
  background: linear-gradient(90deg, #ff7968 0%, #ec284b 100%);
}

.product-info--bus .product-info__basic {
  max-width: 750px;
}
@media (max-width: 1439.98px) {
  .product-info--bus .product-info__basic {
    max-width: 620px;
  }
}
@media (max-width: 1199.98px) {
  .product-info--bus .product-info__basic {
    max-width: 550px;
  }
}
@media (max-width: 991.98px) {
  .product-info--bus .product-info__basic {
    max-width: 400px;
  }
}
@media (max-width: 767.98px) {
  .product-info--bus .product-info__basic {
    max-width: none;
  }
}

.product-info--bus .product-info__image {
  left: -38px;
  top: 105px;
}
@media (max-width: 991.98px) {
  .product-info--bus .product-info__image {
    top: 87px;
    width: 210px;
  }
}
@media (max-width: 767.98px) {
  .product-info--bus .product-info__image {
    left: -29px;
    top: 25px;
    height: 170px;
  }
}

@media (max-width: 767.98px) {
  .product-info--bus .product-info__main {
    gap: 49px;
  }
}

.product-info--website .product-info__basic {
  width: auto;
  max-width: 100%;
}

.product-info--website .product-info__picture {
  position: relative;
  right: inherit;
  top: inherit;
  width: auto;
  max-width: 100%;
}

.product-info--website .product-info__image {
  left: inherit;
  top: inherit;
  width: auto;
  height: auto;
}
@media (max-width: 991.98px) {
  .product-info--website .product-info__image {
    margin-top: 10px;
    width: 192px;
    height: auto;
  }
}
@media (max-width: 767.98px) {
  .product-info--website .product-info__image {
    margin-top: 0;
    width: 144px;
  }
}

.tabs__list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.tabs__link {
  position: relative;
  display: block;
  border: none;
  padding: 0 8px 10px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--grey2);
  user-select: none;
}
@media (max-width: 991.98px) {
  .tabs__link {
    font-size: 14px;
    line-height: 18px;
  }
}

.tabs__link:hover {
  color: var(--blue1);
}

.active.tabs__link {
  color: var(--black);
}

.active.tabs__link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: var(--blue);
}

.tabs__header {
  margin-bottom: 24px;
  border-bottom: 1px solid var(--grey);
}

.tabs__item {
  white-space: nowrap;
}

.tabs__swiper {
  overflow: visible;
  width: 100%;
}

.tabs__slide {
  width: max-content;
}

.product-detail__section {
  margin-bottom: 80px;
}
@media (max-width: 991.98px) {
  .product-detail__section {
    margin-bottom: 64px;
  }
}
@media (max-width: 767.98px) {
  .product-detail__section {
    margin-bottom: 48px;
  }
}

.product-version {
  padding-top: 8px;
}
@media (min-width: 1200px) {
  .product-version {
    padding-top: 24px;
  }
}

.product-version__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 48px;
  gap: 32px;
}
@media (max-width: 1199.98px) {
  .product-version__cards {
    grid-template-columns: 1fr;
    margin-bottom: 38px;
    gap: 24px;
  }
}

.product-version__card {
  display: grid;
  align-items: center;
  grid-template-columns: 64px auto;
  gap: 20px;
}
@media (min-width: 768px) {
  .product-version__card {
    line-height: 28px;
  }
}

.product-version__panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}
@media (max-width: 991.98px) {
  .product-version__panel {
    margin-bottom: 24px;
  }
}
@media (max-width: 767.98px) {
  .product-version__panel {
    margin-bottom: 32px;
    gap: 36px;
  }
}

.product-version__duration {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 767.98px) {
  .product-version__duration {
    flex-direction: column;
    align-items: start;
    width: 100%;
  }
}

.product-version__duration-text {
  flex-shrink: 0;
}

.product-version__hint {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
  gap: 8px;
}

.product-version__hint-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 991.98px) {
  .product-version__hint-item {
    flex: 100%;
  }
}

.product-version__card-text {
  line-height: 28px;
}
@media (max-width: 767.98px) {
  .product-version__card-text {
    line-height: 24px;
  }
}

.switch {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.switch__button {
  border: none;
  padding: 13px 16px;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .switch__button {
    max-width: 100%;
    font-size: 14px;
    line-height: 18px;
  }
}

.switch__radio {
  display: none;
}

.switch__discount {
  border-radius: 48px;
  padding: 6px 4px;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: var(--black);
  background: linear-gradient(203.97deg, #61e1cb -10.06%, #00e16f 165.3%);
}

.switch__item {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 768px) {
  .switch__item {
    min-width: 118px;
  }
}

.switch--outline-blue .switch__item:first-child {
  border-left: 1px solid var(--blue);
}

.switch--outline-blue .switch__item {
  border-top: 1px solid var(--blue);
  border-right: 1px solid var(--blue);
  border-bottom: 1px solid var(--blue);
}

.switch--outline-blue .switch__radio:checked + .switch__button {
  color: var(--white);
  background-color: var(--blue);
}

.switch--outline-blue .switch__item:hover {
  color: var(--blue);
}

.switch__button--discount {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 9.5px;
  gap: 7px;
}
@media (max-width: 767.98px) {
  .switch__button--discount {
    padding: 7px;
  }
}

.switch--border-radius .switch__item:first-child {
  border-radius: 32px 0 0 32px;
}

.switch--border-radius .switch__item:last-child {
  border-radius: 0 32px 32px 0;
}

.indicator {
  display: flex;
  justify-content: center;
  border: 1px solid var(--green2);
  border-radius: 5px;
  padding: 2px;
  width: 40px;
}

.indicator__item,
.indicator__item::before,
.indicator__item::after {
  width: 10px;
  height: 10px;
  background-color: var(--green2);
}

.indicator__item {
  position: relative;
}

.indicator__item::before,
.indicator__item::after {
  content: "";
  position: absolute;
}

.indicator__item::before {
  left: -12px;
  border-radius: 2px 0 0 2px;
}

.indicator__item::after {
  left: 12px;
  border-radius: 0 2px 2px 0;
}

.indicator--short .indicator__item::before {
  background-color: var(--green3);
}

.indicator--half .indicator__item::before,
.indicator--half .indicator__item {
  background-color: var(--green3);
}

.indicator--full .indicator__item::before,
.indicator--full .indicator__item::after,
.indicator--full .indicator__item {
  background-color: var(--green3);
}

.tariff-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-bottom: 18px;
  gap: 2px;
}
@media (min-width: 768px) and (max-width: 1439.98px) {
  .tariff-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 767.98px) {
  .tariff-list {
    gap: 24px;
  }
}

@media (min-width: 1200px) {
  .tariff-list--box {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2px;
  }
}

.tariff-list--xs {
  grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
  margin: 0;
  gap: 2px;
}
@media (max-width: 767.98px) {
  .tariff-list--xs {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.tariff-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  padding: 28px 24px 32px;
  text-align: center;
  background-color: var(--white);
  gap: 64px;
}
@media (max-width: 767.98px) {
  .tariff-card {
    padding: 28px 30px 32px;
    gap: 0;
  }
}

.tariff-card__new-price {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
}

.tariff-card__old-price {
  position: absolute;
  left: 50%;
  bottom: -18px;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  text-decoration: line-through;
  color: var(--grey6);
  transform: translateX(-50%);
}
@media (max-width: 767.98px) {
  .tariff-card__old-price {
    bottom: -28px;
  }
}

.tariff-card__users {
  margin-bottom: 16px;
}
@media (min-width: 1440px) {
  .tariff-card__users {
    min-height: 48px;
  }
}

.tariff-card__details {
  margin: 0 auto;
}
@media (min-width: 1440px) {
  .tariff-card__details {
    display: none;
  }
}

.tariff-card__advantages {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tariff-card__advantage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  line-height: 18px;
}

@media (max-width: 767.98px) {
  .tariff-card__content {
    padding-top: 32px;
  }
}

@media (min-width: 1440px) {
  .tariff-card__body.collapse {
    display: block;
  }
}

.tariff-card__title {
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .tariff-card__title {
    margin-bottom: 24px;
  }
}

.tariff-card__button {
  display: block;
  margin: 0 auto;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 16px;
  line-height: 20px;
  color: var(--black);
  background: transparent;
}
@media (max-width: 767.98px) {
  .tariff-card__button {
    margin-bottom: 40px;
    width: 100%;
  }
}

.tariff-card__info {
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
  gap: 16px;
}

.tariff-card__memory {
  margin-bottom: 48px;
}
@media (max-width: 767.98px) {
  .tariff-card__memory {
    margin-bottom: 36px;
  }
}

.tariff-card__price {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 35px;
  gap: 4px;
}
@media (max-width: 767.98px) {
  .tariff-card__price {
    margin-bottom: 33px;
  }
}

.tariff-card__license {
  color: var(--grey6);
}

.tariff-card__users-list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  min-height: 48px;
  gap: 16px;
}
@media (max-width: 767.98px) {
  .tariff-card__users-list {
    margin-bottom: 32px;
  }
}

.tariff-card__users-button {
  border: 1px solid transparent;
  border-radius: 40px;
  width: 48px;
  height: 48px;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
}

.tariff-card__users-button:hover {
  color: var(--blue);
}

.tariff-card__users-button.active {
  border-color: var(--blue);
}

.tariff-card__advantage-icon {
  min-width: 20px;
  font-size: 20px;
  color: var(--green3);
}

@media (min-width: 768px) and (max-width: 1439.98px) {
  .tariff-card__site-count,
  .tariff-card__page-count {
    display: none;
  }
}

.tariff-card__site-count {
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .tariff-card__site-count {
    margin-bottom: 18px;
  }
}

.tariff-card__page-count {
  margin-bottom: 40px;
}

.tariff-card__info-site {
  margin-top: 64px;
}

.tariff-card__info-page {
  margin-top: 24px;
  text-align: left;
}

.tariff-card__dropdown .dropdown__header {
  justify-content: normal;
  padding: 0;
  gap: 8px;
}

.tariff-card__dropdown .dropdown__content {
  padding-top: 24px;
  padding-bottom: 34px;
}

.tariff-card__dropdowns {
  display: flex;
  flex-direction: column;
  padding: 0 8px;
  gap: 16px;
}

@media (min-width: 768px) and (max-width: 1439.98px) {
  .tariff-card--md-xl-adaptive.tariff-card {
    padding: 28px 30px 32px;
    gap: 0;
  }
}

@media (min-width: 768px) and (max-width: 1439.98px) {
  .tariff-card--md-xl-adaptive .tariff-card__old-price {
    position: static;
    transform: none;
    inset: 0;
  }
}

@media (min-width: 768px) and (max-width: 1439.98px) {
  .tariff-card--md-xl-adaptive .tariff-card__content {
    padding-top: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1439.98px) {
  .tariff-card--md-xl-adaptive .tariff-card__header {
    display: grid;
    align-items: baseline;
    grid-template-columns: 1fr auto 1fr;
    margin-bottom: 24px;
    gap: 16px 32px;
  }
}

@media (min-width: 768px) and (max-width: 1439.98px) {
  .tariff-card--md-xl-adaptive .tariff-card__header--box {
    gap: 32px;
  }
}

@media (min-width: 768px) and (max-width: 1439.98px) {
  .tariff-card--md-xl-adaptive .tariff-card__title {
    display: flex;
    align-items: center;
    grid-column: 1/2;
    margin-bottom: 0;
    text-align: left;
  }
}

@media (min-width: 768px) and (max-width: 1439.98px) {
  .tariff-card--md-xl-adaptive .tariff-card__button {
    grid-column: 3/4;
    grid-row: 1/2;
    margin: 0 0 0 auto;
    height: max-content;
  }
}

@media (min-width: 768px) and (max-width: 1439.98px) {
  .tariff-card--md-xl-adaptive .tariff-card__users {
    display: flex;
    flex-direction: row;
    align-items: center;
    grid-column: 1/2;
    grid-row: 2/3;
    margin-bottom: 0;
    text-align: left;
  }
}

@media (min-width: 768px) and (max-width: 1439.98px) {
  .tariff-card--md-xl-adaptive .tariff-card__memory {
    flex-direction: row;
    grid-column: 2/3;
    grid-row: 2/3;
    margin-bottom: 0;
  }
}

@media (min-width: 768px) and (max-width: 1439.98px) {
  .tariff-card--md-xl-adaptive .tariff-card__price {
    align-items: flex-end;
    justify-content: center;
    grid-column: 3/4;
    grid-row: 2/3;
    margin: 0;
    text-align: right;
  }
}

@media (min-width: 768px) and (max-width: 1439.98px) {
  .tariff-card--md-xl-adaptive .tariff-card__users-list {
    grid-column: 2/3;
    grid-row: 2/3;
    margin-bottom: 0;
  }
}

@media (min-width: 768px) and (max-width: 1439.98px) {
  .tariff-card--md-xl-adaptive .tariff-card__license {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) and (max-width: 1439.98px) {
  .tariff-card--md-xl-adaptive .tariff-card__new-price {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .tariff-card--md-lg-adaptive.tariff-card {
    padding: 28px 30px 32px;
    gap: 0;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .tariff-card--md-lg-adaptive .tariff-card__old-price {
    position: static;
    transform: none;
    inset: 0;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .tariff-card--md-lg-adaptive .tariff-card__content {
    padding-top: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .tariff-card--md-lg-adaptive .tariff-card__header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    margin-bottom: 24px;
    gap: 16px 32px;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .tariff-card--md-lg-adaptive .tariff-card__header--box {
    gap: 32px;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .tariff-card--md-lg-adaptive .tariff-card__title {
    display: flex;
    align-items: center;
    grid-column: 1/2;
    margin-bottom: 0;
    text-align: left;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .tariff-card--md-lg-adaptive .tariff-card__button {
    grid-column: 3/4;
    grid-row: 1/2;
    margin: 0 0 0 auto;
    height: max-content;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .tariff-card--md-lg-adaptive .tariff-card__users {
    display: flex;
    flex-direction: row;
    align-items: center;
    grid-column: 1/2;
    grid-row: 2/3;
    margin-bottom: 0;
    text-align: left;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .tariff-card--md-lg-adaptive .tariff-card__memory {
    flex-direction: row;
    grid-column: 2/3;
    grid-row: 2/3;
    margin-bottom: 0;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .tariff-card--md-lg-adaptive .tariff-card__price {
    align-items: flex-end;
    justify-content: center;
    grid-column: 3/4;
    grid-row: 2/3;
    margin: 0;
    text-align: right;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .tariff-card--md-lg-adaptive .tariff-card__users-list {
    grid-column: 2/3;
    grid-row: 2/3;
    margin-bottom: 0;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .tariff-card--md-lg-adaptive .tariff-card__license {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .tariff-card--md-lg-adaptive .tariff-card__new-price {
    margin-bottom: 0;
  }
}

.tariff-card--line {
  border-top: 4px solid transparent;
}

.tariff-card--blue .tariff-card__button {
  border-color: var(--blue);
}
@media (max-width: 1199.98px) {
  .tariff-card--blue .tariff-card__button {
    color: var(--white);
    background-color: var(--blue);
  }
}

.tariff-card--blue .tariff-card__button:hover {
  color: var(--white);
  background-color: var(--blue);
}
@media (max-width: 1199.98px) {
  .tariff-card--blue .tariff-card__button:hover {
    background-color: var(--blue1);
  }
}

.tariff-card--blue.tariff-card--line {
  border-color: var(--blue);
}

.tariff-card--orange .tariff-card__button {
  border-color: var(--orange1);
}
@media (max-width: 1199.98px) {
  .tariff-card--orange .tariff-card__button {
    color: var(--white);
    background-color: var(--orange1);
  }
}

.tariff-card--orange .tariff-card__button:hover {
  color: var(--white);
  background-color: var(--orange2);
}

.tariff-card--orange.tariff-card--line {
  border-color: var(--orange1);
}

.tariff-card__advantage--box {
  justify-content: normal;
  gap: 12px;
}

.tariff-card__content--box {
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .tariff-card__content--box {
    width: max-content;
  }
}
@media (max-width: 767.98px) {
  .tariff-card__content--box {
    padding-top: 0;
  }
}

.tariff-card__users--box {
  min-height: 0;
}

.tariff-card__price--box {
  margin-bottom: 24px;
}

.tariff-card--info {
  gap: 0;
}
@media (max-width: 1439.98px) {
  .tariff-card--info {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .tariff-card--bus {
    padding-right: 16px;
    padding-left: 16px;
  }
}
@media (max-width: 767.98px) {
  .tariff-card--bus {
    padding-right: 24px;
    padding-left: 24px;
  }
}

.tariff-card--bus .tariff-card__title {
  margin-bottom: 33px;
}
@media (max-width: 1199.98px) {
  .tariff-card--bus .tariff-card__title {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 991.98px) {
  .tariff-card--bus .tariff-card__title {
    min-height: 56px;
  }
}
@media (max-width: 767.98px) {
  .tariff-card--bus .tariff-card__title {
    margin-bottom: 4px;
    font-size: 20px;
    line-height: 28px;
  }
}

.tariff-card--bus .tariff-card__price {
  margin-bottom: 22px;
}
@media (max-width: 767.98px) {
  .tariff-card--bus .tariff-card__price {
    margin-bottom: 2px;
  }
}

@media (max-width: 1199.98px) {
  .tariff-card--bus .tariff-card__new-price {
    min-height: 48px;
  }
}

@media (min-width: 768px) {
  .tariff-card--bus .tariff-card__body {
    display: none;
  }
}

@media (min-width: 576px) {
  .tariff-card--bus .tariff-advantages {
    padding-bottom: 28px;
  }
}

@media (max-width: 767.98px) {
  .tariff__tabs .tabs__list {
    gap: 2px;
  }
}

.tariff__tabs .tabs__link {
  padding-bottom: 16px;
  font-size: 24px;
  line-height: 32px;
}
@media (max-width: 767.98px) {
  .tariff__tabs .tabs__link {
    padding-right: 4px;
    padding-left: 4px;
    font-size: 16px;
    line-height: 20px;
  }
}

.tariff-info {
  display: none;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
  gap: 2px;
}
@media (min-width: 768px) and (max-width: 1439.98px) {
  .tariff-info {
    display: grid;
  }
}

.tariff-info__col-1 {
  grid-column: 1/2;
  padding-top: 20px;
}

.tariff-info__col-2 {
  grid-column: 2/6;
  padding-top: 20px;
}

.tariff-info__col-1 :first-child,
.tariff-info__col-2 :first-child {
  margin-bottom: 12px;
}

.dropdown {
  border-radius: 16px;
  background-color: var(--white);
}

.dropdown__title {
  font-weight: 700;
}

.dropdown__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  cursor: pointer;
}

.dropdown__icon {
  transition: 0.5s all;
}

.dropdown__header:not(.collapsed) .dropdown__icon {
  transform: rotate(180deg);
  transition: 0.5s all;
}

.dropdown__content {
  padding: 0 32px 24px;
}

.tariff-advantages {
  padding-right: 0;
  padding-left: 0;
}

.tariff-advantages__content {
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.tariff-advantages__item {
  display: flex;
  align-items: center;
  gap: 19px 2px;
}
@media (max-width: 1439.98px) {
  .tariff-advantages__item {
    flex-direction: column;
    align-items: normal;
  }
}

.tariff-advantages__icons {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  gap: 2px;
}

.tariff-advantages__icon {
  margin: 0 auto;
  font-size: 20px;
  color: var(--green3);
}

.tariff-advantages__text {
  padding-right: 16px;
  padding-left: 32px;
  width: 100%;
  max-width: 220px;
  font-size: 14px;
  line-height: 19px;
}
@media (max-width: 1439.98px) {
  .tariff-advantages__text {
    max-width: none;
  }
}

.tariff-advantages__value {
  font-size: 16px;
  line-height: 20px;
}
@media (max-width: 991.98px) {
  .tariff-advantages__value {
    font-size: 14px;
  }
}

.tariff-advantages--three .tariff-advantages__icons {
  grid-template-columns: repeat(3, 1fr);
}

.tariff-advantages--three .tariff-advantages__text {
  max-width: 330px;
}

.table-tariffs {
  display: flex;
  flex-direction: column;
  margin-bottom: 79px;
  gap: 2px;
}
@media (max-width: 991.98px) {
  .table-tariffs {
    margin-bottom: 64px;
  }
}

.table-tariffs__advantages-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@media (max-width: 767.98px) {
  .table-tariffs__advantages-list {
    display: none;
  }
}

.table-tariffs__advantages-list .dropdown__content {
  padding-top: 14px;
}
@media (max-width: 991.98px) {
  .table-tariffs__advantages-list .dropdown__content {
    padding-top: 0;
  }
}

.table-tariffs__advantages-list .dropdown__header {
  padding-top: 26px;
  padding-bottom: 26px;
}

.form-cb__field-container {
  margin-bottom: 24px;
}

.form-cb__field {
  position: relative;
  width: 100%;
}
.form-cb__field-container-error .form-cb__field {
  margin-bottom: 8px;
}

.form-cb__label {
  position: absolute;
  left: 16px;
  top: calc(50% - 12px);
  z-index: 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--grey2);
  transition: all 400ms;
}
.form-cb__input[type=text]:focus ~ .form-cb__label {
  top: 8px;
  font-size: 12px;
  line-height: 14px;
}
.form-cb__input[type=text]:not(:placeholder-shown):not(:focus) ~ .form-cb__label {
  top: 8px;
  font-size: 12px;
  line-height: 14px;
  opacity: 0;
}

.form-cb__input[type=text] {
  position: relative;
  z-index: 1;
  outline: none;
  border: 1px solid var(--grey);
  border-radius: 8px;
  padding: 16px;
  width: 100%;
  height: 56px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  background: none;
}
.form-cb__input[type=text]:focus {
  padding: 24px 16px 10px 13px;
}
.form-cb__field-container-error .form-cb__input[type=text] {
  border-color: var(--purple);
}

.form-cb__error {
  font-size: 14px;
  line-height: 18px;
  color: var(--red);
}

.form-cb__description {
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 18px;
  color: var(--grey2);
}
.form-cb__description a {
  text-decoration: underline;
}
.form-cb__description a:hover {
  text-decoration: none;
}

.form-cb__submit {
  width: 100%;
}

.form-cb__submit:disabled {
  border-color: transparent;
  color: var(--grey2);
  background: var(--grey);
  cursor: default;
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  outline: 0;
  padding: 16px;
  width: 100%;
  height: 100%;
  background: var(--blue7-opacity-75);
  transition: opacity 0.15s linear;
}

.modal.show {
  display: flex !important;
}

.modal-dialog {
  position: relative;
  overflow-y: auto;
  border-radius: 16px;
  padding: 70px 32px 48px;
  max-width: 448px;
  max-height: 100%;
  background-color: var(--white);
}
@media (max-width: 767.98px) {
  .modal-dialog {
    padding: 64px 16px 24px;
  }
}

.modal-header {
  position: absolute;
  left: 0;
  top: 0;
  padding: 26px 32px 0;
  width: 100%;
  text-align: right;
}
@media (max-width: 767.98px) {
  .modal-header {
    padding: 20px 16px 0;
  }
}

.modal-close {
  margin-bottom: 18px;
  padding: 6px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .modal-close {
    margin-right: -12px;
  }
}

.thankyou {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 991.98px) {
  .thankyou {
    flex-direction: column;
    gap: 0;
  }
}

.thankyou__left {
  width: 50%;
}
@media (max-width: 1199.98px) {
  .thankyou__left {
    width: 60%;
  }
}
@media (max-width: 991.98px) {
  .thankyou__left {
    order: 1;
    width: 100%;
    text-align: center;
  }
}

.thankyou__right {
  position: relative;
  width: 50%;
}
@media (max-width: 1199.98px) {
  .thankyou__right {
    width: 40%;
  }
}
@media (max-width: 991.98px) {
  .thankyou__right {
    width: 256px;
  }
}

.thankyou__description {
  font-size: 24px;
  line-height: 32px;
}
@media (max-width: 991.98px) {
  .thankyou__description {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 767.98px) {
  .thankyou__description {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 991.98px) {
  .thankyou__button {
    margin-right: auto;
    margin-left: auto;
  }
}
.thankyou__image-main {
  display: block;
  width: 100%;
  height: auto;
}

.thankyou__illustration {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.thankyou__image-over {
  top: 0;
  width: 100%;
}

.footer-social {
  display: flex;
  column-gap: 48px;
  align-items: center;
  border-radius: 16px;
  padding: 40px 48px;
  background-color: var(--white);
}
.footer-social a:hover {
  text-decoration: underline;
}
.footer-social p {
  margin-bottom: 8px;
}
.footer-social p:last-child {
  margin-bottom: 0;
}
.footer-social, .footer-social a {
  color: var(--grey2);
}
@media (max-width: 991.98px) {
  .footer-social {
    flex-direction: column;
    text-align: center;
    row-gap: 24px;
  }
}

.footer-social__copyright, .footer-social__copyright a {
  line-height: 24px;
  color: var(--grey3);
}
@media (max-width: 991.98px) {
  .footer-social__copyright, .footer-social__copyright a {
    order: 2;
  }
}

.footer-social__copyright a {
  white-space: normal;
  text-decoration: underline;
}
.footer-social__copyright a:hover {
  text-decoration: none;
  color: var(--black);
}

.footer-social__inline {
  display: inline-block;
}
@media (max-width: 991.98px) {
  .footer .footer-social__inline {
    display: block;
    margin-bottom: 0;
  }
}

.footer-social__social {
  display: flex;
  column-gap: 32px;
  align-items: center;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .footer-social__social {
    flex-direction: column;
    align-items: flex-end;
    white-space: nowrap;
    row-gap: 14px;
  }
}
@media (max-width: 991.98px) {
  .footer-social__social {
    flex-direction: column;
    row-gap: 14px;
  }
}

.footer-social__title {
  font-weight: 600;
}

.footer-social__icons {
  display: flex;
  column-gap: 16px;
}

.footer-social__icon .icon {
  width: 36px;
  height: 36px;
}

.promo-head {
  position: relative;
  z-index: 2;
  margin-bottom: 72px;
  border-radius: 24px;
  padding: 64px;
  background-color: var(--white);
}
@media (max-width: 1439.98px) {
  .promo-head {
    margin-bottom: 64px;
    padding: 48px;
  }
}
@media (max-width: 991.98px) {
  .promo-head {
    margin-bottom: 48px;
  }
}
@media (max-width: 767.98px) {
  .promo-head {
    margin-bottom: 32px;
    padding: 32px 16px;
  }
}

.promo-head::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 24px;
  width: 100%;
  height: 600px;
  background-image: url("/local/html/images/content/page-promo/head-bg.svg");
  background-position: right top;
  background-size: contain;
  background-repeat: no-repeat;
}

.promo-head__top {
  display: grid;
  column-gap: 40px;
  grid-template-areas: "promo-content promo-images" "promo-promo promo-images";
  grid-template-columns: 1fr 430px;
  margin-bottom: 64px;
  row-gap: 48px;
}
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .promo-head__top {
    grid-template-columns: 1fr 360px;
    margin-bottom: 48px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .promo-head__top {
    grid-template-columns: 1fr 300px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .promo-head__top {
    grid-template-areas: "promo-content promo-images" "promo-promo promo-promo";
    grid-template-columns: 1fr 260px;
  }
}
@media (max-width: 767.98px) {
  .promo-head__top {
    grid-template-areas: "promo-images" "promo-content" "promo-promo";
    grid-template-columns: 100%;
    margin-bottom: 24px;
    row-gap: 24px;
  }
}

.promo-head__content {
  position: relative;
  grid-area: promo-content;
}

.promo-head__title {
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
}
@media (max-width: 1199.98px) {
  .promo-head__title {
    margin-bottom: 16px;
    font-size: 36px;
    line-height: 48px;
  }
}
@media (max-width: 767.98px) {
  .promo-head__title {
    font-size: 28px;
    line-height: 36px;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .promo-head__description {
    max-width: 540px;
  }
}
@media (max-width: 1199.98px) {
  .promo-head__description {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 767.98px) {
  .promo-head__description {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }
}

.promo-head__promo {
  position: relative;
  z-index: 2;
  grid-area: promo-promo;
}

.promo-head__copy {
  display: flex;
  column-gap: 20px;
  align-items: center;
}
@media (max-width: 767.98px) {
  .promo-head__copy {
    flex-direction: column;
    margin-bottom: 16px;
    row-gap: 16px;
  }
}

.promo-head__code {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 283px;
  height: 60px;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  background-image: url("/local/html/images/promo-head-code.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .promo-head__code {
    width: 216px;
    height: 52px;
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 767.98px) {
  .promo-head__copy-button {
    padding-top: 11px;
    padding-bottom: 11px;
    width: 216px;
    font-size: 16px;
    line-height: 24px;
  }
}

.promo-head__validity {
  color: var(--grey2);
}
@media (max-width: 767.98px) {
  .promo-head__validity {
    text-align: center;
  }
}

.promo-head__right {
  position: relative;
  grid-area: promo-images;
}
@media (min-width: 768px) and (max-width: 1439.98px) {
  .promo-head__right {
    padding-top: 32px;
  }
}

.promo-head__images {
  position: relative;
  width: 346px;
}
@media (max-width: 1439.98px) {
  .promo-head__images {
    width: 304px;
  }
}
@media (max-width: 1199.98px) {
  .promo-head__images {
    width: 260px;
  }
}
@media (max-width: 991.98px) {
  .promo-head__images {
    width: 222px;
  }
}
@media (max-width: 767.98px) {
  .promo-head__images {
    margin-right: auto;
    margin-left: auto;
    width: 186px;
  }
}

.promo-head__image img {
  width: 100%;
}

.promo-head__plus {
  position: absolute;
  right: -15%;
  top: 24%;
  width: 48%;
}

.promo-head__plus img {
  width: 100%;
}

.promo-head__b24 {
  position: relative;
  z-index: 2;
}

.get-b24 {
  position: relative;
  display: grid;
  column-gap: 36px;
  align-items: center;
  grid-template-columns: auto 1fr 307px;
  border-radius: 16px;
  padding: 48px;
  background: linear-gradient(90.16deg, #3bb0f1 0.14%, #49de85 99.86%);
  row-gap: 18px;
}
@media (max-width: 1439.98px) {
  .get-b24 {
    grid-template-columns: auto 1fr 310px;
  }
}
@media (max-width: 1199.98px) {
  .get-b24 {
    column-gap: 24px;
    grid-template-columns: auto 1fr auto;
  }
}
@media (max-width: 991.98px) {
  .get-b24 {
    column-gap: 32px;
    grid-template-areas: "get-b24-title get-b24-title" "get-b24-logo get-b24-button";
    grid-template-columns: 1fr 1fr;
    padding: 32px 48px;
  }
}
@media (max-width: 767.98px) {
  .get-b24 {
    grid-template-areas: "get-b24-logo" "get-b24-title" "get-b24-button";
    grid-template-columns: 1fr;
    padding: 32px 24px;
    row-gap: 16px;
  }
}

.get-b24__logo {
  margin-top: 8px;
  width: 269px;
  height: 48px;
}
@media (max-width: 1439.98px) {
  .get-b24__logo {
    width: 211px;
    height: 39px;
  }
}
@media (max-width: 1199.98px) {
  .get-b24__logo {
    width: 184px;
    height: 34px;
  }
}
@media (max-width: 991.98px) {
  .get-b24__logo {
    justify-self: end;
    grid-area: get-b24-logo;
  }
}
@media (max-width: 767.98px) {
  .get-b24__logo {
    justify-self: center;
    width: 141px;
    height: 24px;
  }
}

.get-b24__title {
  font-size: 24px;
  line-height: 28px;
  color: var(--white);
}
@media (max-width: 1439.98px) {
  .get-b24__title {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .get-b24__title {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 991.98px) {
  .get-b24__title {
    grid-area: get-b24-title;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .get-b24__title {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 24px;
  }
}

.get-b24__title strong {
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .get-b24__title strong {
    display: block;
  }
}

.get-b24__button {
  display: inline-block;
  justify-self: end;
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  box-shadow: 0 4px 8px rgba(203, 228, 47, 0.28), 0 12px 24px rgba(44, 218, 15, 0.5);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--green4);
  background: linear-gradient(90deg, #7af366 0.01%, #defb2b 100%);
  cursor: pointer;
}
@media (max-width: 1439.98px) {
  .get-b24__button {
    padding: 15px 24px;
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 1199.98px) {
  .get-b24__button {
    padding: 15px 20px;
  }
}
@media (max-width: 991.98px) {
  .get-b24__button {
    justify-self: start;
    grid-area: get-b24-button;
  }
}
@media (max-width: 767.98px) {
  .get-b24__button {
    justify-self: center;
  }
}

.get-promo {
  position: relative;
  display: grid;
  column-gap: 36px;
  align-items: center;
  grid-template-columns: auto auto 1fr auto;
  border-radius: 16px;
  padding: 18px 72px;
  background: linear-gradient(90deg, #0da27e 0%, #b0eb4f 100%);
  row-gap: 8px;
}
@media (min-width: 992px) and (max-width: 1439.98px) {
  .get-promo {
    grid-template-areas: "get-promo-logo get-promo-head get-promo-button" "get-promo-logo get-promo-title get-promo-button";
    grid-template-columns: auto 1fr auto;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .get-promo {
    grid-template-areas: "get-promo-head get-promo-logo" "get-promo-title get-promo-logo" "get-promo-button get-promo-logo";
    grid-template-columns: 1fr auto;
    padding: 48px;
    gap: 16px 0;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .get-promo {
    column-gap: 48px;
  }
}
@media (max-width: 767.98px) {
  .get-promo {
    column-gap: 48px;
    grid-template-areas: "get-promo-logo" "get-promo-head" "get-promo-title" "get-promo-button";
    grid-template-columns: 1fr;
    padding: 24px 24px 32px;
    row-gap: 16px;
  }
}

.get-promo__head {
  width: 200px;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: var(--white);
}
@media (max-width: 1439.98px) {
  .get-promo__head {
    grid-area: get-promo-head;
  }
}
@media (min-width: 992px) and (max-width: 1439.98px) {
  .get-promo__head {
    align-self: end;
    width: auto;
  }
}
@media (max-width: 767.98px) {
  .get-promo__head {
    width: auto;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
  }
}

.get-promo__logo {
  width: 221px;
}
@media (max-width: 1439.98px) {
  .get-promo__logo {
    grid-area: get-promo-logo;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .get-promo__logo {
    align-self: end;
  }
}
@media (max-width: 767.98px) {
  .get-promo__logo {
    margin: 0 auto;
    width: 128px;
  }
}

.get-promo__title {
  font-size: 20px;
  line-height: 28px;
  color: var(--white);
}
@media (max-width: 1439.98px) {
  .get-promo__title {
    grid-area: get-promo-title;
  }
}
@media (min-width: 992px) and (max-width: 1439.98px) {
  .get-promo__title {
    align-self: start;
  }
}
@media (max-width: 767.98px) {
  .get-promo__title {
    margin: 0 auto;
    max-width: 400px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }
}

.get-promo__button {
  display: inline-block;
  justify-self: end;
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  box-shadow: 0 4px 8px rgba(47, 196, 228, 0.28), 0 12px 24px rgba(15, 206, 218, 0.5);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(90deg, #0e6dc6 0.01%, #0eabb5 100%);
  cursor: pointer;
}
@media (max-width: 1439.98px) {
  .get-promo__button {
    grid-area: get-promo-button;
  }
}
@media (max-width: 1199.98px) {
  .get-promo__button {
    padding: 12px 24px;
    font-size: 14px;
    line-height: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .get-promo__button {
    justify-self: start;
  }
}
@media (max-width: 767.98px) {
  .get-promo__button {
    justify-self: center;
  }
}

.promo-cards {
  overflow-x: clip;
}

.promo-cards__inner {
  position: relative;
  margin-bottom: 72px;
}
@media (max-width: 1439.98px) {
  .promo-cards__inner {
    margin-bottom: 64px;
  }
}
@media (max-width: 1199.98px) {
  .promo-cards__inner {
    margin-bottom: 48px;
  }
}

.promo-cards__content {
  position: relative;
  z-index: 2;
}

.promo-cards__title {
  margin-bottom: 48px;
}
@media (max-width: 1199.98px) {
  .promo-cards__title {
    margin-bottom: 32px;
    font-size: 28px;
    line-height: 36px;
  }
}
@media (max-width: 767.98px) {
  .promo-cards__title {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 32px;
  }
}

.promo-cards__list {
  counter-reset: promo-cards-counter;
  display: flex;
  column-gap: 32px;
  flex-wrap: wrap;
  row-gap: 48px;
}
@media (max-width: 1199.98px) {
  .promo-cards__list {
    row-gap: 32px;
  }
}
@media (max-width: 767.98px) {
  .promo-cards__list {
    row-gap: 16px;
  }
}

.promo-cards__card {
  counter-increment: promo-cards-counter;
  display: flex;
  column-gap: 24px;
  align-items: center;
  border-radius: 16px;
  padding: 48px;
  width: 40%;
  min-height: 128px;
  font-size: 24px;
  line-height: 32px;
  background: var(--white);
}
@media (max-width: 1439.98px) {
  .promo-cards__card {
    padding: 32px;
  }
}
@media (max-width: 1199.98px) {
  .promo-cards__card {
    column-gap: 20px;
    padding: 24px;
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 991.98px) {
  .promo-cards__card {
    width: calc(50% - 16px);
    min-height: 104px;
  }
}
@media (max-width: 767.98px) {
  .promo-cards__card {
    width: 100%;
    font-size: 16px;
    line-height: 24px;
  }
}

@media (min-width: 992px) {
  .promo-cards__card:nth-child(4n-1) {
    margin-left: calc(10% - 16px);
  }
}
.promo-cards__card-number {
  display: flex;
  border-radius: 100%;
  padding: 2px;
  min-width: 68px;
  min-height: 68px;
  background: linear-gradient(183deg, rgb(251, 255, 75) 0%, rgb(0, 225, 111) 100%);
}
@media (max-width: 991.98px) {
  .promo-cards__card-number {
    min-width: 56px;
    min-height: 56px;
  }
}

.promo-cards__card-number::before {
  content: counter(promo-cards-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  max-height: 100%;
  font-weight: 600;
  font-size: 36px;
  line-height: 48px;
  background: var(--white);
}
@media (max-width: 1199.98px) {
  .promo-cards__card-number::before {
    font-size: 28px;
    line-height: 36px;
  }
}

.promo-cards__spot {
  position: absolute;
  border-radius: 100%;
  opacity: 0.12;
  filter: blur(74px);
}
@media (max-width: 767.98px) {
  .promo-cards__spot {
    display: none;
  }
}

.promo-cards__spot-1 {
  left: -10px;
  top: 30px;
  width: 320px;
  height: 320px;
  background: linear-gradient(90deg, #ffec3d 0%, #8fff00 100.01%);
  transform: rotate(26.51deg);
}
@media (max-width: 1199.98px) {
  .promo-cards__spot-1 {
    width: 210px;
    height: 210px;
  }
}

.promo-cards__spot-2 {
  left: 300px;
  top: 0;
  width: 450px;
  height: 450px;
  background: linear-gradient(103.8deg, #ffec3d 5.48%, #00ff1a 90.15%);
  transform: rotate(33.37deg);
}
@media (max-width: 1439.98px) {
  .promo-cards__spot-2 {
    left: 120px;
    width: 430px;
    height: 430px;
  }
}
@media (max-width: 1199.98px) {
  .promo-cards__spot-2 {
    width: 320px;
    height: 320px;
  }
}

.promo-cards__spot-3 {
  left: 550px;
  top: 0;
  width: 490px;
  height: 490px;
  background: linear-gradient(203.97deg, #61e1cb -10.06%, #00e16f 165.3%);
  filter: blur(86px);
  transform: rotate(26.51deg);
}
@media (max-width: 1439.98px) {
  .promo-cards__spot-3 {
    left: 340px;
  }
}
@media (max-width: 1199.98px) {
  .promo-cards__spot-3 {
    width: 340px;
    height: 340px;
  }
}

.promo-cards__spot-4 {
  left: 870px;
  top: 130px;
  width: 490px;
  height: 490px;
  background: linear-gradient(90.31deg, #7ca7fb 0.35%, #136cfe 103.66%);
  filter: blur(86px);
  transform: rotate(33.37deg);
}
@media (max-width: 1439.98px) {
  .promo-cards__spot-4 {
    left: 440px;
  }
}
@media (max-width: 1199.98px) {
  .promo-cards__spot-4 {
    width: 340px;
    height: 340px;
  }
}

.form-promo {
  margin-bottom: 96px;
  border-radius: 16px;
  padding: 64px;
  background: var(--white);
  background-image: url("/local/html/images/content/page-promo/form-promo-bg.svg");
  background-position: left bottom;
  background-repeat: no-repeat;
}
@media (max-width: 1439.98px) {
  .form-promo {
    margin-bottom: 64px;
    padding: 48px;
  }
}
@media (max-width: 767.98px) {
  .form-promo {
    margin-bottom: 48px;
    padding: 32px 16px;
  }
}

.form-promo__wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 20px;
}
@media (max-width: 1199.98px) {
  .form-promo__wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 1199.98px) {
  .form-promo__wrapper {
    margin-bottom: 24px;
    gap: 32px;
  }
}

.form-promo__content {
  width: 575px;
}
@media (max-width: 1439.98px) {
  .form-promo__content {
    width: 460px;
  }
}
@media (max-width: 991.98px) {
  .form-promo__content {
    width: 100%;
    max-width: 454px;
  }
}

.form-promo__title {
  margin-bottom: 28px;
}
@media (max-width: 1199.98px) {
  .form-promo__title {
    margin-bottom: 16px;
    font-size: 28px;
    line-height: 36px;
  }
}
@media (max-width: 767.98px) {
  .form-promo__title {
    font-size: 24px;
    line-height: 32px;
  }
}

.form-promo__pre {
  font-size: 24px;
  line-height: 32px;
}
@media (max-width: 1199.98px) {
  .form-promo__pre {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 767.98px) {
  .form-promo__pre {
    font-size: 16px;
  }
}

.form-promo__form {
  width: 417px;
}
@media (max-width: 991.98px) {
  .form-promo__form {
    width: 100%;
    max-width: 454px;
  }
}

.form-promo__description {
  width: 575px;
}
@media (max-width: 1439.98px) {
  .form-promo__description {
    width: 370px;
  }
}
@media (max-width: 1199.98px) {
  .form-promo__description {
    margin: 0 auto;
    width: 100%;
    max-width: 454px;
    text-align: center;
  }
}

.form-promo__field-container {
  margin-bottom: 24px;
}

.form-promo__field {
  position: relative;
  width: 100%;
}
.form-promo__field-container-error .form-promo__field {
  margin-bottom: 8px;
}

.form-promo__label {
  position: absolute;
  left: 16px;
  top: calc(50% - 12px);
  z-index: 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--grey2);
  transition: all 400ms;
}
.form-promo__input[type=text]:focus ~ .form-promo__label {
  top: 8px;
  font-size: 12px;
  line-height: 14px;
}
.form-promo__input[type=text]:not(:placeholder-shown):not(:focus) ~ .form-promo__label {
  top: 8px;
  font-size: 12px;
  line-height: 14px;
  opacity: 0;
}

.form-promo__input[type=text] {
  position: relative;
  z-index: 1;
  outline: none;
  border: 1px solid var(--grey);
  border-radius: 8px;
  padding: 16px;
  width: 100%;
  height: 56px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  background: none;
}
.form-promo__input[type=text]:focus {
  padding: 24px 16px 10px 13px;
}
.form-promo__field-container-error .form-promo__input[type=text] {
  border-color: var(--purple);
}

.form-promo__error {
  font-size: 14px;
  line-height: 18px;
  color: var(--red);
}

.form-promo__description {
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 18px;
  color: var(--grey2);
}
.form-promo__description a {
  text-decoration: underline;
}
.form-promo__description a:hover {
  text-decoration: none;
}

.form-promo__submit {
  width: 100%;
}

.form-promo__submit:disabled {
  border-color: transparent;
  color: var(--grey2);
  background: var(--grey);
  cursor: default;
}

.mCS-3d-thick-dark.mCSB_scrollTools_vertical, .mCS-3d-thick.mCSB_scrollTools_vertical {
  box-shadow: unset;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer {
  background-color: rgba(240, 240, 240, 0.1);
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.1);
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #b3b3b3;
}

.mCSB_inside > .mCSB_container {
  margin-right: 16px;
}

/*# sourceMappingURL=main.css.map */
