  @font-face {
    font-family: "Normalidad";
    src: url("../fonts/NormalidadWide-WideBlack.woff2") format("woff2"), url("../fonts/NormalidadWide-WideBlack.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Normalidad";
    src: url("../fonts/NormalidadWide-WideBold.woff2") format("woff2"), url("../fonts/NormalidadWide-WideBold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Normalidad";
    src: url("../fonts/NormalidadWide-WideMedium.woff2") format("woff2"), url("../fonts/NormalidadWide-WideMedium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Normalidad";
    src: url("../fonts/NormalidadWide-WideRegular.woff2") format("woff2"), url("../fonts/NormalidadWide-WideRegular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Normalidad";
    src: url("../fonts/NormalidadWide-WideThin.woff2") format("woff2"), url("../fonts/NormalidadWide-WideThin.woff") format("woff");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Normalidad";
    src: url("../fonts/NormalidadWide-WideLight.woff2") format("woff2"), url("../fonts/NormalidadWide-WideLight.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  
  /*:root {
    --animation-left: -100%;
    --animation-right: 100%;
    --animation-top: -100%;
    --animation-bottom: 100%;
    --adaptive-box: 100%;
    --columns: 12;
    --body-font-size: 0.15rem;
    --gap-x: 20px;
    --gap-y: 20px;
    --container1-gap: 10px;
  }*/
  
  body {
    line-height: normal;
    font-weight: 300;
    font-size: var(--body-font-size);
    font-family: "Normalidad", sans-serif;
    margin: 0;
    color: #1E1E1C;
  }
  
  *,
  *::before,
  *::after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  
  html {
    -webkit-text-size-adjust: none;
       -moz-text-size-adjust: none;
            text-size-adjust: none;
  }
  
  img {
    display: block;
    max-width: 100%;
  }
  
  a {
    text-decoration: none;
    -webkit-transition-duration: 400ms;
         -o-transition-duration: 400ms;
            transition-duration: 400ms;
  }
  
  ul {
    list-style: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  p,
  ul,
  ol {
    margin: 0;
    padding: 0;
  }
  
  iframe {
    border: 0;
  }
  
  b,
  strong {
    font-weight: 700;
  }
  
  :root {
    --width-max-window: 100vw;
    --width-min-window: 320;
    --width-min-window-px: 320px;
    --min-value: 100;
    --min-value-px: 100px;
    --max-value: 150;
    font-size: calc(
   var(--min-value-px) + (var(--max-value) - var(--min-value)) *
   ((var(--width-max-window) - var(--width-min-window-px)) / (1920 - var(--width-min-window))));
  }
  
  .grid {
    --grid-gap-x: var(--gap-x);
    --grid-gap-y: var(--gap-y);
    --grid-columns: 12;
  }
  
  .container1,
  .container1\@xs,
  .container1\@md,
  .container1\@lg,
  .container1-full {
    --local-container1-gap: var(--container1-gap);
    --dp-block: block;
    display: var(--dp-block);
    width: 100%;
    padding-left: var(--local-container1-gap);
    padding-right: var(--local-container1-gap);
    margin-left: auto;
    margin-right: auto;
  }
  
  br {
    --dp-inline: inline;
    display: var(--dp-inline);
  }
  
  .icon {
    width: 1em;
    height: 1em;
    --dp-block: block;
    display: var(--dp-block);
    flex: 0 0 auto;
    fill: currentColor;
    -webkit-transition: all 400ms 0s;
    -o-transition: all 400ms 0s;
    transition: all 400ms 0s;
    position: relative;
  }
  
  .icon--no-fill {
    fill: none;
  }
  
  .icon--stroke {
    stroke: currentColor;
  }
  
  .icon--only-stroke {
    fill: none;
    stroke: currentColor;
  }
  
  .loader {
    height: 1em;
    width: 1em;
    display: block;
    overflow: hidden;
    position: relative;
  }
  
  .loader:after,
  .loader:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid currentColor;
    border-radius: 50%;
  }
  
  .loader:after {
    opacity: 0.15;
  }
  
  .loader:before {
    border-bottom-color: transparent;
    border-top-color: transparent;
    -webkit-animation: loading 1.5s linear infinite;
            animation: loading 1.5s linear infinite;
  }
  
  .loader--center {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
  }
  
  .loader--size-sm {
    font-size: 0.4rem;
  }
  
  .loader--size-md {
    font-size: 0.6rem;
  }
  
  .loader--size-lg {
    font-size: 0.8rem;
  }
  
  .adaptive-box {
    position: relative;
    width: 100%;
    overflow: hidden;
    --dp-block: block;
    display: var(--dp-block);
  }
  
  .adaptive-box:after {
    content: '';
    padding: 0px 0px var(--adaptive-box) 0px;
    width: 100%;
    display: block;
  }
  
  .adaptive-box > * {
    position: absolute;
  }
  
  .adaptive-box__image,
  .adaptive-box__item {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }
  
  .adaptive-box__image {
    -o-object-fit: cover;
       object-fit: cover;
  }
  
  .link {
    color: currentColor;
  }
  
  .link:active {
    color: #C95412;
  }
  
  .list li {
    position: relative;
    padding-left: 0.2rem;
  }
  
  .list li:not(:last-child) {
    margin-bottom: 1.15em;
  }
  
  .list li:before {
    content: '';
    height: 1em;
    width: 1em;
    font-size: 0.09rem;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.05rem;
    background: #EB661B;
  }
  
  .up {
    position: fixed;
    bottom: 0.3125em;
    right: 0.3125em;
    z-index: 800;
    height: 1em;
    width: 1em;
    font-size: 0.48rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  .up .icon {
    font-size: 0.375em;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  
  .delay-200 {
    -webkit-animation-delay: 200ms;
            animation-delay: 200ms;
  }
  
  .delay-400 {
    -webkit-animation-delay: 400ms;
            animation-delay: 400ms;
  }
  
  .delay-600 {
    -webkit-animation-delay: 600ms;
            animation-delay: 600ms;
  }
  
  .animation {
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
  }
  
  .animation.start {
    -webkit-animation-play-state: running;
            animation-play-state: running;
  }
  
  @-webkit-keyframes fadeIn {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  
  .fadeIn {
    -webkit-animation-name: fadeIn;
            animation-name: fadeIn;
  }
  
  .fadeInUp._25 {
    --animation-bottom: 25%;
  }
  
  .fadeInUp._10 {
    --animation-bottom: 10%;
  }
  
  @-webkit-keyframes fadeInUp {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, var(--animation-bottom), 0);
              transform: translate3d(0, var(--animation-bottom), 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, var(--animation-bottom), 0);
              transform: translate3d(0, var(--animation-bottom), 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
  }
  
  .fadeInUp {
    -webkit-animation-name: fadeInUp;
            animation-name: fadeInUp;
  }
  
  @-webkit-keyframes fadeInLeft {
    from {
      opacity: 0;
      -webkit-transform: translate3d(var(--animation-left), 0, 0);
              transform: translate3d(var(--animation-left), 0, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
  }
  
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      -webkit-transform: translate3d(var(--animation-left), 0, 0);
              transform: translate3d(var(--animation-left), 0, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
  }
  
  .fadeInLeft {
    -webkit-animation-name: fadeInLeft;
            animation-name: fadeInLeft;
  }
  
  @-webkit-keyframes fadeInRight {
    from {
      opacity: 0;
      -webkit-transform: translate3d(var(--animation-right), 0, 0);
              transform: translate3d(var(--animation-right), 0, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
  }
  
  @keyframes fadeInRight {
    from {
      opacity: 0;
      -webkit-transform: translate3d(var(--animation-right), 0, 0);
              transform: translate3d(var(--animation-right), 0, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
  }
  
  .fadeInRight {
    -webkit-animation-name: fadeInRight;
            animation-name: fadeInRight;
  }
  
  @-webkit-keyframes loading {
    100% {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
  }
  
  @keyframes loading {
    100% {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
  }
  
  @-webkit-keyframes loading-n {
    100% {
      -webkit-transform: rotate(-720deg);
              transform: rotate(-720deg);
    }
  }
  
  @keyframes loading-n {
    100% {
      -webkit-transform: rotate(-720deg);
              transform: rotate(-720deg);
    }
  }
  
  .title {
    --dp-block: block;
    display: var(--dp-block);
    font-weight: 700;
    word-wrap: break-word;
  }
  
  .title--size-sm {
    font-size: 0.2rem;
  }
  
  .title--size-md {
    font-size: 0.24rem;
  }
  
  .title--size-lg {
    font-size: 0.24rem;
  }
  
  .text {
    font-weight: 300;
  }
  
  .content p:not(:last-child) {
    margin-bottom: 1.15em;
  }
  
  .btn {
    position: relative;
    text-decoration: none;
    -webkit-transition-duration: 400ms;
         -o-transition-duration: 400ms;
            transition-duration: 400ms;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  
  .btn-primary {
    --dp-flex: flex;
    display: var(--dp-flex);
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: 0.16rem;
    min-height: 0.9rem;
    width: 100%;
    max-width: 3.2rem;
    padding: 0.1rem 0.2rem;
  }
  
  .btn-primary .icon {
    margin-left: 0.2rem;
    font-size: 0.44rem;
  }
  
  .btn--effect {
    overflow: hidden;
    z-index: 1;
  }
  
  @-webkit-keyframes moving {
    50% {
      right: 120%;
    }
  
    100% {
      right: -120%;
    }
  }
  
  @keyframes moving {
    50% {
      right: 120%;
    }
  
    100% {
      right: -120%;
    }
  }
  
  .btn--effect:before {
    content: "";
    background-color: rgba(255, 255, 255, 0.5);
    height: 100%;
    width: 20%;
    display: block;
    position: absolute;
    top: 0;
    right: 120%;
    -webkit-transform: skewX(-45deg) translateX(0);
        -ms-transform: skewX(-45deg) translateX(0);
            transform: skewX(-45deg) translateX(0);
    -webkit-animation: moving 2s ease-in-out infinite;
            animation: moving 2s ease-in-out infinite;
    z-index: -1;
  }
  
  .btn-circle {
    height: 1em;
    width: 1em;
    font-size: 1.14rem;
    border-radius: 50%;
    --dp-flex: flex;
    display: var(--dp-flex);
    align-items: center;
    justify-content: center;
  }
  
  .btn-circle .icon {
    font-size: 0.49259em;
  }
  
  .btn--outline {
    border: 1px solid #000;
    color: currentColor;
    background-color: transparent;
  }
  
  .btn--outline .icon {
    color: currentColor;
  }
  
  .btn--outline:active {
    color: #fff;
    background: #000;
  }
  
  .btn--outline:active .icon {
    color: #fff;
  }
  
  .btn--size-md {
    font-size: 0.2rem;
    padding: 0.16rem 0.32rem;
  }
  
  .btn--theme-primary {
    color: #fff;
    background-color: #EB661B;
  }
  
  .btn--theme-primary:active {
    background-color: #C95412;
  }
  
  .btn--theme-secondary {
    color: #fff;
    background-color: #323231;
  }
  
  .btn--theme-secondary:active {
    background-color: #1F1F1E;
  }
  
  .social {
    --dp-flex: flex;
    display: var(--dp-flex);
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 1em;
    height: 1em;
    overflow: hidden;
    background-color: #000;
    position: relative;
    -webkit-transition-duration: 400ms;
         -o-transition-duration: 400ms;
            transition-duration: 400ms;
  }
  
  .social .icon {
    color: #fff;
    font-size: 0.5em;
  }
  
  .social:hover {
    background-color: #2b2b2b;
  }
  
  .social--size {
    font-size: 0.4rem;
  }
  
  .social--circle {
    border-radius: 50%;
  }
  
  .social--outline {
    background: none;
    border: 1px solid #000;
  }
  
  .social--outline .icon {
    color: #000;
  }
  
  .social--outline:hover {
    background-color: #000;
  }
  
  .social--outline:hover .icon {
    color: #fff;
  }
  
  .social-group {
    --dp-flex: flex;
    display: var(--dp-flex);
    flex-wrap: wrap;
    position: relative;
  }
  
  .social-group > * {
    margin-right: 0.25rem;
  }
  
  .decor-text {
    display: none;
  }
  
  .decor-text .icon {
    font-size: 0.51rem;
    margin-right: 0.12rem;
    margin-bottom: 0.01rem;
  }
  
  .swiper-container1 {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    /* Fix of Webkit flickering */
    z-index: 1;
  }
  
  .swiper-container1-vertical > .swiper-wrapper {
    flex-direction: column;
  }
  
  .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
  }
  
  .swiper-container1-android .swiper-slide,
  .swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
            transform: translate3d(0px, 0, 0);
  }
  
  .swiper-container1-multirow > .swiper-wrapper {
    flex-wrap: wrap;
  }
  
  .swiper-container1-multirow-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
  }
  
  .swiper-container1-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
         -o-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
    margin: 0 auto;
  }
  
  .swiper-container1-pointer-events {
    -ms-touch-action: pan-y;
        touch-action: pan-y;
  }
  
  .swiper-container1-pointer-events.swiper-container1-vertical {
    -ms-touch-action: pan-x;
        touch-action: pan-x;
  }
  
  .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
  }
  
  .swiper-slide-invisible-blank {
    visibility: hidden;
  }
  
  /* Auto Height */
  
  .swiper-container1-autoheight,
  .swiper-container1-autoheight .swiper-slide {
    height: auto;
  }
  
  .swiper-container1-autoheight .swiper-wrapper {
    align-items: flex-start;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    -o-transition-property: transform, height;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform;
  }
  
  /* 3D Effects */
  
  /* CSS Mode */
  
  .swiper-container1-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    /* For Firefox */
    -ms-overflow-style: none;
    /* For Internet Explorer and Edge */
  }
  
  .swiper-container1-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none;
  }
  
  .swiper-container1-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  
  .swiper-container1-horizontal.swiper-container1-css-mode > .swiper-wrapper {
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
  }
  
  .swiper-container1-vertical.swiper-container1-css-mode > .swiper-wrapper {
    -ms-scroll-snap-type: y mandatory;
        scroll-snap-type: y mandatory;
  }
  
  /* a11y */
  
  .swiper-container1 .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
  }
  
  .swiper-controller {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
  }
  
  .swiper-controller .swiper-pagination-progressbar {
    width: 3rem;
    margin-right: 0.5rem;
  }
  
  .swiper-controller .swiper-pagination-fraction {
    margin: 0 0.2rem;
  }
  
  .swiper-container1-fade.swiper-container1-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
         -o-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
  }
  
  .swiper-container1-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
  }
  
  .swiper-container1-fade .swiper-slide .swiper-slide {
    pointer-events: none;
  }
  
  .swiper-container1-fade .swiper-slide-active,
  .swiper-container1-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
  }
  
  .swiper-container1-flip {
    overflow: visible;
  }
  
  .swiper-container1-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    z-index: 1;
  }
  
  .swiper-container1-flip .swiper-slide .swiper-slide {
    pointer-events: none;
  }
  
  .swiper-container1-flip .swiper-slide-active,
  .swiper-container1-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
  }
  
  .swiper-container1-flip .swiper-slide-shadow-top,
  .swiper-container1-flip .swiper-slide-shadow-bottom,
  .swiper-container1-flip .swiper-slide-shadow-left,
  .swiper-container1-flip .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
  
  /* Preloader */
  
  .swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
        -ms-transform-origin: 50%;
            transform-origin: 50%;
    -webkit-animation: loading 1s infinite linear;
            animation: loading 1s infinite linear;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 4px solid currentColor;
    border-radius: 50%;
    border-top-color: transparent;
  }
  
  .swiper-button-group {
    display: flex;
    align-items: center;
  }
  
  .swiper-button-group .swiper-button-prev {
    margin-right: 0.24rem;
  }
  
  .swiper-button-prev,
  .swiper-button-next {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1em;
    width: 1em;
    font-size: 0.44rem;
    cursor: pointer;
    -webkit-transition-duration: 400ms;
         -o-transition-duration: 400ms;
            transition-duration: 400ms;
  }
  
  .swiper-button-prev .icon,
  .swiper-button-next .icon {
    font-size: 1em;
  }
  
  .swiper-button-prev.swiper-button-disabled,
  .swiper-button-next.swiper-button-disabled {
    opacity: 0.2;
    cursor: auto;
    pointer-events: none;
  }
  
  .swiper-button-prev._center-y,
  .swiper-button-next._center-y {
    position: absolute;
    top: 50%;
    margin-top: -0.5em;
    z-index: 10;
  }
  
  .swiper-button-prev._circle,
  .swiper-button-next._circle {
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    font-size: 0.44rem;
  }
  
  .swiper-button-prev._circle .icon,
  .swiper-button-next._circle .icon {
    font-size: 0.4em;
  }
  
  .swiper-button-prev .icon,
  .swiper-container1-rtl .swiper-button-next .icon {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  
  .swiper-button-prev._center-y,
  .swiper-container1-rtl .swiper-button-next._center-y {
    left: 10px;
    right: auto;
  }
  
  .swiper-button-next._center-y,
  .swiper-container1-rtl .swiper-button-prev._center-y {
    right: 10px;
    left: auto;
  }
  
  .swiper-button-lock {
    display: none;
  }
  
  .swiper-pagination {
    position: relative;
    -webkit-transition: 300ms opacity;
    -o-transition: 300ms opacity;
    transition: 300ms opacity;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    z-index: 10;
  }
  
  .swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
  }
  
  /* Bullets */
  
  .swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
  }
  
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transform: scale(0.33);
        -ms-transform: scale(0.33);
            transform: scale(0.33);
    position: relative;
  }
  
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(0.66);
        -ms-transform: scale(0.66);
            transform: scale(0.66);
  }
  
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(0.33);
        -ms-transform: scale(0.33);
            transform: scale(0.33);
  }
  
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(0.66);
        -ms-transform: scale(0.66);
            transform: scale(0.66);
  }
  
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(0.33);
        -ms-transform: scale(0.33);
            transform: scale(0.33);
  }
  
  .swiper-pagination-bullets:not(.swiper-pagination-bullets-dynamic) {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  
  .swiper-pagination-bullets-dynamic {
    margin: 0 auto;
    white-space: nowrap;
  }
  
  .swiper-pagination-bullet {
    width: 1em;
    height: 1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #a3a3a3;
    font-size: 0.24rem;
    flex: 0 0 auto;
    -webkit-transition-duration: 400ms;
         -o-transition-duration: 400ms;
            transition-duration: 400ms;
  }
  
  .swiper-pagination-bullet:not(:last-child) {
    margin-right: 0.5em;
  }
  
  .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
  }
  
  .swiper-pagination-bullet-active {
    background: #000;
  }
  
  .swiper-pagination._custom .swiper-pagination-bullet {
    width: 0.44rem;
    height: 0.44rem;
    font-size: 0.24rem;
    color: #fff;
  }
  
  /* Progress */
  
  .swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: relative;
    height: 4px;
  }
  
  .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: left top;
        -ms-transform-origin: left top;
            transform-origin: left top;
  }
  
  .swiper-container1-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
        -ms-transform-origin: right top;
            transform-origin: right top;
  }
  
  .swiper-container1-horizontal > .swiper-pagination-progressbar,
  .swiper-container1-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
  }
  
  .swiper-container1-vertical > .swiper-pagination-progressbar,
  .swiper-container1-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
  }
  
  .swiper-pagination-lock {
    display: none;
  }
  
  .wow {
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
  }
  
  button,
  input,
  optgroup,
  select,
  textarea {
    margin: 0;
    padding: 0;
    outline: none;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    background: transparent;
    /*border: 0;*/
  }
  
  input[type=number]::-webkit-inner-spin-button,
  input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  
  input[type=number] {
    -moz-appearance: textfield;
  }
  
  input[type="number"]:hover,
  input[type="number"]:focus {
    -moz-appearance: number-input;
  }
  
  button {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  
  input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    opacity: 1;
    color: currentColor;
  }
  
  input::-moz-placeholder, textarea::-moz-placeholder {
    opacity: 1;
    color: currentColor;
  }
  
  input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    opacity: 1;
    color: currentColor;
  }
  
  input::placeholder,
  textarea::placeholder {
    opacity: 1;
    color: currentColor;
  }
  
  .form {
    display: flex;
    flex-direction: column;
  }
  
  .form-field {
    --dp-block: block;
    display: var(--dp-block);
    position: relative;
    width: 100%;
    font-size: 0.18rem;
    border-bottom: 1px solid #333333;
  }
  
  .form-field .form-field__text:active {
    color: #C95412;
  }
  
  .form-field__input {
    color: #fff;
    width: 100%;
    display: block;
  }
  
  .form-field__input::-webkit-input-placeholder {
    opacity: 0;
  }
  
  .form-field__input::-moz-placeholder {
    opacity: 0;
  }
  
  .form-field__input:-ms-input-placeholder {
    opacity: 0;
  }
  
  .form-field__input::placeholder {
    opacity: 0;
  }
  
  .form-field__input:not(:-moz-placeholder-shown) ~ .form-field__text {
    opacity: 0;
  }
  
  .form-field__input:not(:-ms-input-placeholder) ~ .form-field__text {
    opacity: 0;
  }
  
  .form-field__input:focus ~ .form-field__text,
  .form-field__input:not(:placeholder-shown) ~ .form-field__text {
    opacity: 0;
  }
  
  .form-field__input:-webkit-autofill {
    -webkit-text-fill-color: #fff;
    -webkit-transition: background-color 500000s ease-in-out 0s;
    transition: background-color 500000s ease-in-out 0s;
  }
  
  .form-field__email,
  .form-field__number,
  .form-field__input,
  .form-field__required,
  .form-field__text {
    font-size: 1em;
    -webkit-transition-duration: 400ms;
         -o-transition-duration: 400ms;
            transition-duration: 400ms;
    padding: 0.25rem 0;
  }
  
  .form-field__email,
  .form-field__number,
  .form-field__required,
  .form-field__text {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    pointer-events: none;
  }
  
  .form-field__text {
    font-weight: 300;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.47);
  }
  
  .form-field__text span {
    color: #EB661B;
  }
  
  .form-field__email,
  .form-field__number,
  .form-field__required {
    color: #EB661B;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
  }
  
  .form-field__email {
    font-size: 0.875em;
  }
  
  .form-field._required:not(._number) > * {
    opacity: 0;
  }
  
  .form-field._required:not(._number) .form-field__required {
    opacity: 1;
  }
  
  .form-field._email > * {
    opacity: 0;
  }
  
  .form-field._email .form-field__email {
    opacity: 1;
  }
  
  .form-field._number > * {
    opacity: 0;
  }
  
  .form-field._number .form-field__number {
    opacity: 1;
  }
  
  .form-file {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    width: 100%;
  }
  
  .form-file__controller {
    display: flex;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 0.2rem;
    height: 0.6rem;
    padding: 0 0.3rem;
    -webkit-transition-duration: 400ms;
         -o-transition-duration: 400ms;
            transition-duration: 400ms;
  }
  
  .form-file__controller:hover {
    -webkit-transition-duration: 400ms;
         -o-transition-duration: 400ms;
            transition-duration: 400ms;
  }
  
  .form-file__input {
    display: none;
  }
  
  .form-file__quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 0px;
    overflow: hidden;
    -webkit-transition-duration: 100ms;
         -o-transition-duration: 100ms;
            transition-duration: 100ms;
  }
  
  .form-file__quantity._active {
    padding-left: 15px;
    max-width: none;
  }
  
  .form-file__quantity._active .form-file__loader {
    opacity: 0;
    -webkit-transition-delay: 375ms;
         -o-transition-delay: 375ms;
            transition-delay: 375ms;
  }
  
  .form-file__quantity._active .form-file__number,
  .form-file__quantity._active .form-file__icon {
    opacity: 1;
    -webkit-transition-delay: 375ms;
         -o-transition-delay: 375ms;
            transition-delay: 375ms;
  }
  
  .form-file__loader {
    position: absolute;
    z-index: 2;
    -webkit-transition-duration: 150ms;
         -o-transition-duration: 150ms;
            transition-duration: 150ms;
  }
  
  .form-file__number {
    margin-left: 6px;
    opacity: 0;
    -webkit-transition-duration: 300ms;
         -o-transition-duration: 300ms;
            transition-duration: 300ms;
  }
  
  .form-file__icon {
    opacity: 0;
    -webkit-transition-duration: 300ms;
         -o-transition-duration: 300ms;
            transition-duration: 300ms;
  }
  
  .form-textarea {
    position: relative;
    display: block;
    border-radius: 0.3rem;
    border: 1px solid #b9b9b9;
    padding: 0.3rem;
  }
  
  .form-textarea._required {
    border-color: red;
  }
  
  .form-textarea__input {
    resize: none;
    width: 100%;
    -webkit-transition-duration: 400ms;
         -o-transition-duration: 400ms;
            transition-duration: 400ms;
  }
  
  .form-textarea__text {
    position: absolute;
    left: 0.3rem;
    top: 0.3rem;
    z-index: 2;
    pointer-events: none;
  }
  
  .form-textarea__text span {
    color: red;
  }
  
  .form-radio-group {
    display: flex;
    flex-wrap: wrap;
  }
  
  .form-radio {
    margin: 0 size-x(20) size-x(20) 0;
    display: block;
    position: relative;
  }
  
  .form-radio__input {
    opacity: 0;
    font-size: 0;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    cursor: pointer;
  }
  
  .form-radio__input:hover ~ .form-radio__controller {
    background-color: #000;
    color: #fff;
  }
  
  .form-radio__input:checked {
    cursor: auto;
  }
  
  .form-radio__input:checked ~ .form-radio__controller {
    background-color: #000;
    color: #fff;
  }
  
  .form-radio__box {
    position: relative;
    z-index: 1;
    border: 1px solid currentColor;
    -webkit-transition-duration: 400ms;
         -o-transition-duration: 400ms;
            transition-duration: 400ms;
    padding: size-x(18) size-x(42);
    display: block;
  }
  
  /*
  <span class="form-checkbox">
      <input class="form-checkbox__input" type="checkbox">
      <span class="form-checkbox__decor"></span>
      <svg class="icon"><use xlink:href="svg-sprite/sprite.svg#close"></use></svg>
  </span>
   */
  
  .form-checkbox {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 0.28rem;
    align-items: center;
    justify-content: center;
  }
  
  .form-checkbox__input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
  }
  
  .form-checkbox__input:checked ~ .form-checkbox__decor {
    border-color: #000;
    --checkbox-decor-size: 1;
  }
  
  .form-checkbox__input:checked ~ .icon {
    opacity: 1;
  }
  
  .form-checkbox__decor {
    position: relative;
    height: 1em;
    width: 1em;
    border: 1px solid #000;
    --checkbox-decor-size: 0;
  }
  
  .form-checkbox__decor:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition-duration: 400ms;
         -o-transition-duration: 400ms;
            transition-duration: 400ms;
    height: 0.714em;
    width: 0.714em;
    -webkit-transform: translate3d(-50%, -50%, 0) scale(var(--checkbox-decor-size));
            transform: translate3d(-50%, -50%, 0) scale(var(--checkbox-decor-size));
    background-color: #000;
  }
  
  .form-checkbox--icon {
    border: 1px solid #000;
    color: #000;
    height: 1em;
    width: 1em;
  }
  
  .form-checkbox--icon .icon {
    position: absolute;
    opacity: 0;
    font-size: 0.6em;
    margin-top: 0.05em;
    -webkit-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
  }
  
  .form-send {
    position: relative;
    z-index: 20;
  }
  
  .form-send__message {
    display: none;
    position: absolute;
    padding: 1em;
    width: 100%;
    left: 0;
    bottom: calc(100% + 0.2rem);
    text-align: center;
    background: #EB661B;
    color: #fff;
  }
  
  .form-send__message:before {
    content: "";
    position: absolute;
    border: 8px solid transparent;
    border-top: 8px solid #EB661B;
    top: 100%;
    left: calc(50% - 8px);
  }
  
  .form-send .btn {
    width: 100%;
  }
  
  .form-send__loading {
    position: relative;
  }
  
  .form-send__loading span {
    height: 2em;
    width: 2em;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: block;
    margin: 0 auto;
    border-bottom: 0;
    border-right: 0;
    -webkit-animation: loading .5s infinite linear;
            animation: loading .5s infinite linear;
  }
  
  .form-send__success {
    display: none;
  }
  
  .form-send__error {
    display: none;
  }
  
  .menu1 {
    --dp-block: block;
    display: var(--dp-block);
  }
  
  .menu1__list {
    display: flex;
    flex-wrap: wrap;
  }
  
  .menu1__list-item {
    margin-right: 0.4rem;
  }
  
  .menu1__link {
    color: currentColor;
  }
  
  /* 
  <div class="questions">
      <div class="questions-item">
          <div class="questions-item__header">
              <div class="questions-item__title"></div>
              <div class="questions-item__toggel _plus"></div>
          </div>
          <div class="questions-item__body"></div>
      </div>
  </div>
  */
  
  .questions {
    display: flex;
    flex-direction: column;
  }
  
  .questions-item {
    margin-bottom: 0.25rem;
  }
  
  .questions-item__header {
    background-color: #f1f1f1;
    padding: 0.2rem;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  
  .questions-item__header._active .questions-item__toggel._plus:after {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  
  .questions-item__header._active .questions-item__toggel._plus:before {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  
  .questions-item__header._active .questions-item__toggel._arrow .icon {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  
  .questions-item__title {
    margin-right: 0.25rem;
  }
  
  .questions-item__toggel {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .questions-item__toggel._plus {
    height: 1em;
    width: 1em;
    font-size: 0.25rem;
    position: relative;
    color: #A6A673;
    flex: 0 0 auto;
  }
  
  .questions-item__toggel._plus:before,
  .questions-item__toggel._plus:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    background: currentColor;
    -webkit-transition-duration: 400ms;
         -o-transition-duration: 400ms;
            transition-duration: 400ms;
  }
  
  .questions-item__toggel._plus:after {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  
  .questions-item__toggel._arrow .icon {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  
  .questions-item__body {
    display: none;
    padding: 0.2rem;
  }
  
  .video {
    --adaptive-box: 56.25%;
  }
  
  .video._active .video__frame {
    z-index: 4;
  }
  
  .video__preview {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 2;
  }
  
  .video__btn {
    z-index: 3;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
  }
  
  .video__frame {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }
  
  .slider {
    position: relative;
  }
  
  .slider__wrapper {
    position: relative;
  }
  
  .slider-controller {
    display: flex;
    align-items: center;
  }
  
  .slider-controller .slider-button-group {
    margin-left: 0.25rem;
  }
  
  .slider-button-group {
    display: flex;
    align-items: center;
  }
  
  .slider-button-group .slider-button:not(:last-child) {
    margin-right: 0.25rem;
  }
  
  .slider-button {
    height: 1em;
    width: 1em;
    font-size: 0.6rem;
    border-radius: 50%;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }
  
  .slider-button .icon {
    font-size: 0.24rem;
  }
  
  .slider-button-prev .icon {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    margin-right: 1px;
  }
  
  .slider-button--center {
    position: absolute;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%;
  }
  
  .slider-button--center.slider-button-prev {
    right: calc(100% + 0.2rem);
  }
  
  .slider-button--center.slider-button-next {
    left: calc(100% + 0.2rem);
  }
  
  .grid {
    --dp-grid: grid;
    display: var(--dp-grid);
    grid-template-columns: repeat(var(--grid-columns), calc(((100% + var(--grid-gap-x)) / (var(--grid-columns) / 1)) - var(--grid-gap-x)));
    grid-gap: var(--grid-gap-y) var(--grid-gap-x);
  }
  
  @supports (gap: var(--gap)) {
    .grid {
      gap: var(--grid-gap-y) var(--grid-gap-x);
    }
  }
  
  .grid > * {
    --col: var(--grid-columns);
    --row: 1;
    --col-start: auto;
    --row-start: auto;
    grid-area: var(--row-start)/var(--col-start)/span var(--row)/span var(--col);
  }
  
  .grid[class*=" m:align-"],
  .grid[class^="m:align-"] {
    align-items: var(--align);
    justify-items: var(--justify);
  }
  
  [class*=" m:align-"],
  [class^="m:align-"] {
    --align: initial;
    --justify: initial;
    align-items: var(--align);
    justify-content: var(--justify);
  }
  
  .box,
  .box-center,
  .box-center-x,
  .box-center-y,
  .box-reverse,
  .box-y,
  .box-y-reverse {
    --dp-flex: flex;
    display: var(--dp-flex);
  }
  
  .item {
    --dp-block: block;
    display: var(--dp-block);
  }
  
  .col-1 {
    --col: 1;
  }
  
  .col-2 {
    --col: 2;
  }
  
  .col-3 {
    --col: 3;
  }
  
  .col-4 {
    --col: 4;
  }
  
  .col-5 {
    --col: 5;
  }
  
  .col-6 {
    --col: 6;
  }
  
  .col-7 {
    --col: 7;
  }
  
  .col-8 {
    --col: 8;
  }
  
  .col-9 {
    --col: 9;
  }
  
  .col-10 {
    --col: 10;
  }
  
  .col-11 {
    --col: 11;
  }
  
  .col-12 {
    --col: 12;
  }
  
  .row-1 {
    --row: 1;
  }
  
  .row-2 {
    --row: 2;
  }
  
  .row-3 {
    --row: 3;
  }
  
  .row-4 {
    --row: 4;
  }
  
  .row-5 {
    --row: 5;
  }
  
  .row-6 {
    --row: 6;
  }
  
  .row-7 {
    --row: 7;
  }
  
  .row-8 {
    --row: 8;
  }
  
  .row-9 {
    --row: 9;
  }
  
  .row-10 {
    --row: 10;
  }
  
  .row-11 {
    --row: 11;
  }
  
  .row-12 {
    --row: 12;
  }
  
  .order-0 {
    order: 0;
  }
  
  .order-1 {
    order: 1;
  }
  
  .order-2 {
    order: 2;
  }
  
  .order-3 {
    order: 3;
  }
  
  .order-4 {
    order: 4;
  }
  
  .order-5 {
    order: 5;
  }
  
  .order-6 {
    order: 6;
  }
  
  .order-7 {
    order: 7;
  }
  
  .order-8 {
    order: 8;
  }
  
  .order-9 {
    order: 9;
  }
  
  .order-10 {
    order: 10;
  }
  
  .order-11 {
    order: 11;
  }
  
  .order-12 {
    order: 12;
  }
  
  .g\:columns-2 {
    --grid-columns: 2;
  }
  
  .g\:columns-3 {
    --grid-columns: 3;
  }
  
  .g\:columns-4 {
    --grid-columns: 4;
  }
  
  .g\:columns-5 {
    --grid-columns: 5;
  }
  
  .g\:columns-6 {
    --grid-columns: 6;
  }
  
  .g\:columns-7 {
    --grid-columns: 7;
  }
  
  .g\:columns-8 {
    --grid-columns: 8;
  }
  
  .g\:columns-9 {
    --grid-columns: 9;
  }
  
  .g\:columns-10 {
    --grid-columns: 10;
  }
  
  .g\:columns-11 {
    --grid-columns: 11;
  }
  
  .g\:columns-12 {
    --grid-columns: 12;
  }
  
  .g\:cs-1 {
    --col-start: 1;
  }
  
  .g\:cs-2 {
    --col-start: 2;
  }
  
  .g\:cs-3 {
    --col-start: 3;
  }
  
  .g\:cs-4 {
    --col-start: 4;
  }
  
  .g\:cs-5 {
    --col-start: 5;
  }
  
  .g\:cs-6 {
    --col-start: 6;
  }
  
  .g\:cs-7 {
    --col-start: 7;
  }
  
  .g\:cs-8 {
    --col-start: 8;
  }
  
  .g\:cs-9 {
    --col-start: 9;
  }
  
  .g\:cs-10 {
    --col-start: 10;
  }
  
  .g\:cs-11 {
    --col-start: 11;
  }
  
  .g\:cs-auto {
    --col-start: auto;
  }
  
  .g\:col-auto {
    --col: auto;
  }
  
  .g\:gap-0 {
    --local-container1-gap: 0px;
    --grid-gap-x: 0px;
    --grid-gap-y: 0px;
    --gap-n: 0px;
  }
  
  .g\:gap-n {
    --gap-n: calc(var(--local-container1-gap) / -1);
    margin-right: var(--gap-n);
    margin-left: var(--gap-n);
  }
  
  .g\:gap-x {
    --grid-gap-x: var(--gap-x);
  }
  
  .g\:gap-x-0 {
    --grid-gap-x: 0px;
  }
  
  .g\:gap-y {
    --grid-gap-y: var(--gap-y);
  }
  
  .g\:gap-y-0 {
    --grid-gap-y: 0px;
  }
  
  .g\:rs-1 {
    --row-start: 1;
  }
  
  .g\:rs-2 {
    --row-start: 2;
  }
  
  .g\:rs-3 {
    --row-start: 3;
  }
  
  .g\:rs-4 {
    --row-start: 4;
  }
  
  .g\:rs-5 {
    --row-start: 5;
  }
  
  .g\:rs-6 {
    --row-start: 6;
  }
  
  .g\:rs-7 {
    --row-start: 7;
  }
  
  .g\:rs-8 {
    --row-start: 8;
  }
  
  .g\:rs-9 {
    --row-start: 9;
  }
  
  .g\:rs-10 {
    --row-start: 10;
  }
  
  .g\:rs-11 {
    --row-start: 11;
  }
  
  .g\:rs-auto {
    --row-start: auto;
  }
  
  .g\:rows-fixed {
    grid-auto-rows: 1fr;
  }
  
  .t\:100 {
    font-weight: 100;
  }
  
  .t\:200 {
    font-weight: 200;
  }
  
  .t\:300 {
    font-weight: 300;
  }
  
  .t\:400 {
    font-weight: 400;
  }
  
  .t\:500 {
    font-weight: 500;
  }
  
  .t\:600 {
    font-weight: 600;
  }
  
  .t\:700 {
    font-weight: 700;
  }
  
  .t\:800 {
    font-weight: 800;
  }
  
  .t\:900 {
    font-weight: 900;
  }
  
  .t\:left {
    text-align: left;
  }
  
  .t\:right {
    text-align: right;
  }
  
  .t\:center {
    text-align: center;
  }
  
  .t\:italic {
    font-style: italic;
  }
  
  .t\:no-italic {
    font-style: normal;
  }
  
  .t\:uppercase {
    text-transform: uppercase;
  }
  
  .t\:transform-none {
    text-transform: none;
  }
  
  .inline {
    --dp-inline: inline;
    display: var(--dp-inline);
    -webkit-transform: rotate();
        -ms-transform: rotate();
            transform: rotate();
  }
  
  .box-reverse {
    flex-direction: row-reverse;
  }
  
  .box-reverse[class*=" m:align-"],
  .box-reverse[class^="m:align-"] {
    align-items: var(--align);
    justify-content: var(--justify-r-x);
  }
  
  .box-y {
    flex-direction: column;
  }
  
  .box-y[class*=" m:align-"],
  .box-y[class^="m:align-"] {
    align-items: var(--justify);
    justify-content: var(--align);
  }
  
  .box-y-reverse {
    flex-direction: column-reverse;
  }
  
  .box-y-reverse[class*=" m:align-"],
  .box-y-reverse[class^="m:align-"] {
    align-items: var(--justify);
    justify-content: var(--align-r-y);
  }
  
  .box-center {
    --justify: center;
    justify-content: var(--justify);
  }
  
  .box-center,
  .box-center-y {
    --align: center;
    align-items: var(--align);
  }
  
  .box-center-x {
    --justify: center;
    justify-content: var(--justify);
  }
  
  .m\:inline {
    --dp-flex: inline-flex;
    --dp-grid: inline-grid;
    --dp-block: inline-block;
    --dp-inline: inline;
  }
  
  .m\:block {
    --dp-flex: flex;
    --dp-grid: grid;
    --dp-block: block;
    --dp-inline: block;
  }
  
  .m\:hide,
  .m\:show\@lg,
  .m\:show\@md {
    --dp-flex: none;
    --dp-grid: none;
    --dp-block: none;
    --dp-inline: none;
  }
  
  .m\:show {
    --dp-flex: flex;
    --dp-grid: grid;
    --dp-block: block;
    --dp-inline: inline;
  }
  
  .m\:axis-x {
    flex-direction: row;
  }
  
  .m\:axis-x[class*=" m:align-"],
  .m\:axis-x[class^="m:align-"] {
    align-items: var(--align);
    justify-content: var(--justify);
  }
  
  .m\:axis-x-r {
    flex-direction: row-reverse;
  }
  
  .m\:axis-x-r[class*=" m:align-"],
  .m\:axis-x-r[class^="m:align-"] {
    align-items: var(--align);
    justify-content: var(--justify-r-x);
  }
  
  .m\:axis-y {
    flex-direction: column;
  }
  
  .m\:axis-y[class*=" m:align-"],
  .m\:axis-y[class^="m:align-"] {
    align-items: var(--justify);
    justify-content: var(--align);
  }
  
  .m\:axis-y-r {
    flex-direction: column-reverse;
  }
  
  .m\:axis-y-r[class*=" m:align-"],
  .m\:axis-y-r[class^="m:align-"] {
    align-items: var(--justify);
    justify-content: var(--align-r-y);
  }
  
  .m\:left {
    margin-right: auto;
    margin-left: 0;
  }
  
  .m\:left-0,
  .m\:right {
    margin-right: 0;
  }
  
  .m\:right {
    margin-left: auto;
  }
  
  .m\:right-0 {
    margin-left: 0;
  }
  
  .m\:top {
    margin-bottom: auto;
    margin-top: 0;
  }
  
  .m\:bottom,
  .m\:top-0 {
    margin-bottom: 0;
  }
  
  .m\:bottom {
    margin-top: auto;
  }
  
  .m\:bottom-0 {
    margin-top: 0;
  }
  
  .m\:center {
    margin: auto;
  }
  
  .m\:center-0 {
    margin: 0;
  }
  
  .m\:center-x {
    margin-left: auto;
    margin-right: auto;
  }
  
  .m\:center-x-0 {
    margin-left: 0;
    margin-right: 0;
  }
  
  .m\:center-y {
    margin-top: auto;
    margin-bottom: auto;
  }
  
  .m\:center-y-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .m\:align-right {
    --justify: flex-end;
    --justify-r-x: flex-start;
  }
  
  .m\:align-left {
    --justify: flex-start;
    --justify-r-x: flex-end;
  }
  
  .m\:align-bottom {
    --align: flex-end;
    --align-r-y: flex-start;
  }
  
  .m\:align-top {
    --align: flex-start;
    --align-r-y: flex-end;
  }
  
  .m\:align-center {
    --align: center;
    --align-r-y: center;
  }
  
  .m\:align-center,
  .m\:align-center-x {
    --justify: center;
    --justify-r-x: center;
  }
  
  .m\:align-center-y {
    --align: center;
    --align-r-y: center;
  }
  
  .m\:align-stretch {
    --align: stretch;
    --align-r-y: stretch;
  }
  
  .m\:align-stretch,
  .m\:align-stretch-x {
    --justify: stretch;
    --justify-r-x: stretch;
  }
  
  .m\:align-stretch-y {
    --align: stretch;
    --align-r-y: stretch;
  }
  
  .m\:relative {
    position: relative;
  }
  
  .m\:static {
    position: static;
  }
  
  .m\:rotate-0 {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  
  .m\:rotate-45 {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  
  .m\:rotate-90 {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  
  .m\:rotate-135 {
    -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  
  .m\:rotate-180 {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  
  .m\:rotate-225 {
    -webkit-transform: rotate(225deg);
        -ms-transform: rotate(225deg);
            transform: rotate(225deg);
  }
  
  .m\:rotate-270 {
    -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
            transform: rotate(270deg);
  }
  
  .m\:rotate-315 {
    -webkit-transform: rotate(315deg);
        -ms-transform: rotate(315deg);
            transform: rotate(315deg);
  }
  
  .m\:o-auto {
    overflow: auto;
  }
  
  .m\:o-scroll {
    overflow: scroll;
  }
  
  .m\:o-hidden {
    overflow: hidden;
  }
  
  .m\:o-visible {
    overflow: visible;
  }
  
  .m\:nowrap {
    flex-wrap: nowrap;
  }
  
  .m\:wrap {
    flex-wrap: wrap;
  }
  
  .m\:wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  
  .header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 20;
    padding: 0.15rem 0;
  }
  
  .header__menu-toggle {
    font-size: 0.15rem;
    margin-right: 0.15rem;
  }
  
  .header__menu-toggle .icon {
    color: #fff;
  }
  
  .header__logo {
    width: 1rem;
  }
  
  .header__btn {
    margin-left: auto;
    width: auto;
  }
  
  .home {
    position: relative;
    overflow: hidden;
    margin-bottom: 0.2rem;
  }
  
  .home__box {
    position: relative;
    z-index: 3;
    color: #fff;
    padding-top: 1rem;
  }
  
  .home__title {
    margin-bottom: 0.2rem;
  }
  
  .home__subtitle {
    position: relative;
    font-weight: 300;
    padding-left: 0.11rem;
    margin-bottom: 0.47rem;
  }
  
  .home__subtitle:before {
    content: '';
    height: 100%;
    width: 2px;
    background-color: #EB661B;
    position: absolute;
    left: -1px;
    top: 1px;
  }
  
  .home__btn-box {
    display: flex;
    margin-bottom: -0.29rem;
    overflow-x: auto;
    padding-left: 0.1rem;
    padding-bottom: 0.1rem;
    margin-right: -10px;
    margin-left: -10px;
  }
  
  .home__btn {
    text-transform: uppercase;
    min-height: 1.04rem;
    margin-right: 0.12rem;
    min-width: 2.7rem;
  }
  
  .home__btn-title {
    letter-spacing: 3px;
    font-weight: 400;
    font-size: 0.2rem;
    margin-bottom: 0.07rem;
    white-space: nowrap;
  }
  
  .home__btn-text {
    letter-spacing: 2px;
    font-weight: 300;
    font-size: 0.12rem;
	text-align: justify;
  }
  
  .home__btn .icon {
    font-size: 0.28rem;
    margin-bottom: 0.24rem;
  }
  
  .home__decor {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    background: #1E1E1C url("../images/home/decor.svg") no-repeat center top/100%;
    width: 100%;
    --adaptive-box: 124.6875%;
  }
  
  .home__video-box {
    overflow: visible;
    z-index: 2;
    --adaptive-box: 72.1875%;
  }
  
  .home__video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  
  .home__decor-text {
    color: #fff;
    top: 5.86rem;
    left: -1.31rem;
    -webkit-transform-origin: 0 0.19rem;
        -ms-transform-origin: 0 0.19rem;
            transform-origin: 0 0.19rem;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  
  .products {
    position: relative;
  }
  
  .products-card {
    padding-top: 0.2rem;
    margin-top: 0.2rem;
    border-top: 1px solid #E2E2E2;
  }
  
  .products-card__image {
    margin: 0 auto;
    max-width: 3.5rem;
  }
  
  .products-card__image._1 {
    --adaptive-box: 89.06475%;
  }
  
  .products-card__image._2 {
    --adaptive-box: 147.64398%;
  }
  
  .products-card__image._3 {
    --adaptive-box: 102.8777%;
  }
  
  .products-card__image._4 {
    --adaptive-box: 121.52381%;
  }
  
  .products-card__image._5 {
    --adaptive-box: 88.63309%;
  }
  
  .products-card__title {
    margin-bottom: 0.1rem;
  }
  
  .products-card__text {
    margin-bottom: 0.15rem;
  }
  
  .products-card__text p:not(:last-child) {
    margin-bottom: 0.1rem;
  }
  
  .products__decor-text {
    left: -1.31rem;
    top: 4.84rem;
    -webkit-transform-origin: 0 0.19rem;
        -ms-transform-origin: 0 0.19rem;
            transform-origin: 0 0.19rem;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  
  .about-company {
    position: relative;
    background-color: #F8F8F8;
    overflow: hidden;
  }
  
  .about-company .container1 {
    padding-top: 0.4rem;
    padding-bottom: 0.3rem;
  }
  
  .about-company__decor-image {
    position: absolute;
    display: none;
  }
  
  .about-company__title {
    margin-bottom: 0.1rem;
  }
  
  .about-company__text {
    margin-bottom: 0.2rem;
  }
  
  .about-company__main-image {
    --adaptive-box: 115.39568%;
  }
  
  .about-company__decor-text {
    right: -3.51rem;
    top: 8.64rem;
    -webkit-transform-origin: 0 0.19rem;
        -ms-transform-origin: 0 0.19rem;
            transform-origin: 0 0.19rem;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  
  .hwaw {
    position: relative;
    overflow: hidden;
  }
  
  .hwaw .container1 {
    padding-top: 0.4rem;
    padding-bottom: 0.84rem;
  }
  
  .hwaw__subtitle {
    font-weight: 300;
    font-size: 0.18rem;
    letter-spacing: 1px;
  }
  
  .hwaw-card {
    border-bottom: 1px solid #E2E2E2;
    padding-bottom: 0.15rem;
    --animation-right: 25%;
  }
  
  .hwaw-card:not(:last-child) {
    margin-bottom: 0.15rem;
  }
  
  .hwaw-card__number {
    color: #E2E2E2;
    font-size: 0.32rem;
  }
  
  .hwaw-card__number span {
    font-size: 0.2rem;
  }
  
  .hwaw-card__title {
    margin-bottom: 0.05rem;
    font-weight: 500;
  }
  
  .hwaw-card__text {
    margin-bottom: 0.2rem;
  }
  
  .hwaw-card__btn {
    /*display: inline-block;*/
    color: #EB661B;
    vertical-align: bottom;
    text-align: left;
  }
  
  .hwaw-card__btn:active {
    color: #C95412;
  }
  
  .hwaw-card__btn .icon {
    display: inline;
    font-size: 0.44rem;
    margin: -0.18rem 0 -0.18rem 0.1rem;
  }
  
  .hwaw-card__btn .icon._indent {
    margin: -0.16rem 0 -0.16rem 0.1rem;
  }
  
  .hwaw__main-image {
    --adaptive-box: 141.66667%;
    margin-bottom: 0.2rem;
  }
  
  .hwaw__decor-text {
    left: -2rem;
    top: 14.65rem;
    -webkit-transform-origin: 0 0.19rem;
        -ms-transform-origin: 0 0.19rem;
            transform-origin: 0 0.19rem;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  
  .benefits {
    position: relative;
    background: #F8F8F8;
  }
  
  .benefits__container1 {
    z-index: 10;
    padding-top: 0.77rem;
    padding-bottom: 0.42rem;
  }
  
  .benefits__title {
    margin-bottom: 0.2rem;
    text-align: center;
  }
  
  .benefits-card {
    --grid-gap-y: 0.1rem;
  }
  
  .benefits-card:not(:last-child) {
    border-bottom: 1px solid #E2E2E2;
    padding-bottom: 0.2rem;
    margin-bottom: 0.2rem;
  }
  
  .benefits-card__icon {
    border-radius: 50%;
    background-color: #EB661B;
    max-width: 0.6rem;
  }
  
  .benefits-card__icon .icon {
    font-size: 0.32rem;
  }
  
  .benefits-card__title {
    margin-bottom: 0.1rem;
  }
  
  .benefits__arrow {
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
  }
  
  .benefits__arrow .icon {
    -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
            transform: rotate(270deg);
    stroke-width: 2px;
    fill: none;
    stroke: #fff;
  }
  
  .benefits__decor-text {
    right: -3.87rem;
    top: 8.01rem;
    -webkit-transform-origin: 0 0.19rem;
        -ms-transform-origin: 0 0.19rem;
            transform-origin: 0 0.19rem;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  
  .benefits__bg {
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  .benefits__bg .container1 {
    height: 100%;
  }
  
  .services {
    position: relative;
    padding: 0.3rem 0;
    overflow: hidden;
  }
  
  .services__title {
    margin-bottom: 0.15rem;
  }
  
  .services-card {
    display: flex;
    --animation-left: -20%;
  }
  
  .services-card:not(:last-child) {
    border-bottom: 1px solid #E2E2E2;
    padding-bottom: 0.15rem;
    margin-bottom: 0.15rem;
  }
  
  .services-card__icon {
    font-size: 0.25rem;
    margin-right: 0.1rem;
  }
  
  .services-card__title {
    margin-top: 0.02rem;
    font-weight: 300;
    font-size: 0.15rem;
  }
  
  .order {
    position: relative;
    background: #EB661B;
    color: #fff;
    padding: 0.2rem 0 0.25rem;
  }
  
  .order__title {
    margin-bottom: 0.05rem;
  }
  
  .order__subtitle {
    font-weight: 300;
    margin-bottom: -0.05rem;
  }
  
  .order__btn {
    margin: 0 auto;
  }
  
  .order__btn .icon {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  
  .contacts {
    position: relative;
    padding: 0.35rem 0;
  }
  
  .contacts__title {
    margin-bottom: 0.1rem;
  }
  
  .contacts__text {
    font-size: 0.2rem;
  }
  
  .contacts__address {
    font-style: normal;
    color: rgba(30, 30, 28, 0.5);
  }
  
  .contacts__item {
    font-weight: 300;
  }
  
  .contacts__item:not(:last-child) {
    margin-bottom: 0.1rem;
  }
  
  .contacts__link {
    display: block;
    color: currentColor;
    font-size: 0.2rem;
  }
  
  .contacts__link:active {
    color: #C95412;
  }
  
  .contacts__logo {
    margin: 0 0 0.3rem 0;
    width: 2.23rem;
  }
  
  /*.modal1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    display: none;
    overflow: hidden;
  }*/
.wpcf7 {
	background: #fff;
}
  .modal1._index {
    z-index: 1999;
  }
  
  .modal__wrapper {
    height: 100%;
    width: 100%;
    display: flex;
    overflow-x: hidden;
    overflow-y: auto;
  }
  
  .modal__container1 {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .modal__box {
    margin: auto;
    padding-bottom: 1rem;
  }
  
  .modal__close .icon {
    color: #fff;
  }
  
  .modal__close:active .icon {
    color: #C95412;
  }
  
  .modal__header {
    height: 1rem;
    display: flex;
    align-items: center;
    width: 100%;
    z-index: 20;
    padding: 0 0.15rem;
    flex: 0 0 auto;
  }
  
  .modal__header-close {
    margin-left: auto;
  }
  
  .modal--theme-primary {
    background: #ffffff;
  }
  
  .modal--theme-secondary {
    background: #1E1E1C;
  }
  
  .modal-politic {
    position: relative;
    background-color: #fff;
  }
  
  .modal-politic__box {
    margin: auto;
    position: relative;
    padding: 0;
  }
  
  .modal-politic__wrapper {
    background-color: #fff;
    max-width: 6rem;
    padding: 0.5rem 0.15rem;
  }
  
  .modal-politic__close {
    position: absolute;
    right: 0.15rem;
    top: 0.3rem;
  }
  
  .modal-politic__title {
    margin-bottom: 0.2rem;
  }
  
  .modal-form {
    position: relative;
  }
  
  .modal-form__box {
    margin: auto;
    position: relative;
    padding: 0;
    max-width: 8.95rem;
    width: 100%;
  }
  
  .modal-form__wrapper {
    color: #fff;
    padding: 0.5rem 0.1rem;
  }
  
  .modal-form__title {
    text-align: center;
    margin-bottom: 0.1rem;
    font-weight: 700;
    font-size: 0.24rem;
  }
  
  .modal-form__subtitle {
    text-align: center;
    margin-bottom: 0.15rem;
  }
  
  .modal-form__form-box {
    max-width: 3.2rem;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .modal-form__form-box .form-field {
    margin-bottom: 0.05rem;
  }
  
  .modal-form__form-box .form-file {
    margin-top: 0.1rem;
  }
  
  .modal-form__form-box .form-send {
    margin-top: 0.2rem;
  }
  
  .modal-form__close {
    position: absolute;
    right: 0.15rem;
    top: 0.15rem;
    font-size: 0.32rem;
  }
  
  .modal-video {
    position: relative;
  }
  
  .modal-video__box {
    margin: auto;
    max-width: 12rem;
    width: 100%;
    position: relative;
    --adaptive-box: height(560,315);
  }
  
  .modal-video__frame {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
  }
  
  .modal-video__loader {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
    font-size: 4em;
    z-index: 1;
  }
  
  .menu-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    background: #1E1E1C;
    color: #fff;
    overflow: hidden;
    display: none;
  }
  
  .menu-modal__wrapper {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 2;
    position: relative;
  }
  
  .menu-modal .container1 {
    min-height: 100vh;
  }
  
  .menu-modal__header {
    display: flex;
    align-items: center;
    padding-top: 0.23rem;
  }
  
  .menu-modal__close {
    color: #fff;
    font-size: 0.16rem;
    stroke-width: 2px;
    margin-right: 0.14rem;
  }
  
  .menu-modal__logo {
    width: 1.4rem;
  }
  
  .menu-modal__nav {
    margin: auto 0;
    padding: 0.2rem 0;
  }
  
  .menu-modal__list-item:not(:last-child) {
    margin-bottom: 0.35rem;
  }
  
  .menu-modal__wrapper-close {
    display: none;
  }
  
  @media (min-width: 480px) {
    .container1 {
      max-width: 440px;
    }
  
    .home__btn-box {
      margin-right: 0;
      margin-left: 0;
      padding-left: 0;
    }
  
    .hwaw-card__btn br {
      display: none;
    }
  }
  
  @media (min-width: 640px) {
    .container1,
    .container1\@xs {
      max-width: 520px;
    }
  }
  
  @media (min-width: 768px) {
    .container1\@xs,
    .container1,
    .container1\@md {
      max-width: 720px;
    }
  
    .title--size-md {
      font-size: 0.48rem;
    }
  
    .title--size-lg {
      font-size: 0.48rem;
    }
  
    .col-1\@md {
      --col: 1;
    }
  
    .col-2\@md {
      --col: 2;
    }
  
    .col-3\@md {
      --col: 3;
    }
  
    .col-4\@md {
      --col: 4;
    }
  
    .col-5\@md {
      --col: 5;
    }
  
    .col-6\@md {
      --col: 6;
    }
  
    .col-7\@md {
      --col: 7;
    }
  
    .col-8\@md {
      --col: 8;
    }
  
    .col-9\@md {
      --col: 9;
    }
  
    .col-10\@md {
      --col: 10;
    }
  
    .col-11\@md {
      --col: 11;
    }
  
    .col-12\@md {
      --col: 12;
    }
  
    .row-1\@md {
      --row: 1;
    }
  
    .row-2\@md {
      --row: 2;
    }
  
    .row-3\@md {
      --row: 3;
    }
  
    .row-4\@md {
      --row: 4;
    }
  
    .row-5\@md {
      --row: 5;
    }
  
    .row-6\@md {
      --row: 6;
    }
  
    .row-7\@md {
      --row: 7;
    }
  
    .row-8\@md {
      --row: 8;
    }
  
    .row-9\@md {
      --row: 9;
    }
  
    .row-10\@md {
      --row: 10;
    }
  
    .row-11\@md {
      --row: 11;
    }
  
    .row-12\@md {
      --row: 12;
    }
  
    .order-0\@md {
      order: 0;
    }
  
    .order-1\@md {
      order: 1;
    }
  
    .order-2\@md {
      order: 2;
    }
  
    .order-3\@md {
      order: 3;
    }
  
    .order-4\@md {
      order: 4;
    }
  
    .order-5\@md {
      order: 5;
    }
  
    .order-6\@md {
      order: 6;
    }
  
    .order-7\@md {
      order: 7;
    }
  
    .order-8\@md {
      order: 8;
    }
  
    .order-9\@md {
      order: 9;
    }
  
    .order-10\@md {
      order: 10;
    }
  
    .order-11\@md {
      order: 11;
    }
  
    .order-12\@md {
      order: 12;
    }
  
    .g\:columns-2\@md {
      --grid-columns: 2;
    }
  
    .g\:columns-3\@md {
      --grid-columns: 3;
    }
  
    .g\:columns-4\@md {
      --grid-columns: 4;
    }
  
    .g\:columns-5\@md {
      --grid-columns: 5;
    }
  
    .g\:columns-6\@md {
      --grid-columns: 6;
    }
  
    .g\:columns-7\@md {
      --grid-columns: 7;
    }
  
    .g\:columns-8\@md {
      --grid-columns: 8;
    }
  
    .g\:columns-9\@md {
      --grid-columns: 9;
    }
  
    .g\:columns-10\@md {
      --grid-columns: 10;
    }
  
    .g\:columns-11\@md {
      --grid-columns: 11;
    }
  
    .g\:columns-12\@md {
      --grid-columns: 12;
    }
  
    .g\:cs-1\@md {
      --col-start: 1;
    }
  
    .g\:cs-2\@md {
      --col-start: 2;
    }
  
    .g\:cs-3\@md {
      --col-start: 3;
    }
  
    .g\:cs-4\@md {
      --col-start: 4;
    }
  
    .g\:cs-5\@md {
      --col-start: 5;
    }
  
    .g\:cs-6\@md {
      --col-start: 6;
    }
  
    .g\:cs-7\@md {
      --col-start: 7;
    }
  
    .g\:cs-8\@md {
      --col-start: 8;
    }
  
    .g\:cs-9\@md {
      --col-start: 9;
    }
  
    .g\:cs-10\@md {
      --col-start: 10;
    }
  
    .g\:cs-11\@md {
      --col-start: 11;
    }
  
    .g\:cs-auto\@md {
      --col-start: auto;
    }
  
    .g\:start-auto\@md {
      --col-start: auto;
      --row-start: auto;
    }
  
    .g\:col-auto\@md {
      --col: auto;
    }
  
    .g\:col-auto-none\@md {
      --col: var(--grid-columns);
    }
  
    .g\:gap\@md {
      --local-container1-gap: var(--container1-gap);
      --grid-gap-x: var(--gap-x);
      --grid-gap-y: var(--gap-y);
      --gap-n: calc(var(--container1-gap) / -1);
    }
  
    .g\:gap-0\@md {
      --local-container1-gap: 0px;
      --grid-gap-x: 0px;
      --grid-gap-y: 0px;
      --gap-n: 0px;
    }
  
    .g\:gap-n\@md {
      --gap-n: calc(var(--local-container1-gap) / -1);
      margin-right: var(--gap-n);
      margin-left: var(--gap-n);
    }
  
    .g\:gap-n-0\@md {
      --gap-n: 0px;
    }
  
    .g\:gap-x\@md {
      --grid-gap-x: var(--gap-x);
    }
  
    .g\:gap-x-0\@md {
      --grid-gap-x: 0px;
    }
  
    .g\:gap-y\@md {
      --grid-gap-y: var(--gap-y);
    }
  
    .g\:gap-y-0\@md {
      --grid-gap-y: 0px;
    }
  
    .g\:rs-1\@md {
      --row-start: 1;
    }
  
    .g\:rs-2\@md {
      --row-start: 2;
    }
  
    .g\:rs-3\@md {
      --row-start: 3;
    }
  
    .g\:rs-4\@md {
      --row-start: 4;
    }
  
    .g\:rs-5\@md {
      --row-start: 5;
    }
  
    .g\:rs-6\@md {
      --row-start: 6;
    }
  
    .g\:rs-7\@md {
      --row-start: 7;
    }
  
    .g\:rs-8\@md {
      --row-start: 8;
    }
  
    .g\:rs-9\@md {
      --row-start: 9;
    }
  
    .g\:rs-10\@md {
      --row-start: 10;
    }
  
    .g\:rs-11\@md {
      --row-start: 11;
    }
  
    .g\:rs-auto\@md {
      --row-start: auto;
    }
  
    .g\:rows-auto\@md {
      grid-auto-rows: auto;
    }
  
    .g\:rows-fixed\@md {
      grid-auto-rows: 1fr;
    }
  
    .t\:left\@md {
      text-align: left;
    }
  
    .t\:right\@md {
      text-align: right;
    }
  
    .t\:center\@md {
      text-align: center;
    }
  
    .m\:inline\@md {
      --dp-flex: inline-flex;
      --dp-grid: inline-grid;
      --dp-block: inline-block;
      --dp-inline: inline;
    }
  
    .m\:block\@md {
      --dp-flex: flex;
      --dp-grid: grid;
      --dp-block: block;
      --dp-inline: block;
    }
  
    .m\:hide\@md {
      --dp-flex: none;
      --dp-grid: none;
      --dp-block: none;
      --dp-inline: none;
    }
  
    .m\:show\@md {
      --dp-flex: flex;
      --dp-grid: grid;
      --dp-block: block;
      --dp-inline: inline;
    }
  
    .m\:axis-x\@md {
      flex-direction: row;
    }
  
    .m\:axis-x\@md[class*=" m:align-"],
    .m\:axis-x\@md[class^="m:align-"] {
      align-items: var(--align);
      justify-content: var(--justify);
    }
  
    .m\:axis-x-r\@md {
      flex-direction: row-reverse;
    }
  
    .m\:axis-x-r\@md[class*=" m:align-"],
    .m\:axis-x-r\@md[class^="m:align-"] {
      align-items: var(--align);
      justify-content: var(--justify-r-x);
    }
  
    .m\:axis-y\@md {
      flex-direction: column;
    }
  
    .m\:axis-y\@md[class*=" m:align-"],
    .m\:axis-y\@md[class^="m:align-"] {
      align-items: var(--justify);
      justify-content: var(--align);
    }
  
    .m\:axis-y-r\@md {
      flex-direction: column-reverse;
    }
  
    .m\:axis-y-r\@md[class*=" m:align-"],
    .m\:axis-y-r\@md[class^="m:align-"] {
      align-items: var(--justify);
      justify-content: var(--align-r-y);
    }
  
    .m\:left\@md {
      margin-right: auto;
      margin-left: 0;
    }
  
    .m\:left-0\@md,
    .m\:right\@md {
      margin-right: 0;
    }
  
    .m\:right\@md {
      margin-left: auto;
    }
  
    .m\:right-0\@md {
      margin-left: 0;
    }
  
    .m\:top\@md {
      margin-bottom: auto;
      margin-top: 0;
    }
  
    .m\:bottom\@md,
    .m\:top-0\@md {
      margin-bottom: 0;
    }
  
    .m\:bottom\@md {
      margin-top: auto;
    }
  
    .m\:bottom-0\@md {
      margin-top: 0;
    }
  
    .m\:center\@md {
      margin: auto;
    }
  
    .m\:center-0\@md {
      margin: 0;
    }
  
    .m\:center-x\@md {
      margin-left: auto;
      margin-right: auto;
    }
  
    .m\:center-x-0\@md {
      margin-left: 0;
      margin-right: 0;
    }
  
    .m\:center-y\@md {
      margin-top: auto;
      margin-bottom: auto;
    }
  
    .m\:center-y-0\@md {
      margin-top: 0;
      margin-bottom: 0;
    }
  
    .m\:align-right\@md {
      --justify: flex-end;
      --justify-r-x: flex-start;
    }
  
    .m\:align-left\@md {
      --justify: flex-start;
      --justify-r-x: flex-end;
    }
  
    .m\:align-bottom\@md {
      --align: flex-end;
      --align-r-y: flex-start;
    }
  
    .m\:align-top\@md {
      --align: flex-start;
      --align-r-y: flex-end;
    }
  
    .m\:align-center\@md {
      --align: center;
      --align-r-y: center;
    }
  
    .m\:align-center-x\@md,
    .m\:align-center\@md {
      --justify: center;
      --justify-r-x: center;
    }
  
    .m\:align-center-y\@md {
      --align: center;
      --align-r-y: center;
    }
  
    .m\:align-stretch\@md {
      --align: stretch;
      --align-r-y: stretch;
    }
  
    .m\:align-stretch-x\@md,
    .m\:align-stretch\@md {
      --justify: stretch;
      --justify-r-x: stretch;
    }
  
    .m\:align-stretch-y\@md {
      --align: stretch;
      --align-r-y: stretch;
    }
  
    .m\:relative\@md {
      position: relative;
    }
  
    .m\:static\@md {
      position: static;
    }
  
    .m\:o-auto\@md {
      overflow: auto;
    }
  
    .m\:o-scroll\@md {
      overflow: scroll;
    }
  
    .m\:o-hidden\@md {
      overflow: hidden;
    }
  
    .m\:o-visible\@md {
      overflow: visible;
    }
  
    .m\:nowrap\@md {
      flex-wrap: nowrap;
    }
  
    .m\:wrap\@md {
      flex-wrap: wrap;
    }
  
    .m\:wrap-reverse\@md {
      flex-wrap: wrap-reverse;
    }
  
    .header__menu-toggle {
      font-size: 0.24rem;
    }
  
    .home__btn-box {
      margin-bottom: -0.58rem;
    }
  
    .benefits__title {
      text-align: left;
    }
  
    .benefits-card__icon {
      max-width: none;
    }
  
    .benefits-card__icon .icon {
      font-size: 0.5rem;
    }
  
    .order {
      padding: 0.5rem 0;
    }
  
    .order__subtitle {
      margin-bottom: 0;
    }
  
    .menu-modal__link {
      font-size: 0.2rem;
    }
  }
  
  @media (min-width: 1024px) {
    :root {
      --body-font-size: 0.2rem;
    }
  
    :root {
      --gap-x: 0.3rem;
    }
  
    :root {
      --gap-y: 0.3rem;
    }
  
    :root {
      --container1-gap: 0;
    }
  
    :root {
      --width-min-window: 960;
      --width-min-window-px: 960px;
      --min-value: 60;
      --min-value-px: 60px;
      --max-value: 100;
    }
  
    .container1\@xs,
    .container1\@md,
    .container1,
    .container1\@lg {
      max-width: 14.2rem;
    }
  
    .list li:before {
      top: 0.09rem;
    }
  
    .up {
      font-size: 0.64rem;
    }
  
    .delay-200\@lg {
      -webkit-animation-delay: 200ms;
              animation-delay: 200ms;
    }
  
    .delay-400\@lg {
      -webkit-animation-delay: 400ms;
              animation-delay: 400ms;
    }
  
    .delay-600\@lg {
      -webkit-animation-delay: 600ms;
              animation-delay: 600ms;
    }
  
    .fadeIn\@lg {
      -webkit-animation-name: fadeIn;
              animation-name: fadeIn;
    }
  
    .title--size-sm {
      font-size: 0.32rem;
    }
  
    .title--size-md {
      font-size: 0.64rem;
    }
  
    .title--size-lg {
      font-size: 0.8rem;
    }
  
    .text {
      letter-spacing: 1px;
    }
  
    .btn-primary {
      font-size: 0.26rem;
      min-height: 1.2rem;
      max-width: 4.53rem;
    }
  
    .btn-circle {
      font-size: 2.7rem;
    }
  
    .social--size {
      font-size: 0.64rem;
    }
  
    .form-field__email,
    .form-field__number,
    .form-field__input,
    .form-field__required,
    .form-field__text {
      padding: 0.3rem 0;
    }
  
    .form-file__controller {
      font-size: 0.24rem;
      height: 0.8rem;
      padding: 0 0.4rem;
    }
  
    .questions-item__header {
      padding: 0.2rem 0.65rem;
    }
  
    .questions-item__body {
      padding: 0.2rem 0.65rem;
    }
  
    .col-1\@lg {
      --col: 1;
    }
  
    .col-2\@lg {
      --col: 2;
    }
  
    .col-3\@lg {
      --col: 3;
    }
  
    .col-4\@lg {
      --col: 4;
    }
  
    .col-5\@lg {
      --col: 5;
    }
  
    .col-6\@lg {
      --col: 6;
    }
  
    .col-7\@lg {
      --col: 7;
    }
  
    .col-8\@lg {
      --col: 8;
    }
  
    .col-9\@lg {
      --col: 9;
    }
  
    .col-10\@lg {
      --col: 10;
    }
  
    .col-11\@lg {
      --col: 11;
    }
  
    .col-12\@lg {
      --col: 12;
    }
  
    .row-1\@lg {
      --row: 1;
    }
  
    .row-2\@lg {
      --row: 2;
    }
  
    .row-3\@lg {
      --row: 3;
    }
  
    .row-4\@lg {
      --row: 4;
    }
  
    .row-5\@lg {
      --row: 5;
    }
  
    .row-6\@lg {
      --row: 6;
    }
  
    .row-7\@lg {
      --row: 7;
    }
  
    .row-8\@lg {
      --row: 8;
    }
  
    .row-9\@lg {
      --row: 9;
    }
  
    .row-10\@lg {
      --row: 10;
    }
  
    .row-11\@lg {
      --row: 11;
    }
  
    .row-12\@lg {
      --row: 12;
    }
  
    .order-0\@lg {
      order: 0;
    }
  
    .order-1\@lg {
      order: 1;
    }
  
    .order-2\@lg {
      order: 2;
    }
  
    .order-3\@lg {
      order: 3;
    }
  
    .order-4\@lg {
      order: 4;
    }
  
    .order-5\@lg {
      order: 5;
    }
  
    .order-6\@lg {
      order: 6;
    }
  
    .order-7\@lg {
      order: 7;
    }
  
    .order-8\@lg {
      order: 8;
    }
  
    .order-9\@lg {
      order: 9;
    }
  
    .order-10\@lg {
      order: 10;
    }
  
    .order-11\@lg {
      order: 11;
    }
  
    .order-12\@lg {
      order: 12;
    }
  
    .g\:columns-2\@lg {
      --grid-columns: 2;
    }
  
    .g\:columns-3\@lg {
      --grid-columns: 3;
    }
  
    .g\:columns-4\@lg {
      --grid-columns: 4;
    }
  
    .g\:columns-5\@lg {
      --grid-columns: 5;
    }
  
    .g\:columns-6\@lg {
      --grid-columns: 6;
    }
  
    .g\:columns-7\@lg {
      --grid-columns: 7;
    }
  
    .g\:columns-8\@lg {
      --grid-columns: 8;
    }
  
    .g\:columns-9\@lg {
      --grid-columns: 9;
    }
  
    .g\:columns-10\@lg {
      --grid-columns: 10;
    }
  
    .g\:columns-11\@lg {
      --grid-columns: 11;
    }
  
    .g\:columns-12\@lg {
      --grid-columns: 12;
    }
  
    .g\:cs-1\@lg {
      --col-start: 1;
    }
  
    .g\:cs-2\@lg {
      --col-start: 2;
    }
  
    .g\:cs-3\@lg {
      --col-start: 3;
    }
  
    .g\:cs-4\@lg {
      --col-start: 4;
    }
  
    .g\:cs-5\@lg {
      --col-start: 5;
    }
  
    .g\:cs-6\@lg {
      --col-start: 6;
    }
  
    .g\:cs-7\@lg {
      --col-start: 7;
    }
  
    .g\:cs-8\@lg {
      --col-start: 8;
    }
  
    .g\:cs-9\@lg {
      --col-start: 9;
    }
  
    .g\:cs-10\@lg {
      --col-start: 10;
    }
  
    .g\:cs-11\@lg {
      --col-start: 11;
    }
  
    .g\:cs-auto\@lg {
      --col-start: auto;
    }
  
    .g\:start-auto\@lg {
      --col-start: auto;
      --row-start: auto;
    }
  
    .g\:col-auto\@lg {
      --col: auto;
    }
  
    .g\:col-auto-none\@lg {
      --col: var(--grid-columns);
    }
  
    .g\:gap\@lg {
      --local-container1-gap: var(--container1-gap);
      --grid-gap-x: var(--gap-x);
      --grid-gap-y: var(--gap-y);
      --gap-n: calc(var(--container1-gap) / -1);
    }
  
    .g\:gap-0\@lg {
      --local-container1-gap: 0px;
      --grid-gap-x: 0px;
      --grid-gap-y: 0px;
      --gap-n: 0px;
    }
  
    .g\:gap-n\@lg {
      --gap-n: calc(var(--local-container1-gap) / -1);
      margin-right: var(--gap-n);
      margin-left: var(--gap-n);
    }
  
    .g\:gap-n-0\@lg {
      --gap-n: 0px;
    }
  
    .g\:gap-x\@lg {
      --grid-gap-x: var(--gap-x);
    }
  
    .g\:gap-x-0\@lg {
      --grid-gap-x: 0px;
    }
  
    .g\:gap-y\@lg {
      --grid-gap-y: var(--gap-y);
    }
  
    .g\:gap-y-0\@lg {
      --grid-gap-y: 0px;
    }
  
    .g\:rs-1\@lg {
      --row-start: 1;
    }
  
    .g\:rs-2\@lg {
      --row-start: 2;
    }
  
    .g\:rs-3\@lg {
      --row-start: 3;
    }
  
    .g\:rs-4\@lg {
      --row-start: 4;
    }
  
    .g\:rs-5\@lg {
      --row-start: 5;
    }
  
    .g\:rs-6\@lg {
      --row-start: 6;
    }
  
    .g\:rs-7\@lg {
      --row-start: 7;
    }
  
    .g\:rs-8\@lg {
      --row-start: 8;
    }
  
    .g\:rs-9\@lg {
      --row-start: 9;
    }
  
    .g\:rs-10\@lg {
      --row-start: 10;
    }
  
    .g\:rs-11\@lg {
      --row-start: 11;
    }
  
    .g\:rs-auto\@lg {
      --row-start: auto;
    }
  
    .g\:rows-auto\@lg {
      grid-auto-rows: auto;
    }
  
    .g\:rows-fixed\@lg {
      grid-auto-rows: 1fr;
    }
  
    .t\:left\@lg {
      text-align: left;
    }
  
    .t\:right\@lg {
      text-align: right;
    }
  
    .t\:center\@lg {
      text-align: center;
    }
  
    .m\:inline\@lg {
      --dp-flex: inline-flex;
      --dp-grid: inline-grid;
      --dp-block: inline-block;
      --dp-inline: inline;
    }
  
    .m\:block\@lg {
      --dp-flex: flex;
      --dp-grid: grid;
      --dp-block: block;
      --dp-inline: block;
    }
  
    .m\:hide\@lg {
      --dp-flex: none;
      --dp-grid: none;
      --dp-block: none;
      --dp-inline: none;
    }
  
    .m\:show\@lg {
      --dp-flex: flex;
      --dp-grid: grid;
      --dp-block: block;
      --dp-inline: inline;
    }
  
    .m\:axis-x\@lg {
      flex-direction: row;
    }
  
    .m\:axis-x\@lg[class*=" m:align-"],
    .m\:axis-x\@lg[class^="m:align-"] {
      align-items: var(--align);
      justify-content: var(--justify);
    }
  
    .m\:axis-x-r\@lg {
      flex-direction: row-reverse;
    }
  
    .m\:axis-x-r\@lg[class*=" m:align-"],
    .m\:axis-x-r\@lg[class^="m:align-"] {
      align-items: var(--align);
      justify-content: var(--justify-r-x);
    }
  
    .m\:axis-y\@lg {
      flex-direction: column;
    }
  
    .m\:axis-y\@lg[class*=" m:align-"],
    .m\:axis-y\@lg[class^="m:align-"] {
      align-items: var(--justify);
      justify-content: var(--align);
    }
  
    .m\:axis-y-r\@lg {
      flex-direction: column-reverse;
    }
  
    .m\:axis-y-r\@lg[class*=" m:align-"],
    .m\:axis-y-r\@lg[class^="m:align-"] {
      align-items: var(--justify);
      justify-content: var(--align-r-y);
    }
  
    .m\:left\@lg {
      margin-right: auto;
      margin-left: 0;
    }
  
    .m\:left-0\@lg,
    .m\:right\@lg {
      margin-right: 0;
    }
  
    .m\:right\@lg {
      margin-left: auto;
    }
  
    .m\:right-0\@lg {
      margin-left: 0;
    }
  
    .m\:top\@lg {
      margin-bottom: auto;
      margin-top: 0;
    }
  
    .m\:bottom\@lg,
    .m\:top-0\@lg {
      margin-bottom: 0;
    }
  
    .m\:bottom\@lg {
      margin-top: auto;
    }
  
    .m\:bottom-0\@lg {
      margin-top: 0;
    }
  
    .m\:center\@lg {
      margin: auto;
    }
  
    .m\:center-0\@lg {
      margin: 0;
    }
  
    .m\:center-x\@lg {
      margin-left: auto;
      margin-right: auto;
    }
  
    .m\:center-x-0\@lg {
      margin-left: 0;
      margin-right: 0;
    }
  
    .m\:center-y\@lg {
      margin-top: auto;
      margin-bottom: auto;
    }
  
    .m\:center-y-0\@lg {
      margin-top: 0;
      margin-bottom: 0;
    }
  
    .m\:align-right\@lg {
      --justify: flex-end;
      --justify-r-x: flex-start;
    }
  
    .m\:align-left\@lg {
      --justify: flex-start;
      --justify-r-x: flex-end;
    }
  
    .m\:align-bottom\@lg {
      --align: flex-end;
      --align-r-y: flex-start;
    }
  
    .m\:align-top\@lg {
      --align: flex-start;
      --align-r-y: flex-end;
    }
  
    .m\:align-center\@lg {
      --align: center;
      --align-r-y: center;
    }
  
    .m\:align-center-x\@lg,
    .m\:align-center\@lg {
      --justify: center;
      --justify-r-x: center;
    }
  
    .m\:align-center-y\@lg {
      --align: center;
      --align-r-y: center;
    }
  
    .m\:align-stretch\@lg {
      --align: stretch;
      --align-r-y: stretch;
    }
  
    .m\:align-stretch-x\@lg,
    .m\:align-stretch\@lg {
      --justify: stretch;
      --justify-r-x: stretch;
    }
  
    .m\:align-stretch-y\@lg {
      --align: stretch;
      --align-r-y: stretch;
    }
  
    .m\:relative\@lg {
      position: relative;
    }
  
    .m\:static\@lg {
      position: static;
    }
  
    .m\:o-auto\@lg {
      overflow: auto;
    }
  
    .m\:o-scroll\@lg {
      overflow: scroll;
    }
  
    .m\:o-hidden\@lg {
      overflow: hidden;
    }
  
    .m\:o-visible\@lg {
      overflow: visible;
    }
  
    .m\:nowrap\@lg {
      flex-wrap: nowrap;
    }
  
    .m\:wrap\@lg {
      flex-wrap: wrap;
    }
  
    .m\:wrap-reverse\@lg {
      flex-wrap: wrap-reverse;
    }
  
    .header {
      padding: 0.55rem 0 0;
    }
  
    .header__menu-toggle {
      font-size: 0.4rem;
      margin-right: 0.5rem;
    }
  
    .header__logo {
      width: 3.57rem;
    }
  
    .header__btn {
      width: 100%;
    }
  
    .home {
      margin-bottom: 0.9rem;
    }
  
    .home__box {
      padding-top: 2.45rem;
    }
  
    .home__title {
      margin-bottom: 0.2rem;
      font-size: 0.55rem;
		color: fff;
    }
  
    .home__subtitle {
      margin-bottom: 1.12rem;
      font-size: 0.32rem;
      padding-left: 1.21rem;
    }
  
    .home__subtitle:before {
      height: 1px;
      width: 0.89rem;
      top: 0.21rem;
      left: 0;
    }
  
    .home__btn-box {
      padding-bottom: 0;
      margin-bottom: -0.98rem;
    }
  
    .home__btn {
      min-height: 1.74rem;
      margin-right: 0.31rem;
      min-width: 4.53rem;
    }
  
    .home__btn-title {
      font-size: 0.36rem;
      /*margin-bottom: -0.02rem;*/
	  text-align: justify;
    }
  
    .home__btn-text {
      font-size: 0.16rem;
    }
  
    .home__btn .icon {
      margin-bottom: 0.2rem;
    }
  
    .home__decor {
      background: #1E1E1C url("../images/home/decor.svg") no-repeat center top/100%;
      --adaptive-box: 70.17431%;
      width: 15.49rem;
      left: -2.5rem;
    }
  
    .home__video-box {
      --adaptive-box: 56.90141%;
    }
  
    .home__video {
      width: 126.83099%;
      height: 100%;
      left: -1.31rem;
      top: auto;
      bottom: 0;
      -o-object-fit: cover;
         object-fit: cover;
    }
  
    .products {
      padding-bottom: 0.5rem;
    }
  
    .products-card {
      padding-top: 0.5rem;
      margin-top: 0.5rem;
    }
  
    .products-card__image {
      max-width: none;
    }
  
    .products-card__image._2 {
      max-width: 5.73rem;
      margin: 0 auto;
    }
  
    .products-card__image._4 {
      max-width: 5.25rem;
      margin: 0 auto;
    }
  
    .products-card__title {
      margin-bottom: 0.2rem;
    }
  
    .products-card__text {
      margin-bottom: 0.4rem;
    }
  
    .about-company .container1 {
      padding-top: 1.86rem;
      padding-bottom: 1.86rem;
    }
  
    .about-company__decor-image {
      display: block;
      left: -7.84rem;
      top: -0.73rem;
      width: 7.44rem;
      max-width: none;
    }
  
    .about-company__title {
      margin-bottom: 0.3rem;
    }
  
    .about-company__text {
      margin-bottom: 0.3rem;
    }
  
    .about-company__main-image {
      margin-left: -0.48rem;
    }
  
    .hwaw .container1 {
      padding-top: 1.88rem;
      padding-bottom: 1.88rem;
    }
  
    .hwaw__title {
      margin-bottom: 0.1rem;
    }
  
    .hwaw__subtitle {
      font-size: 0.32rem;
      margin-bottom: 0.72rem;
    }
  
    .hwaw-card {
      padding-bottom: 0.2rem;
    }
  
    .hwaw-card:not(:last-child) {
      margin-bottom: 0.2rem;
    }
  
    .hwaw-card__btn {
      font-size: 0.26rem;
    }
  
    .hwaw-card__btn .icon {
      margin: -0.12rem 0 -0.12rem 0.2rem;
    }
  
    .hwaw-card__btn .icon._indent {
      margin: -0.11rem 0 -0.12rem 0.2rem;
    }
  
    .hwaw__main-image {
      margin-bottom: 0;
    }
  
    .benefits__container1 {
      padding-top: 0.44rem;
      padding-bottom: 0.98rem;
    }
  
    .benefits__title {
      margin-bottom: 0.65rem;
    }
  
    .benefits-card:not(:last-child) {
      padding-bottom: 0.3rem;
      margin-bottom: 0.3rem;
    }
  
    .benefits__arrow {
      -webkit-transform: none;
          -ms-transform: none;
              transform: none;
      top: -1.18rem;
      left: 2.13rem;
    }
  
    .benefits__arrow .icon {
      -webkit-transform: rotate(210deg);
          -ms-transform: rotate(210deg);
              transform: rotate(210deg);
    }
  
    .services {
      padding: 0.9rem 0;
    }
  
    .services__title {
      margin-bottom: 0.3rem;
    }
  
    .services-card:not(:last-child) {
      padding-bottom: 0.3rem;
      margin-bottom: 0.3rem;
    }
  
    .services-card__icon {
      font-size: 0.37rem;
      margin-right: 0.13rem;
    }
  
    .services-card__title {
      margin-top: 0;
      font-size: 0.32rem;
      line-height: 0.4rem;
    }
  
    .order {
      padding: 1rem 0;
    }
  
    .order__title {
      margin-bottom: 0;
    }
  
    .order__btn .icon {
      font-size: 1rem;
    }
  
    .contacts {
      padding: 0.9rem 0 1.18rem;
    }
  
    .contacts__item {
      font-size: 0.32rem;
    }
  
    .contacts__item:not(:last-child) {
      margin-bottom: 0.25rem;
    }
  
    .contacts__link {
      font-size: 0.48rem;
    }
  
    .contacts__logo {
      margin: 0 auto 0.7rem;
      width: 4.07rem;
    }
  
    .modal__header {
      padding: 0 0.3rem;
    }
  
    .modal-politic {
      background-color: transparent;
    }
  
    .modal-politic__wrapper {
      padding: 0.5rem 0.75rem;
    }
  
    .modal-politic__close {
      right: 0.3rem;
    }
  
    .modal-form__wrapper {
      padding: 0.2rem 0;
    }
  
    .modal-form__title {
      font-size: 0.36rem;
    }
  
    .modal-form__subtitle {
      margin-bottom: 0.3rem;
    }
  
    .modal-form__form-box {
      max-width: 4.53rem;
    }
  
    .modal-form__form-box .form-field {
      margin-bottom: 0.15rem;
    }
  
    .modal-form__form-box .form-file {
      margin-top: 0.2rem;
    }
  
    .modal-form__form-box .form-send {
      margin-top: 0.3rem;
    }
  
    .modal-form__close {
      right: 0;
      top: 0.6rem;
      font-size: 0.45rem;
    }
  
    .menu-modal {
      background: rgba(30, 30, 28, 0.75);
    }
  
    .menu-modal:before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 55.52083%;
      height: 100%;
      background: #1E1E1C;
    }
  
    .menu-modal__header {
      justify-content: space-between;
      padding: 0.37rem 0.69rem 0 0;
    }
  
    .menu-modal__close {
      font-size: 0.24rem;
    }
  
    .menu-modal__logo {
      width: 3rem;
    }
  
    .menu-modal__list-item:not(:last-child) {
      margin-bottom: 0.5rem;
    }
  
    .menu-modal__link {
      font-size: 0.24rem;
    }
  
    .menu-modal__wrapper-close {
      display: block;
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      width: 44.53125%;
      z-index: 10;
      cursor: pointer;
    }
  }
  
  @media (min-width: 1260px) {
    :root {
      --min-value: 50;
      --min-value-px: 50px;
    }
  
    .decor-text {
      display: flex;
      align-items: center;
      font-size: 0.14rem;
      letter-spacing: 6px;
      font-weight: 300;
      text-transform: uppercase;
      position: absolute;
      z-index: 10;
    }
  
    .header__menu-toggle {
      font-size: 0.31rem;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      left: -1.3rem;
    }
  
    .hwaw__main-image {
      overflow: visible;
      --adaptive-box: 180.57554%;
    }
  
    .hwaw__main-image img {
      left: auto;
      right: 0.25rem;
      width: 8.85rem;
      height: auto;
      max-width: none;
    }
  }
  
  @media (min-width: 1920px) {
    :root {
      --width-max-window: 1920px;
    }
  }
  
  @media (max-width: 1023px) {
    .header__btn {
      min-height: auto;
      font-size: 0.12rem;
      padding: 0.15rem 0.11rem;
    }
  }
  
  @media (pointer: fine) {
    .link:hover {
      color: #DC5F19;
    }
  
    .link:active {
      color: #C95412;
    }
  
    .btn--outline:hover {
      color: #fff;
      background: #000;
    }
  
    .btn--outline:hover .icon {
      color: #fff;
    }
  
    .btn--theme-primary:hover {
      background-color: #DC5F19;
    }
  
    .btn--theme-primary:active {
      background-color: #C95412;
    }
  
    .btn--theme-secondary:hover {
      background-color: #282827;
    }
  
    .btn--theme-secondary:active {
      background-color: #1F1F1E;
    }
  
    .form-field .form-field__text:hover {
      color: #DC5F19;
    }
  
    .form-field .form-field__text:active {
      color: #C95412;
    }
  
    .header__menu-toggle:hover .icon {
      color: #DC5F19;
    }
  
    .home__btn:hover .icon {
      -webkit-transform: rotate(90deg);
          -ms-transform: rotate(90deg);
              transform: rotate(90deg);
    }
  
    .hwaw-card__btn:hover {
      color: #DC5F19;
    }
  
    .hwaw-card__btn:active {
      color: #C95412;
    }
  
    .contacts__link:hover {
      color: #DC5F19;
    }
  
    .contacts__link:active {
      color: #C95412;
    }
  
    .modal__close:hover .icon {
      color: #DC5F19;
    }
  
    .modal__close:active .icon {
      color: #C95412;
    }
  }
  
/* ==================== МОБИЛЬНАЯ ВЕРСИЯ ==================== */
@media (max-width: 479px) {
    :root {
        --body-font-size: 0.14rem;
        --gap-x: 15px;
        --gap-y: 15px;
        --container1-gap: 15px;
    }

    body {
        font-size: var(--body-font-size);
    }

    /* Уменьшаем заголовки для мобильных */
    .title--size-sm {
        font-size: 0.18rem;
    }
    
    .title--size-md {
        font-size: 0.22rem;
    }
    
    .title--size-lg {
        font-size: 0.26rem;
    }

    /* Адаптация кнопок для мобильных */
    .btn-primary {
        font-size: 0.14rem;
        min-height: 0.8rem;
        max-width: 100%;
        padding: 0.08rem 0.15rem;
    }

    .btn-primary .icon {
        font-size: 0.35rem;
        margin-left: 0.15rem;
    }

    /* Адаптация заголовка */
    .header {
        padding: 0.1rem 0;
    }

    .header__logo {
        width: 0.8rem;
    }

    .header__btn {
        min-height: auto;
        font-size: 0.12rem;
        padding: 0.1rem 0.15rem;
        white-space: nowrap;
    }

    .header__menu-toggle {
        font-size: 0.18rem;
        margin-right: 0.1rem;
    }

    /* Адаптация главного блока */
    .home__box {
        padding-top: 0.8rem;
    }

    .home__title {
        font-size: 0.28rem;
        margin-bottom: 0.15rem;
    }

    .home__subtitle {
        font-size: 0.14rem;
        padding-left: 0.15rem;
        margin-bottom: 0.3rem;
    }

    .home__btn-box {
        margin-bottom: -0.2rem;
        padding-left: 5px;
        padding-right: 5px;
    }

    .home__btn {
        min-width: 2.2rem;
        min-height: 0.9rem;
        margin-right: 0.08rem;
        padding: 0.08rem 0.12rem;
    }

    .home__btn-title {
        font-size: 0.16rem;
        margin-bottom: 0.04rem;
    }

    .home__btn-text {
        font-size: 0.1rem;
        line-height: 1.3;
    }

    .home__btn .icon {
        font-size: 0.22rem;
        margin-bottom: 0.12rem;
    }

    /* Адаптация продуктов */
    .products-card {
        padding-top: 0.15rem;
        margin-top: 0.15rem;
    }

    .products-card__title {
        font-size: 0.18rem;
        margin-bottom: 0.08rem;
    }

    .products-card__text {
        margin-bottom: 0.12rem;
        font-size: 0.13rem;
    }

    /* Адаптация о компании */
    .about-company .container1 {
        padding-top: 0.3rem;
        padding-bottom: 0.3rem;
    }

    .about-company__title {
        font-size: 0.22rem;
        margin-bottom: 0.08rem;
    }

    .about-company__text {
        font-size: 0.13rem;
        margin-bottom: 0.15rem;
    }

    /* Адаптация HWAW */
    .hwaw .container1 {
        padding-top: 0.3rem;
        padding-bottom: 0.3rem;
    }

    .hwaw__subtitle {
        font-size: 0.16rem;
        margin-bottom: 0.2rem;
    }

    .hwaw-card {
        padding-bottom: 0.12rem;
        margin-bottom: 0.12rem;
    }

    .hwaw-card__number {
        font-size: 0.28rem;
    }

    .hwaw-card__title {
        font-size: 0.16rem;
        margin-bottom: 0.04rem;
    }

    .hwaw-card__text {
        font-size: 0.13rem;
        margin-bottom: 0.15rem;
    }

    .hwaw-card__btn {
        font-size: 0.14rem;
    }

    .hwaw-card__btn .icon {
        font-size: 0.35rem;
        margin: -0.14rem 0 -0.14rem 0.08rem;
    }

    /* Адаптация преимуществ */
    .benefits__container1 {
        padding-top: 0.3rem;
        padding-bottom: 0.3rem;
    }

    .benefits__title {
        font-size: 0.22rem;
        margin-bottom: 0.15rem;
    }

    .benefits-card:not(:last-child) {
        padding-bottom: 0.15rem;
        margin-bottom: 0.15rem;
    }

    .benefits-card__icon {
        max-width: 0.5rem;
        font-size: 0.25rem;
    }

    .benefits-card__icon .icon {
        font-size: 0.25rem;
    }

    .benefits-card__title {
        font-size: 0.16rem;
        margin-bottom: 0.06rem;
    }

    /* Адаптация услуг */
    .services {
        padding: 0.2rem 0;
    }

    .services__title {
        font-size: 0.22rem;
        margin-bottom: 0.12rem;
    }

    .services-card {
        padding-bottom: 0.12rem;
        margin-bottom: 0.12rem;
    }

    .services-card__icon {
        font-size: 0.2rem;
        margin-right: 0.08rem;
    }

    .services-card__title {
        font-size: 0.13rem;
        line-height: 1.4;
    }

    /* Адаптация заказа */
    .order {
        padding: 0.15rem 0 0.2rem;
    }

    .order__title {
        font-size: 0.22rem;
        margin-bottom: 0.04rem;
    }

    .order__subtitle {
        font-size: 0.14rem;
        margin-bottom: 0.1rem;
    }

    .order__btn {
        max-width: 2.8rem;
    }

    /* Адаптация контактов */
    .contacts {
        padding: 0.25rem 0;
    }

    .contacts__title {
        font-size: 0.22rem;
        margin-bottom: 0.08rem;
    }

    .contacts__text {
        font-size: 0.16rem;
        margin-bottom: 0.15rem;
    }

    .contacts__item {
        font-size: 0.14rem;
        margin-bottom: 0.08rem !important;
    }

    .contacts__link {
        font-size: 0.16rem;
    }

    .contacts__logo {
        width: 1.8rem;
        margin-bottom: 0.2rem;
    }

    /* Адаптация модальных окон */
    .modal-form__wrapper {
        padding: 0.3rem 0.1rem;
    }

    .modal-form__title {
        font-size: 0.2rem;
        margin-bottom: 0.08rem;
    }

    .modal-form__subtitle {
        font-size: 0.14rem;
        margin-bottom: 0.15rem;
    }

    .modal-form__form-box .form-field {
        margin-bottom: 0.08rem;
        font-size: 0.16rem;
    }

    .modal-form__form-box .form-file {
        margin-top: 0.15rem;
    }

    .modal-form__form-box .form-send {
        margin-top: 0.2rem;
    }

    /* Адаптация меню */
    .menu-modal__header {
        padding-top: 0.15rem;
    }

    .menu-modal__close {
        font-size: 0.14rem;
        margin-right: 0.1rem;
    }

    .menu-modal__logo {
        width: 1rem;
    }

    .menu-modal__list-item:not(:last-child) {
        margin-bottom: 0.25rem;
    }

    .menu-modal__link {
        font-size: 0.16rem;
    }

    /* Скрываем декоративные элементы на мобильных */
    .decor-text {
        display: none !important;
    }

    /* Улучшаем отображение форм на мобильных */
    .form-field {
        font-size: 0.16rem;
    }

    .form-field__email,
    .form-field__number,
    .form-field__input,
    .form-field__required,
    .form-field__text {
        padding: 0.2rem 0;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 359px) {
    :root {
        --body-font-size: 0.13rem;
        --container1-gap: 10px;
    }

    .home__btn {
        min-width: 1.8rem;
        min-height: 0.8rem;
    }

    .home__btn-title {
        font-size: 0.14rem;
    }

    .home__btn-text {
        font-size: 0.09rem;
    }

    .header__logo {
        width: 0.7rem;
    }

    .btn-primary {
        font-size: 0.13rem;
        padding: 0.06rem 0.12rem;
    }
}

/* ==================== ПЛАНШЕТНАЯ ВЕРСИЯ (iPad) ==================== */
/* 480px - 767px (маленькие планшеты) */
@media (min-width: 480px) and (max-width: 767px) {
    :root {
        --body-font-size: 0.16rem;
        --gap-x: 20px;
        --gap-y: 20px;
        --container1-gap: 20px;
    }

    body {
        font-size: var(--body-font-size);
    }

    .container1 {
        max-width: 440px;
    }

    /* Заголовки для планшетов */
    .title--size-sm {
        font-size: 0.22rem;
    }
    
    .title--size-md {
        font-size: 0.28rem;
    }
    
    .title--size-lg {
        font-size: 0.32rem;
    }

    /* Кнопки для планшетов */
    .btn-primary {
        font-size: 0.18rem;
        min-height: 1rem;
        max-width: 3.5rem;
        padding: 0.12rem 0.2rem;
    }

    .btn-primary .icon {
        font-size: 0.4rem;
        margin-left: 0.15rem;
    }

    /* Шапка для планшетов */
    .header {
        padding: 0.15rem 0;
    }

    .header__logo {
        width: 1.2rem;
    }

    .header__btn {
        font-size: 0.14rem;
        padding: 0.12rem 0.2rem;
    }

    .header__menu-toggle {
        font-size: 0.22rem;
        margin-right: 0.15rem;
    }

    /* Главный блок для планшетов */
    .home__box {
        padding-top: 1.2rem;
    }

    .home__title {
        font-size: 0.36rem;
        margin-bottom: 0.18rem;
    }

    .home__subtitle {
        font-size: 0.18rem;
        padding-left: 0.2rem;
        margin-bottom: 0.4rem;
    }

    .home__btn-box {
        margin-bottom: -0.3rem;
    }

    .home__btn {
        min-width: 2.8rem;
        min-height: 1.1rem;
        margin-right: 0.15rem;
        padding: 0.12rem 0.15rem;
    }

    .home__btn-title {
        font-size: 0.22rem;
        margin-bottom: 0.05rem;
    }

    .home__btn-text {
        font-size: 0.12rem;
    }

    .home__btn .icon {
        font-size: 0.28rem;
        margin-bottom: 0.15rem;
    }

    /* Продукты для планшетов */
    .products-card {
        padding-top: 0.25rem;
        margin-top: 0.25rem;
    }

    .products-card__title {
        font-size: 0.22rem;
        margin-bottom: 0.1rem;
    }

    .products-card__text {
        margin-bottom: 0.2rem;
        font-size: 0.15rem;
    }

    /* О компании для планшетов */
    .about-company .container1 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .about-company__title {
        font-size: 0.28rem;
        margin-bottom: 0.12rem;
    }

    .about-company__text {
        font-size: 0.15rem;
        margin-bottom: 0.2rem;
    }

    /* HWAW для планшетов */
    .hwaw .container1 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .hwaw__subtitle {
        font-size: 0.2rem;
        margin-bottom: 0.3rem;
    }

    .hwaw-card {
        padding-bottom: 0.15rem;
        margin-bottom: 0.15rem;
    }

    .hwaw-card__number {
        font-size: 0.32rem;
    }

    .hwaw-card__title {
        font-size: 0.18rem;
        margin-bottom: 0.05rem;
    }

    .hwaw-card__text {
        font-size: 0.15rem;
        margin-bottom: 0.18rem;
    }

    .hwaw-card__btn {
        font-size: 0.16rem;
    }

    .hwaw-card__btn .icon {
        font-size: 0.4rem;
        margin: -0.15rem 0 -0.15rem 0.12rem;
    }

    /* Преимущества для планшетов */
    .benefits__container1 {
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
    }

    .benefits__title {
        font-size: 0.28rem;
        margin-bottom: 0.2rem;
    }

    .benefits-card:not(:last-child) {
        padding-bottom: 0.2rem;
        margin-bottom: 0.2rem;
    }

    .benefits-card__icon {
        max-width: 0.6rem;
        font-size: 0.3rem;
    }

    .benefits-card__icon .icon {
        font-size: 0.3rem;
    }

    .benefits-card__title {
        font-size: 0.18rem;
        margin-bottom: 0.08rem;
    }

    /* Услуги для планшетов */
    .services {
        padding: 0.3rem 0;
    }

    .services__title {
        font-size: 0.28rem;
        margin-bottom: 0.15rem;
    }

    .services-card {
        padding-bottom: 0.15rem;
        margin-bottom: 0.15rem;
    }

    .services-card__icon {
        font-size: 0.25rem;
        margin-right: 0.1rem;
    }

    .services-card__title {
        font-size: 0.16rem;
        line-height: 1.4;
    }

    /* Заказ для планшетов */
    .order {
        padding: 0.25rem 0 0.3rem;
    }

    .order__title {
        font-size: 0.28rem;
        margin-bottom: 0.05rem;
    }

    .order__subtitle {
        font-size: 0.16rem;
        margin-bottom: 0.15rem;
    }

    .order__btn {
        max-width: 3.2rem;
    }

    /* Контакты для планшетов */
    .contacts {
        padding: 0.4rem 0;
    }

    .contacts__title {
        font-size: 0.28rem;
        margin-bottom: 0.1rem;
    }

    .contacts__text {
        font-size: 0.18rem;
        margin-bottom: 0.2rem;
    }

    .contacts__item {
        font-size: 0.16rem;
        margin-bottom: 0.12rem !important;
    }

    .contacts__link {
        font-size: 0.2rem;
    }

    .contacts__logo {
        width: 2.2rem;
        margin-bottom: 0.3rem;
    }

    /* Модальные окна для планшетов */
    .modal-form__wrapper {
        padding: 0.4rem 0.15rem;
    }

    .modal-form__title {
        font-size: 0.24rem;
        margin-bottom: 0.1rem;
    }

    .modal-form__subtitle {
        font-size: 0.16rem;
        margin-bottom: 0.2rem;
    }

    .modal-form__form-box .form-field {
        margin-bottom: 0.12rem;
        font-size: 0.18rem;
    }

    .modal-form__form-box .form-file {
        margin-top: 0.18rem;
    }

    .modal-form__form-box .form-send {
        margin-top: 0.25rem;
    }

    /* Меню для планшетов */
    .menu-modal__header {
        padding-top: 0.2rem;
    }

    .menu-modal__close {
        font-size: 0.18rem;
        margin-right: 0.15rem;
    }

    .menu-modal__logo {
        width: 1.4rem;
    }

    .menu-modal__list-item:not(:last-child) {
        margin-bottom: 0.35rem;
    }

    .menu-modal__link {
        font-size: 0.18rem;
    }
}

/* 768px - 1023px (большие планшеты) */
@media (min-width: 768px) and (max-width: 1023px) {
    :root {
        --body-font-size: 0.18rem;
        --gap-x: 25px;
        --gap-y: 25px;
        --container1-gap: 25px;
    }

    body {
        font-size: var(--body-font-size);
    }

    .container1 {
        max-width: 720px;
    }

    /* Заголовки для больших планшетов */
    .title--size-sm {
        font-size: 0.26rem;
    }
    
    .title--size-md {
        font-size: 0.36rem;
    }
    
    .title--size-lg {
        font-size: 0.4rem;
    }

    /* Кнопки для больших планшетов */
    .btn-primary {
        font-size: 0.2rem;
        min-height: 1.1rem;
        max-width: 4rem;
        padding: 0.15rem 0.25rem;
    }

    .btn-primary .icon {
        font-size: 0.45rem;
        margin-left: 0.2rem;
    }

    /* Шапка для больших планшетов */
    .header {
        padding: 0.2rem 0;
    }

    .header__logo {
        width: 1.5rem;
    }

    .header__btn {
        font-size: 0.16rem;
        padding: 0.15rem 0.25rem;
    }

    .header__menu-toggle {
        font-size: 0.28rem;
        margin-right: 0.2rem;
    }

    /* Главный блок для больших планшетов */
    .home__box {
        padding-top: 1.5rem;
    }

    .home__title {
        font-size: 0.42rem;
        margin-bottom: 0.2rem;
    }

    .home__subtitle {
        font-size: 0.22rem;
        padding-left: 0.25rem;
        margin-bottom: 0.5rem;
    }

    .home__btn-box {
        margin-bottom: -0.4rem;
    }

    .home__btn {
        min-width: 3.2rem;
        min-height: 1.2rem;
        margin-right: 0.2rem;
        padding: 0.15rem 0.2rem;
    }

    .home__btn-title {
        font-size: 0.26rem;
        margin-bottom: 0.06rem;
    }

    .home__btn-text {
        font-size: 0.14rem;
    }

    .home__btn .icon {
        font-size: 0.32rem;
        margin-bottom: 0.18rem;
    }

    /* Продукты для больших планшетов */
    .products-card {
        padding-top: 0.35rem;
        margin-top: 0.35rem;
    }

    .products-card__title {
        font-size: 0.26rem;
        margin-bottom: 0.12rem;
    }

    .products-card__text {
        margin-bottom: 0.25rem;
        font-size: 0.16rem;
    }

    /* О компании для больших планшетов */
    .about-company .container1 {
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }

    .about-company__title {
        font-size: 0.36rem;
        margin-bottom: 0.15rem;
    }

    .about-company__text {
        font-size: 0.16rem;
        margin-bottom: 0.25rem;
    }

    /* HWAW для больших планшетов */
    .hwaw .container1 {
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }

    .hwaw__subtitle {
        font-size: 0.24rem;
        margin-bottom: 0.4rem;
    }

    .hwaw-card {
        padding-bottom: 0.18rem;
        margin-bottom: 0.18rem;
    }

    .hwaw-card__number {
        font-size: 0.36rem;
    }

    .hwaw-card__title {
        font-size: 0.2rem;
        margin-bottom: 0.06rem;
    }

    .hwaw-card__text {
        font-size: 0.16rem;
        margin-bottom: 0.2rem;
    }

    .hwaw-card__btn {
        font-size: 0.18rem;
    }

    .hwaw-card__btn .icon {
        font-size: 0.45rem;
        margin: -0.16rem 0 -0.16rem 0.15rem;
    }

    /* Преимущества для больших планшетов */
    .benefits__container1 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .benefits__title {
        font-size: 0.36rem;
        margin-bottom: 0.25rem;
    }

    .benefits-card:not(:last-child) {
        padding-bottom: 0.25rem;
        margin-bottom: 0.25rem;
    }

    .benefits-card__icon {
        max-width: 0.7rem;
        font-size: 0.35rem;
    }

    .benefits-card__icon .icon {
        font-size: 0.35rem;
    }

    .benefits-card__title {
        font-size: 0.2rem;
        margin-bottom: 0.1rem;
    }

    /* Услуги для больших планшетов */
    .services {
        padding: 0.4rem 0;
    }

    .services__title {
        font-size: 0.36rem;
        margin-bottom: 0.18rem;
    }

    .services-card {
        padding-bottom: 0.18rem;
        margin-bottom: 0.18rem;
    }

    .services-card__icon {
        font-size: 0.3rem;
        margin-right: 0.12rem;
    }

    .services-card__title {
        font-size: 0.18rem;
        line-height: 1.4;
    }

    /* Заказ для больших планшетов */
    .order {
        padding: 0.35rem 0 0.4rem;
    }

    .order__title {
        font-size: 0.36rem;
        margin-bottom: 0.06rem;
    }

    .order__subtitle {
        font-size: 0.18rem;
        margin-bottom: 0.2rem;
    }

    .order__btn {
        max-width: 3.5rem;
    }

    /* Контакты для больших планшетов */
    .contacts {
        padding: 0.5rem 0;
    }

    .contacts__title {
        font-size: 0.36rem;
        margin-bottom: 0.12rem;
    }

    .contacts__text {
        font-size: 0.2rem;
        margin-bottom: 0.25rem;
    }

    .contacts__item {
        font-size: 0.18rem;
        margin-bottom: 0.15rem !important;
    }

    .contacts__link {
        font-size: 0.24rem;
    }

    .contacts__logo {
        width: 2.5rem;
        margin-bottom: 0.4rem;
    }

    /* Модальные окна для больших планшетов */
    .modal-form__wrapper {
        padding: 0.5rem 0.2rem;
    }

    .modal-form__title {
        font-size: 0.28rem;
        margin-bottom: 0.12rem;
    }

    .modal-form__subtitle {
        font-size: 0.18rem;
        margin-bottom: 0.25rem;
    }

    .modal-form__form-box .form-field {
        margin-bottom: 0.15rem;
        font-size: 0.2rem;
    }

    .modal-form__form-box .form-file {
        margin-top: 0.2rem;
    }

    .modal-form__form-box .form-send {
        margin-top: 0.3rem;
    }

    /* Меню для больших планшетов */
    .menu-modal__header {
        padding-top: 0.25rem;
    }

    .menu-modal__close {
        font-size: 0.2rem;
        margin-right: 0.2rem;
    }

    .menu-modal__logo {
        width: 1.8rem;
    }

    .menu-modal__list-item:not(:last-child) {
        margin-bottom: 0.4rem;
    }

    .menu-modal__link {
        font-size: 0.2rem;
    }

    /* Исправляем горизонтальную прокрутку для планшетов */
    .home__btn-box {
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .hwaw-card__btn br {
        display: none;
    }
}