@charset "UTF-8";
/*
section.inner-promo(
  style="background-image: image-set(url('./img/inner-promo.webp') 1x, url('./img/inner-promo@2x.webp') 2x);
         -webkit-background-image: -webkit-image-set(url('./img/inner-promo.webp') 1x, url('./img/inner-promo@2x.webp') 2x);"
)
 @media (-webkit-min-device-pixel-ratio: 2), 
(min-resolution: 192dpi) { 

    .box{background:url('images/box-bg@2x.png') no-repeat top left;}
}
 */
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Black.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto_Condensed-LightItalic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
}
*, *:after, *:before {
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: center;
}

:root {
  --font-family: "Roboto";
  --second-family: "Arial";
  --third-family: "Inter";
  --hover: #ffcd04;
  --dark: #404040;
  --red: #d71920;
  --grey-1: #f5f5f5;
  --grey-2: #eaeaea;
  --colors-yellow-1: #fad54d;
  --colors-white-1: #fff;
  --colors-black-1: #2c2c2c;
  --colors-blue-1: #0d75f3;
  --colors-blue-2: #e4ecf3;
  --colors-black-2: #6b6b6b;
  --colors-grey-1: #f3f3f3;
  --colors-red-1: #ef281e;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(44, 44, 44, 0.7);
}
@media (min-width: 744px) {
  html,
  body {
    font-size: 16px;
  }
}

.lock {
  overflow: hidden;
}

.page-content {
  display: flex;
  flex-direction: column;
}
.page-content > * {
  width: 100%;
}
.page-content header.header, .page-content footer.footer {
  flex-shrink: 0;
}
.page-content main {
  flex-grow: 1;
}

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

*, *:focus {
  outline: none;
}

a[href^="tel:"],
a[href^="mailto:"] {
  white-space: nowrap;
}

h1,
h2,
h3,
h4,
p {
  padding: 0;
  margin: 0;
}

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

