@charset "UTF-8";
input,
textarea,
button,
select {
  font-family: inherit;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html,
body,
.page {
  overflow-x: hidden;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  color: #1a1a1a;
  background-color: #fff;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

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

.container {
  width: 100%;
  max-width: 1140px;
  padding-inline: 16px;
  margin-inline: auto;
}

.section {
  padding-block: 40px;
}
.section__header {
  text-align: left;
  margin-bottom: 32px;
}
.section__header--left {
  text-align: left;
}
.section__title {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
}
.section__subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #707070;
}

.hero {
  position: relative;
  color: #fff;
  min-height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 120px;
  padding-bottom: 0;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.15)), to(rgba(0, 0, 0, 0.4))), url("../assets/images/backgrounds/hero-bg.jpg");
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.4)), url("../assets/images/backgrounds/hero-bg.jpg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.hero__container {
  position: relative;
  z-index: 5;
  padding-bottom: 120px;
}
.hero__content {
  max-width: 920px;
}
.hero__title {
  margin: 0 0 16px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}
.hero__title-accent {
  color: #ffb4b4;
}
.hero__text {
  margin: 0 0 32px;
  max-width: 550px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
}
.hero-form {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
  background-color: #fff;
}
.hero-form__input {
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 20px 28px;
  min-width: 260px;
  font-size: 18px;
  font-weight: 200;
  color: #1a1a1a;
}
.hero-form__input::-webkit-input-placeholder {
  color: #b0b0b0;
}
.hero-form__input::-moz-placeholder {
  color: #b0b0b0;
}
.hero-form__input:-ms-input-placeholder {
  color: #b0b0b0;
}
.hero-form__input::-ms-input-placeholder {
  color: #b0b0b0;
}
.hero-form__input::placeholder {
  color: #b0b0b0;
}
.hero-form__button {
  border: none;
  padding: 10px 68px;
  font-size: 18px;
  font-weight: 600;
  background-color: #ff0000;
  color: #fff;
  cursor: pointer;
  -webkit-transition: background-color 0.25s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.25s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.25s ease, transform 0.2s ease;
  transition: background-color 0.25s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.hero-form__button:hover {
  background-color: #cc0000;
}
.hero-form__button:active {
  background-color: rgb(127.5, 0, 0);
}

.hero-nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  padding-top: 24px;
  z-index: 9998;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.5s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.5s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.5s ease, box-shadow 0.3s ease;
  transition: transform 0.5s ease, box-shadow 0.3s ease, -webkit-transform 0.5s ease, -webkit-box-shadow 0.3s ease;
  will-change: transform;
}
.hero-nav-wrap.is-hidden {
  -webkit-transform: translateY(-120%);
          transform: translateY(-120%);
}
.hero-nav-wrap.glow-white {
  -webkit-box-shadow: inset rgba(255, 255, 255, 0.5) 0 120px 49px -108px;
          box-shadow: inset rgba(255, 255, 255, 0.5) 0 120px 49px -108px;
}
.hero-nav-wrap.glow-black {
  -webkit-box-shadow: inset rgb(0, 0, 0) 0 120px 49px -108px;
          box-shadow: inset rgb(0, 0, 0) 0 120px 49px -108px;
}

