/* System Configuration */
@layer reset, base, utilities, components, overrides;

/* Core Dependencies */
/*----------RESPONSIVE MEDIA-----------*/
/*----------DEFAULT Z-INDEXES-----------*/
/*----------BORDER RADIUS-----------*/
/*----------BORDER WIDTH-----------*/
/*----------ICON SIZE-----------*/
/*----------TRANSITIONS-----------*/
/*----------TEXT TRUNCATE-----------*/
/*----------FLEX LAYOUT-----------*/
/*----------GRID LAYOUT-----------*/
/*----------GAP-----------*/
/*----------CENTER ELEMENT-----------*/
/*----------SPACING-----------*/
/*----------SCROLLBAR-----------*/
/*----------HARDWARE ACCELERATION (ONLY USE WHEN NEEDED)-----------*/
/*----------BREAKPOINTS-----------*/
/*----------GRAY-----------*/
/*----------COLOR1-----------*/
/*----------COLOR2-----------*/
/*----------GRADIENT-----------*/
/*----------BACKGROUND-----------*/
/*----------ERROR-----------*/
/*----------ALERT-----------*/
/*----------SUCCESS-----------*/
/*----------DISABLE-----------*/
/*----------TRANSPARENT-----------*/
/*----------SOCIALS-----------*/
/*----------UNIQUE-----------*/
/*----------HEADINGS-----------*/
/*----------BODY TEXT-----------*/
/*----------UNIQUE TEXT-----------*/
/* Reset Layer */
@layer reset {
  /* Box sizing rules
============================================= */
  *, *::before, *::after {
    box-sizing: border-box;
  }
  /* Reset margins and paddings
============================================= */
  * {
    margin: 0;
    padding: 0;
    outline: 0;
  }
  /* Document defaults
============================================= */
  :root {
    font-style: normal;
    font-optical-sizing: auto;
    font-synthesis: none;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    interpolate-size: allow-keywords;
  }
  html, body:host {
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    tab-size: 4;
    -moz-tab-size: 4;
    scroll-behavior: smooth;
  }
  body {
    min-height: 100vh;
  }
  body > :is(header, footer), section, article, main {
    container-type: inline-size;
  }
  /* Hide "tap" highlights on iOS and iPadOS for offending elements */
  a, details summary {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  /* Typography reset
============================================= */
  p, li, figcaption {
    text-wrap: pretty;
  }
  body, h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dd, figure, blockquote {
    margin: 0;
    font: inherit;
  }
  b, strong {
    font-weight: bolder;
  }
  i, em {
    font-style: italic;
  }
  sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  code, kbd, samp, pre {
    font-family: FiraCode, SFMono-Regular, Consolas, Liberation Mono, Menlo, Monaco, Courier, monospace;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    font-feature-settings: "ss01" off, "ss02" off, "ss03" off, "ss04" on, "ss05" off, "ss06" on, "ss07" off, "zero" off, "onum" off;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    hyphens: none;
    min-width: 0;
  }
  small {
    font-size: 80%;
  }
  /* List reset
============================================= */
  ul[role="list"], ol[role="list"], li {
    list-style: none;
    padding: 0;
  }
  /* Anchor reset
============================================= */
  a {
    color: inherit;
    text-decoration: none;
  }
  a:active, a:hover {
    outline: 0;
  }
  a:not([class]) {
    text-decoration-skip-ink: auto;
  }
  /* Table reset
============================================= */
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  /* Media elements reset
============================================= */
  img, picture, svg, audio, canvas, iframe, video {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    overflow: hidden;
  }
  svg, svg path, svg circle, svg polygon, svg rect, svg line {
    shape-rendering: geometricprecision;
  }
  /* Form elements reset
============================================= */
  input, button, textarea, select, optgroup {
    font: inherit;
    color: inherit;
    padding: 0;
    margin: 0;
  }
  input, textarea {
    resize: none;
  }
  button {
    padding: 0;
    color: inherit;
    cursor: pointer;
    background-color: transparent;
    border: none;
  }
  ::-webkit-search-decoration, ::-webkit-search-cancel-button {
    -webkit-appearance: none;
  }
  ::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
  }
  ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto;
  }
  :-moz-focusring {
    outline: none;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  progress {
    vertical-align: baseline;
  }
  /* Autofill styles
============================================= */
  input:-webkit-autofill, input:-webkit-autofill:focus, input:-webkit-autofill:hover, input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: black !important;
  }
  input:-moz-autofill, input:-moz-autofill:focus, input:-moz-autofill:hover, input:-moz-autofill:active {
    -moz-box-shadow: 0 0 0 30px white inset !important;
    -moz-text-fill-color: black !important;
  }
  input:-ms-autofill, input:-ms-autofill:focus, input:-ms-autofill:hover, input:-ms-autofill:active {
    -ms-box-shadow: 0 0 0 30px white inset !important;
    -ms-text-fill-color: black !important;
  }
  /* Dialog reset
============================================= */
  dialog {
    background-color: transparent;
    border: none;
    color: inherit;
    height: fit-content;
    width: fit-content;
    margin: auto;
    padding: 0;
    position: fixed;
    left: 0;
    right: 0;
  }
  dialog[open] {
    display: block;
    translate: 0 0;
    opacity: 1;
    transition: opacity, translate 0.2s ease-in-out;
  }
  @starting-style {
    dialog[open] {
      opacity: 0;
      translate: 0 -25vh;
    }
  }
  dialog::backdrop {
    background: rgba(0, 0, 0, 0.5);
  }
  /* Focus styles
============================================= */
  :focus:not(:focus-visible) {
    outline: none;
  }
  /* Reduce motion
============================================= */
  @media (prefers-reduced-motion: reduce) {
    html:focus-within {
      scroll-behavior: auto;
    }
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }
}
/* Base Design System */
@layer base {
  :root {
    /*----------FONT FAMILY SETTINGS-----------*/
    --font-family-heading: "MTS Wide", "Inter", Montserrat, Inter, Helvetica, sans-serif;
    --font-family-heading-add: "MTS Text", "Inter", Montserrat, Inter, Helvetica, sans-serif;
    --font-family-body: "MTS Compact", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    /*----------ROOT STYLES-----------*/
    font-family: var(--font-family-body);
    color-scheme: light;
    accent-color: var(--color1-main);
    --cubic-bezier: cubic-bezier(0.14, 0.18, 0.16, 1.02);
    --ease-spring: linear(
            0, 0.009, 0.035 2.1%, 0.141, 0.281 6.7%,
            0.723 12.9%, 0.938 16.7%, 1.017, 1.077, 1.121,
            1.149 24.3%, 1.159, 1.163, 1.161, 1.154 29.9%,
            1.129 32.8%, 1.051 39.6%, 1.017 43.1%, 0.991,
            0.977 51%, 0.974 53.8%, 0.975 57.1%, 0.997 69.8%,
            1.003 76.9%, 1.004 83.8%, 1
    );
  }
  body {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--gray-lighter);
  }
  h1, h2 {
    font-family: var(--font-family-heading);
  }
  h3, h4, h5, h6 {
    font-family: var(--font-family-heading-add);
  }
  .main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--gray-white);
  }
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    z-index: 900;
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
    contain: layout paint;
    transition: opacity 0.5s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  }
  .modal-overlay.active {
    opacity: 1;
  }
  @font-face {
    font-family: "Inter";
    src: url("/wp-content/themes/gulfstream/landing/assets/fonts/Inter/InterVariable.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Inter";
    src: url("/wp-content/themes/gulfstream/landing/assets/fonts/Inter/InterVariable-Italic.ttf") format("truetype");
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
  }
  @font-face {
    font-family: "MTS Compact";
    src: url("/wp-content/themes/gulfstream/landing/assets/fonts/MTS/MTSCompact-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "MTS Compact";
    src: url("/wp-content/themes/gulfstream/landing/assets/fonts/MTS/MTSCompact-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "MTS Compact";
    src: url("/wp-content/themes/gulfstream/landing/assets/fonts/MTS/MTSCompact-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "MTS Text";
    src: url("/wp-content/themes/gulfstream/landing/assets/fonts/MTS/MTSText-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "MTS Text";
    src: url("/wp-content/themes/gulfstream/landing/assets/fonts/MTS/MTSText-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "MTS Text";
    src: url("/wp-content/themes/gulfstream/landing/assets/fonts/MTS/MTSText-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "MTS Wide";
    src: url("/wp-content/themes/gulfstream/landing/assets/fonts/MTS/MTSWide-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "MTS Wide";
    src: url("/wp-content/themes/gulfstream/landing/assets/fonts/MTS/MTSWide-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "MTS Wide";
    src: url("/wp-content/themes/gulfstream/landing/assets/fonts/MTS/MTSWide-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "MTS Wide";
    src: url("/wp-content/themes/gulfstream/landing/assets/fonts/MTS/MTSWide-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
  }
  :root {
    /*----------GRAY-----------*/
    --gray-black: #0D0D0D;
    --gray-darker: #262626;
    --gray-dark: #4D4D4D;
    --gray-medium: #8D9399;
    --gray-light: #D8E5F0;
    --gray-lighter: #F2F3F7;
    --gray-white: #FFFFFF;
    /*----------COLOR1-----------*/
    --color1-darker: #A61024;
    --color1-dark: #CC142D;
    --color1-main: #FF0032;
    --color1-light: #F76377;
    --color1-lighter: #FAD4D9;
    /*----------COLOR2-----------*/
    --color2-darker: #38388C;
    --color2-dark: #4D4DBF;
    --color2-main: #6161F2;
    --color2-light: #9191F2;
    --color2-lighter: #E5E5FF;
    /*----------GRADIENT-----------*/
    --gradient1-dark: linear-gradient(90deg, #008FD9 0%, #003073 100%);
    --gradient1-main: linear-gradient(90deg, #0DAEFF 0%, #004099 100%);
    --gradient1-light: linear-gradient(90deg, #4DC3FF 0%, #3388FF 100%);
    /*----------BACKGROUND-----------*/
    --bg-light: #FFFFFF;
    --bg-dark: #262626;
    --bg-gradient: linear-gradient(180deg, #FFF 0%, #F2F3F7 100%);
    /*----------ERROR-----------*/
    --error-dark: #CC2929;
    --error-medium: #FFA6A6;
    --error-light: #FFCCCC;
    /*----------ALERT-----------*/
    --alert-dark: #737300;
    --alert-medium: #D9D998;
    --alert-light: #F2F2AA;
    /*----------SUCCESS-----------*/
    --success-dark: #0E8C0E;
    --success-medium: #98D998;
    --success-light: #C3E5C3;
    /*----------DISABLE-----------*/
    --disable-dark: #343434;
    --disable-medium: #919599;
    --disable-light: #DFE4EB;
    /*----------TRANSPARENT-----------*/
    --transparent: transparent;
    /*----------SOCIALS-----------*/
    --socials-in: radial-gradient(230.93% 230.93% at 102.01% 2.03%, #F9ED32 0%, #EE2A7B 36%, #D22A8A 44%, #8B2AB2 60%, #1B2AF0 83%, #002AFF 88%);
    --socials-wt: #48C95F;
    --socials-tg: #27A6E5;
    --socials-vk: #0077FF;
    --socials-ya: #FC3F1D;
    /*----------UNIQUE-----------*/
    --uniq-dark: #332E31;
    --uniq-green: #1F6739;
    --uniq-blue: #515ECC;
    --uniq-violet: #7D31DE;
    --uniq-purple: #C279A3;
    --uniq-pink: #F9AFCA;
    --uniq-red: #E34530;
    --uniq-orange: #E57A45;
    --uniq-gold: #D9BA21;
    --uniq-light: #D9D9D7;
  }
  :root {
    --shadow-near: 0px 0px 10px 2px #000B401A;
    --shadow-medium: 0px 0px 25px 5px #000B4012;
    --shadow-far: 0px 0px 40px 5px #000B400D;
  }
}
/* Utility Classes */
@layer utilities {
  .debug * {
    outline: 1px solid rgba(255, 0, 0, 0.2);
  }
  .container {
    margin-inline: 13.0208333333vw;
  }
  @media screen and (width <= 1401px) {
    .container {
      margin-inline: 3.2942898975vw;
    }
  }
  @media screen and (width <= 811px) {
    .container {
      margin-inline: 2.0833333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .container {
      margin-inline: 4.2666666667vw;
    }
  }
  .wrapper {
    padding-inline: 13.0208333333vw;
  }
  @media screen and (width <= 1401px) {
    .wrapper {
      padding-inline: 3.2942898975vw;
    }
  }
  @media screen and (width <= 811px) {
    .wrapper {
      padding-inline: 2.0833333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .wrapper {
      padding-inline: 4.2666666667vw;
    }
  }
  .hidden {
    display: none !important;
  }
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
  }
  .scroll-lock {
    overflow: hidden;
  }
  .accent-color {
    color: var(--color1-main);
  }
  .underline {
    text-decoration-line: underline;
    text-decoration-style: dashed;
    text-underline-offset: 0.2083333333vw;
    color: var(--color1-dark);
    transition: color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  }
  @media screen and (width <= 1401px) {
    .underline {
      text-underline-offset: 0.2928257687vw;
    }
  }
  @media screen and (width <= 811px) {
    .underline {
      text-underline-offset: 0.5208333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .underline {
      text-underline-offset: 1.0666666667vw;
    }
  }
  @media (hover: hover) and (pointer: fine) {
    .underline:hover {
      color: var(--color1-main);
    }
  }
  .underline:active {
    color: var(--color1-darker);
  }
  .uppercase {
    text-transform: uppercase;
  }
  .w-full {
    width: 100% !important;
  }
  .w-fit {
    width: fit-content !important;
  }
  .h-full {
    height: 100% !important;
  }
  .h-fit {
    height: fit-content !important;
  }
  .btn__social_wt svg {
    color: var(--socials-wt);
  }
  .btn__social_vk svg {
    color: var(--socials-vk);
  }
  .section {
    padding-top: 4.1666666667vw;
    padding-bottom: 4.1666666667vw;
  }
  @media screen and (width <= 1401px) {
    .section {
      padding-top: 4.39238653vw;
    }
  }
  @media screen and (width <= 811px) {
    .section {
      padding-top: 5.2083333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .section {
      padding-top: 10.6666666667vw;
    }
  }
  @media screen and (width <= 1401px) {
    .section {
      padding-bottom: 4.39238653vw;
    }
  }
  @media screen and (width <= 811px) {
    .section {
      padding-bottom: 5.2083333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .section {
      padding-bottom: 10.6666666667vw;
    }
  }
  .section-title {
    width: 100%;
    color: var(--gray-medium);
    max-width: 36.4583333333vw;
    margin-bottom: 3.125vw;
    font-size: 2.1875vw;
    font-family: var(--font-family-heading);
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }
  @media screen and (width <= 1401px) {
    .section-title {
      max-width: 45.9736456808vw;
    }
  }
  @media screen and (width <= 811px) {
    .section-title {
      max-width: 54.6875vw;
    }
  }
  @media screen and (width <= 481px) {
    .section-title {
      max-width: 112vw;
    }
  }
  @media screen and (width <= 1401px) {
    .section-title {
      margin-bottom: 4.39238653vw;
    }
  }
  @media screen and (width <= 811px) {
    .section-title {
      margin-bottom: 5.2083333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .section-title {
      margin-bottom: 10.6666666667vw;
    }
  }
  @media screen and (width <= 1401px) {
    .section-title {
      font-size: 2.635431918vw;
    }
  }
  @media screen and (width <= 811px) {
    .section-title {
      font-size: 3.3854166667vw;
    }
  }
  @media screen and (width <= 481px) {
    .section-title {
      font-size: 6.9333333333vw;
    }
  }
  @media screen and (width <= 481px) {
    .section-title {
      max-width: 100%;
    }
  }
  .section-title span {
    color: var(--color1-main);
  }
}
/* Component Library */
@layer components {
  /*----------FADE IN-----------*/
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  /*----------SLIDE IN-----------*/
  @keyframes slideIn {
    from {
      transform: translateX(-100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  /*----------BOUNCE-----------*/
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-25px);
    }
  }
  /*----------PULSE-----------*/
  @keyframes pulse {
    0%, 100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.5;
      transform: scale(0.95);
    }
  }
  /*----------ROTATE-----------*/
  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  /*----------SHAKE-----------*/
  @keyframes shake {
    10%, 90% {
      transform: translateX(-1px);
    }
    20%, 80% {
      transform: translateX(2px);
    }
    30%, 50%, 70% {
      transform: translateX(-4px);
    }
    40%, 60% {
      transform: translateX(4px);
    }
  }
  /*----------FLIP-----------*/
  @keyframes flip {
    0% {
      transform: perspective(400px) rotateY(0);
    }
    100% {
      transform: perspective(400px) rotateY(360deg);
    }
  }
  /*----------SWING-----------*/
  @keyframes swing {
    20% {
      transform: rotate(15deg);
    }
    40% {
      transform: rotate(-10deg);
    }
    60% {
      transform: rotate(5deg);
    }
    80% {
      transform: rotate(-5deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }
  /* Component imports */
}
/* Override Layer - for project-specific modifications */
@layer overrides {
  /* Project-specific overrides */
}
/* Development/Temporary Fixes */
.header {
  z-index: 100;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: var(--gray-lighter);
  padding-top: 0.4166666667vw;
  transition: background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .header {
    padding-top: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .header {
    padding-top: 0vw;
  }
}
@media screen and (width <= 481px) {
  .header {
    padding-top: 0vw;
  }
}
@media screen and (width > 811px) {
  .header-sticky {
    background: transparent;
  }
  .header-sticky > .container {
    margin-inline: 11.9791666667vw;
  }
  .header-sticky .header-container {
    border: solid var(--gray-lighter);
    background: var(--gray-white);
    padding-top: 0.5208333333vw;
    padding-bottom: 0.5208333333vw;
    padding-inline: 0.9375vw;
    border-width: max(0.1041666667vw, 2px);
    border-radius: 1.0416666667vw;
  }
  .header-sticky .header-btn {
    background: var(--color1-main);
    color: var(--gray-white);
  }
  .header-sticky .header-btn:active {
    background: var(--color1-dark);
  }
}
@media screen and (width > 811px) and (width <= 1401px) {
  .header-sticky > .container {
    margin-inline: 1.8301610542vw;
  }
}
@media screen and (width > 811px) and (width <= 1401px) {
  .header-sticky .header-container {
    padding-top: 0.5856515373vw;
  }
}
@media screen and (width > 811px) and (width <= 811px) {
  .header-sticky .header-container {
    padding-top: 1.0416666667vw;
  }
}
@media screen and (width > 811px) and (width <= 481px) {
  .header-sticky .header-container {
    padding-top: 2.1333333333vw;
  }
}
@media screen and (width > 811px) and (width <= 1401px) {
  .header-sticky .header-container {
    padding-bottom: 0.5856515373vw;
  }
}
@media screen and (width > 811px) and (width <= 811px) {
  .header-sticky .header-container {
    padding-bottom: 1.0416666667vw;
  }
}
@media screen and (width > 811px) and (width <= 481px) {
  .header-sticky .header-container {
    padding-bottom: 2.1333333333vw;
  }
}
@media screen and (width > 811px) and (width <= 1401px) {
  .header-sticky .header-container {
    padding-inline: 1.317715959vw;
  }
}
@media screen and (width > 811px) and (width <= 811px) {
  .header-sticky .header-container {
    padding-inline: 2.34375vw;
  }
}
@media screen and (width > 811px) and (width <= 481px) {
  .header-sticky .header-container {
    padding-inline: 4.8vw;
  }
}
@media screen and (width > 811px) and (width <= 1401px) {
  .header-sticky .header-container {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width > 811px) and (width <= 811px) {
  .header-sticky .header-container {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width > 811px) and (width <= 481px) {
  .header-sticky .header-container {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width > 811px) and (width <= 1401px) {
  .header-sticky .header-container {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width > 811px) and (width <= 811px) {
  .header-sticky .header-container {
    border-radius: 1.5625vw;
  }
}
@media screen and (width > 811px) and (width <= 481px) {
  .header-sticky .header-container {
    border-radius: 3.2vw;
  }
}
@media screen and (width > 811px) and (hover: hover) and (pointer: fine) {
  .header-sticky .header-btn:hover {
    background: var(--color1-light);
  }
}
@media screen and (width <= 811px) {
  .header > .container {
    margin-inline: 0.4166666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .header > .container {
    margin-inline: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .header > .container {
    margin-inline: 1.0416666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .header > .container {
    margin-inline: 2.1333333333vw;
  }
}
.header-container {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid var(--gray-white);
  gap: 0.625vw;
  padding-top: 0.625vw;
  padding-bottom: 0.625vw;
  padding-inline: 0vw;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .header-container {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .header-container {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .header-container {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .header-container {
    padding-top: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .header-container {
    padding-top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .header-container {
    padding-top: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .header-container {
    padding-bottom: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .header-container {
    padding-bottom: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .header-container {
    padding-bottom: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .header-container {
    padding-inline: 0vw;
  }
}
@media screen and (width <= 811px) {
  .header-container {
    padding-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .header-container {
    padding-inline: 1.0666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .header-container {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .header-container {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .header-container {
    border-width: max(0.5333333333vw, 2px);
  }
}
.header-logo {
  display: inline-flex;
  width: 12.7083333333vw;
  height: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .header-logo {
    width: 16.1054172767vw;
  }
}
@media screen and (width <= 811px) {
  .header-logo {
    width: 26.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .header-logo {
    width: 42.6666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .header-logo {
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .header-logo {
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .header-logo {
    height: 10.6666666667vw;
  }
}
.header-logo img {
  object-fit: contain;
}
.header-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 1.4583333333vw;
}
@media screen and (width <= 1401px) {
  .header-menu {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .header-menu {
    gap: 3.6458333333vw;
  }
}
@media screen and (width <= 481px) {
  .header-menu {
    gap: 7.4666666667vw;
  }
}
@media screen and (width <= 811px) {
  .header-menu {
    display: none;
  }
}
.header-btns {
  display: flex;
  align-items: center;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .header-btns {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .header-btns {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .header-btns {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 811px) {
  .header-btns {
    display: none;
  }
}
.header-social__list {
  display: flex;
  align-items: center;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .header-social__list {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .header-social__list {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .header-social__list {
    gap: 2.1333333333vw;
  }
}
.header-social__list-item {
  display: flex;
}
.header .header-burger {
  display: none;
}
@media screen and (width <= 811px) {
  .header .header-burger {
    display: inline-flex;
  }
}
.tab {
  /*----------CORE STYLE-----------*/
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: transparent solid;
  width: fit-content;
  touch-action: manipulation;
  transition: border 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  border-width: max(0.1041666667vw, 2px);
  /*----------STYLES-----------*/
  /*----------SIZES-----------*/
  /*----------THEME-----------*/
}
@media screen and (width <= 1401px) {
  .tab {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .tab {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .tab {
    border-width: max(0.5333333333vw, 2px);
  }
}
.tab__text {
  margin-inline: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .tab__text {
    margin-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .tab__text {
    margin-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab__text {
    margin-inline: 1.0666666667vw;
  }
}
.tab__icon-left, .tab__icon-right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: fill 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), stroke 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .tab__icon-left, .tab__icon-right {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .tab__icon-left, .tab__icon-right {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .tab__icon-left, .tab__icon-right {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.tab__badge {
  height: 0.8333333333vw;
  padding-inline: 0.2083333333vw;
  color: var(--gray-white);
  background: var(--error-dark);
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .tab__badge {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .tab__badge {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .tab__badge {
    font-size: 2.9333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .tab__badge {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .tab__badge {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .tab__badge {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .tab__badge {
    height: 1.1713030747vw;
    padding-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .tab__badge {
    height: 2.0833333333vw;
    padding-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab__badge {
    height: 4.2666666667vw;
    padding-inline: 1.0666666667vw;
  }
}
.tab-primary {
  background: var(--gray-lighter);
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .tab-primary:hover {
    color: var(--color1-main);
  }
}
.tab-primary:active {
  background: var(--color1-lighter);
  color: var(--color1-dark);
}
.tab-primary.active {
  cursor: default;
  background: var(--color1-lighter);
  color: var(--gray-black);
}
.tab-primary:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.tab-secondary {
  background: transparent;
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .tab-secondary:hover {
    background: var(--gray-lighter);
    color: var(--color1-main);
  }
}
.tab-secondary:active {
  background: var(--color1-lighter);
  color: var(--color1-dark);
}
.tab-secondary.active {
  cursor: default;
  background: transparent;
  color: var(--gray-darker);
}
.tab-secondary:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.tab-outline {
  background: transparent;
  border-color: var(--color1-light);
  color: var(--gray-dark);
}
@media (hover: hover) and (pointer: fine) {
  .tab-outline:hover {
    background: var(--gray-lighter);
    border-color: var(--color1-light);
    color: var(--gray-dark);
  }
}
.tab-outline:active {
  background: transparent;
  border-color: var(--color1-main);
  color: var(--gray-black);
}
.tab-outline.active {
  cursor: default;
  background: transparent;
  border-color: transparent;
  color: var(--gray-darker);
}
.tab-outline:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.tab-underline {
  padding-inline: 0 !important;
  border-radius: 0 !important;
  background: transparent;
  border-bottom-color: var(--color1-lighter);
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .tab-underline:hover {
    border-bottom-color: var(--color1-light);
  }
}
.tab-underline:active {
  border-bottom-color: var(--color1-main);
}
.tab-underline.active {
  cursor: default;
  background: transparent;
  color: var(--color1-main);
  border-bottom-color: var(--color1-main);
}
.tab-underline:disabled {
  cursor: not-allowed;
  background: transparent;
  color: var(--gray-medium);
  border-bottom-color: var(--gray-medium);
}
.tab-flat {
  padding-inline: 0 !important;
  border-radius: 0 !important;
  background: transparent;
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .tab-flat:hover {
    color: var(--color1-main);
  }
}
.tab-flat:active {
  color: var(--color1-darker);
}
.tab-flat.active {
  cursor: default;
  background: transparent;
  color: var(--gray-black);
}
.tab-flat:disabled {
  cursor: not-allowed;
  background: transparent;
  color: var(--gray-medium);
}
.tab-size_l {
  height: 2.9166666667vw;
  padding-inline: 0.8333333333vw;
  gap: 0.4166666667vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .tab-size_l {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .tab-size_l {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_l {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-size_l {
    height: 4.0995607613vw;
    padding-inline: 1.1713030747vw;
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tab-size_l {
    height: 7.2916666667vw;
    padding-inline: 2.0833333333vw;
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_l {
    height: 14.9333333333vw;
    padding-inline: 4.2666666667vw;
    gap: 2.1333333333vw;
  }
}
.tab-size_l .tab__text {
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .tab-size_l .tab__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .tab-size_l .tab__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_l .tab__text {
    font-size: 4.2666666667vw;
  }
}
.tab-size_m {
  height: 2.5vw;
  padding-inline: 0.625vw;
  gap: 0.2083333333vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .tab-size_m {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .tab-size_m {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_m {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-size_m {
    height: 3.513909224vw;
    padding-inline: 0.878477306vw;
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .tab-size_m {
    height: 6.25vw;
    padding-inline: 1.5625vw;
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_m {
    height: 12.8vw;
    padding-inline: 3.2vw;
    gap: 1.0666666667vw;
  }
}
.tab-size_m .tab__text {
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .tab-size_m .tab__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .tab-size_m .tab__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_m .tab__text {
    font-size: 4.2666666667vw;
  }
}
.tab-size_s {
  height: 2.0833333333vw;
  padding-inline: 0.4166666667vw;
  gap: 0.2083333333vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .tab-size_s {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .tab-size_s {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_s {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-size_s {
    height: 2.9282576867vw;
    padding-inline: 0.5856515373vw;
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .tab-size_s {
    height: 5.2083333333vw;
    padding-inline: 1.0416666667vw;
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_s {
    height: 10.6666666667vw;
    padding-inline: 2.1333333333vw;
    gap: 1.0666666667vw;
  }
}
.tab-size_s .tab__text {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .tab-size_s .tab__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .tab-size_s .tab__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_s .tab__text {
    font-size: 3.4666666667vw;
  }
}
.tab-size_xs {
  height: 1.875vw;
  padding-inline: 0.2083333333vw;
  gap: 0;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .tab-size_xs {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tab-size_xs {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_xs {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-size_xs {
    height: 2.635431918vw;
    padding-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .tab-size_xs {
    height: 4.6875vw;
    padding-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_xs {
    height: 9.6vw;
    padding-inline: 1.0666666667vw;
  }
}
.tab-size_xs .tab__text {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .tab-size_xs .tab__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .tab-size_xs .tab__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_xs .tab__text {
    font-size: 3.4666666667vw;
  }
}
.tab-size_xs .tab__icon-left, .tab-size_xs .tab__icon-right {
  margin-inline: 0.2083333333vw;
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .tab-size_xs .tab__icon-left, .tab-size_xs .tab__icon-right {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .tab-size_xs .tab__icon-left, .tab-size_xs .tab__icon-right {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_xs .tab__icon-left, .tab-size_xs .tab__icon-right {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-size_xs .tab__icon-left, .tab-size_xs .tab__icon-right {
    margin-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .tab-size_xs .tab__icon-left, .tab-size_xs .tab__icon-right {
    margin-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-size_xs .tab__icon-left, .tab-size_xs .tab__icon-right {
    margin-inline: 1.0666666667vw;
  }
}
.tab-theme_dark.tab-primary {
  background: var(--gray-dark);
  color: var(--gray-lighter);
}
@media (hover: hover) and (pointer: fine) {
  .tab-theme_dark.tab-primary:hover {
    color: var(--color1-light);
  }
}
.tab-theme_dark.tab-primary:active {
  background: var(--gray-darker);
  color: var(--color1-main);
  border-color: var(--gray-dark);
}
.tab-theme_dark.tab-primary.active {
  cursor: default;
  background: var(--gray-darker);
  border-color: var(--gray-dark);
  color: var(--gray-lighter);
}
.tab-theme_dark.tab-primary:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.tab-theme_dark.tab-secondary {
  background: transparent;
  color: var(--gray-lighter);
}
@media (hover: hover) and (pointer: fine) {
  .tab-theme_dark.tab-secondary:hover {
    background: var(--gray-dark);
    color: var(--color1-light);
  }
}
.tab-theme_dark.tab-secondary:active {
  background: var(--gray-darker);
  border-color: var(--gray-dark);
  color: var(--color1-main);
}
.tab-theme_dark.tab-secondary.active {
  cursor: default;
  background: var(--gray-dark);
  color: var(--gray-lighter);
}
.tab-theme_dark.tab-secondary:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.tab-theme_dark.tab-outline {
  background: transparent;
  border-color: var(--gray-dark);
  color: var(--gray-lighter);
}
@media (hover: hover) and (pointer: fine) {
  .tab-theme_dark.tab-outline:hover {
    border-color: var(--gray-medium);
  }
}
.tab-theme_dark.tab-outline:active {
  background: var(--gray-dark);
  border-color: var(--gray-medium);
}
.tab-theme_dark.tab-outline.active {
  cursor: default;
  background: transparent;
  border-color: var(--color1-main);
  color: var(--gray-lighter);
}
.tab-theme_dark.tab-outline:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.tab-theme_dark.tab-underline {
  padding-inline: 0 !important;
  border-radius: 0 !important;
  background: transparent;
  color: var(--gray-lighter);
}
@media (hover: hover) and (pointer: fine) {
  .tab-theme_dark.tab-underline:hover {
    border-bottom-color: var(--gray-medium);
  }
}
.tab-theme_dark.tab-underline:active {
  border-bottom-color: var(--gray-dark);
}
.tab-theme_dark.tab-underline.active {
  cursor: default;
  background: transparent;
  color: var(--gray-white);
  border-bottom-color: var(--color1-main);
}
.tab-theme_dark.tab-underline:disabled {
  cursor: not-allowed;
  background: transparent;
  color: var(--gray-medium);
  border-bottom-color: var(--gray-medium);
}
.tab-theme_dark.tab-flat {
  padding-inline: 0 !important;
  border-radius: 0 !important;
  background: transparent;
  color: var(--gray-light);
}
@media (hover: hover) and (pointer: fine) {
  .tab-theme_dark.tab-flat:hover {
    color: var(--color1-light);
  }
}
.tab-theme_dark.tab-flat:active {
  color: var(--color1-main);
}
.tab-theme_dark.tab-flat.active {
  cursor: default;
  background: transparent;
  color: var(--gray-white);
}
.tab-theme_dark.tab-flat:disabled {
  cursor: not-allowed;
  background: transparent;
  color: var(--gray-medium);
}
.btn {
  /*----------CORE STYLE-----------*/
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: transparent solid;
  width: fit-content;
  touch-action: manipulation;
  transition: border 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  border-width: max(0vw, 0px);
  /*============QUICK CONFIG============*/
  /*====================================*/
  /*----------STYLES-----------*/
  /*----------SIZES-----------*/
  /*----------THEME-----------*/
}
@media screen and (width <= 1401px) {
  .btn {
    border-width: max(0vw, 0px);
  }
}
@media screen and (width <= 811px) {
  .btn {
    border-width: max(0vw, 0px);
  }
}
@media screen and (width <= 481px) {
  .btn {
    border-width: max(0vw, 0px);
  }
}
.btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn__icon svg {
  display: inline-block;
  vertical-align: middle;
  transition: fill 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), stroke 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.btn__loader {
  display: none;
}
.btn.loading .btn__loader {
  display: block;
}
.btn.loading .btn__text, .btn.loading .btn__icon {
  display: none;
}
.btn-size_l {
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .btn-size_l {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_l {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_l {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-size_l {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_l {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_l {
    border-radius: 3.2vw;
  }
}
.btn-size_m {
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .btn-size_m {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_m {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_m {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-size_m {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_m {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_m {
    border-radius: 3.2vw;
  }
}
.btn-size_s {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .btn-size_s {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_s {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_s {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-size_s {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_s {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_s {
    border-radius: 3.2vw;
  }
}
.btn-size_xs {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .btn-size_xs {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_xs {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_xs {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .btn-size_xs {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_xs {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_xs {
    border-radius: 2.1333333333vw;
  }
}
.btn-primary {
  background: var(--color1-main);
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background: var(--color1-light);
  }
}
.btn-primary:active {
  background: var(--color1-dark);
}
.btn-primary:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
}
.btn-secondary {
  background: var(--gray-white);
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .btn-secondary:hover {
    background: var(--color1-lighter);
  }
}
.btn-secondary:active {
  background: var(--color1-light);
}
.btn-secondary:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
}
.btn-accent {
  background: var(--color2-dark);
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .btn-accent:hover {
    background: var(--color2-main);
  }
}
.btn-accent:active {
  background: var(--color2-darker);
}
.btn-accent:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
}
.btn-gray {
  background: var(--gray-black);
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .btn-gray:hover {
    background: var(--gray-dark);
  }
}
.btn-gray:active {
  background: var(--gray-darker);
}
.btn-gray:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
}
.btn-outline {
  background: transparent;
  color: var(--gray-darker);
  border-color: var(--color1-main);
}
@media (hover: hover) and (pointer: fine) {
  .btn-outline:hover {
    background: var(--color1-light);
    color: var(--gray-white);
    border-color: var(--color1-light);
  }
}
.btn-outline:active {
  background: var(--color1-dark);
  color: var(--gray-white);
  border-color: var(--color1-dark);
}
.btn-outline:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.btn-monochrome {
  background: transparent;
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .btn-monochrome:hover {
    background: var(--gray-light);
    color: var(--color1-dark);
  }
}
.btn-monochrome:active {
  background: var(--color1-lighter);
  color: var(--color1-darker);
}
.btn-monochrome:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
}
.btn-flat {
  background: transparent;
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .btn-flat:hover {
    background: var(--gray-lighter);
    color: var(--color1-dark);
  }
}
.btn-flat:active {
  background: var(--color1-lighter);
  color: var(--color1-darker);
}
.btn-flat:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
}
.btn-size_l {
  height: 2.9166666667vw;
  padding: 0 1.25vw;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .btn-size_l {
    height: 4.0995607613vw;
    padding: 0 1.756954612vw;
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_l {
    height: 7.2916666667vw;
    padding: 0 3.125vw;
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_l {
    height: 14.9333333333vw;
    padding: 0 6.4vw;
    gap: 3.2vw;
  }
}
.btn-size_l:has(.btn__icon_left) {
  padding-left: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .btn-size_l:has(.btn__icon_left) {
    padding-left: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_l:has(.btn__icon_left) {
    padding-left: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_l:has(.btn__icon_left) {
    padding-left: 5.3333333333vw;
  }
}
.btn-size_l:has(.btn__icon_right) {
  padding-right: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .btn-size_l:has(.btn__icon_right) {
    padding-right: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_l:has(.btn__icon_right) {
    padding-right: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_l:has(.btn__icon_right) {
    padding-right: 5.3333333333vw;
  }
}
.btn-size_l:has(.btn__icon_center) {
  padding: 0 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .btn-size_l:has(.btn__icon_center) {
    padding: 0 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_l:has(.btn__icon_center) {
    padding: 0 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_l:has(.btn__icon_center) {
    padding: 0 4.2666666667vw;
  }
}
.btn-size_l .btn__icon svg {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .btn-size_l .btn__icon svg {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_l .btn__icon svg {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_l .btn__icon svg {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.btn-size_l .btn__loader {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .btn-size_l .btn__loader {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_l .btn__loader {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_l .btn__loader {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.btn-size_m {
  height: 2.5vw;
  padding: 0 1.0416666667vw;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .btn-size_m {
    height: 3.513909224vw;
    padding: 0 1.4641288433vw;
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_m {
    height: 6.25vw;
    padding: 0 2.6041666667vw;
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_m {
    height: 12.8vw;
    padding: 0 5.3333333333vw;
    gap: 2.1333333333vw;
  }
}
.btn-size_m:has(.btn__icon_left) {
  padding-left: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .btn-size_m:has(.btn__icon_left) {
    padding-left: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_m:has(.btn__icon_left) {
    padding-left: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_m:has(.btn__icon_left) {
    padding-left: 4.2666666667vw;
  }
}
.btn-size_m:has(.btn__icon_right) {
  padding-right: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .btn-size_m:has(.btn__icon_right) {
    padding-right: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_m:has(.btn__icon_right) {
    padding-right: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_m:has(.btn__icon_right) {
    padding-right: 4.2666666667vw;
  }
}
.btn-size_m:has(.btn__icon_center) {
  padding: 0 0.625vw;
}
@media screen and (width <= 1401px) {
  .btn-size_m:has(.btn__icon_center) {
    padding: 0 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_m:has(.btn__icon_center) {
    padding: 0 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_m:has(.btn__icon_center) {
    padding: 0 3.2vw;
  }
}
.btn-size_m .btn__icon svg {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .btn-size_m .btn__icon svg {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_m .btn__icon svg {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_m .btn__icon svg {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.btn-size_m .btn__loader {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .btn-size_m .btn__loader {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_m .btn__loader {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_m .btn__loader {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.btn-size_s {
  height: 2.0833333333vw;
  padding: 0 0.8333333333vw;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .btn-size_s {
    height: 2.9282576867vw;
    padding: 0 1.1713030747vw;
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_s {
    height: 5.2083333333vw;
    padding: 0 2.0833333333vw;
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_s {
    height: 10.6666666667vw;
    padding: 0 4.2666666667vw;
    gap: 2.1333333333vw;
  }
}
.btn-size_s:has(.btn__icon_left) {
  padding-left: 0.625vw;
}
@media screen and (width <= 1401px) {
  .btn-size_s:has(.btn__icon_left) {
    padding-left: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_s:has(.btn__icon_left) {
    padding-left: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_s:has(.btn__icon_left) {
    padding-left: 3.2vw;
  }
}
.btn-size_s:has(.btn__icon_right) {
  padding-right: 0.625vw;
}
@media screen and (width <= 1401px) {
  .btn-size_s:has(.btn__icon_right) {
    padding-right: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_s:has(.btn__icon_right) {
    padding-right: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_s:has(.btn__icon_right) {
    padding-right: 3.2vw;
  }
}
.btn-size_s:has(.btn__icon_center) {
  padding: 0 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .btn-size_s:has(.btn__icon_center) {
    padding: 0 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_s:has(.btn__icon_center) {
    padding: 0 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_s:has(.btn__icon_center) {
    padding: 0 2.1333333333vw;
  }
}
.btn-size_s .btn__icon svg {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .btn-size_s .btn__icon svg {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_s .btn__icon svg {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_s .btn__icon svg {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.btn-size_s .btn__loader {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .btn-size_s .btn__loader {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_s .btn__loader {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_s .btn__loader {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.btn-size_xs {
  height: 1.6666666667vw;
  padding: 0 0.625vw;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .btn-size_xs {
    height: 2.3426061493vw;
    padding: 0 0.878477306vw;
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_xs {
    height: 4.1666666667vw;
    padding: 0 1.5625vw;
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_xs {
    height: 8.5333333333vw;
    padding: 0 3.2vw;
    gap: 1.0666666667vw;
  }
}
.btn-size_xs:has(.btn__icon_left) {
  padding-left: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .btn-size_xs:has(.btn__icon_left) {
    padding-left: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_xs:has(.btn__icon_left) {
    padding-left: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_xs:has(.btn__icon_left) {
    padding-left: 2.1333333333vw;
  }
}
.btn-size_xs:has(.btn__icon_right) {
  padding-right: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .btn-size_xs:has(.btn__icon_right) {
    padding-right: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_xs:has(.btn__icon_right) {
    padding-right: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_xs:has(.btn__icon_right) {
    padding-right: 2.1333333333vw;
  }
}
.btn-size_xs:has(.btn__icon_center) {
  padding: 0 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .btn-size_xs:has(.btn__icon_center) {
    padding: 0 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_xs:has(.btn__icon_center) {
    padding: 0 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_xs:has(.btn__icon_center) {
    padding: 0 2.1333333333vw;
  }
}
.btn-size_xs .btn__icon svg {
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .btn-size_xs .btn__icon svg {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_xs .btn__icon svg {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_xs .btn__icon svg {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.btn-size_xs .btn__loader {
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .btn-size_xs .btn__loader {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .btn-size_xs .btn__loader {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .btn-size_xs .btn__loader {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.btn-theme_dark.btn-primary {
  background: var(--color1-main);
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .btn-theme_dark.btn-primary:hover {
    background: var(--color1-light);
  }
}
.btn-theme_dark.btn-primary:active {
  background: var(--color1-dark);
}
.btn-theme_dark.btn-primary:disabled {
  cursor: not-allowed;
  background: var(--gray-dark);
}
.btn-theme_dark.btn-accent {
  background: var(--color2-dark);
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .btn-theme_dark.btn-accent:hover {
    background: var(--color2-main);
  }
}
.btn-theme_dark.btn-accent:active {
  background: var(--color2-darker);
}
.btn-theme_dark.btn-accent:disabled {
  cursor: not-allowed;
  background: var(--gray-dark);
}
.btn-theme_dark.btn-secondary {
  background: var(--gray-dark);
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .btn-theme_dark.btn-secondary:hover {
    background: var(--gray-medium);
  }
}
.btn-theme_dark.btn-secondary:active {
  background: var(--gray-darker);
  border-color: var(--gray-dark);
}
.btn-theme_dark.btn-secondary:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-dark);
}
.btn-theme_dark.btn-gray {
  background: var(--gray-white);
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .btn-theme_dark.btn-gray:hover {
    background: var(--gray-light);
  }
}
.btn-theme_dark.btn-gray:active {
  background: var(--gray-medium);
}
.btn-theme_dark.btn-gray:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-dark);
}
.btn-theme_dark.btn-outline {
  background: transparent;
  color: var(--gray-white);
  border-color: var(--color1-main);
}
@media (hover: hover) and (pointer: fine) {
  .btn-theme_dark.btn-outline:hover {
    background: var(--color1-light);
    border-color: var(--color1-light);
  }
}
.btn-theme_dark.btn-outline:active {
  background: var(--color1-dark);
  border-color: var(--color1-dark);
}
.btn-theme_dark.btn-outline:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-dark);
  border-color: transparent;
}
.btn-theme_dark.btn-monochrome {
  background: transparent;
  color: var(--gray-white);
  border-color: var(--gray-medium);
}
@media (hover: hover) and (pointer: fine) {
  .btn-theme_dark.btn-monochrome:hover {
    background: var(--gray-medium);
  }
}
.btn-theme_dark.btn-monochrome:active {
  background: var(--gray-darker);
}
.btn-theme_dark.btn-monochrome:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-dark);
  border-color: transparent;
}
.btn-theme_dark.btn-flat {
  background: transparent;
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .btn-theme_dark.btn-flat:hover {
    background: var(--gray-dark);
    color: var(--color1-lighter);
  }
}
.btn-theme_dark.btn-flat:active {
  background: var(--gray-darker);
  color: var(--color1-light);
  border-color: var(--gray-dark);
}
.btn-theme_dark.btn-flat:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-dark);
  border-color: transparent;
}
.fs {
  position: relative;
  background: var(--gray-lighter);
  padding-top: 4.1666666667vw;
  padding-bottom: 5.2083333333vw;
  border-bottom-left-radius: 3.125vw;
  border-bottom-right-radius: 3.125vw;
}
@media screen and (width <= 1401px) {
  .fs {
    padding-top: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .fs {
    padding-top: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .fs {
    padding-top: 6.4vw;
  }
}
@media screen and (width <= 1401px) {
  .fs {
    padding-bottom: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .fs {
    padding-bottom: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .fs {
    padding-bottom: 10.6666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .fs {
    border-bottom-left-radius: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .fs {
    border-bottom-left-radius: 0vw;
  }
}
@media screen and (width <= 481px) {
  .fs {
    border-bottom-left-radius: 0vw;
  }
}
@media screen and (width <= 1401px) {
  .fs {
    border-bottom-right-radius: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .fs {
    border-bottom-right-radius: 0vw;
  }
}
@media screen and (width <= 481px) {
  .fs {
    border-bottom-right-radius: 0vw;
  }
}
.fs-container {
  display: flex;
  flex-direction: column;
  max-width: 42.7083333333vw;
  width: 100%;
  gap: 1.4583333333vw;
}
@media screen and (width <= 1401px) {
  .fs-container {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .fs-container {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .fs-container {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .fs-container {
    max-width: 53.8799414348vw;
  }
}
@media screen and (width <= 811px) {
  .fs-container {
    max-width: 46.875vw;
  }
}
@media screen and (width <= 481px) {
  .fs-container {
    max-width: 100%;
  }
}
.fs-container__text {
  display: flex;
  flex-direction: column;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .fs-container__text {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .fs-container__text {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .fs-container__text {
    gap: 3.2vw;
  }
}
.fs-title {
  color: var(--gray-black);
  font-size: 2.6041666667vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .fs-title {
    font-size: 3.074670571vw;
  }
}
@media screen and (width <= 811px) {
  .fs-title {
    font-size: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .fs-title {
    font-size: 8.5333333333vw;
  }
}
.fs-title span {
  color: var(--color1-main);
}
.fs-text {
  max-width: 30.2083333333vw;
  width: 100%;
  color: var(--gray-dark);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .fs-text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .fs-text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .fs-text {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .fs-text {
    max-width: 38.0673499268vw;
    font-size: 0.6770833333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .fs-text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .fs-text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .fs-text {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 811px) {
  .fs-text {
    max-width: 100%;
  }
}
.fs-btns {
  display: flex;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .fs-btns {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .fs-btns {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .fs-btns {
    gap: 3.2vw;
  }
}
@media screen and (width <= 811px) {
  .fs-btns {
    flex-direction: column;
    margin-top: 0.4166666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .fs-btns {
    margin-top: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .fs-btns {
    margin-top: 1.0416666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .fs-btns {
    margin-top: 2.1333333333vw;
  }
}
@media screen and (width <= 811px) {
  .fs-btns .btn {
    width: 100%;
  }
}
.fs-label {
  color: var(--gray-medium);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .fs-label {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .fs-label {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .fs-label {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 811px) {
  .fs-label {
    text-align: center;
  }
}
.fs-img {
  z-index: 1;
  position: absolute;
  bottom: 0;
  display: inline-flex;
  align-items: flex-end;
  right: 13.0208333333vw;
  width: 36.4583333333vw;
  height: 39.7916666667vw;
}
@media screen and (width <= 1401px) {
  .fs-img {
    right: 3.2942898975vw;
    width: 45.9736456808vw;
    height: 45.0951683748vw;
  }
}
@media screen and (width <= 811px) {
  .fs-img {
    display: none;
    right: 2.0833333333vw;
    width: 48.9583333333vw;
    height: 68.2291666667vw;
  }
}
@media screen and (width <= 481px) {
  .fs-img {
    position: static;
    width: 100%;
    height: 101.3333333333vw;
    margin-top: 2.1333333333vw;
  }
}
.fs-img_mobile {
  display: none;
}
@media screen and (width <= 811px) {
  .fs-img_mobile {
    display: inline-flex;
  }
}
.fs-img img {
  height: 100%;
  width: 100%;
  object-position: bottom;
}
.fs-badge {
  z-index: 2;
  position: absolute;
  right: 3.125vw;
  bottom: 3.125vw;
  width: 15.1041666667vw;
  color: var(--gray-medium);
  background: var(--gray-white);
  padding: 0.8333333333vw;
  border-radius: 0.625vw;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .fs-badge {
    padding: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .fs-badge {
    padding: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .fs-badge {
    padding: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .fs-badge {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .fs-badge {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .fs-badge {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .fs-badge {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .fs-badge {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .fs-badge {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .fs-badge {
    right: 2.9282576867vw;
    bottom: 2.9282576867vw;
    width: 17.7159590044vw;
    font-size: 0.5729166667vw;
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
    font-weight: 700;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .fs-badge {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .fs-badge {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .fs-badge {
    font-size: 2.9333333333vw;
  }
}
@media screen and (width <= 811px) {
  .fs-badge {
    right: 2.0833333333vw;
    bottom: 2.0833333333vw;
    width: 31.5104166667vw;
  }
}
@media screen and (width <= 481px) {
  .fs-badge {
    position: static;
    width: 100%;
    margin-top: -3.2vw;
    text-align: center;
    font-size: 0.6770833333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    font-weight: 700;
  }
}
@media screen and (width <= 481px) and (width <= 1401px) {
  .fs-badge {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 481px) and (width <= 811px) {
  .fs-badge {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) and (width <= 481px) {
  .fs-badge {
    font-size: 3.4666666667vw;
  }
}
.fs-qr {
  max-width: 27.0833333333vw;
  width: 100%;
  margin-top: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .fs-qr {
    margin-top: 1.6105417277vw;
  }
}
@media screen and (width <= 811px) {
  .fs-qr {
    margin-top: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .fs-qr {
    margin-top: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .fs-qr {
    max-width: 38.0673499268vw;
  }
}
@media screen and (width <= 811px) {
  .fs-qr {
    max-width: 100%;
  }
}
.qr-container {
  display: flex;
  flex-direction: column;
  background: var(--gray-light);
  gap: 0.625vw;
  padding: 1.0416666667vw;
  border-radius: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .qr-container {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .qr-container {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .qr-container {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .qr-container {
    padding: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .qr-container {
    padding: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .qr-container {
    padding: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .qr-container {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .qr-container {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .qr-container {
    border-radius: 3.2vw;
  }
}
.qr-block {
  display: flex;
  align-items: flex-start;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .qr-block {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .qr-block {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .qr-block {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 811px) {
  .qr-block {
    display: none;
  }
}
.qr-img {
  flex-shrink: 0;
  background: var(--gray-white);
  width: 6.25vw;
  height: 6.25vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .qr-img {
    width: 8.78477306vw;
    height: 8.78477306vw;
  }
}
@media screen and (width <= 811px) {
  .qr-img {
    width: 15.625vw;
    height: 15.625vw;
  }
}
@media screen and (width <= 481px) {
  .qr-img {
    width: 32vw;
    height: 32vw;
  }
}
@media screen and (width <= 1401px) {
  .qr-img {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .qr-img {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .qr-img {
    border-radius: 3.2vw;
  }
}
.qr-text {
  align-self: center;
  color: var(--gray-dark);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .qr-text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .qr-text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .qr-text {
    font-size: 4.2666666667vw;
  }
}
.qr-title {
  color: var(--gray-black);
  margin-bottom: 0.4166666667vw;
  font-size: 1.0416666667vw;
  font-family: var(--font-family-heading-add);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .qr-title {
    margin-bottom: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .qr-title {
    margin-bottom: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .qr-title {
    margin-bottom: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .qr-title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .qr-title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .qr-title {
    font-size: 4.2666666667vw;
  }
}
.qr-btns {
  display: flex;
  border-top: solid var(--gray-lighter);
  gap: 0.625vw;
  padding-top: 0.625vw;
}
@media screen and (width <= 1401px) {
  .qr-btns {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .qr-btns {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .qr-btns {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .qr-btns {
    padding-top: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .qr-btns {
    padding-top: 0vw;
  }
}
@media screen and (width <= 481px) {
  .qr-btns {
    padding-top: 0vw;
  }
}
@media screen and (width <= 811px) {
  .qr-btns {
    flex-direction: column;
    border-top: unset;
  }
}
.qr-container .qr-btn {
  width: 100%;
}
@media screen and (width <= 1401px) {
  .qr-container .qr-btn {
    width: auto;
  }
}
@media screen and (width <= 811px) {
  .qr-container .qr-btn {
    width: 100%;
    gap: 0.2083333333vw;
    padding: 0.4166666667vw;
    padding-top: 0.5208333333vw;
    padding-right: 0.625vw;
  }
  .qr-container .qr-btn .tab-market__icon {
    width: 1.25vw;
    height: 1.25vw;
  }
  .qr-container .qr-btn .tab-market__block {
    font-size: 0.46875vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    line-height: 110%;
  }
  .qr-container .qr-btn .tab-market__text {
    font-size: 0.6770833333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    font-weight: 700;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .qr-container .qr-btn {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .qr-container .qr-btn {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .qr-container .qr-btn {
    gap: 1.0666666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .qr-container .qr-btn {
    padding: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .qr-container .qr-btn {
    padding: 1.0416666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .qr-container .qr-btn {
    padding: 2.1333333333vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .qr-container .qr-btn {
    padding-top: 0.7320644217vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .qr-container .qr-btn {
    padding-top: 1.3020833333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .qr-container .qr-btn {
    padding-top: 2.6666666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .qr-container .qr-btn {
    padding-right: 0.878477306vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .qr-container .qr-btn {
    padding-right: 1.5625vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .qr-container .qr-btn {
    padding-right: 3.2vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .qr-container .qr-btn .tab-market__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .qr-container .qr-btn .tab-market__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .qr-container .qr-btn .tab-market__icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .qr-container .qr-btn .tab-market__block {
    font-size: 0.6588579795vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .qr-container .qr-btn .tab-market__block {
    font-size: 1.171875vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .qr-container .qr-btn .tab-market__block {
    font-size: 2.4vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .qr-container .qr-btn .tab-market__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .qr-container .qr-btn .tab-market__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .qr-container .qr-btn .tab-market__text {
    font-size: 3.4666666667vw;
  }
}
.tab-market {
  /*----------CORE STYLE-----------*/
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: transparent solid;
  width: fit-content;
  touch-action: manipulation;
  background: var(--gray-white);
  color: var(--gray-dark);
  opacity: 0;
  visibility: hidden;
  transition: border 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  border-width: max(0.0520833333vw, 1px);
  /*----------SIZES-----------*/
}
@media screen and (width <= 1401px) {
  .tab-market {
    border-width: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 811px) {
  .tab-market {
    border-width: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .tab-market {
    border-width: max(0.2666666667vw, 1px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .tab-market:hover {
    border-color: var(--gray-medium);
  }
}
.tab-market:active {
  background: var(--gray-light);
}
.tab-market.active {
  cursor: default;
  border-color: var(--gray-medium);
  background: var(--gray-light);
}
.tab-market.show {
  display: inline-flex;
  visibility: visible;
  opacity: 1;
}
@media screen and (width <= 811px) {
  .tab-market.tab-market_short .tab-market__block-label {
    display: none;
  }
}
@media screen and (width <= 811px) {
  .tab-market.tab-market_short .tab-market__text_mobile {
    display: inline-block;
  }
}
.tab-market:disabled {
  cursor: not-allowed;
  background: var(--gray-medium);
  color: var(--gray-white);
  border-color: transparent;
}
.tab-market__text {
  color: var(--gray-black);
}
.tab-market__text_mobile {
  display: none;
}
.tab-market__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: fill 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), stroke 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.tab-market-size_l {
  gap: 0.625vw;
  padding: 0.625vw;
  padding-right: 1.0416666667vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .tab-market-size_l {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .tab-market-size_l {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .tab-market-size_l {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-market-size_l {
    padding: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .tab-market-size_l {
    padding: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .tab-market-size_l {
    padding: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-market-size_l {
    padding-right: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .tab-market-size_l {
    padding-right: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-market-size_l {
    padding-right: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-market-size_l {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .tab-market-size_l {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .tab-market-size_l {
    border-radius: 3.2vw;
  }
}
.tab-market-size_l .tab-market__icon {
  width: 2.0833333333vw;
  height: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .tab-market-size_l .tab-market__icon {
    width: 2.9282576867vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .tab-market-size_l .tab-market__icon {
    width: 5.2083333333vw;
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-market-size_l .tab-market__icon {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
.tab-market-size_l .tab-market__block {
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .tab-market-size_l .tab-market__block {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .tab-market-size_l .tab-market__block {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-market-size_l .tab-market__block {
    font-size: 2.9333333333vw;
  }
}
.tab-market-size_l .tab-market__text {
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .tab-market-size_l .tab-market__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .tab-market-size_l .tab-market__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-market-size_l .tab-market__text {
    font-size: 4.2666666667vw;
  }
}
.tab-market-size_m {
  gap: 0.4166666667vw;
  padding: 0.625vw;
  padding-right: 1.0416666667vw;
  padding-left: 0.8333333333vw;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .tab-market-size_m {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tab-market-size_m {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-market-size_m {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-market-size_m {
    padding: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .tab-market-size_m {
    padding: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .tab-market-size_m {
    padding: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-market-size_m {
    padding-right: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .tab-market-size_m {
    padding-right: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-market-size_m {
    padding-right: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-market-size_m {
    padding-left: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .tab-market-size_m {
    padding-left: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-market-size_m {
    padding-left: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-market-size_m {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tab-market-size_m {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-market-size_m {
    border-radius: 2.1333333333vw;
  }
}
.tab-market-size_m .tab-market__icon {
  width: 1.4583333333vw;
  height: 1.4583333333vw;
}
@media screen and (width <= 1401px) {
  .tab-market-size_m .tab-market__icon {
    width: 2.0497803807vw;
    height: 2.0497803807vw;
  }
}
@media screen and (width <= 811px) {
  .tab-market-size_m .tab-market__icon {
    width: 3.6458333333vw;
    height: 3.6458333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-market-size_m .tab-market__icon {
    width: 7.4666666667vw;
    height: 7.4666666667vw;
  }
}
.tab-market-size_m .tab-market__block {
  font-size: 0.46875vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .tab-market-size_m .tab-market__block {
    font-size: 0.6588579795vw;
  }
}
@media screen and (width <= 811px) {
  .tab-market-size_m .tab-market__block {
    font-size: 1.171875vw;
  }
}
@media screen and (width <= 481px) {
  .tab-market-size_m .tab-market__block {
    font-size: 2.4vw;
  }
}
.tab-market-size_m .tab-market__text {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .tab-market-size_m .tab-market__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .tab-market-size_m .tab-market__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-market-size_m .tab-market__text {
    font-size: 3.4666666667vw;
  }
}
.tab-market-size_s {
  gap: 0.2083333333vw;
  padding: 0.4166666667vw;
  padding-top: 0.5208333333vw;
  padding-right: 0.625vw;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .tab-market-size_s {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .tab-market-size_s {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-market-size_s {
    gap: 1.0666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-market-size_s {
    padding: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tab-market-size_s {
    padding: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-market-size_s {
    padding: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-market-size_s {
    padding-top: 0.7320644217vw;
  }
}
@media screen and (width <= 811px) {
  .tab-market-size_s {
    padding-top: 1.3020833333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-market-size_s {
    padding-top: 2.6666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-market-size_s {
    padding-right: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .tab-market-size_s {
    padding-right: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .tab-market-size_s {
    padding-right: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .tab-market-size_s {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tab-market-size_s {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tab-market-size_s {
    border-radius: 2.1333333333vw;
  }
}
.tab-market-size_s .tab-market__icon {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .tab-market-size_s .tab-market__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .tab-market-size_s .tab-market__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .tab-market-size_s .tab-market__icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.tab-market-size_s .tab-market__block {
  font-size: 0.46875vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  line-height: 110%;
}
@media screen and (width <= 1401px) {
  .tab-market-size_s .tab-market__block {
    font-size: 0.6588579795vw;
  }
}
@media screen and (width <= 811px) {
  .tab-market-size_s .tab-market__block {
    font-size: 1.171875vw;
  }
}
@media screen and (width <= 481px) {
  .tab-market-size_s .tab-market__block {
    font-size: 2.4vw;
  }
}
.tab-market-size_s .tab-market__text {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .tab-market-size_s .tab-market__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .tab-market-size_s .tab-market__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .tab-market-size_s .tab-market__text {
    font-size: 3.4666666667vw;
  }
}
.annotation {
  padding-top: 6.25vw;
}
@media screen and (width <= 1401px) {
  .annotation {
    padding-top: 7.3206442167vw;
  }
}
@media screen and (width <= 811px) {
  .annotation {
    padding-top: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .annotation {
    padding-top: 10.6666666667vw;
  }
}
.annotation-container {
  display: flex;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .annotation-container {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .annotation-container {
    gap: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .annotation-container {
    gap: 4.2666666667vw;
  }
}
@media screen and (width <= 481px) {
  .annotation-container {
    flex-direction: column;
  }
}
.annotation-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex: 1;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .annotation-cards {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .annotation-cards {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .annotation-cards {
    gap: 3.2vw;
  }
}
@media screen and (width <= 811px) {
  .annotation-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.annotation-cta {
  width: 17.7083333333vw;
}
@media screen and (width <= 1401px) {
  .annotation-cta {
    width: 22.2547584187vw;
  }
}
@media screen and (width <= 811px) {
  .annotation-cta {
    width: 39.0625vw;
  }
}
@media screen and (width <= 481px) {
  .annotation-cta {
    width: 80vw;
  }
}
@media screen and (width <= 481px) {
  .annotation-cta {
    width: 100%;
  }
}
.card-ann__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gray-lighter);
  gap: 1.0416666667vw;
  padding-top: 2.0833333333vw;
  padding-bottom: 2.5vw;
  padding-inline: 1.0416666667vw;
  border-radius: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .card-ann__main {
    gap: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .card-ann__main {
    gap: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .card-ann__main {
    gap: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .card-ann__main {
    padding-top: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .card-ann__main {
    padding-top: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .card-ann__main {
    padding-top: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .card-ann__main {
    padding-bottom: 2.0497803807vw;
  }
}
@media screen and (width <= 811px) {
  .card-ann__main {
    padding-bottom: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .card-ann__main {
    padding-bottom: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .card-ann__main {
    padding-inline: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .card-ann__main {
    padding-inline: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-ann__main {
    padding-inline: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .card-ann__main {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .card-ann__main {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-ann__main {
    border-radius: 5.3333333333vw;
  }
}
.card-ann__main-img {
  flex-shrink: 0;
  display: flex;
  width: 3.3333333333vw;
  height: 3.3333333333vw;
}
@media screen and (width <= 1401px) {
  .card-ann__main-img {
    width: 4.0995607613vw;
    height: 4.0995607613vw;
  }
}
@media screen and (width <= 811px) {
  .card-ann__main-img {
    width: 6.25vw;
    height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .card-ann__main-img {
    width: 12.8vw;
    height: 12.8vw;
  }
}
.card-ann__main-block {
  display: flex;
  flex-direction: column;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .card-ann__main-block {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .card-ann__main-block {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-ann__main-block {
    gap: 2.1333333333vw;
  }
}
.card-ann__main-title {
  color: var(--gray-black);
  font-size: 1.0416666667vw;
  font-family: var(--font-family-heading-add);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .card-ann__main-title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .card-ann__main-title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .card-ann__main-title {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .card-ann__main-title {
    font-size: 0.8333333333vw;
    font-family: var(--font-family-heading-add);
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .card-ann__main-title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .card-ann__main-title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .card-ann__main-title {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 811px) {
  .card-ann__main-title {
    font-size: 1.0416666667vw;
    font-family: var(--font-family-heading-add);
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .card-ann__main-title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .card-ann__main-title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .card-ann__main-title {
    font-size: 4.2666666667vw;
  }
}
.card-ann__main-text {
  color: var(--gray-dark);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .card-ann__main-text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .card-ann__main-text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .card-ann__main-text {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .card-ann__main-text {
    font-size: 0.6770833333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .card-ann__main-text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .card-ann__main-text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .card-ann__main-text {
    font-size: 3.4666666667vw;
  }
}
.card-ann__cta {
  display: flex;
  flex-direction: column;
  background: var(--gray-light);
  gap: 1.0416666667vw;
  padding: 1.0416666667vw;
  border-radius: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .card-ann__cta {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .card-ann__cta {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-ann__cta {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .card-ann__cta {
    padding: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .card-ann__cta {
    padding: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-ann__cta {
    padding: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .card-ann__cta {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .card-ann__cta {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-ann__cta {
    border-radius: 5.3333333333vw;
  }
}
.card-ann__cta_top {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gray-white);
  gap: 0.4166666667vw;
  padding: 1.0416666667vw;
  padding-top: 0.625vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .card-ann__cta_top {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .card-ann__cta_top {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-ann__cta_top {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .card-ann__cta_top {
    padding: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .card-ann__cta_top {
    padding: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-ann__cta_top {
    padding: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .card-ann__cta_top {
    padding-top: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .card-ann__cta_top {
    padding-top: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .card-ann__cta_top {
    padding-top: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .card-ann__cta_top {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .card-ann__cta_top {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .card-ann__cta_top {
    border-radius: 3.2vw;
  }
}
.card-ann__cta_bottom {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .card-ann__cta_bottom {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .card-ann__cta_bottom {
    gap: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .card-ann__cta_bottom {
    gap: 4.2666666667vw;
  }
}
.card-ann__cta-img {
  flex-shrink: 0;
  display: flex;
  width: 6.25vw;
  height: 6.25vw;
}
@media screen and (width <= 1401px) {
  .card-ann__cta-img {
    width: 5.8565153734vw;
    height: 5.8565153734vw;
  }
}
@media screen and (width <= 811px) {
  .card-ann__cta-img {
    width: 7.8125vw;
    height: 7.8125vw;
  }
}
@media screen and (width <= 481px) {
  .card-ann__cta-img {
    width: 16vw;
    height: 16vw;
  }
}
.card-ann__cta-title {
  color: var(--gray-black);
  font-size: 1.0416666667vw;
  font-family: var(--font-family-heading-add);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .card-ann__cta-title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .card-ann__cta-title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .card-ann__cta-title {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .card-ann__cta-title {
    font-size: 0.8333333333vw;
    font-family: var(--font-family-heading-add);
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .card-ann__cta-title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .card-ann__cta-title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .card-ann__cta-title {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 811px) {
  .card-ann__cta-title {
    font-size: 1.0416666667vw;
    font-family: var(--font-family-heading-add);
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .card-ann__cta-title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .card-ann__cta-title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .card-ann__cta-title {
    font-size: 4.2666666667vw;
  }
}
.card-ann__cta-text {
  color: var(--gray-dark);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .card-ann__cta-text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .card-ann__cta-text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .card-ann__cta-text {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .card-ann__cta-text {
    font-size: 0.6770833333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .card-ann__cta-text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .card-ann__cta-text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .card-ann__cta-text {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 811px) {
  .card-ann__cta-text {
    font-size: 0.8333333333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .card-ann__cta-text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .card-ann__cta-text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .card-ann__cta-text {
    font-size: 4.2666666667vw;
  }
}
.application-container {
  display: flex;
  align-items: flex-start;
  gap: 3.125vw;
}
@media screen and (width <= 1401px) {
  .application-container {
    gap: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .application-container {
    gap: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .application-container {
    gap: 10.6666666667vw;
  }
}
.application-images {
  position: sticky;
  flex-shrink: 0;
  overflow: hidden;
  top: 5.2083333333vw;
  width: 34.375vw;
  height: 25vw;
}
@media screen and (width <= 1401px) {
  .application-images {
    top: 7.3206442167vw;
  }
}
@media screen and (width <= 811px) {
  .application-images {
    top: 13.0208333333vw;
  }
}
@media screen and (width <= 481px) {
  .application-images {
    top: 26.6666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .application-images {
    width: 44.5095168375vw;
  }
}
@media screen and (width <= 811px) {
  .application-images {
    width: 85.9375vw;
  }
}
@media screen and (width <= 481px) {
  .application-images {
    width: 176vw;
  }
}
@media screen and (width <= 1401px) {
  .application-images {
    height: 32.3572474378vw;
  }
}
@media screen and (width <= 811px) {
  .application-images {
    height: 62.5vw;
  }
}
@media screen and (width <= 481px) {
  .application-images {
    height: 128vw;
  }
}
@media screen and (width <= 811px) {
  .application-images {
    display: none;
  }
}
.application-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: solid var(--gray-medium);
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  overflow: hidden;
  border-radius: 1.0416666667vw;
  border-width: max(0.0520833333vw, 1px);
}
@media screen and (width <= 1401px) {
  .application-img {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .application-img {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .application-img {
    border-radius: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .application-img {
    border-width: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 811px) {
  .application-img {
    border-width: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .application-img {
    border-width: max(0.2666666667vw, 1px);
  }
}
@media screen and (width <= 811px) {
  .application-img {
    display: none;
  }
}
.application-img.active {
  opacity: 1;
}
.application-img_mobile {
  display: none;
}
@media screen and (width <= 811px) {
  .application-img_mobile {
    position: static;
    display: flex;
  }
}
@media screen and (width <= 481px) {
  .application-img_mobile {
    height: 54.6666666667vw;
  }
}
.application-img img {
  width: 100%;
  height: 100%;
}
.application-cards {
  display: flex;
  flex-direction: column;
  gap: 3.125vw;
}
@media screen and (width <= 1401px) {
  .application-cards {
    gap: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .application-cards {
    gap: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .application-cards {
    gap: 6.4vw;
  }
}
.application-cards__item {
  position: sticky;
  display: flex;
  align-items: center;
  top: 5.2083333333vw;
  height: 25vw;
}
@media screen and (width <= 1401px) {
  .application-cards__item {
    top: 7.3206442167vw;
  }
}
@media screen and (width <= 811px) {
  .application-cards__item {
    top: 13.0208333333vw;
  }
}
@media screen and (width <= 481px) {
  .application-cards__item {
    top: 26.6666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .application-cards__item {
    height: 32.3572474378vw;
  }
}
@media screen and (width <= 811px) {
  .application-cards__item {
    height: 62.5vw;
  }
}
@media screen and (width <= 481px) {
  .application-cards__item {
    height: 128vw;
  }
}
@media screen and (width <= 811px) {
  .application-cards__item {
    position: static;
    align-items: unset;
    height: unset;
    gap: 0.4166666667vw;
  }
  .application-cards__item:nth-child(2n) {
    flex-direction: row-reverse;
  }
  .application-cards__item .card-application, .application-cards__item .application-img_mobile {
    flex-basis: 50%;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .application-cards__item {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .application-cards__item {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .application-cards__item {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 481px) {
  .application-cards__item {
    flex-direction: column;
  }
  .application-cards__item:nth-child(2n) {
    flex-direction: column;
  }
  .application-cards__item .card-application, .application-cards__item .application-img_mobile {
    flex-basis: unset;
  }
}
.card-application {
  background: var(--gray-lighter);
  padding: 2.0833333333vw;
  border-radius: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .card-application {
    padding: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .card-application {
    padding: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .card-application {
    padding: 6.4vw;
  }
}
@media screen and (width <= 1401px) {
  .card-application {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .card-application {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-application {
    border-radius: 5.3333333333vw;
  }
}
@media screen and (width <= 811px) {
  .card-application {
    min-height: 11.25vw;
    padding-inline: 1.0416666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .card-application {
    min-height: 15.8125915081vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .card-application {
    min-height: 28.125vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .card-application {
    min-height: 57.6vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .card-application {
    padding-inline: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .card-application {
    padding-inline: 2.6041666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .card-application {
    padding-inline: 5.3333333333vw;
  }
}
.card-application__img {
  display: flex;
  width: 1.25vw;
  height: 1.25vw;
  margin-bottom: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .card-application__img {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .card-application__img {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .card-application__img {
    width: 6.4vw;
    height: 6.4vw;
  }
}
@media screen and (width <= 1401px) {
  .card-application__img {
    margin-bottom: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .card-application__img {
    margin-bottom: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-application__img {
    margin-bottom: 5.3333333333vw;
  }
}
.card-application__title {
  color: var(--gray-black);
  margin-bottom: 0.4166666667vw;
  font-size: 1.25vw;
  font-family: var(--font-family-heading-add);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .card-application__title {
    margin-bottom: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .card-application__title {
    margin-bottom: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .card-application__title {
    margin-bottom: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .card-application__title {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .card-application__title {
    font-size: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .card-application__title {
    font-size: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .card-application__title {
    font-size: 1.0416666667vw;
    font-family: var(--font-family-heading-add);
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .card-application__title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .card-application__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .card-application__title {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 811px) {
  .card-application__title {
    font-size: 1.25vw;
    font-family: var(--font-family-heading-add);
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .card-application__title {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .card-application__title {
    font-size: 3.125vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .card-application__title {
    font-size: 5.3333333333vw;
  }
}
.card-application__text {
  color: var(--gray-dark);
  font-size: 0.9375vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .card-application__text {
    font-size: 1.317715959vw;
  }
}
@media screen and (width <= 811px) {
  .card-application__text {
    font-size: 2.34375vw;
  }
}
@media screen and (width <= 481px) {
  .card-application__text {
    font-size: 4.8vw;
  }
}
@media screen and (width <= 1401px) {
  .card-application__text {
    font-size: 0.8333333333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .card-application__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .card-application__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .card-application__text {
    font-size: 4.2666666667vw;
  }
}
.subscribe {
  background: var(--bg-gradient);
  padding-bottom: 6.25vw;
  border-bottom-left-radius: 3.125vw;
  border-bottom-right-radius: 3.125vw;
}
@media screen and (width <= 1401px) {
  .subscribe {
    padding-bottom: 7.3206442167vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe {
    padding-bottom: 7.8125vw;
  }
}
@media screen and (width <= 481px) {
  .subscribe {
    padding-bottom: 16vw;
  }
}
@media screen and (width <= 1401px) {
  .subscribe {
    border-bottom-left-radius: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe {
    border-bottom-left-radius: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .subscribe {
    border-bottom-left-radius: 10.6666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .subscribe {
    border-bottom-right-radius: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe {
    border-bottom-right-radius: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .subscribe {
    border-bottom-right-radius: 10.6666666667vw;
  }
}
.subscribe-container {
  display: flex;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .subscribe-container {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe-container {
    gap: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .subscribe-container {
    gap: 10.6666666667vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe-container {
    flex-direction: column;
  }
}
.subscribe-list {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr;
  width: 30.2083333333vw;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .subscribe-list {
    width: 30.1610541728vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe-list {
    width: 0vw;
  }
}
@media screen and (width <= 481px) {
  .subscribe-list {
    width: 0vw;
  }
}
@media screen and (width <= 1401px) {
  .subscribe-list {
    gap: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe-list {
    gap: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .subscribe-list {
    gap: 4.2666666667vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe-list {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
}
@media screen and (width <= 481px) {
  .subscribe-list {
    grid-template-columns: 1fr;
  }
}
.subscribe-block {
  flex: 1;
  height: 100%;
  color: var(--gray-white);
  background: var(--gray-darker);
  padding: 2.0833333333vw;
  border-radius: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .subscribe-block {
    padding: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe-block {
    padding: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .subscribe-block {
    padding: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .subscribe-block {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe-block {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .subscribe-block {
    border-radius: 5.3333333333vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe-block {
    position: relative;
  }
}
@media screen and (width <= 481px) {
  .subscribe-block {
    position: static;
    padding-top: 88.8vw;
    padding-bottom: 8vw;
  }
}
.subscribe-block__container {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 21.875vw;
  gap: 1.4583333333vw;
}
@media screen and (width <= 1401px) {
  .subscribe-block__container {
    width: 27.8184480234vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe-block__container {
    width: 44.2708333333vw;
  }
}
@media screen and (width <= 481px) {
  .subscribe-block__container {
    width: 0vw;
  }
}
@media screen and (width <= 1401px) {
  .subscribe-block__container {
    gap: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe-block__container {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .subscribe-block__container {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe-block__container {
    position: static;
  }
}
@media screen and (width <= 481px) {
  .subscribe-block__container {
    position: relative;
    width: 100%;
  }
}
.subscribe-block__title {
  font-size: 1.25vw;
  font-family: var(--font-family-heading-add);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .subscribe-block__title {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe-block__title {
    font-size: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .subscribe-block__title {
    font-size: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .subscribe-block__title {
    font-size: 1.0416666667vw;
    font-family: var(--font-family-heading-add);
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .subscribe-block__title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .subscribe-block__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .subscribe-block__title {
    font-size: 4.2666666667vw;
  }
}
.subscribe-block__list {
  padding-bottom: 0.625vw;
}
@media screen and (width <= 1401px) {
  .subscribe-block__list {
    padding-bottom: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe-block__list {
    padding-bottom: 0vw;
  }
}
@media screen and (width <= 481px) {
  .subscribe-block__list {
    padding-bottom: 0vw;
  }
}
.subscribe-block__item {
  display: inline-flex;
  align-items: center;
  gap: 0.625vw;
  margin-bottom: 0.8333333333vw;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .subscribe-block__item {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe-block__item {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .subscribe-block__item {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .subscribe-block__item {
    margin-bottom: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe-block__item {
    margin-bottom: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .subscribe-block__item {
    margin-bottom: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .subscribe-block__item {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe-block__item {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .subscribe-block__item {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .subscribe-block__item {
    font-size: 0.6770833333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .subscribe-block__item {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .subscribe-block__item {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .subscribe-block__item {
    font-size: 3.4666666667vw;
  }
}
.subscribe-block__item:last-child {
  margin-bottom: unset;
}
.subscribe-block__item-icon {
  flex-shrink: 0;
  color: var(--color1-dark);
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .subscribe-block__item-icon {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe-block__item-icon {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .subscribe-block__item-icon {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.subscribe-block__price {
  color: var(--gray-dark);
  background: var(--gray-white);
  padding: 1.0416666667vw;
  padding-inline: 1.4583333333vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .subscribe-block__price {
    padding: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe-block__price {
    padding: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .subscribe-block__price {
    padding: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .subscribe-block__price {
    padding-inline: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe-block__price {
    padding-inline: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .subscribe-block__price {
    padding-inline: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .subscribe-block__price {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe-block__price {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .subscribe-block__price {
    border-radius: 3.2vw;
  }
}
.subscribe-block__price-label {
  display: block;
  margin-bottom: 0.4166666667vw;
  font-size: 0.9375vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .subscribe-block__price-label {
    margin-bottom: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe-block__price-label {
    margin-bottom: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .subscribe-block__price-label {
    margin-bottom: 1.0666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .subscribe-block__price-label {
    font-size: 1.317715959vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe-block__price-label {
    font-size: 2.34375vw;
  }
}
@media screen and (width <= 481px) {
  .subscribe-block__price-label {
    font-size: 4.8vw;
  }
}
@media screen and (width <= 1401px) {
  .subscribe-block__price-label {
    font-size: 0.8333333333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .subscribe-block__price-label {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .subscribe-block__price-label {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .subscribe-block__price-label {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe-block__price-label {
    font-size: 0.6770833333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .subscribe-block__price-label {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .subscribe-block__price-label {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .subscribe-block__price-label {
    font-size: 3.4666666667vw;
  }
}
.subscribe-block__price-value {
  display: block;
  color: var(--color1-darker);
  margin-bottom: 1.0416666667vw;
  font-size: 1.6666666667vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .subscribe-block__price-value {
    margin-bottom: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe-block__price-value {
    margin-bottom: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .subscribe-block__price-value {
    margin-bottom: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .subscribe-block__price-value {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe-block__price-value {
    font-size: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .subscribe-block__price-value {
    font-size: 5.3333333333vw;
  }
}
.subscribe-block__img {
  position: absolute;
  left: 100%;
  bottom: -2.0833333333vw;
  width: 26.6666666667vw;
  height: 35.625vw;
}
@media screen and (width <= 1401px) {
  .subscribe-block__img {
    bottom: -2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe-block__img {
    bottom: 0vw;
  }
}
@media screen and (width <= 481px) {
  .subscribe-block__img {
    bottom: 0vw;
  }
}
@media screen and (width <= 1401px) {
  .subscribe-block__img {
    width: 29.2825768668vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe-block__img {
    width: 44.2708333333vw;
  }
}
@media screen and (width <= 481px) {
  .subscribe-block__img {
    width: 70.4vw;
  }
}
@media screen and (width <= 1401px) {
  .subscribe-block__img {
    height: 39.0922401171vw;
  }
}
@media screen and (width <= 811px) {
  .subscribe-block__img {
    height: 58.984375vw;
  }
}
@media screen and (width <= 481px) {
  .subscribe-block__img {
    height: 93.6vw;
  }
}
@media screen and (width <= 1401px) {
  .subscribe-block__img {
    left: calc(100% + 2.196193265vw);
  }
}
@media screen and (width <= 811px) {
  .subscribe-block__img {
    left: unset;
    right: 0;
  }
}
@media screen and (width <= 481px) {
  .subscribe-block__img {
    left: 50%;
    right: unset;
    bottom: calc(100% + 5.3333333333vw);
    transform: translateX(-50%);
  }
}
.subscribe-block__img_mobile {
  display: none;
}
.card-subscribe {
  display: flex;
  background: var(--gray-lighter);
  gap: 1.0416666667vw;
  padding: 1.4583333333vw;
  padding-right: 2.0833333333vw;
  border-radius: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .card-subscribe {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .card-subscribe {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-subscribe {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .card-subscribe {
    padding: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .card-subscribe {
    padding: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .card-subscribe {
    padding: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .card-subscribe {
    padding-right: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .card-subscribe {
    padding-right: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .card-subscribe {
    padding-right: 6.4vw;
  }
}
@media screen and (width <= 1401px) {
  .card-subscribe {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .card-subscribe {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-subscribe {
    border-radius: 5.3333333333vw;
  }
}
.card-subscribe__img {
  flex-shrink: 0;
  display: flex;
  width: 3.75vw;
  height: 3.75vw;
}
@media screen and (width <= 1401px) {
  .card-subscribe__img {
    width: 4.6852122987vw;
    height: 4.6852122987vw;
  }
}
@media screen and (width <= 811px) {
  .card-subscribe__img {
    width: 6.25vw;
    height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .card-subscribe__img {
    width: 12.8vw;
    height: 12.8vw;
  }
}
.card-subscribe__text {
  display: flex;
  flex-direction: column;
  color: var(--gray-dark);
  gap: 0.2083333333vw;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .card-subscribe__text {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .card-subscribe__text {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .card-subscribe__text {
    gap: 1.0666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .card-subscribe__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .card-subscribe__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .card-subscribe__text {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .card-subscribe__text {
    font-size: 0.6770833333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .card-subscribe__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .card-subscribe__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .card-subscribe__text {
    font-size: 3.4666666667vw;
  }
}
.card-subscribe__title {
  color: var(--gray-darker);
  font-size: 1.0416666667vw;
  font-family: var(--font-family-heading-add);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .card-subscribe__title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .card-subscribe__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .card-subscribe__title {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .card-subscribe__title {
    font-size: 0.8333333333vw;
    font-family: var(--font-family-heading-add);
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .card-subscribe__title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .card-subscribe__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .card-subscribe__title {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 811px) {
  .card-subscribe__title {
    font-size: 1.0416666667vw;
    font-family: var(--font-family-heading-add);
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .card-subscribe__title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .card-subscribe__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .card-subscribe__title {
    font-size: 4.2666666667vw;
  }
}
.benefit {
  padding-top: 6.25vw;
}
@media screen and (width <= 1401px) {
  .benefit {
    padding-top: 7.3206442167vw;
  }
}
@media screen and (width <= 811px) {
  .benefit {
    padding-top: 10.4166666667vw;
  }
}
@media screen and (width <= 481px) {
  .benefit {
    padding-top: 21.3333333333vw;
  }
}
.benefit-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .benefit-container {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .benefit-container {
    gap: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .benefit-container {
    gap: 4.2666666667vw;
  }
}
@media screen and (width <= 811px) {
  .benefit-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (width <= 481px) {
  .benefit-container {
    grid-template-columns: 1fr;
  }
}
.card-benefit {
  display: flex;
  flex-direction: column;
  background: var(--gray-lighter);
  overflow: hidden;
  border-radius: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .card-benefit {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .card-benefit {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-benefit {
    border-radius: 5.3333333333vw;
  }
}
.card-benefit__img {
  flex-shrink: 0;
  display: flex;
  height: 12.5vw;
}
@media screen and (width <= 1401px) {
  .card-benefit__img {
    height: 15.7393850659vw;
  }
}
@media screen and (width <= 811px) {
  .card-benefit__img {
    height: 33.3333333333vw;
  }
}
@media screen and (width <= 481px) {
  .card-benefit__img {
    height: 64vw;
  }
}
.card-benefit__img img {
  width: 100%;
  height: 100%;
}
.card-benefit__text {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: var(--gray-dark);
  gap: 0.4166666667vw;
  padding-top: 1.0416666667vw;
  padding-bottom: 1.4583333333vw;
  padding-inline: 1.0416666667vw;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .card-benefit__text {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .card-benefit__text {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-benefit__text {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .card-benefit__text {
    padding-top: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .card-benefit__text {
    padding-top: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .card-benefit__text {
    padding-top: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .card-benefit__text {
    padding-bottom: 2.0497803807vw;
  }
}
@media screen and (width <= 811px) {
  .card-benefit__text {
    padding-bottom: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-benefit__text {
    padding-bottom: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .card-benefit__text {
    padding-inline: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .card-benefit__text {
    padding-inline: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .card-benefit__text {
    padding-inline: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .card-benefit__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .card-benefit__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .card-benefit__text {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .card-benefit__text {
    font-size: 0.6770833333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .card-benefit__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .card-benefit__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .card-benefit__text {
    font-size: 3.4666666667vw;
  }
}
.card-benefit__title {
  color: var(--gray-black);
  font-size: 0.9375vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .card-benefit__title {
    font-size: 1.317715959vw;
  }
}
@media screen and (width <= 811px) {
  .card-benefit__title {
    font-size: 2.34375vw;
  }
}
@media screen and (width <= 481px) {
  .card-benefit__title {
    font-size: 4.8vw;
  }
}
@media screen and (width <= 1401px) {
  .card-benefit__title {
    font-size: 0.8333333333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    font-weight: 700;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .card-benefit__title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .card-benefit__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .card-benefit__title {
    font-size: 4.2666666667vw;
  }
}
.cta-container {
  position: relative;
  color: var(--gray-white);
  background: var(--gray-black);
  padding: 3.125vw;
  padding-inline: 3.125vw;
  border-radius: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .cta-container {
    padding: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .cta-container {
    padding: 3.6458333333vw;
  }
}
@media screen and (width <= 481px) {
  .cta-container {
    padding: 7.4666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .cta-container {
    padding-inline: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .cta-container {
    padding-inline: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .cta-container {
    padding-inline: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .cta-container {
    border-radius: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .cta-container {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .cta-container {
    border-radius: 5.3333333333vw;
  }
}
@media screen and (width <= 811px) {
  .cta-container {
    position: static;
  }
}
.cta-container__block {
  width: 33.3333333333vw;
}
@media screen and (width <= 1401px) {
  .cta-container__block {
    width: 43.0453879941vw;
  }
}
@media screen and (width <= 811px) {
  .cta-container__block {
    width: 0vw;
  }
}
@media screen and (width <= 481px) {
  .cta-container__block {
    width: 0vw;
  }
}
@media screen and (width <= 811px) {
  .cta-container__block {
    width: 100%;
  }
}
@media screen and (width <= 811px) {
  .cta__block {
    position: relative;
    height: 28.6458333333vw;
  }
}
@media screen and (width <= 481px) {
  .cta__block {
    height: unset;
  }
}
.cta-title {
  margin-bottom: 1.0416666667vw;
  font-size: 2.1875vw;
  font-family: var(--font-family-heading);
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .cta-title {
    margin-bottom: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .cta-title {
    margin-bottom: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .cta-title {
    margin-bottom: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .cta-title {
    font-size: 2.635431918vw;
  }
}
@media screen and (width <= 811px) {
  .cta-title {
    font-size: 3.3854166667vw;
  }
}
@media screen and (width <= 481px) {
  .cta-title {
    font-size: 6.9333333333vw;
  }
}
@media screen and (width <= 811px) {
  .cta-title {
    max-width: 50.78125vw;
  }
}
@media screen and (width <= 481px) {
  .cta-title {
    max-width: 100%;
  }
}
.cta-text {
  width: 100%;
  max-width: 25.5208333333vw;
  font-size: 0.9375vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .cta-text {
    max-width: 35.8711566618vw;
  }
}
@media screen and (width <= 811px) {
  .cta-text {
    max-width: 50.78125vw;
  }
}
@media screen and (width <= 481px) {
  .cta-text {
    max-width: 0vw;
  }
}
@media screen and (width <= 1401px) {
  .cta-text {
    font-size: 1.317715959vw;
  }
}
@media screen and (width <= 811px) {
  .cta-text {
    font-size: 2.34375vw;
  }
}
@media screen and (width <= 481px) {
  .cta-text {
    font-size: 4.8vw;
  }
}
@media screen and (width <= 811px) {
  .cta-text {
    font-size: 0.8333333333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .cta-text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .cta-text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .cta-text {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 481px) {
  .cta-text {
    max-width: 100%;
    margin-bottom: 5.3333333333vw;
  }
}
.cta-qr {
  max-width: 27.0833333333vw;
  width: 100%;
  margin-top: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .cta-qr {
    margin-top: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .cta-qr {
    margin-top: 0vw;
  }
}
@media screen and (width <= 481px) {
  .cta-qr {
    margin-top: 0vw;
  }
}
@media screen and (width <= 1401px) {
  .cta-qr {
    max-width: 38.0673499268vw;
  }
}
@media screen and (width <= 811px) {
  .cta-qr {
    max-width: 100%;
  }
}
.cta-img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  width: 37.5vw;
}
@media screen and (width <= 1401px) {
  .cta-img {
    width: 47.4377745242vw;
  }
}
@media screen and (width <= 811px) {
  .cta-img {
    width: 47.0052083333vw;
  }
}
@media screen and (width <= 481px) {
  .cta-img {
    width: 0vw;
  }
}
@media screen and (width <= 481px) {
  .cta-img {
    position: static;
    width: 100%;
  }
}
.cta-img_mobile {
  display: none;
}
.connect-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .connect-container {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .connect-container {
    gap: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .connect-container {
    gap: 4.2666666667vw;
  }
}
@media screen and (width <= 811px) {
  .connect-container {
    row-gap: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .connect-container {
    grid-template-columns: 1fr;
    row-gap: 6.4vw;
  }
}
.card-connect {
  display: flex;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .card-connect {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .card-connect {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .card-connect {
    gap: 3.2vw;
  }
}
@media screen and (width <= 811px) {
  .card-connect {
    flex-direction: column;
  }
}
.card-connect__text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: var(--gray-black);
  background: var(--gray-lighter);
  gap: 0.4166666667vw;
  padding: 1.4583333333vw;
  border-radius: 0.625vw;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .card-connect__text {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .card-connect__text {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-connect__text {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .card-connect__text {
    padding: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .card-connect__text {
    padding: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-connect__text {
    padding: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .card-connect__text {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .card-connect__text {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .card-connect__text {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .card-connect__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .card-connect__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .card-connect__text {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .card-connect__text {
    font-size: 0.6770833333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .card-connect__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .card-connect__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .card-connect__text {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 811px) {
  .card-connect__text {
    height: 25vw;
  }
}
@media screen and (width <= 481px) {
  .card-connect__text {
    height: auto;
  }
}
.card-connect__title {
  display: inline-flex;
  align-items: center;
  gap: 0.625vw;
  font-size: 1.0416666667vw;
  font-family: var(--font-family-heading-add);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .card-connect__title {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .card-connect__title {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .card-connect__title {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .card-connect__title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .card-connect__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .card-connect__title {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .card-connect__title {
    font-size: 0.8333333333vw;
    font-family: var(--font-family-heading-add);
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .card-connect__title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .card-connect__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .card-connect__title {
    font-size: 4.2666666667vw;
  }
}
.card-connect__index {
  color: var(--color1-light);
  font-size: 0.9375vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .card-connect__index {
    font-size: 1.317715959vw;
  }
}
@media screen and (width <= 811px) {
  .card-connect__index {
    font-size: 2.34375vw;
  }
}
@media screen and (width <= 481px) {
  .card-connect__index {
    font-size: 4.8vw;
  }
}
@media screen and (width <= 1401px) {
  .card-connect__index {
    font-size: 0.8333333333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .card-connect__index {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .card-connect__index {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .card-connect__index {
    font-size: 4.2666666667vw;
  }
}
.card-connect__btn {
  margin-top: 0.625vw;
}
@media screen and (width <= 1401px) {
  .card-connect__btn {
    margin-top: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .card-connect__btn {
    margin-top: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .card-connect__btn {
    margin-top: 3.2vw;
  }
}
.card-connect__img {
  flex-shrink: 0;
  display: flex;
  overflow: hidden;
  width: 16.0416666667vw;
  height: 12.5vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .card-connect__img {
    width: 20.4978038067vw;
  }
}
@media screen and (width <= 811px) {
  .card-connect__img {
    width: 0vw;
  }
}
@media screen and (width <= 481px) {
  .card-connect__img {
    width: 0vw;
  }
}
@media screen and (width <= 1401px) {
  .card-connect__img {
    height: 15.9590043924vw;
  }
}
@media screen and (width <= 811px) {
  .card-connect__img {
    height: 34.6354166667vw;
  }
}
@media screen and (width <= 481px) {
  .card-connect__img {
    height: 64vw;
  }
}
@media screen and (width <= 1401px) {
  .card-connect__img {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .card-connect__img {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .card-connect__img {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 811px) {
  .card-connect__img {
    width: 100%;
  }
}
.card-connect__img img {
  width: 100%;
  height: 100%;
}
.compare {
  position: relative;
  background: var(--bg-gradient);
  overflow: hidden;
  padding-top: 120px 100px / 120px 100px * 01 / 1920 * 100vw;
  padding-bottom: 6.25vw;
  border-bottom-left-radius: 3.125vw;
  border-bottom-right-radius: 3.125vw;
}
@media screen and (width <= 1401px) {
  .compare {
    padding-top: 4.39238653vw;
  }
}
@media screen and (width <= 811px) {
  .compare {
    padding-top: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .compare {
    padding-top: 120px 100px / 120px 100px * 01 / 375 * 100vw;
  }
}
@media screen and (width <= 1401px) {
  .compare {
    padding-bottom: 7.3206442167vw;
  }
}
@media screen and (width <= 811px) {
  .compare {
    padding-bottom: 7.8125vw;
  }
}
@media screen and (width <= 481px) {
  .compare {
    padding-bottom: 0vw;
  }
}
@media screen and (width <= 1401px) {
  .compare {
    border-bottom-left-radius: 4.39238653vw;
  }
}
@media screen and (width <= 811px) {
  .compare {
    border-bottom-left-radius: 7.8125vw;
  }
}
@media screen and (width <= 481px) {
  .compare {
    border-bottom-left-radius: 16vw;
  }
}
@media screen and (width <= 1401px) {
  .compare {
    border-bottom-right-radius: 4.39238653vw;
  }
}
@media screen and (width <= 811px) {
  .compare {
    border-bottom-right-radius: 7.8125vw;
  }
}
@media screen and (width <= 481px) {
  .compare {
    border-bottom-right-radius: 16vw;
  }
}
.compare-container {
  max-width: 48.9583333333vw;
}
@media screen and (width <= 1401px) {
  .compare-container {
    max-width: 53.8067349927vw;
  }
}
@media screen and (width <= 811px) {
  .compare-container {
    max-width: 54.6875vw;
  }
}
@media screen and (width <= 481px) {
  .compare-container {
    max-width: 0vw;
  }
}
@media screen and (width <= 481px) {
  .compare-container {
    max-width: 100%;
  }
}
.compare-title {
  margin-bottom: 3.125vw;
}
@media screen and (width <= 1401px) {
  .compare-title {
    margin-bottom: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .compare-title {
    margin-bottom: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .compare-title {
    margin-bottom: 10.6666666667vw;
  }
}
.compare-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .compare-blocks {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .compare-blocks {
    gap: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .compare-blocks {
    gap: 4.2666666667vw;
  }
}
@media screen and (width <= 811px) {
  .compare-blocks {
    grid-template-columns: 1fr;
  }
}
.compare-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 38.0208333333vw;
}
@media screen and (width <= 1401px) {
  .compare-img {
    width: 42.8989751098vw;
  }
}
@media screen and (width <= 811px) {
  .compare-img {
    width: 60.15625vw;
  }
}
@media screen and (width <= 481px) {
  .compare-img {
    width: 0vw;
  }
}
@media screen and (width <= 811px) {
  .compare-img {
    top: unset;
    bottom: 4.9479166667vw;
    right: -8.0729166667vw;
    height: 72.9166666667vw;
  }
}
@media screen and (width <= 481px) {
  .compare-img {
    position: static;
    width: 100vw;
    height: 106.6666666667vw;
    margin-left: -4.2666666667vw;
    margin-right: -4.2666666667vw;
  }
}
.compare-img img {
  width: 100%;
  height: 100%;
}
.card-compare {
  padding: 1.4583333333vw;
  padding-inline: 1.0416666667vw;
  border-radius: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .card-compare {
    padding: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .card-compare {
    padding: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-compare {
    padding: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .card-compare {
    padding-inline: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .card-compare {
    padding-inline: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .card-compare {
    padding-inline: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .card-compare {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .card-compare {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-compare {
    border-radius: 5.3333333333vw;
  }
}
.card-compare__title {
  text-align: center;
  margin-bottom: 1.4583333333vw;
  font-size: 1.25vw;
  font-family: var(--font-family-heading-add);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .card-compare__title {
    margin-bottom: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .card-compare__title {
    margin-bottom: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .card-compare__title {
    margin-bottom: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .card-compare__title {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .card-compare__title {
    font-size: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .card-compare__title {
    font-size: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .card-compare__title {
    font-size: 0.8333333333vw;
    font-family: var(--font-family-heading-add);
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .card-compare__title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .card-compare__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .card-compare__title {
    font-size: 4.2666666667vw;
  }
}
.card-compare__item {
  display: grid;
  align-items: center;
  grid-template-columns: 8.3333333333vw 1fr;
  color: var(--gray-black);
  background: var(--gray-lighter);
  gap: 0.8333333333vw;
  padding: 0.625vw;
  padding-inline: 1.0416666667vw;
  margin-bottom: 0.625vw;
  border-radius: 0.625vw;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .card-compare__item {
    gap: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .card-compare__item {
    gap: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .card-compare__item {
    gap: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .card-compare__item {
    padding: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .card-compare__item {
    padding: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-compare__item {
    padding: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .card-compare__item {
    padding-inline: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .card-compare__item {
    padding-inline: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .card-compare__item {
    padding-inline: 2.9333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .card-compare__item {
    margin-bottom: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .card-compare__item {
    margin-bottom: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-compare__item {
    margin-bottom: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .card-compare__item {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .card-compare__item {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-compare__item {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .card-compare__item {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .card-compare__item {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .card-compare__item {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .card-compare__item {
    grid-template-columns: 8.78477306vw 1fr;
    font-size: 0.6770833333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .card-compare__item {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .card-compare__item {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .card-compare__item {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 811px) {
  .card-compare__item {
    grid-template-columns: 15.625vw 1fr;
  }
}
@media screen and (width <= 481px) {
  .card-compare__item {
    grid-template-columns: 32vw 1fr;
  }
}
.card-compare__item:last-child {
  margin-bottom: unset;
}
.card-compare__item_left {
  display: flex;
  align-items: center;
  color: var(--gray-dark);
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .card-compare__item_left {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .card-compare__item_left {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-compare__item_left {
    gap: 2.1333333333vw;
  }
}
.card-compare__item-icon {
  flex-shrink: 0;
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .card-compare__item-icon {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .card-compare__item-icon {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .card-compare__item-icon {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.card-compare_dark {
  background: var(--gray-darker);
}
.card-compare_dark .card-compare__title {
  color: var(--gray-white);
}
.card-compare_light {
  background: var(--gray-white);
}
.card-compare_light .card-compare__title {
  color: var(--gray-darker);
}
.about-title {
  margin-bottom: 4.1666666667vw;
}
@media screen and (width <= 1401px) {
  .about-title {
    margin-bottom: 4.39238653vw;
  }
}
@media screen and (width <= 811px) {
  .about-title {
    margin-bottom: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .about-title {
    margin-bottom: 10.6666666667vw;
  }
}
.about-container {
  display: flex;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .about-container {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .about-container {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .about-container {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .about-container {
    align-items: flex-start;
  }
}
@media screen and (width <= 811px) {
  .about-container {
    flex-direction: column;
  }
}
.about-block {
  flex-shrink: 0;
  background: var(--gray-light);
  width: 36.4583333333vw;
  padding: 2.0833333333vw;
  border-radius: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .about-block {
    width: 45.9736456808vw;
  }
}
@media screen and (width <= 811px) {
  .about-block {
    width: 91.1458333333vw;
  }
}
@media screen and (width <= 481px) {
  .about-block {
    width: 186.6666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .about-block {
    padding: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .about-block {
    padding: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .about-block {
    padding: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .about-block {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .about-block {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .about-block {
    border-radius: 5.3333333333vw;
  }
}
@media screen and (width <= 811px) {
  .about-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.0833333333vw;
    width: 100%;
  }
}
@media screen and (width <= 481px) {
  .about-block {
    display: block;
  }
}
.about-block__header {
  display: flex;
  flex-direction: column;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .about-block__header {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .about-block__header {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .about-block__header {
    gap: 5.3333333333vw;
  }
}
.about-block__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-lighter);
  padding-top: 0.8333333333vw;
  padding-bottom: 1.0416666667vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .about-block__logo {
    padding-top: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .about-block__logo {
    padding-top: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .about-block__logo {
    padding-top: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .about-block__logo {
    padding-bottom: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .about-block__logo {
    padding-bottom: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .about-block__logo {
    padding-bottom: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .about-block__logo {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .about-block__logo {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .about-block__logo {
    border-radius: 3.2vw;
  }
}
.about-block__text {
  color: var(--gray-black);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .about-block__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .about-block__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .about-block__text {
    font-size: 4.2666666667vw;
  }
}
.about-block__body {
  display: flex;
  flex-direction: column;
  border-top: solid var(--gray-lighter);
  gap: 0.8333333333vw;
  margin-top: 1.0416666667vw;
  padding-top: 1.0416666667vw;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .about-block__body {
    gap: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .about-block__body {
    gap: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .about-block__body {
    gap: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .about-block__body {
    margin-top: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .about-block__body {
    margin-top: 0vw;
  }
}
@media screen and (width <= 481px) {
  .about-block__body {
    margin-top: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .about-block__body {
    padding-top: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .about-block__body {
    padding-top: 0vw;
  }
}
@media screen and (width <= 481px) {
  .about-block__body {
    padding-top: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .about-block__body {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .about-block__body {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .about-block__body {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .about-block__body {
    border: unset;
  }
}
@media screen and (width <= 481px) {
  .about-block__body {
    border-top: solid var(--gray-lighter);
  }
}
.about-block__title {
  color: var(--gray-darker);
  font-size: 0.9375vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .about-block__title {
    font-size: 1.317715959vw;
  }
}
@media screen and (width <= 811px) {
  .about-block__title {
    font-size: 2.34375vw;
  }
}
@media screen and (width <= 481px) {
  .about-block__title {
    font-size: 4.8vw;
  }
}
.about-block__footer {
  border-top: solid var(--gray-lighter);
  margin-top: 1.0416666667vw;
  padding-top: 1.0416666667vw;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .about-block__footer {
    margin-top: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .about-block__footer {
    margin-top: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .about-block__footer {
    margin-top: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .about-block__footer {
    padding-top: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .about-block__footer {
    padding-top: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .about-block__footer {
    padding-top: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .about-block__footer {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .about-block__footer {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .about-block__footer {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .about-block__footer {
    grid-column: 1/3;
  }
}
.about-block__footer-block {
  display: flex;
  background: var(--gray-lighter);
  gap: 0.625vw;
  padding: 0.625vw;
  padding-inline: 1.0416666667vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .about-block__footer-block {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .about-block__footer-block {
    gap: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .about-block__footer-block {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .about-block__footer-block {
    padding: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .about-block__footer-block {
    padding: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .about-block__footer-block {
    padding: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .about-block__footer-block {
    padding-inline: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .about-block__footer-block {
    padding-inline: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .about-block__footer-block {
    padding-inline: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .about-block__footer-block {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .about-block__footer-block {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .about-block__footer-block {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 481px) {
  .about-block__footer-block {
    flex-direction: column;
  }
}
.about-block__footer-text {
  flex: 1;
  color: var(--gray-dark);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .about-block__footer-text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .about-block__footer-text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .about-block__footer-text {
    font-size: 4.2666666667vw;
  }
}
.about-logo {
  width: 17.03125vw;
  height: 2.9166666667vw;
}
@media screen and (width <= 1401px) {
  .about-logo {
    width: 23.9385065886vw;
  }
}
@media screen and (width <= 811px) {
  .about-logo {
    width: 39.0625vw;
  }
}
@media screen and (width <= 481px) {
  .about-logo {
    width: 69.8666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .about-logo {
    height: 4.0995607613vw;
  }
}
@media screen and (width <= 811px) {
  .about-logo {
    height: 5.859375vw;
  }
}
@media screen and (width <= 481px) {
  .about-logo {
    height: 10.6666666667vw;
  }
}
.about-logo img {
  width: 100%;
  height: 100%;
}
@media screen and (width <= 811px) {
  .about-logo img {
    height: auto;
  }
}
.about-list {
  width: 100%;
  max-width: 26.0416666667vw;
}
@media screen and (width <= 1401px) {
  .about-list {
    max-width: 31.3323572474vw;
  }
}
@media screen and (width <= 811px) {
  .about-list {
    max-width: 65.1041666667vw;
  }
}
@media screen and (width <= 481px) {
  .about-list {
    max-width: 133.3333333333vw;
  }
}
@media screen and (width <= 811px) {
  .about-list {
    max-width: 100%;
  }
}
.about-list__item {
  display: inline-flex;
  align-items: center;
  gap: 0.625vw;
  margin-bottom: 0.625vw;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .about-list__item {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .about-list__item {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .about-list__item {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .about-list__item {
    margin-bottom: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .about-list__item {
    margin-bottom: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .about-list__item {
    margin-bottom: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .about-list__item {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .about-list__item {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .about-list__item {
    font-size: 4.2666666667vw;
  }
}
.about-list__item:last-child {
  margin-bottom: unset;
}
.about-list__item-icon {
  flex-shrink: 0;
  color: var(--color1-dark);
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .about-list__item-icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .about-list__item-icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .about-list__item-icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .about-cards {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .about-cards {
    gap: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .about-cards {
    gap: 4.2666666667vw;
  }
}
@media screen and (width <= 481px) {
  .about-cards {
    grid-template-columns: 1fr;
  }
}
.card-about {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: var(--gray-lighter);
  overflow: hidden;
  min-height: 13.5416666667vw;
  padding: 1.0416666667vw;
  border-radius: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .card-about {
    min-height: 19.0336749634vw;
  }
}
@media screen and (width <= 811px) {
  .card-about {
    min-height: 35.8072916667vw;
  }
}
@media screen and (width <= 481px) {
  .card-about {
    min-height: 69.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .card-about {
    padding: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .card-about {
    padding: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .card-about {
    padding: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .card-about {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .card-about {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-about {
    border-radius: 5.3333333333vw;
  }
}
@media screen and (width <= 481px) {
  .card-about {
    min-height: unset;
    padding-top: 3.2vw;
  }
}
@media screen and (width <= 481px) {
  .card-about__only-img {
    min-height: 69.3333333333vw;
  }
}
.card-about__only-img .card-about__img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.card-about__only-img .card-about__img img {
  width: 100%;
  height: 100%;
}
.card-about__img {
  flex-shrink: 0;
  display: flex;
  width: 3.3333333333vw;
  height: 3.3333333333vw;
  margin-bottom: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .card-about__img {
    width: 3.513909224vw;
    height: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .card-about__img {
    width: 6.25vw;
    height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .card-about__img {
    width: 12.8vw;
    height: 12.8vw;
  }
}
@media screen and (width <= 1401px) {
  .card-about__img {
    margin-bottom: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .card-about__img {
    margin-bottom: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .card-about__img {
    margin-bottom: 4.2666666667vw;
  }
}
.card-about__title {
  color: var(--gray-black);
  margin-bottom: 0.4166666667vw;
  font-size: 1.0416666667vw;
  font-family: var(--font-family-heading-add);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .card-about__title {
    margin-bottom: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .card-about__title {
    margin-bottom: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .card-about__title {
    margin-bottom: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .card-about__title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .card-about__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .card-about__title {
    font-size: 4.2666666667vw;
  }
}
.card-about__text {
  color: var(--gray-dark);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .card-about__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .card-about__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .card-about__text {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .card-about__text {
    font-size: 0.6770833333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .card-about__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .card-about__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .card-about__text {
    font-size: 3.4666666667vw;
  }
}
.faq-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .faq-container {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .faq-container {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .faq-container {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 811px) {
  .faq-container {
    grid-template-columns: 1fr;
  }
}
.accordion {
  width: 100%;
  display: grid;
  grid-template-rows: min-content 0fr;
  overflow: hidden;
  border: solid transparent;
  touch-action: manipulation;
  transition: grid-template-rows 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), border-color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  border-width: max(0.1041666667vw, 2px);
  /*----------STYLES-----------*/
  /*----------SIZES-----------*/
  /*----------THEME-----------*/
}
@media screen and (width <= 1401px) {
  .accordion {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .accordion {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .accordion {
    border-width: max(0.5333333333vw, 2px);
  }
}
.accordion.active {
  grid-template-rows: min-content 1fr;
}
@media (hover: hover) and (pointer: fine) {
  .accordion:hover:not(:has(.accordion__content:hover)) {
    cursor: pointer;
  }
}
.accordion__header {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
.accordion__header-wrapper {
  display: inline-flex;
  align-items: center;
}
.accordion__icon {
  flex-shrink: 0;
  color: var(--gray-darker);
  width: 1.25vw;
  height: 1.25vw;
  transition: color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .accordion__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .accordion__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .accordion__icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.accordion__text-wrapper {
  display: flex;
  flex-direction: column;
}
.accordion__title {
  color: var(--gray-darker);
  transition: color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.accordion__subtitle {
  color: var(--gray-medium);
}
.accordion__controls-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .accordion__controls-wrapper {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .accordion__controls-wrapper {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .accordion__controls-wrapper {
    gap: 2.1333333333vw;
  }
}
.accordion__comment {
  color: var(--gray-medium);
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .accordion__comment {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .accordion__comment {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .accordion__comment {
    font-size: 3.4666666667vw;
  }
}
.accordion__badge {
  height: 0.8333333333vw;
  padding-inline: 0.2083333333vw;
  color: var(--gray-white);
  background: var(--error-dark);
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .accordion__badge {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .accordion__badge {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .accordion__badge {
    font-size: 2.9333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .accordion__badge {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .accordion__badge {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .accordion__badge {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .accordion__badge {
    height: 1.1713030747vw;
    padding-inline: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .accordion__badge {
    height: 2.0833333333vw;
    padding-inline: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .accordion__badge {
    height: 4.2666666667vw;
    padding-inline: 1.0666666667vw;
  }
}
.accordion__button {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.accordion__button.active .accordion__chevron {
  transform: rotateX(180deg);
}
.accordion__chevron {
  flex-shrink: 0;
  color: var(--gray-darker);
  width: 1.25vw;
  height: 1.25vw;
  transition: transform 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .accordion__chevron {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .accordion__chevron {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .accordion__chevron {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.accordion__content {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.accordion__description {
  color: var(--gray-dark);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .accordion__description {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .accordion__description {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .accordion__description {
    font-size: 4.2666666667vw;
  }
}
.accordion-filled {
  background: var(--gray-lighter);
}
@media (hover: hover) and (pointer: fine) {
  .accordion-filled:hover:not(:has(.accordion__content:hover)) {
    border-color: var(--gray-light);
  }
}
.accordion-filled:active:not(:has(.accordion__content:active)) {
  background: var(--gray-light);
  border-color: var(--gray-light);
}
.accordion-underline {
  background: transparent;
  border-radius: 0 !important;
  border-bottom-color: var(--gray-light);
}
@media (hover: hover) and (pointer: fine) {
  .accordion-underline:hover:not(:has(.accordion__content:hover)) {
    border-bottom-color: var(--color1-main);
  }
  .accordion-underline:hover:not(:has(.accordion__content:hover)) .accordion__icon, .accordion-underline:hover:not(:has(.accordion__content:hover)) .accordion__title, .accordion-underline:hover:not(:has(.accordion__content:hover)) .accordion__chevron {
    color: var(--color1-main);
  }
}
.accordion-underline:active:not(:has(.accordion__content:active)) {
  border-bottom-color: var(--color1-dark);
}
.accordion-underline:active:not(:has(.accordion__content:active)) .accordion__icon, .accordion-underline:active:not(:has(.accordion__content:active)) .accordion__title, .accordion-underline:active:not(:has(.accordion__content:active)) .accordion__chevron {
  color: var(--color1-dark);
}
.accordion-button {
  background: var(--gray-lighter);
}
.accordion-button .accordion__button {
  background: var(--gray-black);
  width: 2.0833333333vw;
  height: 2.0833333333vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .accordion-button .accordion__button {
    width: 2.9282576867vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-button .accordion__button {
    width: 5.2083333333vw;
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-button .accordion__button {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .accordion-button .accordion__button {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-button .accordion__button {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-button .accordion__button {
    border-radius: 3.2vw;
  }
}
.accordion-button .accordion__chevron {
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .accordion-button:hover:not(:has(.accordion__content:hover)) {
    border-color: var(--gray-light);
  }
  .accordion-button:hover:not(:has(.accordion__content:hover)) .accordion__button {
    background: var(--gray-dark);
  }
}
.accordion-button:active:not(:has(.accordion__content:active)) {
  background: var(--gray-light);
  border-color: var(--gray-light);
}
.accordion-button:active:not(:has(.accordion__content:active)) .accordion__button {
  background: var(--gray-darker);
}
.accordion-size_l {
  padding: 1.25vw;
  border-radius: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .accordion-size_l {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_l {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_l {
    border-radius: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .accordion-size_l {
    padding: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_l {
    padding: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_l {
    padding: 6.4vw;
  }
}
.accordion-size_l .accordion__header-wrapper {
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .accordion-size_l .accordion__header-wrapper {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_l .accordion__header-wrapper {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_l .accordion__header-wrapper {
    gap: 5.3333333333vw;
  }
}
.accordion-size_l .accordion__text-wrapper {
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .accordion-size_l .accordion__text-wrapper {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_l .accordion__text-wrapper {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_l .accordion__text-wrapper {
    gap: 2.1333333333vw;
  }
}
.accordion-size_l .accordion__title {
  font-size: 1.0416666667vw;
  font-family: var(--font-family-heading-add);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .accordion-size_l .accordion__title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_l .accordion__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_l .accordion__title {
    font-size: 4.2666666667vw;
  }
}
.accordion-size_l .accordion__subtitle {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .accordion-size_l .accordion__subtitle {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_l .accordion__subtitle {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_l .accordion__subtitle {
    font-size: 3.4666666667vw;
  }
}
.accordion-size_l .accordion__description {
  margin-top: 1.25vw;
}
@media screen and (width <= 1401px) {
  .accordion-size_l .accordion__description {
    margin-top: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_l .accordion__description {
    margin-top: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_l .accordion__description {
    margin-top: 6.4vw;
  }
}
.accordion-size_m {
  padding: 1.0416666667vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .accordion-size_m {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_m {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_m {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .accordion-size_m {
    padding: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_m {
    padding: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_m {
    padding: 5.3333333333vw;
  }
}
.accordion-size_m .accordion__header-wrapper {
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .accordion-size_m .accordion__header-wrapper {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_m .accordion__header-wrapper {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_m .accordion__header-wrapper {
    gap: 5.3333333333vw;
  }
}
.accordion-size_m .accordion__text-wrapper {
  gap: 0;
}
.accordion-size_m .accordion__title {
  font-size: 0.9375vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .accordion-size_m .accordion__title {
    font-size: 1.317715959vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_m .accordion__title {
    font-size: 2.34375vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_m .accordion__title {
    font-size: 4.8vw;
  }
}
.accordion-size_m .accordion__subtitle {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .accordion-size_m .accordion__subtitle {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_m .accordion__subtitle {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_m .accordion__subtitle {
    font-size: 3.4666666667vw;
  }
}
.accordion-size_m .accordion__description {
  margin-top: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .accordion-size_m .accordion__description {
    margin-top: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_m .accordion__description {
    margin-top: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_m .accordion__description {
    margin-top: 5.3333333333vw;
  }
}
.accordion-size_s {
  padding: 0.8333333333vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .accordion-size_s {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_s {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_s {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .accordion-size_s {
    padding: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_s {
    padding: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_s {
    padding: 4.2666666667vw;
  }
}
.accordion-size_s .accordion__header-wrapper {
  gap: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .accordion-size_s .accordion__header-wrapper {
    gap: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_s .accordion__header-wrapper {
    gap: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_s .accordion__header-wrapper {
    gap: 4.2666666667vw;
  }
}
.accordion-size_s .accordion__text-wrapper {
  gap: 0;
}
.accordion-size_s .accordion__title {
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .accordion-size_s .accordion__title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_s .accordion__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_s .accordion__title {
    font-size: 4.2666666667vw;
  }
}
.accordion-size_s .accordion__subtitle {
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .accordion-size_s .accordion__subtitle {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_s .accordion__subtitle {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_s .accordion__subtitle {
    font-size: 3.4666666667vw;
  }
}
.accordion-size_s .accordion__description {
  margin-top: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .accordion-size_s .accordion__description {
    margin-top: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-size_s .accordion__description {
    margin-top: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-size_s .accordion__description {
    margin-top: 4.2666666667vw;
  }
}
.accordion-theme_dark.accordion-filled {
  background: var(--gray-dark);
}
@media (hover: hover) and (pointer: fine) {
  .accordion-theme_dark.accordion-filled:hover:not(:has(.accordion__content:hover)) {
    border-color: var(--gray-light);
  }
}
.accordion-theme_dark.accordion-filled:active:not(:has(.accordion__content:active)) {
  background: var(--gray-darker);
  border-color: var(--gray-light);
}
.accordion-theme_dark.accordion-filled .accordion__title, .accordion-theme_dark.accordion-filled .accordion__chevron, .accordion-theme_dark.accordion-filled .accordion__icon, .accordion-theme_dark.accordion-filled .accordion__description {
  color: var(--gray-white);
}
.accordion-theme_dark.accordion-filled .accordion__subtitle, .accordion-theme_dark.accordion-filled .accordion__comment {
  color: var(--gray-light);
}
.accordion-theme_dark.accordion-underline {
  border-bottom-color: var(--gray-dark);
}
.accordion-theme_dark.accordion-underline .accordion__title, .accordion-theme_dark.accordion-underline .accordion__chevron, .accordion-theme_dark.accordion-underline .accordion__icon, .accordion-theme_dark.accordion-underline .accordion__description {
  color: var(--gray-white);
}
.accordion-theme_dark.accordion-underline .accordion__subtitle, .accordion-theme_dark.accordion-underline .accordion__comment {
  color: var(--gray-light);
}
@media (hover: hover) and (pointer: fine) {
  .accordion-theme_dark.accordion-underline:hover:not(:has(.accordion__content:hover)) {
    border-bottom-color: var(--color1-main);
  }
  .accordion-theme_dark.accordion-underline:hover:not(:has(.accordion__content:hover)) .accordion__icon, .accordion-theme_dark.accordion-underline:hover:not(:has(.accordion__content:hover)) .accordion__title, .accordion-theme_dark.accordion-underline:hover:not(:has(.accordion__content:hover)) .accordion__chevron {
    color: var(--color1-main);
  }
}
.accordion-theme_dark.accordion-underline:active:not(:has(.accordion__content:active)) {
  border-bottom-color: var(--color1-dark);
}
.accordion-theme_dark.accordion-underline:active:not(:has(.accordion__content:active)) .accordion__icon, .accordion-theme_dark.accordion-underline:active:not(:has(.accordion__content:active)) .accordion__title, .accordion-theme_dark.accordion-underline:active:not(:has(.accordion__content:active)) .accordion__chevron {
  color: var(--color1-dark);
}
.accordion-theme_dark.accordion-button {
  background: var(--gray-dark);
}
.accordion-theme_dark.accordion-button .accordion__button {
  background: var(--gray-white);
  width: 2.0833333333vw;
  height: 2.0833333333vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .accordion-theme_dark.accordion-button .accordion__button {
    width: 2.9282576867vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-theme_dark.accordion-button .accordion__button {
    width: 5.2083333333vw;
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-theme_dark.accordion-button .accordion__button {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .accordion-theme_dark.accordion-button .accordion__button {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .accordion-theme_dark.accordion-button .accordion__button {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .accordion-theme_dark.accordion-button .accordion__button {
    border-radius: 3.2vw;
  }
}
.accordion-theme_dark.accordion-button .accordion__chevron {
  color: var(--gray-darker);
}
.accordion-theme_dark.accordion-button .accordion__title, .accordion-theme_dark.accordion-button .accordion__icon, .accordion-theme_dark.accordion-button .accordion__description {
  color: var(--gray-white);
}
.accordion-theme_dark.accordion-button .accordion__subtitle, .accordion-theme_dark.accordion-button .accordion__comment {
  color: var(--gray-light);
}
@media (hover: hover) and (pointer: fine) {
  .accordion-theme_dark.accordion-button:hover:not(:has(.accordion__content:hover)) {
    border-color: var(--gray-light);
  }
  .accordion-theme_dark.accordion-button:hover:not(:has(.accordion__content:hover)) .accordion__button {
    background: var(--gray-light);
  }
}
.accordion-theme_dark.accordion-button:active:not(:has(.accordion__content:active)) {
  background: var(--gray-darker);
  border-color: var(--gray-light);
}
.accordion-theme_dark.accordion-button:active:not(:has(.accordion__content:active)) .accordion__button {
  background: var(--gray-medium);
}
.accordion-theme_dark.accordion-button:active:not(:has(.accordion__content:active)) .accordion__chevron {
  color: var(--gray-white);
}
.feedback {
  color: var(--gray-white);
  background: var(--gray-black);
  padding-top: 6.25vw;
  border-top-left-radius: 3.125vw;
  border-top-right-radius: 3.125vw;
}
@media screen and (width <= 1401px) {
  .feedback {
    padding-top: 7.3206442167vw;
  }
}
@media screen and (width <= 811px) {
  .feedback {
    padding-top: 10.4166666667vw;
  }
}
@media screen and (width <= 481px) {
  .feedback {
    padding-top: 21.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .feedback {
    border-top-left-radius: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .feedback {
    border-top-left-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .feedback {
    border-top-left-radius: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .feedback {
    border-top-right-radius: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .feedback {
    border-top-right-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .feedback {
    border-top-right-radius: 5.3333333333vw;
  }
}
.feedback-title {
  color: var(--gray-white);
  margin-bottom: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .feedback-title {
    margin-bottom: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .feedback-title {
    margin-bottom: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .feedback-title {
    margin-bottom: 10.6666666667vw;
  }
}
.feedback-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .feedback-container {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .feedback-container {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .feedback-container {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 481px) {
  .feedback-container {
    grid-template-columns: 1fr;
  }
}
.feedback-block {
  flex-shrink: 0;
  background: var(--gray-darker);
  padding: 2.0833333333vw;
  border-radius: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .feedback-block {
    padding: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .feedback-block {
    padding: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .feedback-block {
    padding: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .feedback-block {
    border-radius: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .feedback-block {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .feedback-block {
    border-radius: 5.3333333333vw;
  }
}
.feedback-block__title {
  font-size: 1.25vw;
  font-family: var(--font-family-heading-add);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .feedback-block__title {
    font-size: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .feedback-block__title {
    font-size: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .feedback-block__title {
    font-size: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .feedback-block__title {
    font-size: 1.0416666667vw;
    font-family: var(--font-family-heading-add);
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .feedback-block__title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .feedback-block__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .feedback-block__title {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 811px) {
  .feedback-block__title {
    font-size: 0.8333333333vw;
    font-family: var(--font-family-heading-add);
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .feedback-block__title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .feedback-block__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .feedback-block__title {
    font-size: 4.2666666667vw;
  }
}
.feedback-block__body {
  border-top: solid var(--gray-lighter);
  margin-top: 1.0416666667vw;
  padding-top: 1.0416666667vw;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .feedback-block__body {
    margin-top: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .feedback-block__body {
    margin-top: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .feedback-block__body {
    margin-top: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .feedback-block__body {
    padding-top: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .feedback-block__body {
    padding-top: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .feedback-block__body {
    padding-top: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .feedback-block__body {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .feedback-block__body {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .feedback-block__body {
    border-width: max(0.5333333333vw, 2px);
  }
}
.feedback-block__footer {
  padding-top: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .feedback-block__footer {
    padding-top: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .feedback-block__footer {
    padding-top: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .feedback-block__footer {
    padding-top: 5.3333333333vw;
  }
}
.feedback-block__footer-block {
  display: flex;
  background: var(--gray-dark);
  gap: 0.625vw;
  padding: 0.625vw;
  padding-inline: 1.0416666667vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .feedback-block__footer-block {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .feedback-block__footer-block {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .feedback-block__footer-block {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .feedback-block__footer-block {
    padding: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .feedback-block__footer-block {
    padding: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .feedback-block__footer-block {
    padding: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .feedback-block__footer-block {
    padding-inline: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .feedback-block__footer-block {
    padding-inline: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .feedback-block__footer-block {
    padding-inline: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .feedback-block__footer-block {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .feedback-block__footer-block {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .feedback-block__footer-block {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 811px) {
  .feedback-block__footer-block {
    flex-direction: column;
  }
}
.feedback-block__footer-text {
  flex: 1;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .feedback-block__footer-text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .feedback-block__footer-text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .feedback-block__footer-text {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 811px) {
  .feedback-block__footer-text {
    font-size: 0.6770833333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .feedback-block__footer-text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .feedback-block__footer-text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .feedback-block__footer-text {
    font-size: 3.4666666667vw;
  }
}
.form-body {
  display: flex;
  flex-direction: column;
  border: none;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .form-body {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .form-body {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .form-body {
    gap: 3.2vw;
  }
}
.form-row {
  display: flex;
  align-items: flex-start;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .form-row {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .form-row {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .form-row {
    gap: 3.2vw;
  }
}
@media screen and (width <= 811px) {
  .form-row {
    flex-direction: column;
  }
}
.form-col {
  width: 100%;
}
@media screen and (width <= 811px) {
  .form-col .text-input-size_m .text-input__icon {
    left: 0.5208333333vw;
  }
  .form-col .text-input-size_m .text-input__reset {
    right: 0.5208333333vw;
  }
  .form-col .text-input-size_m .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 2.0833333333vw;
  }
  .form-col .text-input-size_m .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 2.0833333333vw;
  }
  .form-col .text-input-size_m .text-input__field {
    height: 2.0833333333vw;
    padding: 0 0.625vw;
    font-size: 0.8333333333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    border-radius: 0.625vw;
  }
  .form-col .text-input-size_m .text-input__field-textarea {
    height: 4.5833333333vw;
    padding-top: 0.3125vw;
    padding-bottom: 0.3125vw;
  }
  .form-col .text-input-size_m .text-input__field-textarea ~ .text-input__reset {
    top: 0.3125vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .form-col .text-input-size_m .text-input__icon {
    left: 0.7320644217vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .form-col .text-input-size_m .text-input__icon {
    left: 1.3020833333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .form-col .text-input-size_m .text-input__icon {
    left: 2.6666666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .form-col .text-input-size_m .text-input__reset {
    right: 0.7320644217vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .form-col .text-input-size_m .text-input__reset {
    right: 1.3020833333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .form-col .text-input-size_m .text-input__reset {
    right: 2.6666666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .form-col .text-input-size_m .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .form-col .text-input-size_m .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 5.2083333333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .form-col .text-input-size_m .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 10.6666666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .form-col .text-input-size_m .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .form-col .text-input-size_m .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 5.2083333333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .form-col .text-input-size_m .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 10.6666666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .form-col .text-input-size_m .text-input__field {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .form-col .text-input-size_m .text-input__field {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .form-col .text-input-size_m .text-input__field {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .form-col .text-input-size_m .text-input__field {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .form-col .text-input-size_m .text-input__field {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .form-col .text-input-size_m .text-input__field {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .form-col .text-input-size_m .text-input__field {
    height: 2.9282576867vw;
    padding: 0 0.878477306vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .form-col .text-input-size_m .text-input__field {
    height: 5.2083333333vw;
    padding: 0 1.5625vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .form-col .text-input-size_m .text-input__field {
    height: 10.6666666667vw;
    padding: 0 3.2vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .form-col .text-input-size_m .text-input__field-textarea {
    height: 6.4421669107vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .form-col .text-input-size_m .text-input__field-textarea {
    height: 11.4583333333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .form-col .text-input-size_m .text-input__field-textarea {
    height: 23.4666666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .form-col .text-input-size_m .text-input__field-textarea {
    padding-top: 0.439238653vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .form-col .text-input-size_m .text-input__field-textarea {
    padding-top: 0.78125vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .form-col .text-input-size_m .text-input__field-textarea {
    padding-top: 1.6vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .form-col .text-input-size_m .text-input__field-textarea {
    padding-bottom: 0.439238653vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .form-col .text-input-size_m .text-input__field-textarea {
    padding-bottom: 0.78125vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .form-col .text-input-size_m .text-input__field-textarea {
    padding-bottom: 1.6vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .form-col .text-input-size_m .text-input__field-textarea ~ .text-input__reset {
    top: 0.439238653vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .form-col .text-input-size_m .text-input__field-textarea ~ .text-input__reset {
    top: 0.78125vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .form-col .text-input-size_m .text-input__field-textarea ~ .text-input__reset {
    top: 1.6vw;
  }
}
.form-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625vw;
  margin-top: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .form-footer {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .form-footer {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .form-footer {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .form-footer {
    margin-top: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .form-footer {
    margin-top: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .form-footer {
    margin-top: 5.3333333333vw;
  }
}
.form-policy.checkbox {
  color: var(--gray-medium);
}
@media screen and (width <= 811px) {
  .form-policy.checkbox {
    align-items: flex-start;
  }
}
@media screen and (width <= 811px) {
  .form-policy.checkbox .checkbox__custom {
    margin-top: 0.390625vw;
  }
}
@media screen and (width <= 481px) {
  .form-policy.checkbox .checkbox__custom {
    margin-top: 0.8vw;
  }
}
@media screen and (width <= 811px) {
  .form-submit {
    width: 100%;
  }
}
.text-input {
  /*----------CORE STYLE-----------*/
  /*----------LABEL POSITION-----------*/
  /*----------STYLES-----------*/
  /*----------SIZES-----------*/
  /*----------THEME-----------*/
}
.text-input__wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.text-input__inner-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}
.text-input__input-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.text-input__icon {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .text-input__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .text-input__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .text-input__icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.text-input__reset {
  position: absolute;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  z-index: 2;
  transition: color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.text-input__reset-icon {
  color: var(--gray-light);
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .text-input__reset-icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .text-input__reset-icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .text-input__reset-icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.text-input__label {
  color: var(--gray-medium);
  margin-bottom: 0.1041666667vw;
  flex-shrink: 0;
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media screen and (width <= 1401px) {
  .text-input__label {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .text-input__label {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input__label {
    font-size: 2.9333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .text-input__label {
    margin-bottom: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .text-input__label {
    margin-bottom: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input__label {
    margin-bottom: 0.5333333333vw;
  }
}
.text-input__field {
  width: 100%;
  border: solid transparent;
  border-width: max(0.1041666667vw, 2px);
  transition: background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), border 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), filter 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .text-input__field {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .text-input__field {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .text-input__field {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 1401px) {
  .text-input__field {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .text-input__field {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .text-input__field {
    font-size: 4.2666666667vw;
  }
}
.text-input__field:focus {
  outline: none;
}
.text-input__field:disabled {
  cursor: not-allowed;
  opacity: 0.8;
  filter: grayscale(1);
}
.text-input__field::placeholder {
  color: var(--gray-medium);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .text-input__field::placeholder {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .text-input__field::placeholder {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .text-input__field::placeholder {
    font-size: 4.2666666667vw;
  }
}
.text-input__error-message {
  color: var(--error-dark);
  margin-top: 0.1041666667vw;
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media screen and (width <= 1401px) {
  .text-input__error-message {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .text-input__error-message {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input__error-message {
    font-size: 2.9333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .text-input__error-message {
    margin-top: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .text-input__error-message {
    margin-top: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input__error-message {
    margin-top: 0.5333333333vw;
  }
}
.text-input-pos_standard.text-input__label {
  display: block;
  margin-bottom: 0.1041666667vw;
  color: var(--gray-medium);
  order: -1;
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media screen and (width <= 1401px) {
  .text-input-pos_standard.text-input__label {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-pos_standard.text-input__label {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-pos_standard.text-input__label {
    font-size: 2.9333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .text-input-pos_standard.text-input__label {
    margin-bottom: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-pos_standard.text-input__label {
    margin-bottom: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-pos_standard.text-input__label {
    margin-bottom: 0.5333333333vw;
  }
}
.text-input-pos_standard.text-input__wrapper {
  display: flex;
  flex-direction: column;
}
.text-input-pos_hidden.text-input__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.text-input-style_filled .text-input__field {
  background: var(--gray-lighter);
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .text-input-style_filled .text-input__field:hover {
    border-color: var(--gray-light);
  }
}
.text-input-style_filled .text-input__field:focus {
  background: var(--gray-white);
  border-color: var(--gray-light);
}
.text-input-style_filled .text-input__field::placeholder {
  color: var(--gray-medium);
}
.text-input-style_filled .text-input__icon {
  color: var(--gray-light);
}
.text-input-style_filled .text-input__reset-icon {
  color: var(--gray-light);
}
.text-input-style_outline .text-input__field {
  background: var(--gray-white);
  border-color: var(--gray-light);
  color: var(--gray-darker);
}
@media (hover: hover) and (pointer: fine) {
  .text-input-style_outline .text-input__field:hover {
    border-color: var(--color1-light);
  }
}
.text-input-style_outline .text-input__field:focus {
  border-color: var(--color1-main);
}
.text-input-style_outline .text-input__field::placeholder {
  color: var(--gray-medium);
}
.text-input-style_outline .text-input__icon {
  color: var(--gray-light);
}
.text-input-style_outline .text-input__reset-icon {
  color: var(--gray-light);
}
.text-input-style_underline .text-input__field {
  background: transparent;
  border-bottom-color: var(--gray-light);
  color: var(--gray-darker);
  border-radius: 0 !important;
}
@media (hover: hover) and (pointer: fine) {
  .text-input-style_underline .text-input__field:hover {
    border-bottom-color: var(--color1-light);
  }
}
.text-input-style_underline .text-input__field:focus {
  border-bottom-color: var(--color1-main);
}
.text-input-style_underline .text-input__field::placeholder {
  color: var(--gray-medium);
}
.text-input-style_underline .text-input__icon {
  color: var(--gray-light);
}
.text-input-style_underline .text-input__reset-icon {
  color: var(--gray-light);
}
.text-input-size_l .text-input__icon {
  left: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_l .text-input__icon {
    left: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_l .text-input__icon {
    left: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_l .text-input__icon {
    left: 4.2666666667vw;
  }
}
.text-input-size_l .text-input__reset {
  right: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_l .text-input__reset {
    right: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_l .text-input__reset {
    right: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_l .text-input__reset {
    right: 4.2666666667vw;
  }
}
.text-input-size_l .text-input__input-container:has(.text-input__icon) .text-input__field {
  padding-left: 2.5vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_l .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_l .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_l .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 12.8vw;
  }
}
.text-input-size_l .text-input__input-container:has(.text-input__reset) .text-input__field {
  padding-right: 2.5vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_l .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_l .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_l .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 12.8vw;
  }
}
.text-input-size_l .text-input__field {
  height: 2.9166666667vw;
  padding: 0 0.8333333333vw;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_l .text-input__field {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_l .text-input__field {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_l .text-input__field {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .text-input-size_l .text-input__field {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_l .text-input__field {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_l .text-input__field {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .text-input-size_l .text-input__field {
    height: 4.0995607613vw;
    padding: 0 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_l .text-input__field {
    height: 7.2916666667vw;
    padding: 0 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_l .text-input__field {
    height: 14.9333333333vw;
    padding: 0 4.2666666667vw;
  }
}
.text-input-size_l .text-input__field-textarea {
  height: unset;
  padding-top: 0.4166666667vw;
  padding-bottom: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_l .text-input__field-textarea {
    padding-top: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_l .text-input__field-textarea {
    padding-top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_l .text-input__field-textarea {
    padding-top: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .text-input-size_l .text-input__field-textarea {
    padding-bottom: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_l .text-input__field-textarea {
    padding-bottom: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_l .text-input__field-textarea {
    padding-bottom: 2.1333333333vw;
  }
}
.text-input-size_l .text-input__field-textarea ~ .text-input__reset {
  top: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_l .text-input__field-textarea ~ .text-input__reset {
    top: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_l .text-input__field-textarea ~ .text-input__reset {
    top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_l .text-input__field-textarea ~ .text-input__reset {
    top: 2.1333333333vw;
  }
}
.text-input-size_m .text-input__icon {
  left: 0.625vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_m .text-input__icon {
    left: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_m .text-input__icon {
    left: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_m .text-input__icon {
    left: 3.2vw;
  }
}
.text-input-size_m .text-input__reset {
  right: 0.625vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_m .text-input__reset {
    right: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_m .text-input__reset {
    right: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_m .text-input__reset {
    right: 3.2vw;
  }
}
.text-input-size_m .text-input__input-container:has(.text-input__icon) .text-input__field {
  padding-left: 2.2916666667vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_m .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 3.2210834553vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_m .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 5.7291666667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_m .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 11.7333333333vw;
  }
}
.text-input-size_m .text-input__input-container:has(.text-input__reset) .text-input__field {
  padding-right: 2.2916666667vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_m .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 3.2210834553vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_m .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 5.7291666667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_m .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 11.7333333333vw;
  }
}
.text-input-size_m .text-input__field {
  height: 2.5vw;
  padding: 0 0.8333333333vw;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_m .text-input__field {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_m .text-input__field {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_m .text-input__field {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .text-input-size_m .text-input__field {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_m .text-input__field {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_m .text-input__field {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .text-input-size_m .text-input__field {
    height: 3.513909224vw;
    padding: 0 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_m .text-input__field {
    height: 6.25vw;
    padding: 0 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_m .text-input__field {
    height: 12.8vw;
    padding: 0 4.2666666667vw;
  }
}
.text-input-size_m .text-input__field-textarea {
  height: unset;
  padding-top: 0.4166666667vw;
  padding-bottom: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_m .text-input__field-textarea {
    padding-top: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_m .text-input__field-textarea {
    padding-top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_m .text-input__field-textarea {
    padding-top: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .text-input-size_m .text-input__field-textarea {
    padding-bottom: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_m .text-input__field-textarea {
    padding-bottom: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_m .text-input__field-textarea {
    padding-bottom: 2.1333333333vw;
  }
}
.text-input-size_m .text-input__field-textarea ~ .text-input__reset {
  top: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_m .text-input__field-textarea ~ .text-input__reset {
    top: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_m .text-input__field-textarea ~ .text-input__reset {
    top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_m .text-input__field-textarea ~ .text-input__reset {
    top: 2.1333333333vw;
  }
}
.text-input-size_s .text-input__icon {
  left: 0.5208333333vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_s .text-input__icon {
    left: 0.7320644217vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_s .text-input__icon {
    left: 1.3020833333vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_s .text-input__icon {
    left: 2.6666666667vw;
  }
}
.text-input-size_s .text-input__reset {
  right: 0.5208333333vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_s .text-input__reset {
    right: 0.7320644217vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_s .text-input__reset {
    right: 1.3020833333vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_s .text-input__reset {
    right: 2.6666666667vw;
  }
}
.text-input-size_s .text-input__input-container:has(.text-input__icon) .text-input__field {
  padding-left: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_s .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_s .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_s .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 10.6666666667vw;
  }
}
.text-input-size_s .text-input__input-container:has(.text-input__reset) .text-input__field {
  padding-right: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_s .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_s .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_s .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 10.6666666667vw;
  }
}
.text-input-size_s .text-input__field {
  height: 2.0833333333vw;
  padding: 0 0.625vw;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_s .text-input__field {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_s .text-input__field {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_s .text-input__field {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .text-input-size_s .text-input__field {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_s .text-input__field {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_s .text-input__field {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .text-input-size_s .text-input__field {
    height: 2.9282576867vw;
    padding: 0 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_s .text-input__field {
    height: 5.2083333333vw;
    padding: 0 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_s .text-input__field {
    height: 10.6666666667vw;
    padding: 0 3.2vw;
  }
}
.text-input-size_s .text-input__field-textarea {
  height: unset;
  padding-top: 0.3125vw;
  padding-bottom: 0.3125vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_s .text-input__field-textarea {
    padding-top: 0.439238653vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_s .text-input__field-textarea {
    padding-top: 0.78125vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_s .text-input__field-textarea {
    padding-top: 1.6vw;
  }
}
@media screen and (width <= 1401px) {
  .text-input-size_s .text-input__field-textarea {
    padding-bottom: 0.439238653vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_s .text-input__field-textarea {
    padding-bottom: 0.78125vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_s .text-input__field-textarea {
    padding-bottom: 1.6vw;
  }
}
.text-input-size_s .text-input__field-textarea ~ .text-input__reset {
  top: 0.3125vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_s .text-input__field-textarea ~ .text-input__reset {
    top: 0.439238653vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_s .text-input__field-textarea ~ .text-input__reset {
    top: 0.78125vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_s .text-input__field-textarea ~ .text-input__reset {
    top: 1.6vw;
  }
}
.text-input-size_xs .text-input__icon {
  left: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_xs .text-input__icon {
    left: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_xs .text-input__icon {
    left: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_xs .text-input__icon {
    left: 2.1333333333vw;
  }
}
.text-input-size_xs .text-input__reset {
  right: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_xs .text-input__reset {
    right: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_xs .text-input__reset {
    right: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_xs .text-input__reset {
    right: 2.1333333333vw;
  }
}
.text-input-size_xs .text-input__input-container:has(.text-input__icon) .text-input__field {
  padding-left: 1.875vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_xs .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 2.635431918vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_xs .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 4.6875vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_xs .text-input__input-container:has(.text-input__icon) .text-input__field {
    padding-left: 9.6vw;
  }
}
.text-input-size_xs .text-input__input-container:has(.text-input__reset) .text-input__field {
  padding-right: 1.875vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_xs .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 2.635431918vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_xs .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 4.6875vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_xs .text-input__input-container:has(.text-input__reset) .text-input__field {
    padding-right: 9.6vw;
  }
}
.text-input-size_xs .text-input__field {
  height: 1.6666666667vw;
  padding: 0 0.625vw;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_xs .text-input__field {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_xs .text-input__field {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_xs .text-input__field {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .text-input-size_xs .text-input__field {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_xs .text-input__field {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_xs .text-input__field {
    border-radius: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .text-input-size_xs .text-input__field {
    height: 2.3426061493vw;
    padding: 0 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_xs .text-input__field {
    height: 4.1666666667vw;
    padding: 0 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_xs .text-input__field {
    height: 8.5333333333vw;
    padding: 0 3.2vw;
  }
}
.text-input-size_xs .text-input__field-textarea {
  height: unset;
  padding-top: 0.3125vw;
  padding-bottom: 0.3125vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_xs .text-input__field-textarea {
    padding-top: 0.439238653vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_xs .text-input__field-textarea {
    padding-top: 0.78125vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_xs .text-input__field-textarea {
    padding-top: 1.6vw;
  }
}
@media screen and (width <= 1401px) {
  .text-input-size_xs .text-input__field-textarea {
    padding-bottom: 0.439238653vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_xs .text-input__field-textarea {
    padding-bottom: 0.78125vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_xs .text-input__field-textarea {
    padding-bottom: 1.6vw;
  }
}
.text-input-size_xs .text-input__field-textarea ~ .text-input__reset {
  top: 0.3125vw;
}
@media screen and (width <= 1401px) {
  .text-input-size_xs .text-input__field-textarea ~ .text-input__reset {
    top: 0.439238653vw;
  }
}
@media screen and (width <= 811px) {
  .text-input-size_xs .text-input__field-textarea ~ .text-input__reset {
    top: 0.78125vw;
  }
}
@media screen and (width <= 481px) {
  .text-input-size_xs .text-input__field-textarea ~ .text-input__reset {
    top: 1.6vw;
  }
}
.text-input-theme_dark .text-input__label {
  color: var(--gray-light);
}
.text-input-theme_dark.text-input-style_filled .text-input__field {
  background: var(--gray-dark);
  border-color: var(--gray-dark);
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .text-input-theme_dark.text-input-style_filled .text-input__field:hover {
    border-color: var(--gray-medium);
  }
}
.text-input-theme_dark.text-input-style_filled .text-input__field:focus {
  background: var(--gray-black);
  border-color: var(--gray-medium);
}
.text-input-theme_dark.text-input-style_filled .text-input__field::placeholder {
  color: var(--gray-light);
}
.text-input-theme_dark.text-input-style_filled .text-input__icon {
  color: var(--gray-light);
}
.text-input-theme_dark.text-input-style_filled .text-input__reset-icon {
  color: var(--gray-light);
}
.text-input-theme_dark.text-input-style_outline .text-input__field {
  background: var(--gray-black);
  border-color: var(--gray-dark);
  color: var(--gray-white);
}
@media (hover: hover) and (pointer: fine) {
  .text-input-theme_dark.text-input-style_outline .text-input__field:hover {
    border-color: var(--color1-darker);
  }
}
.text-input-theme_dark.text-input-style_outline .text-input__field:focus {
  border-color: var(--color1-main);
}
.text-input-theme_dark.text-input-style_outline .text-input__field::placeholder {
  color: var(--gray-light);
}
.text-input-theme_dark.text-input-style_outline .text-input__icon {
  color: var(--gray-medium);
}
.text-input-theme_dark.text-input-style_outline .text-input__reset-icon {
  color: var(--gray-medium);
}
.text-input-theme_dark.text-input-style_underline .text-input__field {
  background: transparent;
  border-bottom-color: var(--gray-dark);
  color: var(--gray-white);
  border-radius: 0 !important;
}
@media (hover: hover) and (pointer: fine) {
  .text-input-theme_dark.text-input-style_underline .text-input__field:hover {
    border-bottom-color: var(--color1-darker);
  }
}
.text-input-theme_dark.text-input-style_underline .text-input__field:focus {
  border-bottom-color: var(--color1-main);
}
.text-input-theme_dark.text-input-style_underline .text-input__field::placeholder {
  color: var(--gray-light);
}
.text-input-theme_dark.text-input-style_underline .text-input__icon {
  color: var(--gray-medium);
}
.text-input-theme_dark.text-input-style_underline .text-input__reset-icon {
  color: var(--gray-medium);
}
/* Show reset button when input has value */
.text-input__field:not(:placeholder-shown) ~ .text-input__reset, .text-input__field.has-value ~ .text-input__reset {
  pointer-events: auto;
  opacity: 1;
}
.checkbox {
  /*----------CORE STYLE-----------*/
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  width: fit-content;
  padding: 0.1041666667vw;
  margin: -0.1041666667vw;
  gap: 0.5208333333vw;
  touch-action: manipulation;
  transition: background-color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  /*----------STYLES-----------*/
  /*----------SIZES-----------*/
  /*----------THEME-----------*/
}
@media screen and (width <= 1401px) {
  .checkbox {
    padding: 0.1464128843vw;
    margin: -0.1464128843vw;
    gap: 0.7320644217vw;
  }
}
@media screen and (width <= 811px) {
  .checkbox {
    padding: 0.2604166667vw;
    margin: -0.2604166667vw;
    gap: 1.3020833333vw;
  }
}
@media screen and (width <= 481px) {
  .checkbox {
    padding: 0.5333333333vw;
    margin: -0.5333333333vw;
    gap: 2.6666666667vw;
  }
}
.checkbox-position_left {
  flex-direction: row;
}
.checkbox-position_right {
  flex-direction: row-reverse;
}
.checkbox__input {
  position: absolute;
  opacity: 0;
}
.checkbox__input:checked ~ .checkbox__custom::after {
  transform: translate(-50%, -50%) rotate(45deg) scale(1.2);
}
.checkbox__custom {
  flex-shrink: 0;
  position: relative;
  border: solid var(--gray-medium);
  transition: border 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  border-width: max(0.1041666667vw, 2px);
  /* Checkmark */
}
@media screen and (width <= 1401px) {
  .checkbox__custom {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .checkbox__custom {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .checkbox__custom {
    border-width: max(0.5333333333vw, 2px);
  }
}
.checkbox__custom::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: 30%;
  height: 50%;
  border-top: 0 !important;
  border-left: 0 !important;
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
  transition: transform 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.checkbox__text {
  user-select: none;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .checkbox__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .checkbox__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .checkbox__text {
    font-size: 4.2666666667vw;
  }
}
.checkbox__policy {
  user-select: none;
  margin-block: 0.1041666667vw;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .checkbox__policy {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .checkbox__policy {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .checkbox__policy {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .checkbox__policy {
    margin-block: 0.1464128843vw;
  }
}
@media screen and (width <= 811px) {
  .checkbox__policy {
    margin-block: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .checkbox__policy {
    margin-block: 0.5333333333vw;
  }
}
.checkbox__policy a {
  color: var(--color1-dark);
  transition: color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media (hover: hover) and (pointer: fine) {
  .checkbox__policy a:hover {
    color: var(--color1-main);
  }
}
.checkbox__policy a:active {
  color: var(--color1-darker);
}
@media (hover: hover) and (pointer: fine) {
  .checkbox-solid:hover .checkbox__input:not(:checked) ~ .checkbox__custom::after {
    border-color: var(--gray-medium);
    transform: translate(-50%, -50%) rotate(45deg) scale(1.2);
  }
  .checkbox-solid:hover .checkbox__input:checked ~ .checkbox__custom {
    background: var(--color1-light);
    border-color: var(--color1-light);
  }
}
.checkbox-solid .checkbox__input:checked ~ .checkbox__custom {
  background: var(--color1-main);
  border-color: var(--color1-main);
}
.checkbox-solid .checkbox__custom::after {
  border: solid var(--gray-white);
  border-width: max(0.0520833333vw, 1px);
}
@media screen and (width <= 1401px) {
  .checkbox-solid .checkbox__custom::after {
    border-width: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 811px) {
  .checkbox-solid .checkbox__custom::after {
    border-width: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .checkbox-solid .checkbox__custom::after {
    border-width: max(0.2666666667vw, 1px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .checkbox-line:hover .checkbox__input:not(:checked) ~ .checkbox__custom::after {
    border-color: var(--color1-light);
    transform: translate(-50%, -50%) rotate(45deg) scale(1.2);
  }
  .checkbox-line:hover .checkbox__input:checked ~ .checkbox__custom {
    background: transparent;
    border-color: var(--color1-dark);
  }
  .checkbox-line:hover .checkbox__input:checked ~ .checkbox__custom::after {
    border-color: var(--color1-dark);
  }
}
.checkbox-line .checkbox__input:checked ~ .checkbox__custom {
  background: transparent;
  border-color: var(--color1-main);
}
.checkbox-line .checkbox__custom::after {
  border: solid var(--color1-main);
  border-width: max(0.0520833333vw, 1px);
}
@media screen and (width <= 1401px) {
  .checkbox-line .checkbox__custom::after {
    border-width: max(0.0732064422vw, 1px);
  }
}
@media screen and (width <= 811px) {
  .checkbox-line .checkbox__custom::after {
    border-width: max(0.1302083333vw, 1px);
  }
}
@media screen and (width <= 481px) {
  .checkbox-line .checkbox__custom::after {
    border-width: max(0.2666666667vw, 1px);
  }
}
.checkbox-size_m .checkbox__custom {
  border-radius: 0.3125vw;
  width: 1.4583333333vw;
  height: 1.4583333333vw;
}
@media screen and (width <= 1401px) {
  .checkbox-size_m .checkbox__custom {
    border-radius: 0.439238653vw;
  }
}
@media screen and (width <= 811px) {
  .checkbox-size_m .checkbox__custom {
    border-radius: 0.78125vw;
  }
}
@media screen and (width <= 481px) {
  .checkbox-size_m .checkbox__custom {
    border-radius: 1.6vw;
  }
}
@media screen and (width <= 1401px) {
  .checkbox-size_m .checkbox__custom {
    width: 2.0497803807vw;
    height: 2.0497803807vw;
  }
}
@media screen and (width <= 811px) {
  .checkbox-size_m .checkbox__custom {
    width: 3.6458333333vw;
    height: 3.6458333333vw;
  }
}
@media screen and (width <= 481px) {
  .checkbox-size_m .checkbox__custom {
    width: 7.4666666667vw;
    height: 7.4666666667vw;
  }
}
.checkbox-size_s .checkbox__custom {
  border-radius: 0.2083333333vw;
  width: 1.0416666667vw;
  height: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .checkbox-size_s .checkbox__custom {
    border-radius: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .checkbox-size_s .checkbox__custom {
    border-radius: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .checkbox-size_s .checkbox__custom {
    border-radius: 1.0666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .checkbox-size_s .checkbox__custom {
    width: 1.4641288433vw;
    height: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .checkbox-size_s .checkbox__custom {
    width: 2.6041666667vw;
    height: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .checkbox-size_s .checkbox__custom {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
}
.checkbox-theme_light .checkbox__text {
  color: var(--gray-darker);
}
.checkbox-theme_dark .checkbox__text {
  color: var(--gray-lighter);
}
.footer {
  color: var(--gray-medium);
  background: var(--gray-black);
  padding: 3.125vw;
}
@media screen and (width <= 1401px) {
  .footer {
    padding: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .footer {
    padding: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer {
    padding: 4.2666666667vw;
  }
}
@media screen and (width <= 811px) {
  .footer {
    padding-top: 2.6041666667vw;
    padding-bottom: 13.0208333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer {
    padding-top: 5.3333333333vw;
    padding-bottom: 26.6666666667vw;
  }
}
.footer-container {
  background: var(--gray-lighter);
  padding: 3.125vw;
  border-radius: 3.125vw;
}
@media screen and (width <= 1401px) {
  .footer-container {
    padding: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .footer-container {
    padding: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer-container {
    padding: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .footer-container {
    border-radius: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .footer-container {
    border-radius: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer-container {
    border-radius: 5.3333333333vw;
  }
}
.footer-container__line {
  margin-top: 2.0833333333vw;
  margin-bottom: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .footer-container__line {
    margin-top: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .footer-container__line {
    margin-top: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer-container__line {
    margin-top: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .footer-container__line {
    margin-bottom: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .footer-container__line {
    margin-bottom: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer-container__line {
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer-container__line.separator-orientation_horizontal {
    height: 0.5333333333vw;
  }
}
.footer-col_first {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (width <= 811px) {
  .footer-col_first {
    flex-direction: row;
    align-items: flex-end;
    padding-bottom: 2.6041666667vw;
    border-bottom: solid var(--gray-light);
    border-width: 0.2604166667vw;
  }
}
@media screen and (width <= 481px) {
  .footer-col_first {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 5.3333333333vw;
    border-width: 0.5333333333vw;
  }
}
.footer-col_second {
  display: flex;
}
@media screen and (width <= 811px) {
  .footer-col_second {
    padding-top: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer-col_second {
    padding-top: 5.3333333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer-col_second {
    flex-direction: column;
  }
}
.footer_top {
  display: flex;
}
@media screen and (width <= 811px) {
  .footer_top {
    flex-direction: column;
  }
}
.footer_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (width <= 481px) {
  .footer_bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 5.3333333333vw;
  }
}
.footer-logo {
  width: 17.0833333333vw;
  height: 2.9166666667vw;
}
@media screen and (width <= 1401px) {
  .footer-logo {
    width: 17.5695461201vw;
  }
}
@media screen and (width <= 811px) {
  .footer-logo {
    width: 31.25vw;
  }
}
@media screen and (width <= 481px) {
  .footer-logo {
    width: 64vw;
  }
}
@media screen and (width <= 1401px) {
  .footer-logo {
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .footer-logo {
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer-logo {
    height: 10.6666666667vw;
  }
}
.footer-logo img {
  width: 100%;
}
.footer-copyright {
  white-space: nowrap;
  margin-top: 0.625vw;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .footer-copyright {
    margin-top: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .footer-copyright {
    margin-top: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .footer-copyright {
    margin-top: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .footer-copyright {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .footer-copyright {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .footer-copyright {
    font-size: 3.4666666667vw;
  }
}
.footer-qr {
  display: flex;
  align-items: flex-start;
  gap: 1.4583333333vw;
}
@media screen and (width <= 1401px) {
  .footer-qr {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .footer-qr {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer-qr {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 811px) {
  .footer-qr {
    flex-direction: column;
    width: 100%;
  }
}
.footer-qr__block {
  display: flex;
  gap: 1.4583333333vw;
}
@media screen and (width <= 1401px) {
  .footer-qr__block {
    gap: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .footer-qr__block {
    gap: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer-qr__block {
    gap: 4.2666666667vw;
  }
}
.footer-qr__img {
  flex-shrink: 0;
  background: var(--gray-white);
  width: 7.2916666667vw;
  height: 7.2916666667vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .footer-qr__img {
    width: 8.0527086384vw;
    height: 8.0527086384vw;
  }
}
@media screen and (width <= 811px) {
  .footer-qr__img {
    width: 14.3229166667vw;
    height: 14.3229166667vw;
  }
}
@media screen and (width <= 481px) {
  .footer-qr__img {
    width: 29.3333333333vw;
    height: 29.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .footer-qr__img {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .footer-qr__img {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .footer-qr__img {
    border-radius: 3.2vw;
  }
}
@media screen and (width <= 811px) {
  .footer-qr__img {
    display: none;
  }
}
.footer-qr__text {
  max-width: 14.5833333333vw;
  align-self: center;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .footer-qr__text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .footer-qr__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer-qr__text {
    font-size: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .footer-qr__text {
    max-width: 14.934114202vw;
    font-size: 0.6770833333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .footer-qr__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .footer-qr__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .footer-qr__text {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 811px) {
  .footer-qr__text {
    max-width: 100%;
  }
  .footer-qr__text span:not([class]) {
    display: none;
  }
}
.footer-qr__title {
  display: block;
  color: var(--gray-dark);
  margin-bottom: 0.2083333333vw;
  font-size: 0.9375vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .footer-qr__title {
    margin-bottom: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .footer-qr__title {
    margin-bottom: 0vw;
  }
}
@media screen and (width <= 481px) {
  .footer-qr__title {
    margin-bottom: 0vw;
  }
}
@media screen and (width <= 1401px) {
  .footer-qr__title {
    font-size: 1.317715959vw;
  }
}
@media screen and (width <= 811px) {
  .footer-qr__title {
    font-size: 2.34375vw;
  }
}
@media screen and (width <= 481px) {
  .footer-qr__title {
    font-size: 4.8vw;
  }
}
@media screen and (width <= 1401px) {
  .footer-qr__title {
    font-size: 0.8333333333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    font-weight: 700;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .footer-qr__title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .footer-qr__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .footer-qr__title {
    font-size: 4.2666666667vw;
  }
}
.footer-qr__btns {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 0.625vw;
}
@media screen and (width <= 1401px) {
  .footer-qr__btns {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .footer-qr__btns {
    gap: 1.3020833333vw;
  }
}
@media screen and (width <= 481px) {
  .footer-qr__btns {
    gap: 2.6666666667vw;
  }
}
@media screen and (width <= 811px) {
  .footer-qr__btns {
    width: 100%;
  }
}
.footer-qr__btns .tab-market {
  width: 100%;
}
@media screen and (width <= 1401px) {
  .footer-qr__btns .tab-market {
    gap: 0.4166666667vw;
    padding-left: 0.8333333333vw;
  }
  .footer-qr__btns .tab-market .tab-market__icon {
    width: 1.4583333333vw;
    height: 1.4583333333vw;
  }
  .footer-qr__btns .tab-market .tab-market__block {
    font-size: 0.46875vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    line-height: 110%;
  }
  .footer-qr__btns .tab-market .tab-market__text {
    font-size: 0.6770833333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    font-weight: 700;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .footer-qr__btns .tab-market {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .footer-qr__btns .tab-market {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .footer-qr__btns .tab-market {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .footer-qr__btns .tab-market {
    padding-left: 1.1713030747vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .footer-qr__btns .tab-market {
    padding-left: 2.0833333333vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .footer-qr__btns .tab-market {
    padding-left: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .footer-qr__btns .tab-market .tab-market__icon {
    width: 2.0497803807vw;
    height: 2.0497803807vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .footer-qr__btns .tab-market .tab-market__icon {
    width: 3.6458333333vw;
    height: 3.6458333333vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .footer-qr__btns .tab-market .tab-market__icon {
    width: 7.4666666667vw;
    height: 7.4666666667vw;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .footer-qr__btns .tab-market .tab-market__block {
    font-size: 0.6588579795vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .footer-qr__btns .tab-market .tab-market__block {
    font-size: 1.171875vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .footer-qr__btns .tab-market .tab-market__block {
    font-size: 2.4vw;
  }
}
@media screen and (width <= 1401px) and (width <= 1401px) {
  .footer-qr__btns .tab-market .tab-market__text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 1401px) and (width <= 811px) {
  .footer-qr__btns .tab-market .tab-market__text {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 1401px) and (width <= 481px) {
  .footer-qr__btns .tab-market .tab-market__text {
    font-size: 3.4666666667vw;
  }
}
@media screen and (width <= 811px) {
  .footer-qr__btns .tab-market {
    gap: 0.2083333333vw;
    padding: 0.4166666667vw;
    padding-top: 0.5208333333vw;
    padding-right: 0.625vw;
  }
  .footer-qr__btns .tab-market .tab-market__icon {
    width: 1.25vw;
    height: 1.25vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .footer-qr__btns .tab-market {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .footer-qr__btns .tab-market {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .footer-qr__btns .tab-market {
    gap: 1.0666666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .footer-qr__btns .tab-market {
    padding: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .footer-qr__btns .tab-market {
    padding: 1.0416666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .footer-qr__btns .tab-market {
    padding: 2.1333333333vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .footer-qr__btns .tab-market {
    padding-top: 0.7320644217vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .footer-qr__btns .tab-market {
    padding-top: 1.3020833333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .footer-qr__btns .tab-market {
    padding-top: 2.6666666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .footer-qr__btns .tab-market {
    padding-right: 0.878477306vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .footer-qr__btns .tab-market {
    padding-right: 1.5625vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .footer-qr__btns .tab-market {
    padding-right: 3.2vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .footer-qr__btns .tab-market .tab-market__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .footer-qr__btns .tab-market .tab-market__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .footer-qr__btns .tab-market .tab-market__icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.footer-contacts {
  flex-shrink: 0;
}
@media screen and (width <= 811px) {
  .footer-contacts {
    width: 100%;
    flex-shrink: unset;
  }
}
@media screen and (width <= 481px) {
  .footer-contacts {
    margin-top: 5.3333333333vw;
    padding-top: 5.3333333333vw;
    border-top: 0.5333333333vw solid var(--gray-light);
  }
}
.footer-contacts__title {
  color: var(--gray-dark);
  margin-bottom: 0.625vw;
  font-size: 0.9375vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .footer-contacts__title {
    margin-bottom: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .footer-contacts__title {
    margin-bottom: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .footer-contacts__title {
    margin-bottom: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .footer-contacts__title {
    font-size: 1.317715959vw;
  }
}
@media screen and (width <= 811px) {
  .footer-contacts__title {
    font-size: 2.34375vw;
  }
}
@media screen and (width <= 481px) {
  .footer-contacts__title {
    font-size: 4.8vw;
  }
}
@media screen and (width <= 811px) {
  .footer-contacts__title {
    font-size: 0.8333333333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    font-weight: 700;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .footer-contacts__title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .footer-contacts__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .footer-contacts__title {
    font-size: 4.2666666667vw;
  }
}
.footer-contacts__list {
  display: flex;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .footer-contacts__list {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .footer-contacts__list {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .footer-contacts__list {
    gap: 3.2vw;
  }
}
@media screen and (width <= 811px) {
  .footer-contacts__list {
    flex-direction: column;
  }
}
.footer-contacts__label {
  display: block;
  margin-bottom: 0.4166666667vw;
  font-size: 0.6770833333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .footer-contacts__label {
    margin-bottom: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .footer-contacts__label {
    margin-bottom: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer-contacts__label {
    margin-bottom: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .footer-contacts__label {
    font-size: 0.9516837482vw;
  }
}
@media screen and (width <= 811px) {
  .footer-contacts__label {
    font-size: 1.6927083333vw;
  }
}
@media screen and (width <= 481px) {
  .footer-contacts__label {
    font-size: 3.4666666667vw;
  }
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .footer-social {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .footer-social {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer-social {
    gap: 2.1333333333vw;
  }
}
.footer-policy {
  display: inline-flex;
  align-items: center;
  color: var(--color1-dark);
  transition: color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .footer-policy {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .footer-policy {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer-policy {
    font-size: 4.2666666667vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer-policy:hover {
    color: var(--color1-main);
  }
}
.footer-policy:active {
  color: var(--color1-darker);
}
.footer-policy__icon {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .footer-policy__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .footer-policy__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .footer-policy__icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.footer-made {
  display: flex;
  align-items: center;
  gap: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .footer-made {
    gap: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .footer-made {
    gap: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer-made {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer-made {
    width: 100%;
    padding-top: 5.3333333333vw;
    border-top: 0.5333333333vw solid var(--gray-light);
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer-made__logo {
  height: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .footer-made__logo {
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .footer-made__logo {
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .footer-made__logo {
    height: 10.6666666667vw;
  }
}
.footer-made__logo_gr {
  width: 11.0416666667vw;
}
@media screen and (width <= 1401px) {
  .footer-made__logo_gr {
    width: 15.5197657394vw;
  }
}
@media screen and (width <= 811px) {
  .footer-made__logo_gr {
    width: 27.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer-made__logo_gr {
    width: 56.5333333333vw;
  }
}
.footer-made__logo_sf {
  width: 5.9375vw;
}
@media screen and (width <= 1401px) {
  .footer-made__logo_sf {
    width: 8.345534407vw;
  }
}
@media screen and (width <= 811px) {
  .footer-made__logo_sf {
    width: 14.84375vw;
  }
}
@media screen and (width <= 481px) {
  .footer-made__logo_sf {
    width: 30.4vw;
  }
}
.footer-made__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer .footer-col__line {
  height: auto;
  margin-inline: 3.125vw;
}
@media screen and (width <= 1401px) {
  .footer .footer-col__line {
    margin-inline: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .footer .footer-col__line {
    margin-inline: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .footer .footer-col__line {
    margin-inline: 5.3333333333vw;
  }
}
.footer .separator-theme_light {
  background: var(--gray-light);
}
.separator {
  flex-shrink: 0;
  /*----------ORIENTATION-----------*/
  /*----------THEME-----------*/
}
.separator-orientation_horizontal {
  width: 100%;
  height: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .separator-orientation_horizontal {
    height: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .separator-orientation_horizontal {
    height: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .separator-orientation_horizontal {
    height: max(0.5333333333vw, 2px);
  }
}
.separator-orientation_vertical {
  align-self: stretch;
  height: 100%;
  width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .separator-orientation_vertical {
    width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .separator-orientation_vertical {
    width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .separator-orientation_vertical {
    width: max(0.5333333333vw, 2px);
  }
}
.separator-theme_light {
  background: var(--gray-lighter);
}
.separator-theme_dark {
  background: var(--gray-dark);
}
.tapbar {
  z-index: 1100;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  padding: 0.4166666667vw;
  padding-inline: 0.625vw;
}
@media screen and (width <= 1401px) {
  .tapbar {
    padding: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tapbar {
    padding: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tapbar {
    padding: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .tapbar {
    padding-inline: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .tapbar {
    padding-inline: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .tapbar {
    padding-inline: 3.2vw;
  }
}
@media screen and (width <= 811px) {
  .tapbar {
    display: block;
  }
}
.tapbar-container {
  display: flex;
  background: var(--gray-lighter);
  gap: 0.4166666667vw;
  padding: 0.4166666667vw;
  padding-inline: 0.625vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .tapbar-container {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tapbar-container {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tapbar-container {
    gap: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .tapbar-container {
    padding: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .tapbar-container {
    padding: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .tapbar-container {
    padding: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .tapbar-container {
    padding-inline: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .tapbar-container {
    padding-inline: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .tapbar-container {
    padding-inline: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .tapbar-container {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .tapbar-container {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .tapbar-container {
    border-radius: 3.2vw;
  }
}
.tapbar-btn {
  width: 100%;
}
.modal-cookie {
  z-index: 1300;
  width: 100%;
  max-width: 100dvw;
  position: fixed !important;
  margin: 0;
  bottom: 0;
  top: auto;
  background: var(--gray-lighter);
  transform: translateY(100%);
  user-select: none;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.modal-cookie.active {
  transform: translateY(0);
  user-select: auto;
  pointer-events: auto;
}
.modal-cookie__container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.4166666667vw;
  padding: 0.625vw 0 0.8333333333vw 0;
  border-top: max(0.1041666667vw, 2px) solid var(--gray-light);
}
@media screen and (width <= 1401px) {
  .modal-cookie__container {
    gap: 0.5856515373vw;
    padding: 0.878477306vw 0 1.1713030747vw 0;
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .modal-cookie__container {
    display: grid;
    gap: 1.5625vw;
    padding: 1.5625vw 0 2.0833333333vw 0;
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .modal-cookie__container {
    gap: 3.2vw;
    padding: 3.2vw 0 4.2666666667vw 0;
    border-width: max(0.5333333333vw, 2px);
  }
}
.modal-cookie__description {
  display: grid;
  gap: 0.2083333333vw;
  color: var(--gray-dark);
  font-size: 0.5729166667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}
@media screen and (width <= 1401px) {
  .modal-cookie__description {
    font-size: 0.8052708638vw;
  }
}
@media screen and (width <= 811px) {
  .modal-cookie__description {
    font-size: 1.4322916667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-cookie__description {
    font-size: 2.9333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-cookie__description {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .modal-cookie__description {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-cookie__description {
    gap: 1.0666666667vw;
  }
}
.modal-cookie__title {
  color: var(--gray-darker);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (width <= 1401px) {
  .modal-cookie__title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .modal-cookie__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-cookie__title {
    font-size: 4.2666666667vw;
  }
}
.modal-cookie__submit {
  width: max-content;
}
@media screen and (width <= 481px) {
  .modal-cookie__submit {
    width: 100%;
  }
}
.modal-cookie__submit:focus-visible {
  outline: none;
}
.modal-menu {
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translate(100%, 0) translateZ(0);
  display: none;
  opacity: 0;
  box-shadow: var(--shadow-far);
  will-change: transform, opacity;
  backface-visibility: hidden;
  overscroll-behavior: contain;
  padding-top: 3.4375vw;
  transition: transform 0.5s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.5s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .modal-menu {
    padding-top: 4.831625183vw;
  }
}
@media screen and (width <= 811px) {
  .modal-menu {
    padding-top: 8.59375vw;
  }
}
@media screen and (width <= 481px) {
  .modal-menu {
    padding-top: 17.6vw;
  }
}
.modal-menu.active {
  opacity: 1;
  transform: translate(0);
}
.modal-menu__container {
  height: calc(100vh - 8.59375vw);
  background: var(--gray-lighter);
  overflow-y: auto;
  padding-inline: 0.8333333333vw;
  padding-top: 0.4166666667vw;
  padding-bottom: 4.1666666667vw;
}
@media screen and (width <= 1401px) {
  .modal-menu__container {
    padding-inline: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .modal-menu__container {
    padding-inline: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-menu__container {
    padding-inline: 4.2666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-menu__container {
    padding-top: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .modal-menu__container {
    padding-top: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-menu__container {
    padding-top: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-menu__container {
    padding-bottom: 5.8565153734vw;
  }
}
@media screen and (width <= 811px) {
  .modal-menu__container {
    padding-bottom: 10.4166666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-menu__container {
    padding-bottom: 21.3333333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-menu__container {
    height: calc(100vh - 17.6vw);
  }
}
.modal-menu__list {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.2083333333vw;
}
@media screen and (width <= 1401px) {
  .modal-menu__list {
    gap: 0.2928257687vw;
  }
}
@media screen and (width <= 811px) {
  .modal-menu__list {
    gap: 0.5208333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-menu__list {
    gap: 1.0666666667vw;
  }
}
.modal-menu__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.0416666667vw;
  margin-top: 1.0416666667vw;
  padding-top: 0.7291666667vw;
}
@media screen and (width <= 1401px) {
  .modal-menu__info {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .modal-menu__info {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-menu__info {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-menu__info {
    margin-top: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .modal-menu__info {
    margin-top: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-menu__info {
    margin-top: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-menu__info {
    padding-top: 1.0248901903vw;
  }
}
@media screen and (width <= 811px) {
  .modal-menu__info {
    padding-top: 1.8229166667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-menu__info {
    padding-top: 3.7333333333vw;
  }
}
.modal-menu__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .modal-menu__social {
    gap: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .modal-menu__social {
    gap: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-menu__social {
    gap: 2.1333333333vw;
  }
}
.modal-app {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -250%) translateZ(0);
  background: var(--gray-white);
  z-index: 1000;
  display: none;
  max-width: 29.1666666667vw;
  width: 100%;
  background: var(--gray-lighter);
  box-shadow: var(--shadow-far);
  opacity: 0;
  will-change: transform, opacity;
  backface-visibility: hidden;
  overscroll-behavior: contain;
  padding: 1.4583333333vw;
  border-radius: 1.6666666667vw;
  transition: transform 0.5s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.5s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .modal-app {
    padding: 2.0497803807vw;
  }
}
@media screen and (width <= 811px) {
  .modal-app {
    padding: 0vw;
  }
}
@media screen and (width <= 481px) {
  .modal-app {
    padding: 0vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-app {
    border-radius: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .modal-app {
    border-radius: 0vw;
  }
}
@media screen and (width <= 481px) {
  .modal-app {
    border-radius: 0vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-app {
    max-width: 40.9956076135vw;
  }
}
@media screen and (width <= 811px) {
  .modal-app {
    top: unset;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translate(0, 100%) translateZ(0);
    max-width: 100%;
  }
}
.modal-app.active {
  opacity: 1;
  transform: translate(-50%, -50%) translateZ(0);
}
@media screen and (width <= 811px) {
  .modal-app.active {
    transform: translate(0) translateZ(0);
  }
}
@media screen and (width > 811px) {
  .modal-app__close {
    position: absolute;
    top: 0;
    left: calc(100% + 0.625vw);
    border-radius: 50%;
    background: var(--gray-black);
    color: var(--gray-white);
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
  .modal-app__close:active {
    background: var(--gray-darker);
  }
  .modal-app__close:disabled {
    cursor: not-allowed;
    background: var(--gray-medium);
  }
}
@media screen and (width > 811px) and (width <= 1401px) {
  .modal-app__close {
    width: 2.9282576867vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width > 811px) and (width <= 811px) {
  .modal-app__close {
    width: 5.2083333333vw;
    height: 5.2083333333vw;
  }
}
@media screen and (width > 811px) and (width <= 481px) {
  .modal-app__close {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
@media screen and (width > 811px) and (hover: hover) and (pointer: fine) {
  .modal-app__close:hover {
    background: var(--gray-dark);
  }
}
@media screen and (width <= 811px) {
  .modal-app__top {
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-app__top {
    padding: 2.1333333333vw;
  }
}
@media screen and (width <= 811px) {
  .modal-app__top:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 1.0416666667vw;
    right: 1.0416666667vw;
    height: 0.2604166667vw;
    background: var(--gray-white);
  }
}
@media screen and (width <= 481px) {
  .modal-app__top:after {
    left: 2.1333333333vw;
    right: 2.1333333333vw;
    height: 0.5333333333vw;
  }
}
@media screen and (width <= 811px) {
  .modal-app__container {
    padding: 2.6041666667vw 2.0833333333vw 9.1145833333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-app__container {
    padding: 5.3333333333vw 4.2666666667vw 18.6666666667vw;
  }
}
.modal-app__title {
  color: var(--gray-darker);
  padding-bottom: 1.0416666667vw;
  font-size: 1.4583333333vw;
  font-family: var(--font-family-heading-add);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .modal-app__title {
    padding-bottom: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .modal-app__title {
    padding-bottom: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-app__title {
    padding-bottom: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-app__title {
    font-size: 2.0497803807vw;
  }
}
@media screen and (width <= 811px) {
  .modal-app__title {
    font-size: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .modal-app__title {
    font-size: 6.4vw;
  }
}
@media screen and (width <= 811px) {
  .modal-app__title {
    border-bottom: solid var(--gray-white);
    margin-bottom: 1.0416666667vw;
    border-width: max(0.1041666667vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .modal-app__title {
    margin-bottom: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .modal-app__title {
    margin-bottom: 2.6041666667vw;
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .modal-app__title {
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (width <= 811px) and (width <= 1401px) {
  .modal-app__title {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 811px) {
  .modal-app__title {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 811px) and (width <= 481px) {
  .modal-app__title {
    border-width: max(0.5333333333vw, 2px);
  }
}
.modal-app__qr {
  display: flex;
  align-items: flex-start;
  gap: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .modal-app__qr {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .modal-app__qr {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-app__qr {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 811px) {
  .modal-app__qr {
    display: none;
  }
}
.modal-app__qr-img {
  background: var(--gray-white);
  width: 6.25vw;
  height: 6.25vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .modal-app__qr-img {
    width: 8.78477306vw;
    height: 8.78477306vw;
  }
}
@media screen and (width <= 811px) {
  .modal-app__qr-img {
    width: 15.625vw;
    height: 15.625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-app__qr-img {
    width: 32vw;
    height: 32vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-app__qr-img {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .modal-app__qr-img {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-app__qr-img {
    border-radius: 3.2vw;
  }
}
.modal-app__qr-text {
  flex: 1;
  align-self: center;
  color: var(--gray-dark);
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .modal-app__qr-text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .modal-app__qr-text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-app__qr-text {
    font-size: 4.2666666667vw;
  }
}
.modal-app__btn {
  width: 100%;
}
.modal-app__btns {
  display: flex;
  border-top: solid var(--gray-white);
  gap: 0.625vw;
  margin-top: 1.0416666667vw;
  padding-top: 1.0416666667vw;
  border-width: max(0.1041666667vw, 2px);
}
@media screen and (width <= 1401px) {
  .modal-app__btns {
    gap: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .modal-app__btns {
    gap: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-app__btns {
    gap: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-app__btns {
    margin-top: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .modal-app__btns {
    margin-top: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-app__btns {
    margin-top: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-app__btns {
    padding-top: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .modal-app__btns {
    padding-top: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-app__btns {
    padding-top: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-app__btns {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .modal-app__btns {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .modal-app__btns {
    border-width: max(0.5333333333vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .modal-app__btns {
    display: none;
  }
}
.modal-success {
  z-index: 1000;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -250%) translateZ(0);
  display: none;
  max-width: 29.1666666667vw;
  width: 100%;
  background: var(--gray-lighter);
  box-shadow: var(--shadow-far);
  opacity: 0;
  will-change: transform, opacity;
  backface-visibility: hidden;
  overscroll-behavior: contain;
  padding: 1.4583333333vw;
  padding-right: 0.625vw;
  border-radius: 1.6666666667vw;
  transition: transform 0.5s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.5s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .modal-success {
    padding: 2.0497803807vw;
  }
}
@media screen and (width <= 811px) {
  .modal-success {
    padding: 0vw;
  }
}
@media screen and (width <= 481px) {
  .modal-success {
    padding: 0vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-success {
    padding-right: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .modal-success {
    padding-right: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-success {
    padding-right: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-success {
    border-radius: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .modal-success {
    border-radius: 0vw;
  }
}
@media screen and (width <= 481px) {
  .modal-success {
    border-radius: 0vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-success {
    max-width: 40.9956076135vw;
  }
}
@media screen and (width <= 811px) {
  .modal-success {
    top: unset;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translate(0, 100%) translateZ(0);
    max-width: 100%;
  }
}
.modal-success.active {
  opacity: 1;
  transform: translate(-50%, -50%) translateZ(0);
}
@media screen and (width <= 811px) {
  .modal-success.active {
    transform: translate(0) translateZ(0);
  }
}
@media screen and (width > 811px) {
  .modal-success__close {
    position: absolute;
    top: 0;
    left: calc(100% + 0.625vw);
    border-radius: 50%;
    background: var(--gray-black);
    color: var(--gray-white);
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
  .modal-success__close:active {
    background: var(--gray-darker);
  }
  .modal-success__close:disabled {
    cursor: not-allowed;
    background: var(--gray-medium);
  }
}
@media screen and (width > 811px) and (width <= 1401px) {
  .modal-success__close {
    width: 2.9282576867vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width > 811px) and (width <= 811px) {
  .modal-success__close {
    width: 5.2083333333vw;
    height: 5.2083333333vw;
  }
}
@media screen and (width > 811px) and (width <= 481px) {
  .modal-success__close {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
@media screen and (width > 811px) and (hover: hover) and (pointer: fine) {
  .modal-success__close:hover {
    background: var(--gray-dark);
  }
}
@media screen and (width <= 811px) {
  .modal-success__top {
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-success__top {
    padding: 2.1333333333vw;
  }
}
@media screen and (width <= 811px) {
  .modal-success__top:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 1.0416666667vw;
    right: 1.0416666667vw;
    height: 0.2604166667vw;
    background: var(--gray-white);
  }
}
@media screen and (width <= 481px) {
  .modal-success__top:after {
    left: 2.1333333333vw;
    right: 2.1333333333vw;
    height: 0.5333333333vw;
  }
}
@media screen and (width <= 811px) {
  .modal-success__container {
    padding: 2.6041666667vw 2.0833333333vw 9.1145833333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-success__container {
    padding: 5.3333333333vw 4.2666666667vw 18.6666666667vw;
  }
}
.modal-success__block {
  display: flex;
  align-items: flex-start;
  gap: 1.0416666667vw;
  margin-bottom: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .modal-success__block {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .modal-success__block {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-success__block {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-success__block {
    margin-bottom: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .modal-success__block {
    margin-bottom: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-success__block {
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (width <= 811px) {
  .modal-success__block {
    flex-direction: column;
  }
}
.modal-success__marker.marker {
  flex-shrink: 0;
  background: var(--success-dark);
}
.modal-success__title {
  color: var(--gray-darker);
  padding-bottom: 0.4166666667vw;
  font-size: 1.4583333333vw;
  font-family: var(--font-family-heading-add);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .modal-success__title {
    padding-bottom: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .modal-success__title {
    padding-bottom: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-success__title {
    padding-bottom: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-success__title {
    font-size: 2.0497803807vw;
  }
}
@media screen and (width <= 811px) {
  .modal-success__title {
    font-size: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .modal-success__title {
    font-size: 6.4vw;
  }
}
.modal-success__text {
  color: var(--gray-dark);
  font-size: 0.9375vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .modal-success__text {
    font-size: 1.317715959vw;
  }
}
@media screen and (width <= 811px) {
  .modal-success__text {
    font-size: 2.34375vw;
  }
}
@media screen and (width <= 481px) {
  .modal-success__text {
    font-size: 4.8vw;
  }
}
.marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: transparent solid;
  width: fit-content;
  color: var(--gray-white);
  background: var(--color1-main);
  transition: border 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), background 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), color 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
  border-width: max(0.1041666667vw, 2px);
  /*----------SIZES-----------*/
}
@media screen and (width <= 1401px) {
  .marker {
    border-width: max(0.1464128843vw, 2px);
  }
}
@media screen and (width <= 811px) {
  .marker {
    border-width: max(0.2604166667vw, 2px);
  }
}
@media screen and (width <= 481px) {
  .marker {
    border-width: max(0.5333333333vw, 2px);
  }
}
.marker__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: fill 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02), stroke 0.2s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
.marker-size_xl {
  width: 4.1666666667vw;
  height: 4.1666666667vw;
  border-radius: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .marker-size_xl {
    width: 5.8565153734vw;
    height: 5.8565153734vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_xl {
    width: 10.4166666667vw;
    height: 10.4166666667vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_xl {
    width: 21.3333333333vw;
    height: 21.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .marker-size_xl {
    border-radius: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_xl {
    border-radius: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_xl {
    border-radius: 4.2666666667vw;
  }
}
.marker-size_xl .marker__icon {
  width: 2.0833333333vw;
  height: 2.0833333333vw;
}
@media screen and (width <= 1401px) {
  .marker-size_xl .marker__icon {
    width: 2.9282576867vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_xl .marker__icon {
    width: 5.2083333333vw;
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_xl .marker__icon {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
.marker-size_l {
  width: 2.9166666667vw;
  height: 2.9166666667vw;
  border-radius: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .marker-size_l {
    width: 4.0995607613vw;
    height: 4.0995607613vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_l {
    width: 7.2916666667vw;
    height: 7.2916666667vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_l {
    width: 14.9333333333vw;
    height: 14.9333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .marker-size_l {
    border-radius: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_l {
    border-radius: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_l {
    border-radius: 4.2666666667vw;
  }
}
.marker-size_l .marker__icon {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .marker-size_l .marker__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_l .marker__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_l .marker__icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.marker-size_m {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .marker-size_m {
    width: 3.513909224vw;
    height: 3.513909224vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_m {
    width: 6.25vw;
    height: 6.25vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_m {
    width: 12.8vw;
    height: 12.8vw;
  }
}
@media screen and (width <= 1401px) {
  .marker-size_m {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_m {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_m {
    border-radius: 3.2vw;
  }
}
.marker-size_m .marker__icon {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .marker-size_m .marker__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_m .marker__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_m .marker__icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.marker-size_s {
  width: 2.0833333333vw;
  height: 2.0833333333vw;
  border-radius: 0.625vw;
}
@media screen and (width <= 1401px) {
  .marker-size_s {
    width: 2.9282576867vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_s {
    width: 5.2083333333vw;
    height: 5.2083333333vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_s {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
@media screen and (width <= 1401px) {
  .marker-size_s {
    border-radius: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_s {
    border-radius: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_s {
    border-radius: 3.2vw;
  }
}
.marker-size_s .marker__icon {
  width: 1.25vw;
  height: 1.25vw;
}
@media screen and (width <= 1401px) {
  .marker-size_s .marker__icon {
    width: 1.756954612vw;
    height: 1.756954612vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_s .marker__icon {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_s .marker__icon {
    width: 6.4vw;
    height: 6.4vw;
  }
}
.marker-size_xs {
  width: 1.6666666667vw;
  height: 1.6666666667vw;
  border-radius: 0.4166666667vw;
}
@media screen and (width <= 1401px) {
  .marker-size_xs {
    width: 2.3426061493vw;
    height: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_xs {
    width: 4.1666666667vw;
    height: 4.1666666667vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_xs {
    width: 8.5333333333vw;
    height: 8.5333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .marker-size_xs {
    border-radius: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_xs {
    border-radius: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_xs {
    border-radius: 2.1333333333vw;
  }
}
.marker-size_xs .marker__icon {
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
@media screen and (width <= 1401px) {
  .marker-size_xs .marker__icon {
    width: 1.1713030747vw;
    height: 1.1713030747vw;
  }
}
@media screen and (width <= 811px) {
  .marker-size_xs .marker__icon {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 481px) {
  .marker-size_xs .marker__icon {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.modal-error {
  z-index: 1000;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -250%) translateZ(0);
  display: none;
  max-width: 29.1666666667vw;
  width: 100%;
  background: var(--gray-lighter);
  box-shadow: var(--shadow-far);
  opacity: 0;
  will-change: transform, opacity;
  backface-visibility: hidden;
  overscroll-behavior: contain;
  padding: 1.4583333333vw;
  padding-right: 0.625vw;
  border-radius: 1.6666666667vw;
  transition: transform 0.5s cubic-bezier(0.14, 0.18, 0.16, 1.02), opacity 0.5s cubic-bezier(0.14, 0.18, 0.16, 1.02);
}
@media screen and (width <= 1401px) {
  .modal-error {
    padding: 2.0497803807vw;
  }
}
@media screen and (width <= 811px) {
  .modal-error {
    padding: 0vw;
  }
}
@media screen and (width <= 481px) {
  .modal-error {
    padding: 0vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-error {
    padding-right: 0.878477306vw;
  }
}
@media screen and (width <= 811px) {
  .modal-error {
    padding-right: 1.5625vw;
  }
}
@media screen and (width <= 481px) {
  .modal-error {
    padding-right: 3.2vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-error {
    border-radius: 2.3426061493vw;
  }
}
@media screen and (width <= 811px) {
  .modal-error {
    border-radius: 0vw;
  }
}
@media screen and (width <= 481px) {
  .modal-error {
    border-radius: 0vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-error {
    max-width: 40.9956076135vw;
  }
}
@media screen and (width <= 811px) {
  .modal-error {
    top: unset;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translate(0, 100%) translateZ(0);
    max-width: 100%;
  }
}
.modal-error.active {
  opacity: 1;
  transform: translate(-50%, -50%) translateZ(0);
}
@media screen and (width <= 811px) {
  .modal-error.active {
    transform: translate(0) translateZ(0);
  }
}
@media screen and (width > 811px) {
  .modal-error__close {
    position: absolute;
    top: 0;
    left: calc(100% + 0.625vw);
    border-radius: 50%;
    background: var(--gray-black);
    color: var(--gray-white);
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
  .modal-error__close:active {
    background: var(--gray-darker);
  }
  .modal-error__close:disabled {
    cursor: not-allowed;
    background: var(--gray-medium);
  }
}
@media screen and (width > 811px) and (width <= 1401px) {
  .modal-error__close {
    width: 2.9282576867vw;
    height: 2.9282576867vw;
  }
}
@media screen and (width > 811px) and (width <= 811px) {
  .modal-error__close {
    width: 5.2083333333vw;
    height: 5.2083333333vw;
  }
}
@media screen and (width > 811px) and (width <= 481px) {
  .modal-error__close {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
@media screen and (width > 811px) and (hover: hover) and (pointer: fine) {
  .modal-error__close:hover {
    background: var(--gray-dark);
  }
}
@media screen and (width <= 811px) {
  .modal-error__top {
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-error__top {
    padding: 2.1333333333vw;
  }
}
@media screen and (width <= 811px) {
  .modal-error__top:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 1.0416666667vw;
    right: 1.0416666667vw;
    height: 0.2604166667vw;
    background: var(--gray-white);
  }
}
@media screen and (width <= 481px) {
  .modal-error__top:after {
    left: 2.1333333333vw;
    right: 2.1333333333vw;
    height: 0.5333333333vw;
  }
}
@media screen and (width <= 811px) {
  .modal-error__container {
    padding: 2.6041666667vw 2.0833333333vw 9.1145833333vw;
  }
}
@media screen and (width <= 481px) {
  .modal-error__container {
    padding: 5.3333333333vw 4.2666666667vw 18.6666666667vw;
  }
}
.modal-error__block {
  display: flex;
  align-items: flex-start;
  gap: 1.0416666667vw;
  margin-bottom: 1.0416666667vw;
}
@media screen and (width <= 1401px) {
  .modal-error__block {
    gap: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .modal-error__block {
    gap: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-error__block {
    gap: 5.3333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-error__block {
    margin-bottom: 1.4641288433vw;
  }
}
@media screen and (width <= 811px) {
  .modal-error__block {
    margin-bottom: 2.6041666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-error__block {
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (width <= 811px) {
  .modal-error__block {
    flex-direction: column;
  }
}
.modal-error__marker.marker {
  flex-shrink: 0;
  background: var(--error-dark);
}
.modal-error__title {
  color: var(--gray-darker);
  padding-bottom: 0.4166666667vw;
  font-size: 1.4583333333vw;
  font-family: var(--font-family-heading-add);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 1401px) {
  .modal-error__title {
    padding-bottom: 0.5856515373vw;
  }
}
@media screen and (width <= 811px) {
  .modal-error__title {
    padding-bottom: 1.0416666667vw;
  }
}
@media screen and (width <= 481px) {
  .modal-error__title {
    padding-bottom: 2.1333333333vw;
  }
}
@media screen and (width <= 1401px) {
  .modal-error__title {
    font-size: 2.0497803807vw;
  }
}
@media screen and (width <= 811px) {
  .modal-error__title {
    font-size: 3.125vw;
  }
}
@media screen and (width <= 481px) {
  .modal-error__title {
    font-size: 6.4vw;
  }
}
.modal-error__text {
  color: var(--gray-dark);
  font-size: 0.9375vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (width <= 1401px) {
  .modal-error__text {
    font-size: 1.317715959vw;
  }
}
@media screen and (width <= 811px) {
  .modal-error__text {
    font-size: 2.34375vw;
  }
}
@media screen and (width <= 481px) {
  .modal-error__text {
    font-size: 4.8vw;
  }
}