.img-cover, .img-contain {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-contain {
  object-fit: contain;
}

.shadow-box {
  border-radius: 4px;
  border: 1.52px solid #ededed;
  box-shadow: 0 0 76px 0 rgba(74, 74, 74, 0.05);
}

input,
button, textarea {
  border: none;
  background: none;
  padding: 0;
  box-shadow: none;
  font-family: inherit;
  font-size: inherit;
}

button, input[type=submit] {
  cursor: pointer;
}

address {
  font-style: normal;
}

input::placeholder, textarea::placeholder {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 570px;
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 744px) {
  .container {
    max-width: 664px;
    padding: 0;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 944px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1110px;
  }
}
@media (min-width: 1365px) {
  .container {
    max-width: 1170px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1300px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1440px;
  }
}

/*vendore*/
.d-flex, .d-flex-cy, .flex-column, .icon-txt {
  display: flex;
  gap: 8px;
}

.flex-column {
  flex-direction: column;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.d-flex-cy, .icon-txt {
  align-items: center;
}

.d-flex.xs-flex-column {
  flex-direction: column;
}
@media (min-width: 744px) {
  .d-flex.xs-flex-column {
    flex-direction: row;
  }
}

.icon-txt {
  column-gap: 12px;
}

.icon-txt img, .icon-txt svg {
  flex-shrink: 0;
}

.column-gap-80 {
  display: flex;
  flex-direction: column;
  row-gap: 64px;
}
.column-gap-80 > * {
  width: 100%;
}
@media (min-width: 744px) {
  .column-gap-80 {
    row-gap: 80px;
  }
}
@media (min-width: 1440px) {
  .column-gap-80 {
    row-gap: 120px;
  }
}

.py-120 {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 744px) {
  .py-120 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1440px) {
  .py-120 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.pt-120, .py-120-60 {
  padding-top: 60px;
}
@media (min-width: 744px) {
  .pt-120, .py-120-60 {
    padding-top: 80px;
  }
}
@media (min-width: 1440px) {
  .pt-120, .py-120-60 {
    padding-top: 120px;
  }
}

.pb-120 {
  padding-bottom: 60px;
}
@media (min-width: 744px) {
  .pb-120 {
    padding-bottom: 80px;
  }
}
@media (min-width: 1440px) {
  .pb-120 {
    padding-bottom: 120px;
  }
}

.pt-60, .py-60 {
  padding-top: 30px;
}
@media (min-width: 744px) {
  .pt-60, .py-60 {
    padding-top: 40px;
  }
}
@media (min-width: 1440px) {
  .pt-60, .py-60 {
    padding-top: 60px;
  }
}

.pb-60, .py-60, .py-120-60 {
  padding-bottom: 30px;
}
@media (min-width: 744px) {
  .pb-60, .py-60, .py-120-60 {
    padding-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .pb-60, .py-60, .py-120-60 {
    padding-bottom: 60px;
  }
}

.grid-12,
.grid-10,
.grid-6 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 8px;
  row-gap: 8px;
}
.grid-12 > *,
.grid-10 > *,
.grid-6 > * {
  grid-column: span 12;
}
@media (min-width: 744px) {
  .grid-12,
  .grid-10,
  .grid-6 {
    column-gap: 24px;
    row-gap: 24px;
  }
}

.grid-10 {
  grid-template-columns: repeat(10, 1fr);
}
.grid-10 > * {
  grid-column: span 10;
}

.xs-col-2 > * {
  grid-column: span 6;
}

.grid-10.col-2 > * {
  grid-column: span 5;
}

@media (min-width: 744px) {
  .md-col-2 > * {
    grid-column: span 6 !important;
  }
  .md-col-3 > * {
    grid-column: span 4 !important;
  }
  .md-col-4 > * {
    grid-column: span 3 !important;
  }
  .md-col-5 > * {
    grid-column: span 2 !important;
  }
  .md-col-6 > * {
    grid-column: span 2 !important;
  }
}
@media (min-width: 1024px) {
  .lg-col-2 > * {
    grid-column: span 6 !important;
  }
  .lg-col-3 > * {
    grid-column: span 4 !important;
  }
  .lg-col-4 > * {
    grid-column: span 3 !important;
  }
  .lg-col-5 > * {
    grid-column: span 2 !important;
  }
  .lg-col-6 > * {
    grid-column: span 2 !important;
  }
}
@media (min-width: 1200px) {
  .xl-col-2 > * {
    grid-column: span 6 !important;
  }
  .xl-col-3 > * {
    grid-column: span 4 !important;
  }
  .xl-col-4 > * {
    grid-column: span 3 !important;
  }
  .xl-col-5 > * {
    grid-column: span 2 !important;
  }
  .xl-col-6 > * {
    grid-column: span 2 !important;
  }
}
@media (min-width: 1440px) {
  .xxl-col-2 > * {
    grid-column: span 6 !important;
  }
  .xxl-col-3 > * {
    grid-column: span 4 !important;
  }
  .xxl-col-4 > * {
    grid-column: span 3 !important;
  }
  .xxl-col-5 > * {
    grid-column: span 2 !important;
  }
  .xxl-col-6 > * {
    grid-column: span 2 !important;
  }
}
@media (min-width: 1200px) {
  .grid-12 .span-xl-4 {
    grid-column: span 4;
  }
  .grid-12 .span-xl-8 {
    grid-column: span 8;
  }
}
@media (min-width: 1440px) {
  .grid-12 .span-xxl-4 {
    grid-column: span 4;
  }
  .grid-12 .span-xxl-8 {
    grid-column: span 8;
  }
}

.xl-reverse {
  grid-template-areas: "sidebar main";
}
@media (min-width: 1200px) {
  .xl-reverse .span-xl-4 {
    grid-area: sidebar;
    grid-column: 1/5;
  }
  .xl-reverse .span-xl-8 {
    grid-area: main;
    grid-column: 5/-1;
  }
}
@media (min-width: 1440px) {
  .xl-reverse .span-xxl-4 {
    grid-area: sidebar;
    grid-column: 1/5;
  }
  .xl-reverse .span-xxl-8 {
    grid-area: main;
    grid-column: 5/-1;
  }
}

.flex, .flex-2, .flex-3, .flex-4, .flex-5, .flex-6 {
  --gap:8px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}
.flex > *, .flex-2 > *, .flex-3 > *, .flex-4 > *, .flex-5 > *, .flex-6 > * {
  width: 100%;
}
@media (min-width: 744px) {
  .flex, .flex-2, .flex-3, .flex-4, .flex-5, .flex-6 {
    --gap:24px;
  }
}

.flex-2 > * {
  width: calc((100% - var(--gap) * 1) / 2);
}

.flex-3 > * {
  width: calc((100% - var(--gap) * 2) / 3);
}

.flex-4 > * {
  width: calc((100% - var(--gap) * 3) / 4);
}

.flex-5 > * {
  width: calc((100% - var(--gap) * 4) / 5);
}

.flex-6 > * {
  width: calc((100% - var(--gap) * 5) / 6);
}

@media (min-width: 744px) {
  .md-flex-2 > * {
    width: calc((100% - var(--gap) * 1) / 2);
  }
  .md-flex-3 > * {
    width: calc((100% - var(--gap) * 2) / 3);
  }
  .md-flex-4 > * {
    width: calc((100% - var(--gap) * 3) / 4);
  }
  .md-flex-5 > * {
    width: calc((100% - var(--gap) * 4) / 5);
  }
  .md-flex-6 > * {
    width: calc((100% - var(--gap) * 5) / 6);
  }
}
@media (min-width: 1024px) {
  .lg-flex-2 > * {
    width: calc((100% - var(--gap) * 1) / 2);
  }
  .lg-flex-3 > * {
    width: calc((100% - var(--gap) * 2) / 3);
  }
  .lg-flex-4 > * {
    width: calc((100% - var(--gap) * 3) / 4);
  }
  .lg-flex-5 > * {
    width: calc((100% - var(--gap) * 4) / 5);
  }
  .lg-flex-6 > * {
    width: calc((100% - var(--gap) * 5) / 6);
  }
}
@media (min-width: 1200px) {
  .xl-flex-2 > * {
    width: calc((100% - var(--gap) * 1) / 2);
  }
  .xl-flex-3 > * {
    width: calc((100% - var(--gap) * 2) / 3);
  }
  .xl-flex-4 > * {
    width: calc((100% - var(--gap) * 3) / 4);
  }
  .xl-flex-5 > * {
    width: calc((100% - var(--gap) * 4) / 5);
  }
  .xl-flex-6 > * {
    width: calc((100% - var(--gap) * 5) / 6);
  }
}
h1, h2, .h-56, .h-48, h3, .h-40, .h-32, .h-24 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: var(--colors-black-1);
}
@media (min-width: 744px) {
  h1, h2, .h-56, .h-48, h3, .h-40, .h-32, .h-24 {
    font-size: 48px;
    line-height: 1.1;
  }
}

@media (min-width: 744px) {
  .h-56 {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -0.04em;
  }
}
@media (min-width: 1200px) {
  .h-56 {
    font-size: 44px;
  }
}
@media (min-width: 1440px) {
  .h-56 {
    font-size: 56px;
  }
}

.h-48 {
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .h-48 {
    margin-bottom: 40px;
  }
}

h3, .h-40 {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.03em;
}
@media (min-width: 744px) {
  h3, .h-40 {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media (min-width: 1440px) {
  h3, .h-40 {
    font-size: 40px;
    line-height: 110%;
    letter-spacing: -0.03em;
  }
}

.h-32 {
  font-size: 18px;
  letter-spacing: -0.02em;
}
@media (min-width: 744px) {
  .h-32 {
    font-size: 32px;
  }
}

.h-24 {
  font-size: 1.125rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
@media (min-width: 744px) {
  .h-24 {
    font-size: 1.5rem;
    line-height: 1.2;
  }
}

.h-20 {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: var(--colors-black-1);
}

.fs-18, .fs-16, .fs-15, .fs-14, .fs-12 {
  font-family: var(--font-family);
  color: var(--colors-black-1);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.fs-16 {
  font-size: 14px;
  color: rgba(44, 44, 44, 0.7);
}

.fs-15 {
  font-size: 15px;
}

.fs-14 {
  font-size: 14px;
}

.fs-12 {
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

@media (min-width: 744px) {
  h3, .h-40 {
    font-size: 40px;
    line-height: 1.1;
  }
  .fs-18 {
    font-size: 18px;
  }
  .fs-16 {
    font-size: 16px;
  }
  .fs-15 {
    font-size: 15px;
  }
  .fs-14 {
    font-size: 14px;
  }
  .fs-12 {
    font-size: 12px;
    line-height: 1.25;
    letter-spacing: -0.01em;
  }
}
.header-group {
  text-align: center;
  margin-bottom: 24px;
}
.header-group .h-48 {
  margin-bottom: 0 !important;
}
.header-group .fs-16 {
  margin-top: 12px;
}
@media (min-width: 744px) {
  .header-group .fs-16 {
    margin-top: 20px;
  }
}
@media (min-width: 1200px) {
  .header-group {
    margin-bottom: 40px;
  }
}

.header-group.txt-left {
  text-align: left;
}

.a-gradient {
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: center bottom 1px;
  background-size: 100% 1px;
  background-image: linear-gradient(to right, currentColor, currentColor);
}

.dark-bg {
  background-color: #080808;
}

.grey-bg {
  background-color: #ececec;
}

.lightgrey-bg {
  background-color: #f8f8f8;
}

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

.txt-blue {
  color: var(--colors-blue-1);
}

.txt-white {
  color: white;
}

.txt-opac-white {
  color: rgba(255, 255, 255, 0.8);
}

svg {
  display: inline-block;
}

.svg-right {
  width: 12px;
  height: 10px;
  color: var(--colors-black-1);
}

.svg-gerb {
  width: 24px;
  height: 25px;
}

.svg-carret-down {
  width: 14px;
  height: 7px;
  color: var(--colors-black-1);
}

.svg-check {
  width: 18px;
  height: 14px;
  color: #0D75F3;
}

.svg-downl {
  width: 20px;
  height: 21px;
  color: #2c2c2c;
}

.svg-pdf {
  width: 16px;
  height: 17px;
  color: white;
}

.icon-error {
  width: 16px;
  height: 16px;
  display: block;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_3029_30485)'%3e%3cpath d='M8 0C6.41775 0 4.87103 0.469192 3.55544 1.34824C2.23985 2.22729 1.21447 3.47672 0.608967 4.93853C0.00346629 6.40034 -0.15496 8.00888 0.153721 9.56072C0.462403 11.1126 1.22433 12.538 2.34315 13.6569C3.46197 14.7757 4.88743 15.5376 6.43928 15.8463C7.99113 16.155 9.59966 15.9965 11.0615 15.391C12.5233 14.7855 13.7727 13.7602 14.6518 12.4446C15.5308 11.129 16 9.58225 16 8C15.9977 5.87897 15.1541 3.84547 13.6543 2.34568C12.1545 0.845886 10.121 0.00229405 8 0V0ZM8 14.6667C6.68146 14.6667 5.39253 14.2757 4.2962 13.5431C3.19987 12.8106 2.34539 11.7694 1.84081 10.5512C1.33622 9.33305 1.2042 7.99261 1.46144 6.6994C1.71867 5.40619 2.35361 4.21831 3.28596 3.28596C4.21831 2.3536 5.4062 1.71867 6.6994 1.46143C7.99261 1.2042 9.33305 1.33622 10.5512 1.8408C11.7694 2.34539 12.8106 3.19987 13.5431 4.2962C14.2757 5.39253 14.6667 6.68146 14.6667 8C14.6647 9.76752 13.9617 11.4621 12.7119 12.7119C11.4621 13.9617 9.76752 14.6647 8 14.6667V14.6667Z' fill='%23EF281E' /%3e%3cpath d='M8.00017 3.3335C7.82335 3.3335 7.65378 3.40373 7.52876 3.52876C7.40373 3.65378 7.3335 3.82335 7.3335 4.00016V9.3335C7.3335 9.51031 7.40373 9.67988 7.52876 9.8049C7.65378 9.92992 7.82335 10.0002 8.00017 10.0002C8.17698 10.0002 8.34655 9.92992 8.47157 9.8049C8.5966 9.67988 8.66684 9.51031 8.66684 9.3335V4.00016C8.66684 3.82335 8.5966 3.65378 8.47157 3.52876C8.34655 3.40373 8.17698 3.3335 8.00017 3.3335Z' fill='%23EF281E' /%3e%3cpath d='M8.66684 12.0002C8.66684 11.632 8.36836 11.3335 8.00017 11.3335C7.63197 11.3335 7.3335 11.632 7.3335 12.0002C7.3335 12.3684 7.63197 12.6668 8.00017 12.6668C8.36836 12.6668 8.66684 12.3684 8.66684 12.0002Z' fill='%23EF281E' /%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_3029_30485'%3e%3crect width='16' height='16' fill='white' /%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}

.icon-pass {
  width: 18px;
  height: 14px;
  display: block;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='18' height='14' viewBox='0 0 18 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8.99985 9.99872C10.6561 9.99872 11.9987 8.65608 11.9987 6.99985C11.9987 5.34362 10.6561 4.00098 8.99985 4.00098C7.34362 4.00098 6.00098 5.34362 6.00098 6.99985C6.00098 8.65608 7.34362 9.99872 8.99985 9.99872Z' fill='%23E4ECF3' /%3e%3cpath d='M17.4501 5.06527C16.2873 3.17147 13.6423 -0.00585938 8.99998 -0.00585938C4.35771 -0.00585938 1.71269 3.17147 0.549868 5.06527C-0.183289 6.25111 -0.183289 7.74947 0.549868 8.93535C1.71269 10.8291 4.35771 14.0065 8.99998 14.0065C13.6423 14.0065 16.2873 10.8291 17.4501 8.93535C18.1833 7.74947 18.1833 6.25111 17.4501 5.06527ZM8.99998 11.4986C6.51564 11.4986 4.50165 9.48463 4.50165 7.00029C4.50165 4.51595 6.51564 2.50196 8.99998 2.50196C11.4843 2.50196 13.4983 4.51595 13.4983 7.00029C13.4958 9.48362 11.4833 11.4961 8.99998 11.4986Z' fill='%23E4ECF3' /%3e%3c/svg%3e");
}

.marker-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.marker-list li {
  display: flex;
  column-gap: 8px;
  align-items: center;
  position: relative;
}
.marker-list li:before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  padding: 2px;
  background-clip: content-box;
  background-position: center;
}
@media (min-width: 1024px) {
  .marker-list li:before {
    width: 18px;
    height: 18px;
  }
}
.marker-list li + li {
  margin-top: 10px;
}

.icon-check, .marker-list li:before {
  width: 18px;
  height: 14px;
  display: block;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='18' height='14' viewBox='0 0 18 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M6.00016 10.6923L1.83016 6.5223L0.410156 7.9323L6.00016 13.5223L18.0002 1.5223L16.5902 0.112305L6.00016 10.6923Z' fill='%230D75F3' /%3e%3c/svg%3e");
}

.btn, .btn-accent {
  height: 56px;
  padding-left: 24px;
  padding-right: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 8px;
  white-space: nowrap;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--colors-blue-1);
  background: var(--colors-blue-2);
}
.btn svg, .btn-accent svg {
  color: var(--colors-blue-1);
}

.btn.xs-w-100, .btn-accent.xs-w-100, .xs-w-100 {
  width: 100% !important;
}
@media (min-width: 744px) {
  .btn.xs-w-100, .btn-accent.xs-w-100, .xs-w-100 {
    width: fit-content !important;
  }
}

.btn.md-w-100, .btn-accent.md-w-100, .md-w-100 {
  width: 100% !important;
}
@media (min-width: 1024px) {
  .btn.md-w-100, .btn-accent.md-w-100, .md-w-100 {
    width: fit-content !important;
  }
}

.btn.lg-w-100, .btn-accent.lg-w-100, .lg-w-100 {
  width: 100% !important;
}
@media (min-width: 1200px) {
  .btn.lg-w-100, .btn-accent.lg-w-100, .lg-w-100 {
    width: fit-content !important;
  }
}

.btn-accent {
  background: var(--colors-yellow-1);
  color: var(--colors-black-1);
}
.btn-accent svg {
  color: var(--colors-black-1);
}

.btn-play {
  display: inline-block;
  width: 43px;
  height: 43px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(24.6px);
  background: var(--colors-blue-1);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_3053_12106)'%3e%3cmask id='mask0_3053_12106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='0' y='0' width='25' height='25'%3e%3cpath d='M0.152344 0.217285H24.1523V24.2173H0.152344V0.217285Z' fill='white' /%3e%3c/mask%3e%3cg mask='url(%23mask0_3053_12106)'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M22.2863 15.463C24.7838 14.02 24.7838 10.414 22.2863 8.96953L9.52884 1.59403C7.02984 0.149531 3.90234 1.95403 3.90234 4.84153V19.5925C3.90234 22.48 7.02984 24.2845 9.52884 22.8385L22.2863 15.463Z' fill='white' /%3e%3c/g%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_3053_12106'%3e%3crect width='24' height='24' fill='white' transform='translate(0.152344 0.217285)' /%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  cursor: pointer;
}
@media (min-width: 744px) {
  .btn-play {
    width: 81px;
    height: 81px;
    background-size: 25px 25px;
  }
}

.button-group {
  width: fit-content;
}
.button-group .icon-txt {
  justify-content: center;
}

.round-badge {
  border-radius: 30px;
  padding-inline: 6px;
  display: inline-flex;
  width: fit-content !important;
  align-items: center;
  justify-content: center;
  height: 21px;
  background: var(--colors-yellow-1);
  font-size: 8px;
  letter-spacing: -0.02em;
  color: var(--colors-black-1);
  white-space: nowrap;
}
@media (min-width: 744px) {
  .round-badge {
    font-size: 16px;
    height: 40px;
    padding-inline: 13px;
  }
}

.form-item {
  position: relative;
}
.form-item .fs-12 {
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--colors-black-2);
  margin-top: 8px;
  transition: 0.3s;
}

.form-label {
  display: inline-block;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--colors-black-1);
  margin-bottom: 8px;
}

.form-input {
  position: relative;
}
.form-input .inp-icons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1em;
  z-index: 2;
}
.form-input .icon-error {
  display: none;
}

