  body.qt-page--home {
    background: #ffffff;
  }

  .qt-home-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--qt-deep);
  }

  .qt-home-hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.045);
    transform-origin: center;
    animation: qtHomeHeroMediaIn 1400ms cubic-bezier(0.22, 1, 0.36, 1) 60ms both;
    will-change: opacity, transform;
  }

  .qt-home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 18, 34, 0.74) 0%, rgba(8, 18, 34, 0.2) 48%, rgba(8, 18, 34, 0.58) 100%);
    opacity: 0;
    pointer-events: none;
    animation: qtHomeHeroOverlayIn 900ms ease-out 120ms both;
  }

  .qt-home-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    max-width: 980px;
    margin: 0 auto;
    padding: 60px 20px 80px;
    color: #ffffff;
    text-align: center;
  }

  .qt-home-hero__title {
    max-width: 860px;
    margin: 0;
    font-size: clamp(42px, 5.4vw, 34px);
    font-weight: 500;
    line-height: 1.28;
    letter-spacing: 0;
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    animation: qtHomeHeroTextRise 760ms cubic-bezier(0.22, 1, 0.36, 1) 260ms both;
    will-change: opacity, transform;
  }

  .qt-home-hero__description {
    max-width: 760px;
    margin: clamp(5rem, 8.4vw, 9rem) 0 0;
    font-size: 20px;
    font-weight: 350;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.86);
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    animation: qtHomeHeroTextRise 760ms cubic-bezier(0.22, 1, 0.36, 1) 440ms both;
    will-change: opacity, transform;
  }

  .qt-home-hero__description--secondary {
    margin-top: clamp(1rem, 1.6vw, 1.75rem);
    animation-delay: 620ms;
  }

  @keyframes qtHomeHeroMediaIn {
    from {
      opacity: 0;
      transform: scale(1.045);
    }

    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes qtHomeHeroOverlayIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  @keyframes qtHomeHeroTextRise {
    from {
      opacity: 0;
      transform: translate3d(0, 28px, 0);
    }

    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

  .qt-home-system {
    position: relative;
    background: #fff;
  }

  .qt-home-system__source-text {
    display: none;
  }

  .qt-home-system__mobile-grid {
    display: none;
  }

  .qt-home-system__mobile-image {
    display: block;
    width: 100%;
    height: auto;
  }

  .qt-home-system__stage {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background: #fff;
  }

  .qt-home-system__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 760px;
    background: #fff;
  }

  .qt-home-system__item {
    position: relative;
    min-width: 0;
    min-height: 760px;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    z-index: 1;
  }

  .qt-home-system__item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(8, 23, 45, 0.03) 0%, rgba(8, 23, 45, 0.08) 52%, rgba(8, 23, 45, 0.16) 100%);
    opacity: 0.72;
    transition: opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .qt-home-system__item::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.14) 16%, rgba(255, 255, 255, 0.18) 50%, rgba(255, 255, 255, 0.12) 84%, rgba(255, 255, 255, 0.03) 100%);
    opacity: 0.42;
    transition: opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .qt-home-system__item:last-child::after {
    display: none;
  }

  .qt-home-system__item:hover::before,
  .qt-home-system__item:focus-visible::before,
  .qt-home-system__item.is-active::before {
    opacity: 0.12;
  }

  .qt-home-system__item:hover::after,
  .qt-home-system__item:focus-visible::after,
  .qt-home-system__item.is-active::after {
    opacity: 0.1;
  }

  .qt-home-system__item:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: -2px;
  }

  .qt-home-system__item.is-active {
    z-index: 4;
  }

  .qt-home-system__item-gallery {
    position: absolute;
    inset: -34% 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    pointer-events: none;
  }

  .qt-home-system__item:first-child .qt-home-system__item-gallery {
    left: 0;
  }

  .qt-home-system__item:last-child .qt-home-system__item-gallery {
    right: 0;
  }

  .qt-home-system__gallery-frame {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 100%;
    object-fit: fill;
    opacity: 0;
    filter: saturate(0.98);
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: opacity, filter;
    transition: opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1), filter 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .qt-home-system__item[data-system-display-state="0"] .qt-home-system__gallery-frame.is-state-0,
  .qt-home-system__item[data-system-display-state="1"] .qt-home-system__gallery-frame.is-state-1,
  .qt-home-system__item[data-system-display-state="2"] .qt-home-system__gallery-frame.is-state-2,
  .qt-home-system__item[data-system-display-state="3"] .qt-home-system__gallery-frame.is-state-3,
  .qt-home-system__item[data-system-display-state="4"] .qt-home-system__gallery-frame.is-state-4 {
    opacity: 1;
    filter: saturate(1);
    transform: translateZ(0);
  }

  .qt-home-about {
    position: relative;
    padding: 0;
    background: #ffffff;
    overflow: hidden;
    min-height: clamp(620px, 45.84vw, 880px);
  }

  .qt-home-about__background {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }

  .qt-home-about::after {
    display: none;
  }

  .qt-home-about__inner {
    --qt-home-about-side-space: clamp(4rem, 7vw, 8.25rem);
    --qt-home-about-center-gap: clamp(2.5rem, 4.2vw, 5rem);
    position: absolute;
    top: 51%;
    left: 50%;
    display: grid;
    width: min(var(--qt-wrap-max), calc(100% - (var(--qt-wrap-gutter) * 2)));
    box-sizing: border-box;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: 1fr;
    align-items: center;
    justify-items: start;
    gap: var(--qt-home-about-center-gap);
    padding: 0 var(--qt-home-about-side-space);
    transform: translateX(-50%);
    z-index: 1;
  }

  .qt-home-about__label {
    display: flex;
    align-items: center;
  }

  .qt-home-about__label-image {
    width: clamp(12rem, 15vw, 16.25rem);
  }

  .qt-home-about__label {
    display: flex;
    align-items: center;
  }

  .qt-home-about__label-image {
    width: clamp(12rem, 15vw, 15.3125rem);
    margin-left: 0;
  }

  .qt-home-about__content {
    justify-self: end;
    width: 100%;
    max-width: 860px;
  }

  .qt-home-about__text {
    margin: 0;
    color: rgb(77, 77, 77);
    font-size: clamp(1rem, calc(0.56rem + 0.54vw), 1.0625rem);
    font-weight: 400;
    line-height: clamp(1.875rem, 2vw, 2.125rem);
    letter-spacing: 0;
    text-align: justify;
  }

  .qt-home-about__text+.qt-home-about__text {
    margin-top: 0;
  }

  .qt-home-products {
    padding: 88px 0 104px;
    background: #ffffff;
  }

  .qt-home-products__frame {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 0 26px;
  }

  .qt-home-products__source-text {
    display: none;
  }

  .qt-home-products__viewport {
    overflow: hidden;
    background: #ffffff;
  }

  .qt-home-products__track {
    display: flex;
    will-change: transform;
  }

  .qt-home-products__slide {
    flex: 0 0 auto;
    min-width: 0;
  }

  .qt-home-products__slide-image {
    display: block;
    width: 100%;
    height: auto;
  }

  .qt-home-products__more {
    position: absolute;
    top: 58px;
    right: 48px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 48px;
    color: rgb(77, 77, 77);
    font-size: 0.875rem;
    font-weight: 350;
    line-height: 1.4;
    letter-spacing: 0;
    background: center / 100% 100% no-repeat url('/front/img/home/main/learn-more-default-bg.svg');
    transition: color 0.2s ease, transform 0.2s ease, background-image 0.2s ease;
  }

  .qt-home-products__more:hover,
  .qt-home-products__more:focus-visible {
    color: #fff;
    background-image: url('/front/img/home/main/learn-more-active-bg.svg');
    transform: translateY(-1px);
  }

  .qt-home-products__nav {
    position: absolute;
    right: -60px;
    bottom: 74px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .qt-home-products__arrow-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .qt-home-products__arrow-button:focus-visible {
    outline: 2px solid rgba(236, 174, 68, 0.5);
    outline-offset: 6px;
  }

  .qt-home-products__arrow-button[disabled] {
    cursor: default;
  }

  .qt-home-products__arrow-button[aria-disabled="true"] {
    cursor: default;
  }

  .qt-home-products__arrow-stack {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 114px;
    height: 21px;
  }

  .qt-home-products__arrow-icon {
    position: absolute;
    top: 50%;
    display: block;
    height: auto;
    transform: translateY(-50%);
    transition: opacity 0.18s ease;
  }

  .qt-home-products__arrow-icon--prev-long {
    left: 0;
    width: 114px;
  }

  .qt-home-products__arrow-icon--next-long {
    right: 0;
    width: 114px;
  }

  .qt-home-products__arrow-icon--prev-short {
    left: 0;
    width: 30px;
  }

  .qt-home-products__arrow-icon--next-short {
    right: 0;
    width: 30px;
  }

  .qt-home-products__arrow-icon--prev-long,
  .qt-home-products__arrow-icon--next-short {
    opacity: 0;
  }

  .qt-home-products__nav.is-prev-hover .qt-home-products__arrow-icon--prev-short,
  .qt-home-products__nav.is-prev-hover .qt-home-products__arrow-icon--next-long {
    opacity: 0;
  }

  .qt-home-products__nav.is-prev-hover .qt-home-products__arrow-icon--prev-long,
  .qt-home-products__nav.is-prev-hover .qt-home-products__arrow-icon--next-short {
    opacity: 1;
  }

  .qt-home-honor {
    padding: 24px 0 112px;
    background: #fff
  }

  .qt-home-honor__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    align-items: start;
    gap: 44px;
  }

  .qt-home-honor__main {
    min-width: 0;
  }

  .qt-home-honor__header {
    display: flex;
    justify-content: center;
    margin-bottom: 56px;
  }

  .qt-home-honor__title-image {
    width: min(100%, 216px);
    height: auto;
  }

  .qt-home-honor__carousel {
    position: relative;
    min-width: 0;
    padding: 70px 0 0;
  }

  .qt-home-honor__viewport {
    overflow: hidden;
  }

  .qt-home-honor__track {
    display: flex;
    align-items: flex-start;
    will-change: transform;
  }

  .qt-home-honor__slide {
    box-sizing: border-box;
    flex: 0 0 auto;
    min-width: 0;
    padding: 0 14px;
  }

  .qt-home-honor__card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .qt-home-honor__card-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
  }

  .qt-home-honor__meta {
    display: grid;
    justify-items: center;
    padding: 22px 6px 0;
    text-align: center;
  }

  .qt-home-honor__name {
    margin: 0;
    min-height: 0;
    color: rgb(77, 77, 77);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0;
  }

  .qt-home-honor__issuer {
    margin: 8px 0 0;
    min-height: calc(16px * 1.75 * 2);
    color: rgb(77, 77, 77);
    font-size: 14px;
    font-weight: 350;
    line-height: 1.75;
    letter-spacing: 0;
    text-wrap: pretty;
  }

  .qt-home-honor__arrow {
    position: absolute;
    top: 20px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .qt-home-honor__arrow:hover,
  .qt-home-honor__arrow:focus-visible {
    transform: translateY(-50%) scale(1.04);
  }

  .qt-home-honor__arrow:focus-visible {
    outline: 2px solid rgba(236, 174, 68, 0.52);
    outline-offset: 4px;
  }

  .qt-home-honor__arrow[disabled] {
    cursor: default;
    transform: translateY(-50%);
  }

  .qt-home-honor__arrow--prev {
    left: 12px;
  }

  .qt-home-honor__arrow--next {
    right: 12px;
  }

  .qt-home-honor__arrow-icon {
    display: block;
    width: 22px;
    height: auto;
  }

  .qt-home-honor__trophy {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 100%;
    margin: 100px 0 0;
  }

  .qt-home-honor__trophy-image {
    display: block;
    width: min(100%, 320px);
    height: auto;
    filter: drop-shadow(0 22px 44px rgba(114, 76, 12, 0.18));
  }

  @media (max-width: 1560px) {
    .qt-home-about {
      padding: 0;
      overflow: hidden;
      min-height: clamp(620px, 45.84vw, 880px);
    }

    .qt-home-about__inner {
      position: absolute;
      top: 51%;
      left: 50%;
      --qt-home-about-side-space: clamp(3.5rem, 7vw, 8rem);
      --qt-home-about-center-gap: clamp(2.25rem, 4.2vw, 4.75rem);
      grid-template-columns: auto minmax(0, 1fr);
      align-items: center;
      justify-items: start;
      gap: var(--qt-home-about-center-gap);
      margin-top: 0;
      transform: translateX(-50%);
    }

    .qt-home-about__label-image {
      width: clamp(11rem, 15vw, 15.3125rem);
      margin-left: 0;
    }

    .qt-home-about__content {
      justify-self: end;
      width: 100%;
      max-width: 860px;
    }

    .qt-home-products__nav {
      right: 34px;
    }
  }

  @media (max-width: 1200px) {

    .qt-home-system__stage,
    .qt-home-system__grid,
    .qt-home-system__item {
      min-height: 640px;
    }

    .qt-home-about {
      padding: 0;
      overflow: hidden;
      min-height: clamp(580px, 48.34vw, 620px);
    }

    .qt-home-about__background {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center bottom;
    }

    .qt-home-about__inner {
      position: absolute;
      top: 48%;
      left: 50%;
      --qt-home-about-side-space: clamp(2rem, 4.7vw, 3.5rem);
      --qt-home-about-center-gap: clamp(1.25rem, 2.8vw, 2.25rem);
      grid-template-columns: auto minmax(0, 1fr);
      align-items: center;
      justify-items: start;
      gap: var(--qt-home-about-center-gap);
      margin-top: 0;
      transform: translateX(-50%);
    }

    .qt-home-about__label-image {
      width: clamp(9.75rem, 15vw, 13.75rem);
      margin-left: 0;
    }

    .qt-home-about__content {
      justify-self: end;
      width: 100%;
      max-width: 820px;
    }

    .qt-home-about__text {
      font-size: clamp(0.9375rem, calc(0.56rem + 0.5vw), 1rem);
      line-height: clamp(1.75rem, 2.3vw, 1.9375rem);
    }



    .qt-home-products__more {
      top: 42px;
      right: 34px;
    }

    .qt-home-products__nav {
      right: 34px;
      bottom: 54px;
    }

    .qt-home-honor {
      padding-top: 20px;
      padding-bottom: 96px;
    }

    .qt-home-honor__body {
      grid-template-columns: minmax(0, 1fr) 238px;
      gap: 28px;
    }

    .qt-home-honor__header {
      margin-bottom: 44px;
    }

    .qt-home-honor__carousel {
      padding: 52px 24px 0;
    }

    .qt-home-honor__arrow {
      top: 26px;
    }

    .qt-home-honor__name {
      min-height: 0;
      font-size: 0.875rem;
      line-height: 1.5;
    }

    .qt-home-honor__trophy {
      margin-top: 29px;
    }

  }

  @media (max-width: 960px) {
    .qt-home-system__stage {
      min-height: 560px;
      overflow: hidden;
    }

    .qt-home-system__grid {
      width: 100%;
      min-width: 0;
      min-height: 560px;
    }

    .qt-home-system__item {
      min-height: 560px;
    }

    .qt-home-about {
      min-height: 0;
      padding: 24px 0 38px;
      overflow: visible;
    }

    .qt-home-about__background {
      display: none;
      position: relative;
      inset: auto;
      width: 100%;
      height: auto;
      transform: none;
      margin-top: 0;
      object-fit: initial;
      object-position: initial;
    }

    .qt-home-about__inner {
      position: relative;
      top: auto;
      left: auto;
      grid-template-columns: minmax(0, 1fr);
      align-items: start;
      justify-items: start;
      gap: 20px;
      margin-top: 20px;
      padding: 0;
      transform: none;
    }

    .qt-home-about__label-image {
      width: min(100%, 6rem);
    }

    .qt-home-about__text {
      font-size: 1rem;
      line-height: 1.6;
    }

    .qt-home-products {
      padding: 74px 0 88px;
    }

    .qt-home-products__frame {
      max-width: none;
      width: 100%;
      padding-bottom: 0;
    }

    .qt-home-products__more {
      top: 26px;
      right: 26px;
      width: 9.75rem;
      height: 2.625rem;
      font-size: 0.875rem;
      line-height: 1.4;
    }

    .qt-home-products__nav {
      right: 24px;
      bottom: 28px;
      gap: 10px;
      --qt-product-arrow-long: 88px;
      --qt-product-arrow-short: 24px;
    }

    .qt-home-products__arrow-icon--prev-short,
    .qt-home-products__arrow-icon--prev-long,
    .qt-home-products__arrow-icon--next-short,
    .qt-home-products__arrow-icon--next-long {
      width: auto;
    }

    .qt-home-products__arrow-stack {
      width: 88px;
      height: 18px;
    }

    .qt-home-products__arrow-icon--prev-short,
    .qt-home-products__arrow-icon--next-short {
      width: 24px;
    }

    .qt-home-products__arrow-icon--prev-long,
    .qt-home-products__arrow-icon--next-long {
      width: 88px;
    }

    .qt-home-honor {
      padding-top: 20px;
      padding-bottom: 84px;
    }

    .qt-home-honor__body {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .qt-home-honor__header {
      margin-bottom: 38px;
    }

    .qt-home-honor__title-image {
      width: auto;
      max-width: 100%;
      height: 1.212rem;
    }

    .qt-home-honor__carousel {
      padding: 44px 20px 0;
    }

    .qt-home-honor__arrow {
      top: 16px;
      width: 44px;
      height: 44px;
    }

    .qt-home-honor__trophy {
      justify-content: flex-end;
      padding-right: 36px;
      margin-top: 27px;
    }

    .qt-home-honor__trophy-image {
      width: min(100%, 240px);
    }

    .qt-home-honor__name {
      min-height: 0;
      font-size: 1rem;
      line-height: 1.5;
    }

    .qt-home-honor__issuer {
      margin-top: 8px;
      min-height: 0;
      font-size: 0.875rem;
      line-height: 1.5;
    }


  }

  @media (max-width: 640px) {
    .qt-home-hero__content {
      padding-top: 112px;
      padding-bottom: 72px;
    }

    .qt-home-system__stage {
      min-height: 460px;
    }

    .qt-home-system__grid {
      width: 100%;
      min-width: 0;
      min-height: 460px;
    }

    .qt-home-system__item {
      min-height: 460px;
    }

    .qt-home-about {
      padding: 18px 0 30px;
    }

    .qt-home-about__inner {
      gap: 16px;
      margin-top: 16px;
    }

    .qt-home-about__label-image {
      width: min(100%, 5rem);
    }

    .qt-home-about__text {
      font-size: 1rem;
      line-height: 1.6;
    }

    .qt-home-products {
      padding: 60px 0 78px;
    }

    .qt-home-products__more {
      top: 16px;
      right: 14px;
      width: 8.75rem;
      height: 2.5rem;
      font-size: 0.875rem;
      line-height: 1.4;
    }

    .qt-home-products__nav {
      right: 14px;
      bottom: 18px;
      gap: 8px;
      --qt-product-arrow-long: 66px;
      --qt-product-arrow-short: 18px;
    }

    .qt-home-products__arrow-icon--prev-short,
    .qt-home-products__arrow-icon--prev-long,
    .qt-home-products__arrow-icon--next-short,
    .qt-home-products__arrow-icon--next-long {
      width: auto;
    }

    .qt-home-products__arrow-stack {
      width: 66px;
      height: 16px;
    }

    .qt-home-products__arrow-icon--prev-short,
    .qt-home-products__arrow-icon--next-short {
      width: 18px;
    }

    .qt-home-products__arrow-icon--prev-long,
    .qt-home-products__arrow-icon--next-long {
      width: 66px;
    }

    .qt-home-honor {
      padding-top: 12px;
      padding-bottom: 70px;
    }

    .qt-home-honor__title-image {
      width: auto;
      max-width: 100%;
      height: 1.01rem;
    }

    .qt-home-honor__header {
      margin-bottom: 32px;
    }

    .qt-home-honor__carousel {
      padding: 40px 16px 0;
    }

    .qt-home-honor__slide {
      padding: 0 8px;
    }

    .qt-home-honor__meta {
      padding-top: 18px;
    }

    .qt-home-honor__name {
      min-height: 0;
      font-size: 1rem;
      line-height: 1.5;
    }

    .qt-home-honor__issuer {
      margin-top: 8px;
      font-size: 0.875rem;
      line-height: 1.5;
    }

    .qt-home-honor__arrow {
      top: 14px;
      width: 40px;
      height: 40px;
    }

    .qt-home-honor__arrow-icon {
      width: 18px;
    }

    .qt-home-honor__trophy {
      justify-content: center;
      padding-right: 0;
      margin-top: 23px;
    }

  }

  .qt-home-clients {
    padding: clamp(3rem, 5vw, 4.5rem) 0 110px;
    background: #ffffff;
  }

  .qt-home-clients .qt-wrap {
    width: min(var(--qt-wrap-max), calc(100% - (var(--qt-wrap-gutter) * 2)));
  }

  .qt-home-clients__header {
    display: flex;
    justify-content: center;
    padding: 0 0 clamp(2rem, 4vw, 3rem);
  }

  .qt-home-clients__title {
    display: inline-flex;
    align-items: baseline;
    margin: 0;
    color: rgb(77, 77, 77);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
  }

  .qt-home-clients__title>span {
    display: inline-block;
  }

  .qt-home-clients__title-highlight {
    position: relative;
    display: inline-block;
    padding-bottom: clamp(0.75rem, 2vw, 1.5rem);
  }

  .qt-home-clients__title-highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: #edae45;
  }

  .qt-home-clients__image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .qt-home-float {
    --qt-home-float-panel-width: clamp(24rem, 25.6vw, 27rem);
    --qt-home-float-panel-height: clamp(42rem, 42.9vw, 45rem);
    --qt-home-float-panel-padding-x: clamp(2.25rem, 2.39vw, 2.5rem);
    --qt-home-float-panel-padding-top: clamp(2.25rem, 2.63vw, 2.75rem);
    --qt-home-float-panel-padding-bottom: clamp(2rem, 2.27vw, 2.375rem);
    --qt-home-float-field-gap: clamp(0.625rem, 0.78vw, 0.8125rem);
    --qt-home-float-label-gap: clamp(0.875rem, 1.02vw, 1.0625rem);
    --qt-home-float-control-height: 3rem;
    --qt-home-float-control-padding-x: 0.75rem;
    --qt-home-float-counter-width: 3.75rem;
    --qt-home-float-demand-height: clamp(8rem, 8.95vw, 9.375rem);
    --qt-home-float-captcha-width: clamp(6.75rem, 7.04vw, 7.375rem);
    --qt-home-float-submit-gap: clamp(0.75rem, 1vw, 1rem);
    position: fixed;
    right: 44px;
    bottom: 40px;
    z-index: 72;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }

  .qt-home-float__item {
    position: relative;
    display: flex;
    align-items: center;
  }

  .qt-home-float__button {
    position: relative;
    display: inline-flex;
    width: 60px;
    height: 60px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .qt-home-float__button--contact {
    cursor: pointer;
  }

  .qt-home-float__button:focus-visible {
    outline: 2px solid rgba(236, 174, 68, 0.56);
    outline-offset: 4px;
    border-radius: 12px;
  }

  .qt-home-float__icon {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    transition: opacity 0.22s ease;
  }

  .qt-home-float__icon--default {
    opacity: 1;
  }

  .qt-home-float__icon--active {
    opacity: 0;
  }

  .qt-home-float__item:hover .qt-home-float__icon--default,
  .qt-home-float__item.is-hover .qt-home-float__icon--default,
  .qt-home-float__item:focus-within .qt-home-float__icon--default {
    opacity: 0;
  }

  .qt-home-float__item:hover .qt-home-float__icon--active,
  .qt-home-float__item.is-hover .qt-home-float__icon--active,
  .qt-home-float__item:focus-within .qt-home-float__icon--active {
    opacity: 1;
  }

  .qt-home-float__popup {
    position: absolute;
    top: 0;
    right: calc(100% + 10px);
    opacity: 0;
    visibility: hidden;
    transform: translate3d(12px, 0, 0);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .qt-home-float__popup-image {
    display: block;
    width: 212px;
    height: auto;
  }

  .qt-home-float__item--hotline:hover .qt-home-float__popup,
  .qt-home-float__item--hotline.is-hover .qt-home-float__popup,
  .qt-home-float__item--hotline:focus-within .qt-home-float__popup {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }

  .qt-home-float__item--contact {
    z-index: 3;
  }

  .qt-home-float__item--contact.is-hover,
  .qt-home-float__item--contact.is-open {
    z-index: 6;
  }

  .qt-home-float__item--contact.is-hover .qt-home-float__icon--default,
  .qt-home-float__item--contact.is-open .qt-home-float__icon--default {
    opacity: 0;
  }

  .qt-home-float__item--contact.is-hover .qt-home-float__icon--active,
  .qt-home-float__item--contact.is-open .qt-home-float__icon--active {
    opacity: 1;
  }

  .qt-home-float__item--contact.is-hover .qt-home-float__contact-panel,
  .qt-home-float__item--contact.is-open .qt-home-float__contact-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .qt-home-float__contact-panel {
    position: absolute;
    right: calc(100% + 1.125rem);
    bottom: 0;
    width: var(--qt-home-float-panel-width);
    height: min(var(--qt-home-float-panel-height), calc(100vh - 2rem));
    height: min(var(--qt-home-float-panel-height), calc(100dvh - 2rem));
    max-height: calc(100vh - 2rem);
    max-height: calc(100dvh - 2rem);
    border-radius: 3px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    transform: translate3d(18px, 0, 0);
    background-color: #f2f2f2;
    background-image: url('/front/img/home/float/form-bg.svg');
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    box-shadow: 0 24px 48px rgba(10, 24, 46, 0.2);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  }

  .qt-home-float__contact-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    padding: var(--qt-home-float-panel-padding-top) var(--qt-home-float-panel-padding-x) var(--qt-home-float-panel-padding-bottom);
    box-sizing: border-box;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .qt-home-float__contact-inner::-webkit-scrollbar {
    display: none;
  }

  .qt-home-float__close {
    position: absolute;
    top: calc(var(--qt-home-float-panel-padding-top) - 0.59375rem);
    right: 1.125rem;
    z-index: 12;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    touch-action: manipulation;
  }

  .qt-home-float__close:focus-visible {
    outline: 2px solid rgba(236, 174, 68, 0.56);
    outline-offset: 2px;
    border-radius: 50%;
  }

  .qt-home-float__close-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.8125rem;
    height: 0.8125rem;
    transform: translate(-50%, -50%);
    transition: opacity 0.18s ease;
  }

  .qt-home-float__close-icon--hover {
    opacity: 0;
  }

  .qt-home-float__close:hover .qt-home-float__close-icon--default,
  .qt-home-float__close:focus-visible .qt-home-float__close-icon--default {
    opacity: 0;
  }

  .qt-home-float__close:hover .qt-home-float__close-icon--hover,
  .qt-home-float__close:focus-visible .qt-home-float__close-icon--hover {
    opacity: 1;
  }

  .qt-home-float__form {
    display: grid;
    grid-template-rows: auto auto auto minmax(0, 1fr) auto auto;
    row-gap: var(--qt-home-float-field-gap);
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: 100%;
    padding-top: 0;
    box-sizing: border-box;
  }

  .qt-home-float__field {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 0;
    box-sizing: border-box;
  }

  .qt-home-float__field+.qt-home-float__field {
    margin-top: 0;
  }

  .qt-home-float__label {
    display: block;
    margin: 0 0 var(--qt-home-float-label-gap);
    color: rgb(77, 77, 77);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .qt-home-float__control {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background-color: #ffffff;
    background-image: url('/front/img/home/float/input-bg.svg');
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }

  .qt-home-float__control:not(.qt-home-float__control--textarea) {
    height: var(--qt-home-float-control-height);
  }

  .qt-home-float__control--select {
    background-image: url('/front/img/home/float/select-bg.svg');
  }

  .qt-home-float__control--textarea {
    display: block;
    background-image: url('/front/img/home/float/textarea-bg.svg');
  }

  .qt-home-float__field--demand {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .qt-home-float__field--demand .qt-home-float__control--textarea {
    flex: 1 1 auto;
    min-height: var(--qt-home-float-demand-height);
    height: auto;
  }

  .qt-home-float__captcha-row {
    display: flex;
    align-items: stretch;
    gap: 0.625rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .qt-home-float__captcha-control {
    flex: 1 1 auto;
    min-width: 0;
  }

  .qt-home-float__captcha-refresh {
    flex: 0 0 var(--qt-home-float-captcha-width);
    height: var(--qt-home-float-control-height);
    padding: 0.125rem;
    border: 0;
    border-radius: 0.125rem;
    background: center / 100% 100% no-repeat url('/front/img/home/float/input-bg.svg'), #ffffff;
    box-sizing: border-box;
    cursor: pointer;
    overflow: hidden;
  }

  .qt-home-float__captcha-refresh:focus-visible {
    outline: 2px solid rgba(236, 174, 68, 0.56);
    outline-offset: 3px;
  }

  .qt-home-float__captcha-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .qt-home-float__input,
  .qt-home-float__textarea,
  .qt-home-float__select-trigger {
    width: 100%;
    border: 0;
    background: transparent;
    box-sizing: border-box;
    color: #4d4d4d;
    font-size: 0.875rem;
    line-height: 1.5;
    letter-spacing: 0;
  }

  .qt-home-float__input,
  .qt-home-float__select-trigger {
    height: 100%;
  }

  .qt-home-float__input {
    padding: var(--qt-home-float-control-padding-x);
  }

  .qt-home-float__control--counted .qt-home-float__input {
    padding-right: calc(var(--qt-home-float-control-padding-x) + var(--qt-home-float-counter-width));
  }

  .qt-home-float__select-trigger {
    padding: var(--qt-home-float-control-padding-x);
  }

  .qt-home-float__input:focus,
  .qt-home-float__textarea:focus,
  .qt-home-float__select-trigger:focus-visible {
    outline: none;
  }

  .qt-home-float__input::placeholder,
  .qt-home-float__textarea::placeholder {
    color: rgb(153, 153, 153);
    font-size: 0.875rem;
    font-weight: 350;
  }

  .qt-home-float__input.is-error::placeholder,
  .qt-home-float__textarea.is-error::placeholder {
    color: #d84d4d;
  }

  .qt-home-float__textarea {
    display: block;
    height: 100%;
    padding: calc(var(--qt-home-float-control-padding-x) * 2) var(--qt-home-float-control-padding-x);
    line-height: 1.5;
    resize: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .qt-home-float__textarea::-webkit-scrollbar {
    display: none;
  }

  .qt-home-float__control--counted .qt-home-float__textarea {
    padding-bottom: calc(var(--qt-home-float-control-padding-x) * 2);
  }

  .qt-home-float__select {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .qt-home-float__select-trigger {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    cursor: pointer;
  }

  .qt-home-float__select-text {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    color: rgb(153, 153, 153);
    font-size: 0.875rem;
    font-weight: 350;
  }

  .qt-home-float__select-text.is-value {
    color: rgb(77, 77, 77);
  }

  .qt-home-float__select-trigger.is-error .qt-home-float__select-text {
    color: #d84d4d;
  }

  .qt-home-float__dropdown {
    --qt-home-float-dropdown-line-inset: 1.75rem;
    --qt-home-float-dropdown-content-inset: 2.5rem;
    --qt-home-float-dropdown-action-width: 2.5rem;
    --qt-home-float-dropdown-side-column: 3.25rem;
    --qt-home-float-dropdown-column-gap: 0.75rem;
    --qt-home-float-dropdown-scrollbar-width: 0.375rem;
    --qt-home-float-dropdown-mark-right: 4.125rem;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    padding: 0.25rem 0 0.875rem;
    border-radius: 3px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, 0.5rem, 0);
    background: center / 100% 100% no-repeat url('/front/img/home/float/dropdown-bg.svg'), #ffffff;
    box-shadow: 0 16px 34px rgba(10, 24, 46, 0.14);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 8;
  }

  .qt-home-float__select.is-open .qt-home-float__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .qt-home-float__dropdown-actions {
    position: relative;
    display: grid;
    grid-template-columns: var(--qt-home-float-dropdown-side-column) minmax(0, 1fr) var(--qt-home-float-dropdown-side-column);
    align-items: center;
    column-gap: var(--qt-home-float-dropdown-column-gap);
    height: 2.75rem;
    padding: 0 calc(var(--qt-home-float-dropdown-content-inset) + var(--qt-home-float-dropdown-scrollbar-width)) 0 var(--qt-home-float-dropdown-content-inset);
    box-sizing: border-box;
  }

  .qt-home-float__dropdown-action {
    grid-column: 1;
    justify-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    width: var(--qt-home-float-dropdown-action-width);
    height: 100%;
    padding: 0;
    box-sizing: border-box;
    border: 0;
    background: transparent;
    color: rgb(77, 77, 77);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
    cursor: pointer;
  }

  .qt-home-float__dropdown-action--confirm {
    grid-column: 3;
    color: rgb(236, 174, 68);
  }

  .qt-home-float__dropdown-action:focus-visible {
    outline: none;
  }

  .qt-home-float__dropdown-scroll {
    position: relative;
    max-height: calc(2.75rem * 7);
    overflow-y: auto;
  }

  .qt-home-float__dropdown-scroll::-webkit-scrollbar {
    width: var(--qt-home-float-dropdown-scrollbar-width);
  }

  .qt-home-float__dropdown-scroll::-webkit-scrollbar-thumb {
    background: rgba(77, 77, 77, 0.22);
    border-radius: 999px;
  }

  .qt-home-float__option {
    position: relative;
    display: grid;
    grid-template-columns: var(--qt-home-float-dropdown-side-column) minmax(0, 1fr) var(--qt-home-float-dropdown-side-column);
    align-items: center;
    justify-content: flex-start;
    column-gap: var(--qt-home-float-dropdown-column-gap);
    width: 100%;
    height: 2.75rem;
    padding: 0 var(--qt-home-float-dropdown-content-inset);
    box-sizing: border-box;
    border: 0;
    background: center / 100% 100% no-repeat url('/front/img/home/float/input-bg.svg');
    color: rgb(153, 153, 153);
    font-size: 0.875rem;
    font-weight: 350;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: left;
    cursor: pointer;
  }

  .qt-home-float__option::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--qt-home-float-dropdown-line-inset);
    right: var(--qt-home-float-dropdown-line-inset);
    height: 2px;
    background: rgba(77, 77, 77, 0.12);
  }

  .qt-home-float__option:hover,
  .qt-home-float__option:focus-visible {
    outline: none;
  }

  .qt-home-float__option.is-selected {
    color: rgb(77, 77, 77);
    font-weight: 350;
  }

  .qt-home-float__option-text {
    grid-column: 2;
    min-width: 0;
    overflow: visible;
    white-space: nowrap;
    text-overflow: clip;
  }

  .qt-home-float__option-icons {
    position: relative;
    grid-column: 1;
    justify-self: center;
    width: 1.125rem;
    height: 1.125rem;
  }

  .qt-home-float__option-icon {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.18s ease;
  }

  .qt-home-float__option-icon--active {
    opacity: 0;
  }

  .qt-home-float__option.is-selected .qt-home-float__option-icon--default {
    opacity: 0;
  }

  .qt-home-float__option.is-selected .qt-home-float__option-icon--active {
    opacity: 1;
  }

  .qt-home-float__option-mark {
    position: absolute;
    top: 1.375rem;
    right: var(--qt-home-float-dropdown-mark-right);
    width: 0.75rem;
    height: 0.625rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%);
    transition: opacity 0.18s ease;
    z-index: 2;
  }

  .qt-home-float__field-message {
    min-height: 0;
    max-height: 0;
    margin-top: 0;
    color: #d84d4d;
    font-size: 0.75rem;
    line-height: 1.5;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.18s ease, max-height 0.18s ease, margin-top 0.18s ease;
  }

  .qt-home-float__field-message.is-visible {
    max-height: 2.25rem;
    margin-top: 0.25rem;
    opacity: 1;
  }

  .qt-home-float__char-count {
    position: absolute;
    bottom: 0.5rem;
    right: var(--qt-home-float-control-padding-x);
    z-index: 2;
    width: var(--qt-home-float-counter-width);
    margin: 0;
    color: rgb(153, 153, 153);
    font-size: 0.75rem;
    line-height: 1.25;
    letter-spacing: 0;
    text-align: right;
    pointer-events: none;
  }

  .qt-home-float__submit {
    flex: 0 0 auto;
    min-height: 0;
    margin-top: calc(var(--qt-home-float-submit-gap) - var(--qt-home-float-field-gap));
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .qt-home-float__submit-message {
    display: none;
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .qt-home-float__submit-message.is-visible {
    display: block;
    margin-bottom: 0.375rem;
  }

  .qt-home-float__submit-button {
    position: relative;
    width: 7.5rem;
    height: 2rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .qt-home-float__submit-button:focus-visible {
    outline: 2px solid rgba(236, 174, 68, 0.56);
    outline-offset: 4px;
  }

  .qt-home-float__submit-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.16s ease;
  }

  .qt-home-float__submit-image--hover,
  .qt-home-float__submit-image--pressed {
    opacity: 0;
  }

  .qt-home-float__submit-button:hover .qt-home-float__submit-image--default,
  .qt-home-float__submit-button:focus-visible .qt-home-float__submit-image--default {
    opacity: 0;
  }

  .qt-home-float__submit-button:hover .qt-home-float__submit-image--hover,
  .qt-home-float__submit-button:focus-visible .qt-home-float__submit-image--hover {
    opacity: 1;
  }

  .qt-home-float__submit-button:active .qt-home-float__submit-image--default,
  .qt-home-float__submit-button:active .qt-home-float__submit-image--hover,
  .qt-home-float__submit-button.is-loading .qt-home-float__submit-image--default,
  .qt-home-float__submit-button.is-loading .qt-home-float__submit-image--hover {
    opacity: 0;
  }

  .qt-home-float__submit-button:active .qt-home-float__submit-image--pressed,
  .qt-home-float__submit-button.is-loading .qt-home-float__submit-image--pressed {
    opacity: 1;
  }

  .qt-home-float__submit-button[disabled] {
    cursor: default;
  }

  .qt-home-float__success {
    position: fixed;
    inset: 0;
    z-index: 120;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .qt-home-float__success.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .qt-home-float__success-image {
    display: block;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
  }

  @media (max-width: 1200px) {
    .qt-home-clients {
      padding-bottom: 92px;
    }

    .qt-home-float__contact-panel {
      right: calc(100% + 0.875rem);
    }
  }

  @media (max-width: 960px) {
    .qt-home-clients {
      padding-bottom: 78px;
    }

    .qt-home-clients .qt-wrap {
      width: calc(100% - 28px);
    }

    .qt-home-clients__header {
      padding-top: 2.5rem;
      padding-bottom: 2rem;
    }

    .qt-home-clients__title {
      font-size: 1.125rem;
      line-height: 1.4;
    }

    .qt-home-float {
      right: 1.25rem;
      bottom: 1.25rem;
      gap: 0.25rem;
    }

    .qt-home-float__button {
      width: 2.75rem;
      height: 2.75rem;
    }

    .qt-home-float__popup-image {
      width: 11rem;
    }

    .qt-home-float__contact-panel {
      width: var(--qt-home-float-panel-width);
      right: calc(100% + 0.75rem);
    }

    .qt-home-float__contact-inner {
      padding: var(--qt-home-float-panel-padding-top) var(--qt-home-float-panel-padding-x) var(--qt-home-float-panel-padding-bottom);
    }

    .qt-home-float__form {
      padding-top: 0;
    }

    .qt-home-float__submit {
      padding-top: 0;
    }
  }

  @media (max-width: 640px) {

    html.qt-home-float-lock,
    body.qt-home-float-lock {
      overflow: hidden;
      touch-action: none;
    }

    .qt-home-clients {
      padding-bottom: 62px;
    }

    .qt-home-clients .qt-wrap {
      width: calc(100% - 24px);
    }

    .qt-home-clients__header {
      padding-top: 2rem;
      padding-bottom: 1.5rem;
    }

    .qt-home-clients__title {
      font-size: 1.125rem;
      line-height: 1.4;
    }

    .qt-home-clients__title-highlight::after {
      height: 3px;
    }

    .qt-home-float {
      --qt-home-float-panel-width: min(27rem, calc(100vw - 2rem));
      --qt-home-float-panel-padding-x: clamp(1.75rem, 8vw, 2.25rem);
      --qt-home-float-panel-padding-top: clamp(1.5rem, 7.5vw, 2rem);
      --qt-home-float-panel-padding-bottom: clamp(1.375rem, 6.5vw, 1.75rem);
      --qt-home-float-field-gap: clamp(0.625rem, 2.4vw, 0.875rem);
      --qt-home-float-label-gap: clamp(0.625rem, 2.8vw, 0.8125rem);
      --qt-home-float-control-height: 2.875rem;
      --qt-home-float-control-padding-x: 0.75rem;
      --qt-home-float-demand-height: clamp(5.75rem, 27vw, 7rem);
      --qt-home-float-captcha-width: clamp(6.5rem, 31vw, 7rem);
      --qt-home-float-submit-gap: clamp(0.625rem, 2.4vw, 0.875rem);
      right: 0.75rem;
      bottom: 0.75rem;
      gap: 6px;
    }

    .qt-home-float__button {
      width: 40px;
      height: 40px;
    }

    .qt-home-float__item:hover .qt-home-float__icon--default,
    .qt-home-float__item:focus-within .qt-home-float__icon--default {
      opacity: 1;
    }

    .qt-home-float__item:hover .qt-home-float__icon--active,
    .qt-home-float__item:focus-within .qt-home-float__icon--active {
      opacity: 0;
    }

    .qt-home-float__item--contact.is-hover .qt-home-float__icon--default,
    .qt-home-float__item--contact.is-open .qt-home-float__icon--default {
      opacity: 0;
    }

    .qt-home-float__item--contact.is-hover .qt-home-float__icon--active,
    .qt-home-float__item--contact.is-open .qt-home-float__icon--active {
      opacity: 1;
    }

    .qt-home-float__popup {
      right: calc(100% + 0.5rem);
    }

    .qt-home-float__popup-image {
      width: 8.75rem;
    }

    .qt-home-float__contact-panel {
      position: fixed;
      top: 50%;
      right: auto;
      bottom: auto;
      left: 50%;
      display: flex;
      flex-direction: column;
      width: var(--qt-home-float-panel-width);
      height: auto;
      min-height: 0;
      max-height: calc(100vh - 2rem);
      aspect-ratio: auto;
      box-sizing: border-box;
      overflow: hidden;
      transform: translate(-50%, -47%);
    }

    .qt-home-float__item--contact.is-hover .qt-home-float__contact-panel,
    .qt-home-float__item--contact.is-open .qt-home-float__contact-panel {
      transform: translate(-50%, -50%);
    }

    .qt-home-float__contact-inner {
      flex: 1 1 auto;
      min-height: 0;
      height: auto;
      max-height: calc(100vh - 2rem);
      padding: var(--qt-home-float-panel-padding-top) var(--qt-home-float-panel-padding-x) var(--qt-home-float-panel-padding-bottom);
      overflow-y: auto;
      overflow-x: hidden;
      overscroll-behavior: contain;
      scroll-padding-bottom: calc(var(--qt-home-float-control-height) + var(--qt-home-float-submit-gap) + env(safe-area-inset-bottom, 0px) + 1rem);
    }

    .qt-home-float__form {
      display: block;
      width: 100%;
      max-width: 100%;
      height: auto;
      min-height: 0;
      max-height: none;
      padding-top: 0;
      box-sizing: border-box;
    }

    .qt-home-float__form.is-keyboard-active {
      padding-bottom: calc(var(--qt-home-float-submit-gap) + env(safe-area-inset-bottom, 0px) + 1rem);
    }

    .qt-home-float__label {
      margin-bottom: var(--qt-home-float-label-gap);
      font-size: 0.875rem;
    }

    .qt-home-float__field+.qt-home-float__field {
      margin-top: var(--qt-home-float-field-gap);
    }

    .qt-home-float__submit {
      margin-top: calc(var(--qt-home-float-submit-gap) + 0.5rem);
    }

    .qt-home-float__input,
    .qt-home-float__select-trigger {
      font-size: 0.8125rem;
    }

    .qt-home-float__input::placeholder,
    .qt-home-float__textarea::placeholder,
    .qt-home-float__select-text {
      font-size: 0.8125rem;
    }

    .qt-home-float__captcha-row {
      gap: 0.5rem;
    }

    .qt-home-float__captcha-refresh {
      flex-basis: var(--qt-home-float-captcha-width);
    }

    .qt-home-float__field--demand .qt-home-float__control--textarea {
      flex: none;
      height: var(--qt-home-float-demand-height);
      min-height: var(--qt-home-float-demand-height);
      scroll-margin-bottom: calc(var(--qt-home-float-control-height) + var(--qt-home-float-submit-gap) + env(safe-area-inset-bottom, 0px) + 1rem);
    }

    .qt-home-float__textarea {
      height: 100%;
      min-height: var(--qt-home-float-demand-height);
      padding-top: calc(var(--qt-home-float-control-padding-x) * 2);
      padding-bottom: calc(var(--qt-home-float-control-padding-x) * 2);
      font-size: 0.8125rem;
      line-height: 1.5;
    }

    .qt-home-float__dropdown-action,
    .qt-home-float__option {
      font-size: 0.8125rem;
    }

    .qt-home-float__field-message {
      font-size: 0.75rem;
      line-height: 1.5;
    }

    .qt-home-float__dropdown-scroll {
      max-height: min(calc(2.75rem * 7), calc(100vh - 10rem));
    }
  }

  @media (max-width: 640px) and (max-height: 620px) {
    .qt-home-float {
      --qt-home-float-panel-padding-top: 1.5rem;
      --qt-home-float-panel-padding-bottom: 1.375rem;
      --qt-home-float-field-gap: clamp(0.5rem, 1.8vh, 0.625rem);
      --qt-home-float-label-gap: clamp(0.5rem, 1.8vh, 0.625rem);
      --qt-home-float-demand-height: clamp(5rem, 16vh, 5.75rem);
      --qt-home-float-submit-gap: clamp(0.5rem, 2vh, 0.75rem);
    }

    .qt-home-float__label {
      line-height: 1.15;
    }

    .qt-home-float__textarea {
      padding-top: calc(var(--qt-home-float-control-padding-x) * 2);
      padding-bottom: calc(var(--qt-home-float-control-padding-x) * 2);
    }

    .qt-home-float__dropdown-scroll {
      max-height: min(calc(2.75rem * 7), calc(100vh - 9rem));
    }
  }

  .qt-home-hero__title {
    text-shadow: 0 12px 30px rgba(8, 18, 34, 0.28);
  }

  .qt-home-lift {
    --qt-home-lift-x: 0;
    --qt-home-lift-y: 44px;
    --qt-home-lift-scale: 1;
    opacity: 0;
    transform: translate3d(var(--qt-home-lift-x), var(--qt-home-lift-y), 0) scale(var(--qt-home-lift-scale));
    transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1), transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }

  .qt-home-lift--left {
    --qt-home-lift-x: -64px;
    --qt-home-lift-y: 0;
  }

  .qt-home-lift--right {
    --qt-home-lift-x: 64px;
    --qt-home-lift-y: 0;
  }

  .qt-home-lift--split,
  .qt-home-lift--inward {
    --qt-home-lift-y: 0;
  }

  .qt-home-lift.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .qt-home-lift--inward .qt-home-system__item,
  .qt-home-lift--split .qt-home-about__label,
  .qt-home-lift--split .qt-home-about__content,
  .qt-home-lift--left .qt-home-products__frame,
  .qt-home-lift--right .qt-home-honor__body,
  .qt-home-lift--right .qt-home-honor__trophy,
  .qt-home-lift--up .qt-home-clients__header,
  .qt-home-lift--up .qt-home-clients__image {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
    transition: opacity 780ms cubic-bezier(0.22, 1, 0.36, 1), transform 780ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }

  .qt-home-lift--inward .qt-home-system__item:nth-child(1),
  .qt-home-lift--inward .qt-home-system__item:nth-child(2) {
    transform: translate3d(-72px, 0, 0);
  }

  .qt-home-lift--inward .qt-home-system__item:nth-child(3),
  .qt-home-lift--inward .qt-home-system__item:nth-child(4) {
    transform: translate3d(72px, 0, 0);
  }

  .qt-home-lift--inward .qt-home-system__item:nth-child(2),
  .qt-home-lift--inward .qt-home-system__item:nth-child(3) {
    transition-delay: 70ms;
  }

  .qt-home-lift--inward .qt-home-system__item:nth-child(1),
  .qt-home-lift--inward .qt-home-system__item:nth-child(4) {
    transition-delay: 150ms;
  }

  .qt-home-lift--split .qt-home-about__label {
    transform: translate3d(-58px, 0, 0);
  }

  .qt-home-lift--split .qt-home-about__content {
    transform: translate3d(58px, 0, 0);
    transition-delay: 110ms;
  }

  .qt-home-lift--left .qt-home-products__frame {
    transform: translate3d(-50px, 0, 0);
  }

  .qt-home-lift--right .qt-home-honor__body {
    transform: translate3d(54px, 0, 0);
  }

  .qt-home-lift--right .qt-home-honor__trophy {
    transform: translate3d(0, 42px, 0) scale(0.96);
    transition-delay: 150ms;
  }

  .qt-home-lift--up .qt-home-clients__image {
    transition-delay: 120ms;
  }

  .qt-home-lift--inward.is-visible .qt-home-system__item,
  .qt-home-lift--split.is-visible .qt-home-about__label,
  .qt-home-lift--split.is-visible .qt-home-about__content,
  .qt-home-lift--left.is-visible .qt-home-products__frame,
  .qt-home-lift--right.is-visible .qt-home-honor__body,
  .qt-home-lift--right.is-visible .qt-home-honor__trophy,
  .qt-home-lift--up.is-visible .qt-home-clients__header,
  .qt-home-lift--up.is-visible .qt-home-clients__image {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  @media (max-width: 1200px) {
    .qt-home-system__stage {
      min-height: 640px;
      overflow: hidden;
      padding: 0;
    }

    .qt-home-system__grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0;
      width: 100%;
      min-width: 0;
      min-height: 640px;
      margin: 0;
    }

    .qt-home-system__item {
      min-height: 640px;
      cursor: default;
      overflow: hidden;
    }

    .qt-home-system__item::before,
    .qt-home-system__item::after {
      display: none;
    }

    .qt-home-system__item-gallery {
      inset: -34% 0;
    }

    .qt-home-system__gallery-frame {
      object-fit: fill;
      opacity: 0;
      filter: none;
      transition: none;
    }

    .qt-home-system__gallery-frame.is-state-0 {
      opacity: 1;
    }

    .qt-home-system__item[data-system-display-state="0"] .qt-home-system__gallery-frame.is-state-0,
    .qt-home-system__item[data-system-display-state="1"] .qt-home-system__gallery-frame.is-state-1,
    .qt-home-system__item[data-system-display-state="2"] .qt-home-system__gallery-frame.is-state-2,
    .qt-home-system__item[data-system-display-state="3"] .qt-home-system__gallery-frame.is-state-3,
    .qt-home-system__item[data-system-display-state="4"] .qt-home-system__gallery-frame.is-state-4 {
      opacity: 0;
      filter: none;
    }

    .qt-home-system__item[data-system-display-state] .qt-home-system__gallery-frame.is-state-0 {
      opacity: 1;
    }

    .qt-home-lift--inward .qt-home-system__item {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }

  @media (min-width: 961px) and (max-width: 1560px) {

    .qt-home-system__stage,
    .qt-home-system__grid,
    .qt-home-system__item {
      min-height: 0;
    }

    .qt-home-system__item {
      aspect-ratio: 480 / 880;
    }

    .qt-home-system__item-gallery {
      inset: 0;
    }
  }

  @media (max-width: 960px) {

    .qt-home-system__stage,
    .qt-home-system__grid,
    .qt-home-system__item {
      min-height: 560px;
    }

    .qt-home-system__stage {
      min-height: 0;
      padding: clamp(24px, 6vw, 52px) 0;
    }

    .qt-home-system__grid {
      display: none;
      min-height: 0;
    }

    .qt-home-system__mobile-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: clamp(20px, 4vw, 32px);
      width: min(760px, calc(100% - clamp(48px, 12vw, 104px)));
      margin: 0 auto;
    }

    .qt-home-system__item {
      min-height: 0;
      aspect-ratio: 480 / 880;
    }

    .qt-home-system__item-gallery {
      inset: 0;
    }

    .qt-home-hero__content {
      padding-left: 28px;
      padding-right: 28px;
    }

    .qt-home-hero__title {
      max-width: 720px;
      font-size: 2rem;
      line-height: 1.45;
    }

    .qt-home-hero__description {
      max-width: 620px;
      margin-top: clamp(4rem, 8vw, 5rem);
      font-size: 1rem;
      line-height: 1.6;
    }

    .qt-home-hero__description-line {
      display: block;
    }

    .qt-home-about__inner {
      justify-items: center;
      width: min(var(--qt-wrap-max), calc(100% - (var(--qt-wrap-gutter) * 2)));
      text-align: left;
    }

    .qt-home-about__label {
      justify-content: center;
      width: 100%;
    }

    .qt-home-about__content {
      justify-self: center;
      max-width: 680px;
    }

    .qt-home-about__text {
      text-align: left;
      text-indent: 0;
    }

    .qt-home-products {
      padding: 64px 0 70px;
    }

    .qt-home-products__frame {
      display: grid;
      grid-template-columns: auto auto;
      grid-template-areas:
        "viewport viewport"
        "nav more";
      align-items: center;
      justify-content: space-between;
      justify-items: stretch;
      gap: 18px 16px;
    }

    .qt-home-products__viewport {
      grid-area: viewport;
      justify-self: stretch;
      width: 100%;
    }

    .qt-home-products__more {
      position: static;
      grid-area: more;
      justify-self: end;
      width: 9.5rem;
      height: 2.625rem;
    }

    .qt-home-products__nav {
      position: static;
      grid-area: nav;
      justify-self: start;
      gap: 10px;
    }

    .qt-home-float {
      right: 16px;
      bottom: 16px;
      gap: 6px;
    }

    .qt-home-float__button {
      width: 42px;
      height: 42px;
    }

    .qt-home-products__arrow-button {
      width: 54px;
      height: 42px;
      border: 1px solid rgba(77, 77, 77, 0.14);
      border-radius: 6px;
      background: #ffffff;
      box-shadow: 0 8px 20px rgba(15, 27, 46, 0.08);
    }

    .qt-home-products__arrow-stack {
      width: 42px;
      height: 16px;
    }

    .qt-home-products__arrow-icon--prev-short,
    .qt-home-products__arrow-icon--next-short {
      width: 18px;
    }

    .qt-home-products__arrow-icon--prev-long,
    .qt-home-products__arrow-icon--next-long {
      width: 42px;
    }

    .qt-home-honor__body {
      gap: 0;
    }

    .qt-home-honor__trophy {
      display: none;
    }
  }

  @media (max-width: 640px) {

    .qt-home-system__stage,
    .qt-home-system__grid,
    .qt-home-system__item {
      min-height: 460px;
    }

    .qt-home-hero__content {
      padding-left: 24px;
      padding-right: 24px;
    }

    .qt-home-hero__title {
      max-width: 300px;
      font-size: 1.5rem;
      line-height: 1.5;
    }

    .qt-home-hero__description {
      max-width: 320px;
      margin-top: clamp(2.5rem, 12vw, 4rem);
      font-size: 1rem;
      line-height: 1.6;
    }

    .qt-home-hero__description--secondary {
      margin-top: 0.75rem;
    }

    .qt-home-system__stage {
      min-height: 0;
      padding: clamp(20px, 7vw, 36px) 0;
    }

    .qt-home-system__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: clamp(24px, 6.85vw, 32px);
      width: min(calc(100% - clamp(96px, 25.44vw, 164px)), 1048px);
      min-height: 0;
      margin: 0 auto;
    }

    .qt-home-system__mobile-grid {
      gap: clamp(18px, 6.5vw, 28px);
      width: min(520px, calc(100% - clamp(36px, 12vw, 56px)));
    }

    .qt-home-system__item {
      min-height: 0;
      aspect-ratio: 480 / 720;
    }

    .qt-home-system__item-gallery {
      inset: 0;
    }

    .qt-home-about__inner {
      width: min(var(--qt-wrap-max), calc(100% - (var(--qt-wrap-gutter) * 2)));
      gap: 18px;
    }

    .qt-home-products {
      padding: 52px 0 60px;
    }

    .qt-home-products__frame {
      gap: 16px 12px;
    }

    .qt-home-products__more {
      width: 8rem;
      height: 2.5rem;
      font-size: 0.8125rem;
    }

    .qt-home-products__nav {
      gap: 8px;
    }

    .qt-home-float {
      right: 10px;
      bottom: 10px;
      gap: 6px;
    }

    .qt-home-float__button {
      width: 40px;
      height: 40px;
    }

    .qt-home-products__arrow-button {
      width: 46px;
      height: 38px;
    }

    .qt-home-products__arrow-stack {
      width: 34px;
      height: 15px;
    }

    .qt-home-products__arrow-icon--prev-long,
    .qt-home-products__arrow-icon--next-long {
      width: 34px;
    }

    .qt-home-honor {
      padding-bottom: 58px;
    }
  }

  @media (prefers-reduced-motion: reduce) {

    .qt-home-hero__media,
    .qt-home-hero::after,
    .qt-home-hero__title,
    .qt-home-hero__description,
    .qt-home-lift,
    .qt-home-lift--inward .qt-home-system__item,
    .qt-home-lift--split .qt-home-about__label,
    .qt-home-lift--split .qt-home-about__content,
    .qt-home-lift--left .qt-home-products__frame,
    .qt-home-lift--right .qt-home-honor__body,
    .qt-home-lift--right .qt-home-honor__trophy,
    .qt-home-lift--up .qt-home-clients__header,
    .qt-home-lift--up .qt-home-clients__image {
      animation: none !important;
      transition-duration: 0.01ms !important;
    }

    .qt-home-hero__media,
    .qt-home-hero::after,
    .qt-home-hero__title,
    .qt-home-hero__description,
    .qt-home-lift,
    .qt-home-lift--inward .qt-home-system__item,
    .qt-home-lift--split .qt-home-about__label,
    .qt-home-lift--split .qt-home-about__content,
    .qt-home-lift--left .qt-home-products__frame,
    .qt-home-lift--right .qt-home-honor__body,
    .qt-home-lift--right .qt-home-honor__trophy,
    .qt-home-lift--up .qt-home-clients__header,
    .qt-home-lift--up .qt-home-clients__image {
      opacity: 1;
      transform: none;
      filter: none;
    }
  }