.hero-nav {
  pointer-events: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: calc(100% - 32px);
  max-width: 1140px;
  height: 72px;
  padding-inline: 40px;
  border-radius: 20px;
  -webkit-box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
          box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  background: rgba(247, 247, 247, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: backdrop-filter;
}
.hero-nav.is-scrolled {
  background: rgba(0, 0, 0, 0.693);
  color: #fff;
}
.hero-nav__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 24px;
  white-space: nowrap;
  margin-right: 32px;
}
.hero-nav__logo-img {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.hero-nav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  font-size: 18px;
  font-weight: 500;
  min-width: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.hero-nav__link {
  color: #fff;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.hero-nav__link:hover {
  opacity: 0.7;
}
.hero-nav__link:active {
  opacity: 0.45;
}
.hero-nav__link .text-short {
  display: none;
}
.hero-nav__actions {
  margin-left: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.hero-nav__tg {
  width: 36px;
  height: 36px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 999px;
  overflow: hidden;
}
.hero-nav__tg-icon {
  width: 30px;
  height: 30px;
  display: block;
  -webkit-transition: fill 0.3s ease, -webkit-transform 0.2s ease;
  transition: fill 0.3s ease, -webkit-transform 0.2s ease;
  transition: fill 0.3s ease, transform 0.2s ease;
  transition: fill 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.hero-nav__tg-icon:hover {
  fill: #ff6b6b;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.hero-nav__tg-icon:active {
  fill: #ff3b3b;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.hero-nav__burger {
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.hero-nav__burger span {
  position: relative;
  width: 26px;
  height: 3.6px;
  background: #fff;
  display: block;
}
.hero-nav__burger span::before, .hero-nav__burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 3.6px;
  background: #fff;
}
.hero-nav__burger span::before {
  top: -10.5px;
}
.hero-nav__burger span::after {
  top: 10.5px;
}

.features {
  background-color: #fff;
}
.features-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  padding: 20px 24px;
  -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
          box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}
.feature-card:hover {
  background-color: rgba(172, 189, 205, 0.16);
}
.feature-card:hover .feature-card__icon {
  background-color: #008af4;
}
.feature-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #d4d8e3;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
  overflow: hidden;
}
.feature-card__icon img {
  width: 25px;
  height: 25px;
  z-index: 2;
  pointer-events: none;
}
.feature-card__icon .feature-card__icon-subs {
  width: 26px;
  height: 27px;
}
.feature-card__icon .feature-card__icon-ref {
  width: 30px;
  height: 30px;
}
.feature-card__icon .feature-card__icon-inf {
  width: 27px;
  height: 27px;
}
.feature-card__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
}
.feature-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #707070;
}

.order-links__icon {
  width: 25px;
  height: 25px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  display: block;
}

.order-links__text {
  line-height: 1;
}

.order-note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 14px;
  line-height: 1.7;
  color: #707070;
}

.order-note__icon {
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  margin-top: -6px;
  display: block;
}

.order-note__text {
  min-width: 0;
}

.order-steps__link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.order-steps__link:hover {
  opacity: 0.8;
}
.order-steps__link:active {
  opacity: 0.6;
}

.order-divider {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}

.order-divider__line {
  width: 100%;
  max-width: 220px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.35);
}

.order-divider__text {
  width: 100%;
  max-width: none;
  font-size: 14px;
  line-height: 1.7;
  color: #707070;
  text-align: left;
  margin: 0;
}

.order-divider__link {
  font-weight: 500;
}

.order-form__slider-label {
  position: relative;
  display: block;
  padding-top: 26px;
  padding-bottom: 6px;
}