.inp {
  display: block;
  width: 100%;
  height: 56px;
  border: 1px solid var(--colors-black-1);
  border-radius: 4px;
  padding: 0px 24px;
  background: var(--colors-white-1);
  font-size: 16px;
  letter-spacing: -0.02em;
  transition: border 0.3s ease;
  color: var(--colors-black-2);
}

.inp.inp-valid {
  border: 1px solid var(--colors-blue-1);
}

.inp.inp-error {
  border: 1px solid var(--colors-red-1);
}

.form-item.form-item-error .fs-12 {
  color: var(--colors-red-1);
}
.form-item.form-item-error .inp {
  border: 1px solid var(--colors-red-1);
}
.form-item.form-item-error .inp-icons .icon-error {
  display: block;
}

.form-flex-row {
  display: flex;
  gap: 8px;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .form-flex-row {
    flex-direction: row;
  }
  .form-flex-row .form-btn {
    flex-shrink: 0;
  }
  .form-flex-row .form-item {
    flex: 1;
  }
}

.dropdown {
  position: relative;
  width: 100%;
}

.dropdown__button {
  position: relative;
  display: block;
  width: 100%;
  border: 1px solid var(--colors-blue-2);
  border-radius: 4px;
  padding-inline: 24px;
  text-align: left;
  height: 56px;
  cursor: pointer;
  font-size: 16px;
  line-height: 56px;
  letter-spacing: -0.02em;
  color: var(--colors-black-2);
}

