/*! formalize.css | MIT License | github.com/interacthings/formalize */
*, *:before, *:after {
  box-sizing: inherit; }

html {
  box-sizing: border-box;
  text-rendering: optimizeLegibility; }

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

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

a:active, a:focus, a:hover {
  outline: none;
  color: currentColor;
  text-decoration: none; }

button:active, button:focus, button:hover {
  outline: none;
  color: currentColor;
  text-decoration: none; }

img {
  vertical-align: middle; }

blockquote, dl, dd, h1, h2, h3, h4, h5, h6, figure, p, pre, fieldset, ul, ol, menu, form {
  margin: 0; }

button, fieldset, iframe {
  border: 0; }

fieldset, ul, ol, button, menu {
  padding: 0; }

ol, ul {
  list-style: none; }

textarea {
  resize: vertical; }

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0; }

td {
  padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px; }

body {
  scroll-behavior: smooth;
  scroll-padding-top: 120px; }
  body .container {
    max-width: 1290px; }

.Header {
  position: sticky;
  left: 0;
  top: 0;
  z-index: 99; }
  .Header-active {
    background-color: white; }
  .Header-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0; }
  .Header-logo {
    display: flex;
    align-items: center;
    width: -moz-max-content;
    width: max-content; }
    .Header-logo img {
      width: 100%;
      max-width: clamp(144px, 10.42vw, 200px); }
  .Header-menu {
    display: flex;
    align-items: center;
    gap: 40px; }
    .Header-menu-link {
      font-size: 15px;
      font-weight: 500;
      color: #000;
      transition: all 300ms; }
      .Header-menu-link:hover {
        color: #c40000; }
  .Header-offer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 17px 27px;
    border-radius: 8px;
    background-color: #c40000;
    border: 1px solid #c40000;
    font-size: 15px;
    font-weight: normal;
    color: #fff;
    transition: all 300ms; }
    .Header-offer:hover {
      background-color: #fff;
      color: #c40000; }

.Banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5% 15px;
  background-image: url(../images/banner-bg.svg);
  background-size: 100% 100%;
  position: relative; }
  .Banner:after {
    content: "";
    display: inline-block;
    width: 262px;
    height: 262px;
    -o-object-fit: contain;
    object-fit: contain;
    filter: blur(424px);
    background-color: #286ea3;
    position: absolute;
    right: 13%;
    top: 30%;
    transform: translateY(-50%); }
  .Banner h1 {
    font-size: clamp(28px, 3.2vw, 60px);
    font-weight: 600;
    line-height: 0.89;
    letter-spacing: -3px;
    text-align: center;
    color: #000;
    margin-bottom: clamp(24px, 2.2vw, 42px); }
  .Banner-animation {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: clamp(24px, 2.2vw, 42px); }
    .Banner-animation p {
      max-width: 433px;
      font-size: 24.5px;
      font-weight: 600;
      letter-spacing: -1.23px;
      text-align: right;
      color: #000; }
    .Banner-animation-in {
      width: 360px;
      height: 68px;
      border: 2px solid red;
      border-radius: 80px;
      overflow: hidden;
      position: relative; }
      .Banner-animation-in .boxes {
        position: absolute;
        left: -360px;
        bottom: 18px;
        z-index: 1;
        transform: translateX(720px);
        animation: roll 25s infinite linear; }

@keyframes roll {
  100% {
    transform: translateX(-1200px); } }

@keyframes roll2 {
  100% {
    transform: scale(0.6) translateX(-1080px); } }
      .Banner-animation-in .conveyor {
        position: absolute;
        bottom: -40px;
        left: -100%;
        transform: scale(0.6) translateX(40px); }
  .Banner-desc {
    max-width: 640px;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: clamp(30px, 5.2vw, 100px); }
  .Banner-offer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 17px 27px;
    border-radius: 8px;
    background-color: #000;
    border: 1px solid #000;
    font-size: 15px;
    font-weight: normal;
    color: #fff;
    transition: all 300ms; }
    .Banner-offer:hover {
      background-color: #fff;
      color: #000; }

.Features {
  margin-bottom: 7%;
  position: relative; }
  .Features:before {
    content: "";
    display: inline-block;
    width: 262px;
    height: 262px;
    -o-object-fit: contain;
    object-fit: contain;
    filter: blur(424px);
    background-color: #286ea3;
    position: absolute;
    left: 15%;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; }
  .Features-in {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    background-color: #000;
    border-radius: 30px;
    border: 1px solid #CBCBCB;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none; }
    .Features-in::-webkit-scrollbar {
      display: none; }
  .Features-item {
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-right: 1px solid #292929;
    gap: 24px; }
    .Features-item-head {
      display: flex;
      align-items: center;
      gap: 16px; }
      .Features-item-head svg, .Features-item-head img {
        width: 73px;
        height: 73px; }
      .Features-item-head b {
        font-size: 20px;
        font-weight: 600;
        color: #fff; }
    .Features-item p {
      font-size: 14px;
      font-weight: normal;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.7); }
    .Features-item:last-child {
      border-right: none; }

.Channels {
  margin-bottom: 5%; }
  .Channels-in {
    display: grid;
    grid-template-columns: 1fr 1fr; }
  .Channels-left {
    display: flex;
    flex-direction: column; }
    .Channels-left span {
      font-size: clamp(16px, 1.5vw, 24px);
      font-weight: 600;
      color: #f00; }
    .Channels-left h2 {
      font-size: clamp(26px, 2.2vw, 42px);
      font-weight: 600;
      color: #000;
      margin-bottom: 12px; }
    .Channels-left p {
      max-width: 450px;
      font-size: 15px;
      font-weight: normal;
      line-height: 1.4;
      color: rgba(59, 59, 59, 0.7); }
  .Channels-right {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; }
    .Channels-right-item {
      display: flex;
      align-items: center;
      justify-content: center; }
      .Channels-right-item img, .Channels-right-item svg {
        width: 203px;
        height: 85px;
        -o-object-fit: contain;
           object-fit: contain; }

.Scheme {
  margin-bottom: 8%; }
  .Scheme-in {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
    .Scheme-in h3 {
      font-size: clamp(24px, 2.2vw, 42px);
      font-weight: 600;
      color: #000;
      text-align: center;
      margin-bottom: clamp(100px, 7.83vw, 150px); }
      .Scheme-in h3 span {
        display: block;
        font-size: 24px;
        font-weight: 600;
        color: #f00; }
  .Scheme-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap; }
    .Scheme-list-top {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      margin-bottom: 110px;
      position: relative; }
      .Scheme-list-top:after {
        content: "";
        display: inline-block;
        width: 610px;
        height: 80px;
        background-image: url(../images/top-after.svg);
        background-size: 100% 100%;
        position: absolute;
        right: 15%;
        bottom: -100px; }
    .Scheme-list-middle {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      position: relative;
      margin-bottom: 180px; }
      .Scheme-list-middle:after {
        content: "";
        display: inline-block;
        width: 209.5px;
        height: 66.8px;
        background-image: url(../images/middle-after.svg);
        background-size: 100% 100%;
        position: absolute;
        right: 33%;
        bottom: -80px; }
    .Scheme-list-bottom {
      width: 100%;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: 80px;
      position: relative; }
      .Scheme-list-bottom:before {
        content: "";
        display: inline-block;
        width: 486px;
        height: 63px;
        background-size: 100% 100%;
        background-image: url(../images/bottom-top.svg);
        position: absolute;
        top: -85px;
        left: 50%;
        transform: translateX(-50%); }
      .Scheme-list-bottom .Scheme-list-item {
        max-width: 404px;
        margin-bottom: clamp(8px, 3.2vw, 60px); }
        .Scheme-list-bottom .Scheme-list-item.last {
          margin-bottom: 0; }
      .Scheme-list-bottom .to-bottom {
        margin-bottom: 40px; }
      .Scheme-list-bottom-left {
        display: flex;
        flex-direction: column;
        align-items: center; }
      .Scheme-list-bottom-right {
        display: flex;
        flex-direction: column;
        align-items: center; }
    .Scheme-list-first {
      position: relative; }
      .Scheme-list-first:before {
        content: "";
        display: inline-block;
        width: 66%;
        height: 164px;
        border-radius: 6px;
        background-image: linear-gradient(to bottom, #f3f5f8, rgba(243, 245, 248, 0));
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%); }
      .Scheme-list-first-in {
        display: flex;
        align-items: center;
        gap: 18px;
        position: relative; }
        .Scheme-list-first-in:before, .Scheme-list-first-in:after {
          content: "";
          display: inline-block;
          width: 69%;
          height: 50%;
          background-size: 100% 100%;
          position: absolute;
          left: 50%;
          transform: translateX(-50%); }
        .Scheme-list-first-in:before {
          background-image: url(../images/first-top.svg);
          top: -56px; }
        .Scheme-list-first-in:after {
          background-image: url(../images/first-bottom.svg);
          bottom: -50px; }
        .Scheme-list-first-in .top-text, .Scheme-list-first-in .bottom-text {
          font-size: clamp(10px, 1vw, 14px);
          font-weight: 500;
          white-space: nowrap;
          position: absolute;
          left: 50%;
          transform: translateX(-50%);
          color: #000; }
        .Scheme-list-first-in .top-text {
          top: -76px; }
        .Scheme-list-first-in .bottom-text {
          bottom: -30px; }
    .Scheme-list-item {
      max-width: 290px;
      display: flex;
      align-items: center;
      gap: clamp(7px, 1vw, 12px);
      padding: 10px;
      border-radius: 8px;
      box-shadow: 0 11px 14px 0 rgba(0, 0, 0, 0.03);
      border: solid 1px #eaedf0;
      background-color: #fff; }
      .Scheme-list-item-icon {
        width: clamp(44px, 3.75vw, 72px);
        height: clamp(44px, 3.75vw, 72px);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        border-radius: 6px;
        background-color: #f6eaea;
        position: relative; }
        .Scheme-list-item-icon svg {
          width: clamp(28px, 2.4vw, 44px);
          height: clamp(28px, 2.4vw, 44px); }
        .Scheme-list-item-icon span {
          width: -moz-max-content;
          width: max-content;
          height: 15px;
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 2px 4px;
          border-radius: 4px;
          background-color: #e12525;
          font-size: 12px;
          font-weight: 600;
          flex-shrink: 0;
          color: #fff;
          position: absolute;
          right: -6px;
          top: -6px; }
      .Scheme-list-item p {
        font-size: clamp(12px, 1vw, 14px);
        font-weight: 500;
        color: #000; }
      .Scheme-list-item.last {
        flex-direction: column;
        justify-content: center;
        max-width: 320px;
        width: 100%;
        gap: clamp(4px, 1vw, 8px);
        padding: 15px;
        border-radius: 10px;
        background-image: linear-gradient(to bottom, #f3f5f8, rgba(243, 245, 248, 0));
        border: none;
        box-shadow: none; }
        .Scheme-list-item.last svg {
          width: clamp(28px, 2.4vw, 44px);
          height: clamp(28px, 2.4vw, 44px); }
        .Scheme-list-item.last b {
          font-size: clamp(12px, 1vw, 17px);
          font-weight: 600;
          text-align: center;
          color: #000; }
        .Scheme-list-item.last p {
          text-align: center; }
    .Scheme-list .arrow {
      background-size: 100% 100%; }
      .Scheme-list .arrow.to-right {
        width: 89px;
        height: 6px;
        background-image: url(../images/to-right-arrow.svg); }
      .Scheme-list .arrow.to-bottom {
        width: 6px;
        height: 48px;
        background-image: url(../images/to-bottom-arrow.svg); }
    .Scheme-list.one-item .Scheme-list-middle {
      margin-bottom: 90px; }
    .Scheme-list.one-item .Scheme-list-bottom:before {
      display: none; }

.Slider {
  margin-bottom: 10%; }
  .Slider-in {
    border-radius: 30px;
    background-color: #f3f5f8;
    padding: clamp(24px, 5.2vw, 100px);
    position: relative; }
    .Slider-in:before {
      content: "";
      display: inline-block;
      width: 162px;
      height: 76px;
      background-image: url(../images/slider-bg-arrow.svg);
      background-size: 100% 100%;
      position: absolute;
      left: 10%;
      bottom: -72px; }
  .Slider-head {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3.2vw, 60px);
    margin-bottom: clamp(20px, 3.2vw, 60px); }
    .Slider-head-text {
      display: flex;
      flex-direction: column; }
      .Slider-head-text h4 {
        font-size: clamp(16px, 1.5vw, 24px);
        font-weight: 600;
        color: #000; }
      .Slider-head-text h3 {
        font-size: clamp(26px, 2.2vw, 42px);
        font-weight: 600;
        color: #000; }
        .Slider-head-text h3 span {
          color: #f00; }
    .Slider-head p {
      max-width: 395px;
      font-size: 15px;
      font-weight: normal;
      line-height: 1.4;
      color: rgba(59, 59, 59, 0.7); }
  .Slider-item {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.6vw, 50px);
    padding: clamp(20px, 2.4vw, 46px);
    border-radius: 20px;
    background-color: #fff; }
    .Slider-item-left {
      display: flex;
      flex-direction: column;
      flex-shrink: 0;
      gap: 20px; }
      .Slider-item-left img {
        max-width: 160px;
        width: 100%; }
      .Slider-item-left p {
        max-width: 160px;
        font-size: 15px;
        font-weight: normal;
        line-height: 1.4;
        color: rgba(59, 59, 59, 0.7); }
    .Slider-item-right {
      display: flex;
      flex-direction: column;
      gap: 15px; }
      .Slider-item-right b {
        font-size: 24px;
        font-weight: 600;
        color: #000; }
      .Slider-item-right p {
        font-size: 15px;
        font-weight: normal;
        line-height: 1.4;
        color: rgba(59, 59, 59, 0.7); }
  .Slider .swiper-slide {
    opacity: 0.6; }
    .Slider .swiper-slide-active {
      opacity: 1; }
  .Slider .swiper-button-next, .Slider .swiper-button-prev {
    position: static;
    background-image: none;
    background-color: transparent;
    margin-top: auto; }
    .Slider .swiper-button-next:before, .Slider .swiper-button-prev:before {
      display: none; }
  .Slider .swiper-button-prev {
    margin-left: auto; }
  .Slider .swiper-pagination {
    display: none; }
    .Slider .swiper-pagination-bullet {
      width: 8px;
      height: 8px;
      flex-grow: 0;
      border: solid 2px rgba(165, 170, 175, 0.6);
      background-color: transparent;
      opacity: 1; }
      .Slider .swiper-pagination-bullet-active {
        background-color: #f00;
        border-color: #f00; }

.Footer-in {
  display: grid;
  grid-template-columns: clamp(400px, 30.1vw, 580px) 1fr;
  gap: clamp(24px, 3.2vw, 60px);
  border-radius: 30px;
  background-color: #000;
  padding: 26px; }

.Footer-left {
  padding: clamp(24px, 3.2vw, 60px);
  border-radius: 20px;
  background-color: #fff;
  position: relative; }
  .Footer-left h4 {
    max-width: 316px;
    font-size: 36px;
    font-weight: 600;
    color: #000;
    margin-bottom: clamp(20px, 2.1vw, 40px); }
  .Footer-left p {
    max-width: 450px;
    font-size: 15px;
    font-weight: normal;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: clamp(16px, 1.5vw, 26px); }
  .Footer-left-logo {
    max-width: 199px;
    width: 100%;
    position: absolute;
    left: 5%;
    bottom: 20%; }
  .Footer-left-boxes {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 284px;
    width: 100%; }

.Footer-form {
  padding: 33px;
  padding-left: 0; }
  .Footer-form-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: clamp(24px, 2.1vw, 40px); }
    .Footer-form-head h4 {
      font-size: 36px;
      font-weight: 600;
      color: #fff; }
  .Footer-form-checkbox label {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    cursor: pointer; }
    .Footer-form-checkbox label input {
      width: 100%;
      height: 100%;
      position: absolute;
      opacity: 0;
      cursor: pointer; }
      .Footer-form-checkbox label input:checked + span:before {
        opacity: 1; }
    .Footer-form-checkbox label span {
      width: 29px;
      height: 29px;
      border-radius: 5px;
      border: solid 1px rgba(255, 255, 255, 0.05);
      background-color: #191919;
      pointer-events: none; }
      .Footer-form-checkbox label span:before {
        content: "";
        display: inline-block;
        position: absolute;
        left: 12px;
        top: 6px;
        width: 7px;
        height: 12px;
        border: solid #fff;
        border-width: 0 1.5px 1.5px 0;
        transform: rotate(45deg);
        transition: all 300ms;
        opacity: 0; }
    .Footer-form-checkbox label p {
      font-size: 15px;
      font-weight: normal;
      line-height: 1.4;
      color: #fff; }
  .Footer-form-in {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px; }
  .Footer-form-item {
    width: 100%; }
    .Footer-form-item.full-item {
      grid-column: 1/-1; }
    .Footer-form-item label {
      padding: 14px 16px;
      border-radius: 6px;
      border: solid 1px rgba(255, 255, 255, 0.05);
      background-color: #191919;
      width: 100%;
      position: relative;
      margin: 0; }
      .Footer-form-item label span {
        position: absolute;
        font-size: 15px;
        font-weight: normal;
        line-height: 1.4;
        color: rgba(255, 255, 255, 0.7);
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        transition: all 300ms; }
      .Footer-form-item label input, .Footer-form-item label textarea {
        width: 100%;
        background-color: transparent;
        border: none;
        outline: none;
        font-size: 15px;
        font-weight: normal;
        line-height: 1.4;
        color: rgba(255, 255, 255, 0.7);
        display: flex;
        align-items: flex-start; }
    .Footer-form-item.focus label span {
      top: 10px;
      font-size: 10px; }
    .Footer-form-item.textarea label span {
      top: 16px;
      transform: translateY(0); }
    .Footer-form-item.textarea.focus label span {
      top: 3px; }
    .Footer-form-item.orders {
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding: 20px;
      border-radius: 17px;
      border: dashed 1px rgba(255, 255, 255, 0.21);
      background-color: rgba(255, 255, 255, 0.11);
      margin: 10px 0; }
      .Footer-form-item.orders label {
        border: solid 1px rgba(255, 255, 255, 0.05);
        background-color: #212121; }
      .Footer-form-item.orders .text {
        font-size: 12px;
        font-weight: normal;
        line-height: 1.75;
        color: rgba(255, 255, 255, 0.5); }
    .Footer-form-item-checkbox {
      grid-column: 1/-1; }
      .Footer-form-item-checkbox label {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        position: relative;
        cursor: pointer; }
        .Footer-form-item-checkbox label input {
          width: 100%;
          height: 100%;
          position: absolute;
          opacity: 0;
          cursor: pointer; }
          .Footer-form-item-checkbox label input:checked + span:before {
            opacity: 1; }
        .Footer-form-item-checkbox label span {
          width: 29px;
          height: 29px;
          border-radius: 5px;
          border: solid 1px rgba(255, 255, 255, 0.05);
          background-color: #191919;
          pointer-events: none;
          flex-shrink: 0; }
          .Footer-form-item-checkbox label span:before {
            content: "";
            display: inline-block;
            position: absolute;
            left: 12px;
            top: 6px;
            width: 7px;
            height: 12px;
            border: solid #fff;
            border-width: 0 1.5px 1.5px 0;
            transform: rotate(45deg);
            transition: all 300ms;
            opacity: 0; }
        .Footer-form-item-checkbox label p {
          font-size: 15px;
          font-weight: normal;
          line-height: 1.4;
          color: #fff; }
          .Footer-form-item-checkbox label p a {
            color: #ff7e7e;
            margin: 0 4px; }
  .Footer-form button {
    width: -moz-max-content;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 17px 27px;
    border-radius: 8px;
    background-color: #c40000;
    font-size: 15px;
    font-weight: normal;
    color: #fff;
    cursor: pointer;
    transition: all 300ms;
    margin-top: 24px; }
    .Footer-form button:hover {
      background-color: #191919;
      color: #c40000; }

.copyright {
  padding: clamp(28px, 2.5vw, 48px) 0;
  display: flex;
  align-items: center;
  justify-content: center; }
  .copyright p {
    font-size: 15px;
    font-weight: normal;
    line-height: 1.4;
    text-align: center;
    color: #3b3b3b; }

@media (max-width: 991px) {
  .Header-menu {
    display: none; }
  .Header-offer {
    padding: 8px 16px;
    border-radius: 8px; }
  .Channels {
    margin-bottom: 10%; }
    .Channels-in {
      grid-template-columns: 1fr;
      gap: 20px; }
    .Channels-left {
      align-items: center;
      justify-content: center;
      text-align: center; }
      .Channels-left span {
        font-size: clamp(16px, 1.5vw, 24px);
        font-weight: 600;
        color: #f00; }
      .Channels-left h2 {
        font-size: clamp(26px, 2.2vw, 42px);
        font-weight: 600;
        color: #000;
        margin-bottom: 12px; }
      .Channels-left p {
        font-size: clamp(12px, 3vw, 15px);
        text-align: center; }
    .Channels-right {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr; }
  .Scheme-list-top {
    flex-direction: column;
    gap: 0;
    margin-bottom: 70px; }
    .Scheme-list-top:after {
      width: 8px;
      height: 33px;
      background-image: url(../images/to-bottom-arrow-m.svg);
      right: 50%;
      bottom: -50px;
      transform: translateX(50%); }
    .Scheme-list-top .to-right.mobile-bottom {
      margin-bottom: 10px; }
  .Scheme-list-middle {
    flex-direction: column;
    gap: 18px;
    position: relative;
    margin-bottom: 110px; }
    .Scheme-list-middle:after {
      width: 8px;
      height: 33px;
      background-image: url(../images/to-bottom-arrow-m.svg);
      right: 50%;
      bottom: -50px;
      transform: translateX(50%); }
  .Scheme-list-bottom {
    gap: 8px; }
    .Scheme-list-bottom:before {
      width: 50%;
      height: 31px;
      background-image: url(../images/bottom-top-m.svg);
      top: -44px; }
    .Scheme-list-bottom .Scheme-list-item {
      flex-direction: column;
      justify-content: center;
      padding: 15px 8px; }
      .Scheme-list-bottom .Scheme-list-item p {
        text-align: center; }
      .Scheme-list-bottom .Scheme-list-item.last {
        margin-bottom: 0; }
    .Scheme-list-bottom .to-bottom {
      margin-bottom: 20px; }
  .Scheme-list-first {
    margin-bottom: 60px; }
    .Scheme-list-first:before {
      width: 64%;
      height: 154px; }
    .Scheme-list-first-in {
      gap: 8px; }
  .Scheme-list-item {
    padding: 6px;
    border-radius: 5px; }
  .Scheme-list .arrow {
    flex-shrink: 0; }
    .Scheme-list .arrow.to-right {
      width: 30px;
      height: 8px;
      background-image: url(../images/to-right-arrow-m.svg); }
      .Scheme-list .arrow.to-right.mobile-bottom {
        width: 8px;
        height: 33px;
        background-image: url(../images/to-bottom-arrow-m.svg); }
    .Scheme-list .arrow.to-bottom {
      width: 8px;
      height: 33px;
      background-image: url(../images/to-bottom-arrow-m.svg); }
  .Footer-in {
    grid-template-columns: 1fr;
    border-radius: 33px;
    padding: 13px; }
  .Footer-left {
    padding: 32px 22px;
    padding-bottom: 140px; }
    .Footer-left h4 {
      max-width: 185px;
      font-size: 21px;
      margin-bottom: 16px; }
    .Footer-left p {
      font-size: 12px;
      margin-bottom: 6px; }
    .Footer-left-logo {
      max-width: 111px;
      left: 22px;
      bottom: 40px; }
    .Footer-left-boxes {
      bottom: 0;
      right: 0;
      max-width: 130px; }
  .Footer-form {
    padding: 0 10px;
    padding-bottom: 60px; }
    .Footer-form-head {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 12px; }
      .Footer-form-head h4 {
        font-size: 18px; }
    .Footer-form-checkbox label span {
      width: 24px;
      height: 24px; }
      .Footer-form-checkbox label span:before {
        left: 9px;
        top: 4px; }
    .Footer-form-checkbox label p {
      font-size: 15px;
      font-weight: normal;
      line-height: 1.4;
      color: #fff; }
    .Footer-form-in {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px; }
    .Footer-form-item-checkbox {
      grid-column: 1/-1; }
      .Footer-form-item-checkbox label {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        position: relative;
        cursor: pointer; }
        .Footer-form-item-checkbox label input {
          width: 100%;
          height: 100%;
          position: absolute;
          opacity: 0;
          cursor: pointer; }
          .Footer-form-item-checkbox label input:checked + span:before {
            opacity: 1; }
        .Footer-form-item-checkbox label span {
          width: 24px;
          height: 24px; }
          .Footer-form-item-checkbox label span:before {
            left: 9px;
            top: 4px; }
        .Footer-form-item-checkbox label p {
          font-size: 12px; }
    .Footer-form button {
      width: -moz-max-content;
      width: max-content;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 17px 27px;
      border-radius: 8px;
      background-color: #c40000;
      font-size: 15px;
      font-weight: normal;
      color: #fff;
      cursor: pointer;
      transition: all 300ms;
      margin-top: 24px; }
      .Footer-form button:hover {
        background-color: #191919;
        color: #c40000; } }

@media (max-width: 768px) {
  .Banner {
    padding: 7% 15px; }
    .Banner h1 {
      line-height: 1.32;
      letter-spacing: -1.4px; }
    .Banner-animation {
      flex-direction: column-reverse;
      gap: 30px;
      margin-bottom: clamp(30px, 5.2vw, 100px); }
      .Banner-animation p {
        font-size: 16px;
        text-align: center; }
    .Banner-desc {
      margin-bottom: clamp(30px, 5.2vw, 100px); }
    .Banner-offer {
      display: none; }
  .Features-in {
    background-color: transparent;
    border-radius: 0;
    border: none;
    gap: 10px; }
  .Features-item {
    background-color: #000;
    border-radius: 20px;
    padding: 24px;
    border-right: none;
    gap: 18px; }
    .Features-item-head {
      gap: 12px; }
      .Features-item-head svg, .Features-item-head img {
        width: 54px;
        height: 54px; }
      .Features-item-head b {
        font-size: 14px; }
    .Features-item p {
      font-size: 12px; }
  .Slider {
    background-color: #f3f5f8; }
    .Slider-head {
      flex-direction: column;
      justify-content: center;
      gap: 10px; }
      .Slider-head-text h4 {
        text-align: center; }
      .Slider-head-text h3 {
        text-align: center; }
      .Slider-head p {
        font-size: 12px;
        text-align: center; }
    .Slider-in {
      padding: 44px 14px; }
      .Slider-in:before {
        display: none; }
    .Slider .swiper-button-next, .Slider .swiper-button-prev {
      display: none; }
  .Footer-form-in {
    grid-template-columns: 1fr; } }

@media (max-width: 640px) {
  .Channels-right {
    grid-template-columns: 1fr 1fr; }
    .Channels-right-item img, .Channels-right-item svg {
      width: 180px;
      height: 65px;
      -o-object-fit: contain;
         object-fit: contain; }
  .Slider .swiper-container {
    padding-bottom: 110px; }
  .Slider .swiper-pagination {
    display: block; }
  .Slider-item {
    flex-direction: column-reverse;
    align-items: flex-start; }
    .Slider-item:before {
      content: "";
      display: inline-block;
      width: 93px;
      height: 44px;
      background-size: 100% 100%;
      background-image: url(../images/slider-bg.svg);
      position: absolute;
      left: 40px;
      bottom: -40px; }
    .Slider-item-left {
      gap: 14px; }
      .Slider-item-left p {
        font-size: 13px; }
    .Slider-item-right {
      gap: 10px; }
      .Slider-item-right b {
        font-size: 16px; }
      .Slider-item-right p {
        font-size: 13px; } }