.order-form__slider-max {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 14px;
  font-weight: 300;
  color: gray;
  opacity: 0.7;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.order-form__slider-value {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  font-size: 14px;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
  pointer-events: none;
}

.order-form__slider {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  height: 12px;
  background: transparent;
  outline: none;
  margin: 0;
  padding: 0;
}

.order-form__slider::-webkit-slider-runnable-track {
  height: 10px;
  background: #e6e6e6;
  border-radius: 999px;
}

.order-form__slider::-moz-range-track {
  height: 12px;
  background: #e6e6e6;
  border-radius: 999px;
}

.order-form__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border: none;
  cursor: pointer;
  background: -webkit-gradient(linear, left top, left bottom, from(#0088FF), to(#0088FF)) center/12px 12px no-repeat, #54AFFF;
  background: linear-gradient(#0088FF, #0088FF) center/12px 12px no-repeat, #54AFFF;
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  margin-top: -5px;
}

.order-form__slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: none;
  cursor: pointer;
  background: linear-gradient(#0088FF, #0088FF) center/12px 12px no-repeat, #54AFFF;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.order-form__input {
  border-radius: 5px;
  border: 1px solid #d7dde8;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.order-form__input:focus, .order-form__input:focus-visible {
  border-color: #0088FF;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 136, 255, 0);
          box-shadow: 0 0 0 0 rgba(0, 136, 255, 0);
}

.order-form__input.is-invalid {
  border-color: #ff3b30;
  -webkit-box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.12);
          box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.12);
}

.order-form__error {
  font-size: 13px;
  line-height: 1.4;
  color: #ff3b30;
  margin-top: -4px;
}

.order {
  font-size: 14px;
}
.order__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: 32px;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}
.order__media {
  margin-right: 32px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 150px;
          flex: 0 0 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.order__image {
  width: 200px;
  height: 150px;
  display: block;
}
.order-steps__card {
  background: #008af4;
  border-radius: 16px;
  padding: 24px 60px 24px 34px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  -webkit-box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
          box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}
.order-steps__list {
  margin: 0;
  padding-left: 18px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}
.order-links {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.order-links__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 260px;
  max-width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: #fff;
  color: #111;
  font-weight: 600;
  cursor: pointer;
  -webkit-box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
          box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  -webkit-transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, -webkit-box-shadow 0.25s ease, -webkit-transform 0.15s ease;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, -webkit-box-shadow 0.25s ease, -webkit-transform 0.15s ease;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease, -webkit-box-shadow 0.25s ease, -webkit-transform 0.15s ease;
}
.order-links__btn:hover {
  background: #008af4;
  border-color: transparent;
  color: #fff;
}
.order-links__btn:active {
  background: #1499ff;
}
.order__bottom {
  margin-top: 32px;
}
.order__text {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #707070;
}
.order-form {
  margin-top: 16px;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.order-form__input {
  border-radius: 5px;
  border: 1px solid #d7dde8;
  padding: 10px 12px;
  font-size: 14px;
}
.order-form__slider {
  width: 100%;
}
.order-form__result {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.order-form__price {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 5px;
  padding: 18px 16px;
}
.order-form__price-label {
  font-size: 14px;
  color: #707070;
}
.order-form__price-value {
  margin-top: 6px;
  font-size: 20px;
  font-weight: 700;
  color: #000;
}
.order-form__submit {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 260px;
          flex: 0 0 260px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
  border: none;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  background: #062e4d;
  color: #fff;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.15s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.15s ease;
  transition: transform 0.15s ease, opacity 0.2s ease;
  transition: transform 0.15s ease, opacity 0.2s ease, -webkit-transform 0.15s ease;
}
.order-form__submit:hover {
  opacity: 0.92;
}
.order-form__submit:active {
  opacity: 0.7;
}

.services-pack__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}
@media (max-width: 900px) {
  .services-pack__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .services-pack__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.services-pack__cta {
  margin-top: 32px;
  text-align: center;
}

.tariff-card__info-trigger:hover + .tariff-card__tooltip,
.tariff-card__info-trigger:focus-visible + .tariff-card__tooltip {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}

.tariff-card {
  position: relative;
  background-color: #fff;
  border-radius: 16px;
  padding: 110px 24px 50px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
.tariff-card--one:hover {
  background-color: rgba(220, 220, 220, 0.5);
}
.tariff-card--one:hover .tariff-card__badge {
  background-color: #636462;
}
.tariff-card--two:hover {
  background-color: rgba(244, 244, 244, 0.5);
}
.tariff-card--two:hover .tariff-card__badge {
  background-color: #C7C7C7;
}
.tariff-card--three:hover {
  background-color: rgba(255, 245, 218, 0.5);
}
.tariff-card--three:hover .tariff-card__badge {
  background-color: #F2C859;
}
.tariff-card--four:hover {
  background-color: rgba(160, 202, 214, 0.4);
}
.tariff-card--four:hover .tariff-card__badge {
  background-color: #3DA2C3;
}
.tariff-card--five:hover {
  background-color: rgba(44, 205, 117, 0.2);
}
.tariff-card--five:hover .tariff-card__badge {
  background-color: #2CCD75;
}
.tariff-card--six:hover {
  background-color: rgba(219, 46, 40, 0.2);
}
.tariff-card--six:hover .tariff-card__badge {
  background-color: #DB2D28;
}
.tariff-card__info-trigger {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.tariff-card__image {
  position: absolute;
  top: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}
.tariff-card__image img {
  width: 90px;
  height: auto;
  display: block;
}
.tariff-card__badge {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  display: inline-block;
  padding: 10px 25px;
  background-color: #0088FF;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}
.tariff-card__divider {
  width: 42px;
  height: 1px;
  background-color: #e0e0e0;
  margin: 0 auto 14px;
}
.tariff-card__title {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}
.tariff-card__list {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.6;
  color: #707070;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.tariff-card__footer {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #707070;
}
.tariff-card__info {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: auto;
  cursor: pointer;
}
.tariff-card__info.is-fixed .tariff-card__tooltip {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.tariff-card__info-icon {
  width: 18px;
  height: 18px;
  display: block;
  opacity: 0.6;
}
.tariff-card__tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  min-width: 380px;
  padding: 8px 10px;
  background-color: #111;
  color: #fff;
  font-size: 11px;
  line-height: 1.4;
  border-radius: 6px;
  opacity: 0;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  pointer-events: auto;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  cursor: default;
  z-index: 10;
}
.tariff-card__tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 12px;
  border-width: 6px;
  border-style: solid;
  border-color: #111 transparent transparent transparent;
}
.tariff-card__tg-link {
  color: #0088FF;
  font-weight: 500;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.tariff-card__tg-link:hover {
  opacity: 0.92;
}
.tariff-card__tg-link:active {
  opacity: 0.7;
}
.tariff-card__more {
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.tariff-card__more span {
  opacity: 0.6;
}

.case-card__info {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.case-card__info-icon {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.case-card__tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 184px;
  -webkit-transform: translateX(-50%) translateY(6px);
          transform: translateX(-50%) translateY(6px);
  width: 400px;
  padding: 12px 14px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  font-size: 13px;
  line-height: 1.5;
  color: #333;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
}
.case-card__tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 18px;
  border-width: 7px;
  border-style: solid;
  border-color: gray transparent transparent transparent;
}

.case-card__info:hover .case-card__tooltip {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}

.case-card__info-icon {
  width: 20px;
  height: 20px;
  display: block;
  opacity: 0.6;
}

.cases__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
.cases__date {
  margin: 16px 0 20px;
  font-size: 12px;
  color: #707070;
}
.cases__cta {
  text-align: center;
}

.case-card h3,
.case-card p,
.case-card ul {
  margin-top: 0;
  margin-bottom: 0;
}

.case-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 140px 60px 1fr;
  grid-template-columns: 140px 1fr;
  gap: 60px;
  border: 1px solid rgba(0, 0, 0, 0.14);
}
.case-card__media {
  width: 170px;
  aspect-ratio: 1/1;
  border-radius: 18px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.case-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  display: block;
}
.case-card__body {
  min-width: 0;
}
.case-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}
.case-card__title {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  text-decoration: underline;
  letter-spacing: 0.5px;
}
.case-card__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 34px;
  padding: 0 16px;
  border-radius: 5px;
  background: #0088ff;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.15s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.15s ease;
  transition: transform 0.15s ease, opacity 0.2s ease;
  transition: transform 0.15s ease, opacity 0.2s ease, -webkit-transform 0.15s ease;
}
.case-card__btn:hover {
  opacity: 0.92;
}
.case-card__btn:active {
  opacity: 0.7;
}
.case-card__desc {
  margin: 0 0 14px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.5;
}
.case-card__stats {
  margin: 0;
  padding-left: 18px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
}
.case-card__stats li::marker {
  color: rgba(0, 0, 0, 0.35);
}

.cases__note {
  margin-bottom: 32px;
  text-align: center;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
}

.case-card__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.case-card__info-icon {
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  min-width: 20px;
  min-height: 20px;
}

.case-card__image {
  width: 160px;
  height: 160px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 160px;
          flex: 0 0 160px;
  border-radius: 18px;
  overflow: hidden;
}

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

.case-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.case-card__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}

.faq__list {
  margin-top: 24px;
  border-top: 1px solid #e0e0e0;
}
.faq__footer {
  margin-top: 24px;
  font-size: 13px;
  text-align: center;
  color: #707070;
}
.faq__link {
  color: #1091ff;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.15s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.15s ease;
  transition: transform 0.15s ease, opacity 0.2s ease;
  transition: transform 0.15s ease, opacity 0.2s ease, -webkit-transform 0.15s ease;
}
.faq__link:hover {
  opacity: 0.92;
}
.faq__link:active {
  opacity: 0.7;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}
.faq-item__question {
  width: 100%;
  padding: 14px 0;
  border: none;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 15px;
  cursor: pointer;
}
.faq-item__icon {
  margin-left: 16px;
  font-size: 20px;
}
.faq-item__answer {
  padding-bottom: 14px;
  font-size: 14px;
  line-height: 1.7;
  color: #707070;
}

.faq__item {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.faq__item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.faq__head {
  width: 100%;
  padding: 22px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
}
.faq__q {
  font-size: 14px;
  font-weight: 400;
  color: #111;
}
.faq__sign {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.faq__body {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.35s ease;
  transition: max-height 0.35s ease;
}
.faq__content {
  padding: 0 0 22px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.65);
}
.faq__item.is-open .faq__sign {
  content: "−";
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 28px 0px;
  border-radius: 5px;
  background: #1091ff;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 24px;
  font-weight: 700;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.15s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.15s ease;
  transition: transform 0.15s ease, opacity 0.2s ease;
  transition: transform 0.15s ease, opacity 0.2s ease, -webkit-transform 0.15s ease;
}
.button:hover {
  opacity: 0.92;
}
.button:active {
  opacity: 0.7;
}

.footer {
  background-color: #111;
  color: #f5f5f5;
  padding-block: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  font-size: 13px;
}
.footer__left {
  max-width: 420px;
}
.footer__brand {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.footer__brand-logo {
  width: 50px;
  height: 50px;
  display: block;
}
.footer__brand-name {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2px;
}
.footer__text {
  margin: 0 0 16px;
  color: #bbb;
  line-height: 1.5;
}
.footer__copy {
  margin: 0;
  font-size: 12px;
  color: #888;
}
.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: right;
  gap: 10px;
  min-width: 220px;
}
.footer__links {
  color: #4dafff;
  line-height: 1.6;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.15s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.15s ease;
  transition: transform 0.15s ease, opacity 0.2s ease;
  transition: transform 0.15s ease, opacity 0.2s ease, -webkit-transform 0.15s ease;
}
.footer__links a {
  text-decoration: none;
}
.footer__links a:hover {
  text-decoration: underline;
}
.footer__links a:active {
  opacity: 0.7;
}
.footer__telegram {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
}
.footer__telegram-icon {
  width: 24px;
  height: 24px;
  display: block;
}
.footer__telegram-text {
  color: #f5f5f5;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.15s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.15s ease;
  transition: transform 0.15s ease, opacity 0.2s ease;
  transition: transform 0.15s ease, opacity 0.2s ease, -webkit-transform 0.15s ease;
  white-space: nowrap;
}
.footer__telegram-text a {
  color: #4dafff;
  text-decoration: none;
}
.footer__telegram-text a:hover {
  text-decoration: underline;
}
.footer__telegram-text a:active {
  opacity: 0.7;
}

@media (max-width: 480px) {
  .services-pack__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .hero-nav {
    margin-inline: 0;
  }
}
@media (max-width: 510px) {
  .tariff-card__info-icon {
    width: 25px;
    height: 25px;
    cursor: pointer;
  }
}
@media (max-width: 590px) {
  .case-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 14px;
  }
  .case-card__image {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 240px;
    max-width: 100%;
    aspect-ratio: 1/1;
    height: auto;
    margin: 0;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .case-card__body {
    width: 100%;
  }
  .case-card__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 12px;
    text-align: center;
    width: 100%;
  }
  .case-card__btn {
    margin-left: 0;
    white-space: nowrap;
  }
  .case-card__stats {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .case-card__tooltip {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }
}
@media (max-width: 600px) {
  .case-card__tooltip {
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    top: 50% !important;
    bottom: auto !important;
    -webkit-transform: translate(-50%, -50%) !important;
            transform: translate(-50%, -50%) !important;
    width: min(92vw, 420px);
    max-height: 70vh;
    overflow: auto;
    z-index: 9999;
  }
  .case-card__tooltip::after {
    display: none !important;
  }
  .case-card__info:hover .case-card__tooltip {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, -50%) !important;
            transform: translate(-50%, -50%) !important;
  }
}
@media (max-width: 768px) {
  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .footer__right {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .footer__links a {
    text-align: center;
  }
  .footer__telegram {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .case-card__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    width: 100%;
    text-align: center;
  }
  .case-card__title {
    margin: 0;
  }
  .case-card__btn {
    margin: 0;
  }
  .hero {
    min-height: 360px;
    padding-top: 24px;
  }
  .hero__container {
    padding-bottom: 0;
  }
  .hero__content {
    margin-top: 95px;
  }
  .hero__text {
    display: none;
  }
  .hero__title {
    font-size: 23px;
  }
  .hero__bg {
    background-position: center top;
    background-size: cover;
  }
  .hero-form {
    width: 75%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .hero-form__input, .hero-form__button {
    width: 100%;
  }
  .hero-nav {
    padding-inline: 16px;
    border-radius: 17px;
    margin-bottom: 0;
  }
  .hero-nav__actions {
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-left: 0;
    gap: 10px;
  }
  .hero-nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    padding: 12px 20px;
    background: #fff;
    border-radius: 10px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 26px;
  }
  .hero-nav__menu--open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hero-nav__link {
    color: #000;
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    white-space: nowrap;
    opacity: 1;
  }
  .hero-nav__link:hover {
    opacity: 0.7;
  }
  .hero-nav__link:active {
    color: #000;
    opacity: 1;
  }
  .hero-nav__burger {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .order__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    row-gap: 14px;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
  .order__media {
    display: none;
  }
  .order .order-steps {
    min-width: 0;
    max-width: 420px;
  }
  .order .order-links {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 420px;
    margin: 10px auto 0;
    gap: 10px;
  }
  .order .order-links__btn {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 25%;
    width: 100%;
  }
  .order-form__result {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .order-form__submit {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .services-pack__grid {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .case-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .case-card__image {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 940px) {
  .order__media {
    display: none;
  }
  .order__layout {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
  .order-steps {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    min-width: 360px;
  }
  .order-links {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 260px;
            flex: 0 0 260px;
  }
}
@media (max-width: 960px) {
  .features-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  .hero-nav__link .text-full {
    display: none;
  }
  .hero-nav__link .text-short {
    display: inline;
  }
}
.case-card__info {
  position: relative;
}

.case-card__tooltip {
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(6px);
          transform: translateX(-50%) translateY(6px);
  width: min(320px, 100vw - 24px);
  max-width: calc(100vw - 24px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.case-card__tooltip::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (max-width: 720px) {
  .hero-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    border-radius: 6px;
    overflow: hidden;
  }
  .hero-form__input {
    width: 100%;
    min-width: 0;
    padding: 20px 16px;
    font-size: 16px;
  }
  .hero-form__button {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 80px;
            flex: 1 1 80px;
    padding: 10px 16px;
    font-size: 15px;
    line-height: 1.1;
    white-space: nowrap;
  }
  #heroToOrderBtn br {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero-nav-wrap,
  .hero-nav-wrap.is-hidden {
    -webkit-transform: none !important;
            transform: none !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
@media (max-width: 460px) {
  .services-pack__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .tariff-card {
    width: 100%;
    max-width: none;
  }
}