.dropdown__button::after {
  content: "";
  position: absolute;
  top: 52%;
  right: 0.75rem;
  transform: translateY(-50%);
  width: 12px;
  height: 7px;
  display: block;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M11.0321 1.1574C10.9624 1.0871 10.8794 1.0313 10.7881 0.993227C10.6967 0.95515 10.5986 0.935547 10.4996 0.935547C10.4006 0.935547 10.3026 0.95515 10.2112 0.993227C10.1198 1.0313 10.0368 1.0871 9.96712 1.1574L6.53212 4.59239C6.4624 4.66268 6.37945 4.71848 6.28805 4.75656C6.19666 4.79463 6.09863 4.81424 5.99962 4.81424C5.90061 4.81424 5.80258 4.79463 5.71119 4.75656C5.61979 4.71848 5.53684 4.66268 5.46712 4.59239L2.03212 1.1574C1.9624 1.0871 1.87944 1.0313 1.78805 0.993227C1.69666 0.95515 1.59863 0.935547 1.49962 0.935547C1.40061 0.935547 1.30258 0.95515 1.21119 0.993227C1.11979 1.0313 1.03684 1.0871 0.967118 1.1574C0.82743 1.29792 0.749023 1.48801 0.749023 1.68614C0.749023 1.88428 0.82743 2.07437 0.967118 2.21489L4.40962 5.65739C4.83149 6.07874 5.40337 6.3154 5.99962 6.3154C6.59587 6.3154 7.16774 6.07874 7.58962 5.65739L11.0321 2.21489C11.1718 2.07437 11.2502 1.88428 11.2502 1.68614C11.2502 1.48801 11.1718 1.29792 11.0321 1.1574V1.1574Z' fill='%232C2C2C' /%3e%3c/svg%3e");
  transition: 0.3s;
  background-size: 0.75rem 0.5rem;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.dropdown__button.dropdown__button--active {
  border: 1px solid var(--colors-blue-1);
  border-radius: 4px 4px 0 0;
  border-bottom-color: var(--colors-blue-2);
}

.dropdown__button.dropdown__button--active:after {
  transform: translateY(-50%) rotate(180deg);
}

.dropdown__list {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
  list-style-type: none;
  border: 1px solid var(--colors-blue-1);
  border-top: 0;
  background: #fff;
  border-radius: 0 0 4px 4px;
  max-height: 150px;
  overflow: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #EAEAEA transparent;
  z-index: 3;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--colors-black-1);
}
.dropdown__list::-webkit-scrollbar {
  width: 3px;
  height: 20px;
}
.dropdown__list::-webkit-scrollbar-track {
  background-color: transparent;
}
.dropdown__list::-webkit-scrollbar-thumb {
  background-color: #EAEAEA;
}
.dropdown__list ul {
  margin-block: 0.625rem;
  list-style-type: none;
  padding-left: 0;
}

.dropdown__list--visible {
  display: block;
}

.dropdown__list-item {
  border-bottom: 1px solid var(--colors-blue-2);
  border-left: 4px solid transparent;
  padding: 16px 24px;
  padding-left: 20px;
  width: 100%;
  height: 56px;
  transition: 0.3s;
  letter-spacing: -0.02em;
  color: var(--colors-black-1);
  transition: 0.3s;
  cursor: pointer;
}
.dropdown__list-item.active, .dropdown__list-item:hover {
  background-color: var(--colors-blue-2);
  border-left-color: var(--colors-blue-1);
}

.dropdown__input-hidden {
  display: none;
}

.checkbox-label,
.radio-label {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 8px;
  letter-spacing: -0.02em;
  color: var(--colors-black-2);
  cursor: pointer;
}
.checkbox-label input[type=checkbox], .checkbox-label input[type=radio],
.radio-label input[type=checkbox],
.radio-label input[type=radio] {
  width: 0.01px;
  height: 0.01px;
  position: absolute;
  top: 0;
  left: 0;
}

.checkbox-label .fake-checkbox {
  background: var(--colors-white-1);
  border: 1px solid var(--colors-blue-2);
  border-radius: 8px;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  overflow: hidden;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='18' height='14' viewBox='0 0 18 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M6.00016 10.6923L1.83016 6.5223L0.410156 7.9323L6.00016 13.5223L18.0002 1.5223L16.5902 0.112305L6.00016 10.6923Z' fill='%230D75F3' /%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 0;
  background-position: center;
}
.checkbox-label input[type=checkbox]:checked + .fake-checkbox {
  background-size: 18px 14px;
  border: 1px solid var(--colors-blue-2);
}
.checkbox-label input[type=checkbox]:checked ~ * {
  color: var(--colors-black-2);
}
.checkbox-label input[type=checkbox]:checked ~ * > a {
  color: var(--colors-black-2);
}

.form-item-error {
  color: var(--colors-red-1);
}
.form-item-error *:not(label) {
  color: var(--colors-red-1);
}
.form-item-error .fake-checkbox {
  border: 1px solid var(--colors-red-1);
}

.agree-block {
  margin-top: 12px;
}

.agree-block a {
  display: inline;
}

.dark-form .agree-block *, .dark-form .agree-block a {
  color: var(--colors-white-1);
}
.dark-form .agree-block input[type=checkbox]:checked ~ * {
  color: var(--colors-white-1);
}
.dark-form .agree-block input[type=checkbox]:checked ~ * > a {
  color: var(--colors-white-1);
}

.download-file-block {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.1);
  justify-content: space-between;
}
.download-file-block .fs-12 {
  line-height: 125%;
  letter-spacing: -0.01em;
}

.dark-form-wrapper {
  background: url("../img/consult-form-bg.webp") no-repeat center;
  background-size: cover;
}

.dark-form-content {
  padding: 20px;
}
@media (min-width: 744px) {
  .dark-form-content {
    padding: 40px;
  }
}
@media (min-width: 1440px) {
  .dark-form-content {
    padding: 60px;
  }
}

.statistic-card {
  background-color: #fff;
  border: 1px solid #ededed;
  border-radius: 4px;
  padding: 20px;
  padding-bottom: 28px;
  position: relative;
  text-align: center;
}
.statistic-card:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 20px;
  right: 20px;
  height: 8px;
  border-radius: 2px 2px 0 0;
  background: var(--colors-yellow-1);
}
.statistic-card .h-40 {
  margin-bottom: 0.5rem;
}
@media (min-width: 744px) {
  .statistic-card {
    padding: 32px 40px;
  }
  .statistic-card:after {
    left: 24px;
    right: 24px;
  }
  .statistic-card .h-40 {
    margin-bottom: 12px;
  }
}
@media (min-width: 1200px) {
  .statistic-card {
    padding: 32px 35px 40px;
  }
}

.statistic-cards {
  padding-block: 20px;
}
@media (min-width: 744px) {
  .statistic-cards {
    padding-block: 40px;
  }
}

.light-card {
  background-color: #fff;
  border-radius: 4px;
  padding: 1.25rem;
  padding-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.light-card .h-24 + * {
  margin-top: 14px;
}
.light-card p {
  color: rgba(44, 44, 44, 0.7);
}
@media (min-width: 744px) {
  .light-card {
    padding: 2rem;
  }
  .light-card .h-24 + * {
    margin-top: 16px;
  }
}

.light-card.light-card-icon {
  flex-direction: row;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
}
.light-card.light-card-icon .light-card__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.light-card.light-card-icon .light-card__icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media (min-width: 1200px) {
  .light-card.light-card-icon .light-card__icon {
    width: 24px;
    height: 24px;
  }
}
.light-card.light-card-icon .h-20 {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: rgba(44, 44, 44, 0.8);
}
@media (min-width: 744px) {
  .light-card.light-card-icon .h-20 {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.25;
  }
}
@media (min-width: 1200px) {
  .light-card.light-card-icon .h-20 {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .light-card.light-card-icon {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

.tabs-nav {
  border: 1px solid #ededed;
  border-radius: 4px;
  padding: 8px;
  background: #f8f8f8;
  display: flex;
  width: fit-content;
  margin: 0 auto;
  justify-content: flex-start;
  margin-bottom: 24px;
}
@media (min-width: 1200px) {
  .tabs-nav {
    justify-content: center;
  }
}

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

.tab-button {
  padding: 16px 20px;
  display: inline-block;
  text-align: center;
  border-radius: 2px;
  white-space: nowrap;
  color: var(--colors-black-1);
  font-weight: 600;
  flex-shrink: 0;
  transition: 0.3s;
  line-height: 1.2;
  background: #f8f8f8;
  cursor: pointer;
  user-select: none;
}
.tab-button.active {
  color: var(--colors-blue-1);
  background: var(--colors-blue-2);
}
@media (min-width: 744px) {
  .tab-button {
    padding: 20px 24px;
  }
}

.promo {
  padding-top: 32px;
}
.promo .promo-image img {
  aspect-ratio: 1440/700;
  object-fit: cover;
}
@media (min-width: 744px) {
  .promo {
    padding-top: 60px;
  }
}
.promo .container.flex-column {
  row-gap: 20px;
}
@media (min-width: 744px) {
  .promo .container.flex-column {
    flex-direction: column-reverse;
    row-gap: 40px;
  }
}
@media (min-width: 1440px) {
  .promo .container.flex-column {
    row-gap: 60px;
  }
}

.promo-content .h-56 + * {
  margin-top: 12px;
}
.promo-content .button-group {
  margin-top: 12px;
}
.promo-content .button-group > * + * {
  margin-top: 20px;
}
@media (min-width: 744px) {
  .promo-content .h-56 + * {
    margin-top: 16px;
  }
  .promo-content .button-group {
    margin-top: 32px;
  }
}

.promo-content .icon-txt {
  height: 20px;
}

.video-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  background-color: #fff;
  position: relative;
  height: 226px;
}
.video-box .h-24 {
  font-size: 12px;
}
.video-box .h-20 {
  font-size: 10px;
  line-height: 125%;
}
.video-box .fs-16 {
  font-size: 8px;
  margin-top: 0.25em;
}
.video-box__img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  aspect-ratio: 204/224;
  width: 204px;
}
.video-box__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 768px) {
  .video-box__img {
    width: 56%;
    max-width: 383px;
  }
}
.video-box__top {
  justify-content: space-between;
}
.video-box .btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
@media (min-width: 744px) {
  .video-box {
    padding: 32px;
    height: 426px;
  }
  .video-box .h-24 {
    font-size: 24px;
  }
  .video-box .h-20 {
    font-size: 20px;
  }
  .video-box .fs-16 {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .video-box {
    height: 606px;
  }
}
@media (min-width: 1440px) {
  .video-box {
    height: auto;
    min-height: 420px;
  }
}

.video-box__iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.video-box__iframe iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-box.video-box--active .video-box__iframe {
  z-index: 5;
}

.why-crm__left {
  flex-direction: column;
  row-gap: 12px;
  overflow: hidden;
}
@media (min-width: 744px) {
  .why-crm__left {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}

.why-crm__img {
  padding: 20px;
  padding-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 269px;
}
.why-crm__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 744px) {
  .why-crm__img {
    padding: 0;
    height: 442px;
  }
}
@media (min-width: 1440px) {
  .why-crm__img {
    transform: translateX(30%);
    height: 100%;
  }
}

.why-crm__text {
  padding: 20px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
@media (min-width: 744px) {
  .why-crm__text {
    padding: 32px;
    padding-top: 32px;
    padding-right: 0;
    justify-content: space-between;
    max-width: 349px;
    width: 73%;
  }
}

.consultation {
  padding-block: 60px;
}
.consultation-content {
  position: relative;
  padding: 20px;
  border: 1px solid #ededed;
  border-radius: 4px;
  background: url("../img/consult-form-bg.webp") no-repeat center;
}
@media (min-width: 744px) {
  .consultation-content {
    padding: 40px;
  }
}
@media (min-width: 1440px) {
  .consultation-content {
    padding: 60px;
    padding-bottom: 66px;
  }
}
.consultation-image {
  position: absolute;
  right: 0%;
  bottom: 0;
  height: 395px;
  aspect-ratio: 499/395;
  z-index: 1;
  display: none;
}
.consultation-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 50px rgba(0, 0, 0, 0.05));
}
@media (min-width: 1024px) {
  .consultation-image {
    right: 0;
    display: flex;
  }
}
@media (max-width: 1280px) {
  .consultation-image {
    right: 5px;
  }
}
.consultation .horiz-form {
  position: relative;
  z-index: 2;
  max-width: 943px;
}

.horiz-form__header {
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.horiz-form__header .fs-16 {
  margin-top: 12px;
}
@media (min-width: 744px) {
  .horiz-form__header {
    margin-bottom: 24px;
  }
  .horiz-form__header .fs-16 {
    margin-top: 20px;
  }
}
@media (min-width: 1440px) {
  .horiz-form__header {
    margin-bottom: 40px;
  }
  .horiz-form__header .h-48 {
    margin-bottom: 24px;
  }
  .horiz-form__header .fs-16 {
    margin-top: 14px;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .consultation-content {
    background: url("../img/consult-form-bg@2x.webp") no-repeat center;
  }
}
@media (min-width: 1680px) {
  .management.sticky-section .container {
    max-width: 1538px;
    transform: translateX(-48px);
  }
}

.sticky-section__content {
  --sticky-top: 30px;
  display: flex;
  column-gap: 30px;
  align-items: flex-start;
}
@media (min-width: 744px) {
  .sticky-section__content {
    --sticky-top: 60px;
  }
}
@media (min-width: 1440px) {
  .sticky-section__content {
    --sticky-top: 120px;
  }
}
@media (min-width: 1600px) {
  .sticky-section__content {
    column-gap: 40px;
  }
}

.management-card {
  padding: 20px;
  border: 1px solid #ededed;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  align-items: center;
  background-color: #fff;
}
@media (min-width: 744px) {
  .management-card {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .management-card {
    flex-direction: row-reverse;
    column-gap: 32px;
  }
}
@media (min-width: 1600px) {
  .management-card {
    column-gap: 72px;
    padding: 60px;
  }
}

.management-card__txt {
  display: flex;
  flex-direction: column;
  width: 100%;
  row-gap: 72px;
}
@media (min-width: 744px) {
  .management-card__txt {
    row-gap: 51px;
  }
}
@media (min-width: 1200px) {
  .management-card__txt {
    width: 384px;
    flex-shrink: 0;
    row-gap: 18px;
  }
}
@media (min-width: 1600px) {
  .management-card__txt {
    row-gap: 40px;
  }
}

.management-card__head > * + *, .button-group > * + * {
  margin-top: 12px;
}

.management-card__img {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1.38px solid #ededed;
  overflow: hidden;
}
.management-card__img img {
  aspect-ratio: 313/173;
}
@media (min-width: 1200px) {
  .management-card__img {
    flex: 1;
  }
}

.sticky-section__left {
  display: none;
  padding-top: 40px;
}
@media (min-width: 1200px) {
  .sticky-section__left {
    display: block;
    position: sticky;
    top: var(--sticky-top);
  }
}

.sticky-section__right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.management-card {
  position: sticky;
  top: var(--sticky-top);
  margin-top: 60px;
}

.sticky-section__right article:first-of-type {
  margin-top: -1px;
}

.management__list {
  margin: 0;
  padding: 4px;
  background-color: #fff;
  border: 1px solid #ededed;
  border-radius: 8px;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 48px;
}
.management__list-num {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 4px;
  transition: 0.5s;
  flex-shrink: 0;
}
.management__list-num.active {
  color: var(--colors-blue-1);
  background: var(--colors-blue-2);
}

.observer-anchor {
  height: 1px;
  margin-bottom: 0px;
}

.automation-image {
  box-shadow: 0 0 40px 0 rgba(74, 74, 74, 0.05);
}
.automation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.automation-text > * + * {
  margin-top: 8px;
}
@media (min-width: 1200px) {
  .automation-text > * + * {
    margin-top: 24px;
  }
}

.decide-card {
  flex-direction: column-reverse;
  row-gap: 24px;
  padding: 20px;
  width: 100%;
  background-color: #fff;
}
.decide-card .h-40 {
  margin-bottom: 12px;
}
.decide-card .marker-list {
  margin-bottom: 20px;
}
@media (min-width: 744px) {
  .decide-card {
    padding: 40px;
  }
  .decide-card .h-40 {
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .decide-card {
    column-gap: 40px;
    flex-direction: row;
    align-items: center;
  }
  .decide-card .h-40 {
    margin-bottom: 24px;
  }
  .decide-card .marker-list {
    margin-bottom: 40px;
  }
  .decide-card__txt {
    width: 368px;
    flex-shrink: 0;
  }
  .decide-card__img {
    flex-grow: 1;
  }
  .decide-card__img img {
    border-radius: 4px;
    border: 1.52px solid #ededed;
    filter: drop-shadow(0 0 76px rgba(74, 74, 74, 0.05));
    aspect-ratio: 952/528;
    object-fit: cover;
  }
}

.tabs-scroll-x {
  overflow: hidden;
  overflow-x: auto;
  scrollbar-width: none;
  width: calc(50vw + 50%);
}
.tabs-scroll-x::-webkit-scrollbar {
  display: none;
}
@media (min-width: 744px) {
  .tabs-scroll-x {
    width: 100%;
  }
}

.modal-visible .modal-large, .modal-visible .modal-frame {
  transform: translateX(0) !important;
}

.ui-panel {
  width: 320px;
  background-color: #094071;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100vh;
  overflow: hidden;
  overflow-y: auto;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 50px;
  padding-bottom: 80px;
  z-index: 10;
}
.ui-panel .back-index {
  color: #FFF;
  font-size: 20px;
  margin-bottom: 16px;
  display: block;
}
.ui-panel ul {
  list-style: circle;
}
.ui-panel h3 {
  margin-bottom: 16px;
  font-size: 16px;
  text-transform: uppercase;
  color: orange;
}
.ui-panel .ui-panel-block__part + .ui-panel-block__part {
  margin-top: 32px;
}
.ui-panel li + li {
  margin-top: 16px;
}
.ui-panel li > a {
  color: #fff;
  font-size: 16px;
  font-family: sans-serif;
}

.body-dashboard {
  padding-left: 320px;
  padding-top: 50px;
  padding-bottom: 100px;
}
.body-dashboard .ui-panel {
  transition: 0.3s;
}
.body-dashboard.active {
  padding-left: 0;
}
.body-dashboard.active .ui-panel {
  transform: translateX(-100%);
}
.body-dashboard .modal-frame {
  transform: translate(0) !important;
  position: relative !important;
}
.body-dashboard #close-ui {
  position: absolute;
  right: 40px;
  top: 40px;
  z-index: 4;
  border: 1px solid blue;
  background-color: blue;
  width: 140px;
  height: 50px;
  color: white;
}
.body-dashboard .container-dashboard {
  width: 93%;
  margin-left: auto;
  margin-right: auto;
}
.body-dashboard .container-dashboard h2.db-h2 {
  margin-bottom: 40px;
}
.body-dashboard .container-dashboard .reestr-modal {
  transform: translateX(0);
}
.body-dashboard .container-dashboard .modal-large.service-modal {
  transform: translateY(0);
  z-index: -1;
}
.body-dashboard .color-scheme {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  row-gap: 24px;
}
.body-dashboard .color-scheme li {
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
}
.body-dashboard .color-scheme li span:first-child {
  width: 60px;
  height: 60px;
  border: 1px solid #000;
}
.body-dashboard .color-scheme li span + span {
  font-size: 16px;
  margin-top: 15px;
}
.body-dashboard .ui-typography li {
  padding-bottom: 10px;
  padding-top: 10px;
  border-bottom: 1px solid #cecece;
}
.body-dashboard .ui-typography li pre {
  margin-top: 5px;
  margin-bottom: 5px;
}
.body-dashboard .ui-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 48px;
}
.body-dashboard .ui-lists > li {
  padding-top: 20px;
  padding-bottom: 20px;
}
.body-dashboard .dark-bg, .body-dashboard .temp-wrapper {
  background-color: #080808;
  padding: 15px;
  color: white;
}

/*стили для вспомогат страницы - удалить из проектп */
.start-page {
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.start-page h1 {
  font-weight: 700;
  margin-bottom: 40px;
}
.start-page__cards {
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 16px;
}
.start-page a {
  width: calc((100% - 32px) / 3);
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1023px) {
  .start-page a {
    width: calc((100% - 16px) / 2);
  }
}
@media (max-width: 767px) {
  .start-page a {
    width: 100%;
  }
}
.start-page a span {
  display: block;
  text-align: center;
  padding-bottom: 8px;
  padding-top: 8px;
}
.start-page a:first-child {
  width: 100%;
}

.container-dashboard__content .mobile-navigation {
  width: 480px;
  position: relative;
}

.body-dashboard footer.footer {
  position: static;
}

/*//стили для вспомогат страницы - удалить из проектп */