@font-face {
  font-family: 'SF Pro Display';
  src: url('https://2at.ai/static/fonts/sf-pro-display-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('https://2at.ai/static/fonts/sf-pro-display-regularitalic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('https://2at.ai/static/fonts/sf-pro-display-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('https://2at.ai/static/fonts/sf-pro-display-semibolditalic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('https://2at.ai/static/fonts/sf-pro-display-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('https://2at.ai/static/fonts/sf-pro-display-bolditalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

.roboto-mono-700 {
  font-family: 'Roboto Mono', monospace;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.instrument-sans-600,
h1,
h2,
h3 {
  font-family: 'Instrument Sans', sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: 'wdth' 100;
}

html {
  scroll-behavior: smooth;
  font-size: var(--rem);
  display: flex;
  min-height: 100%;
}

body {
  background: var(--theme);
  color: var(--text-clr2);
  font-family: var(--font);
  line-height: 1.4;
  overflow-x: hidden;
  min-width: 375px;
  position: relative;

  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-height: 100%;
}

.showMobile {
  display: none !important;
}

@media screen and (max-width: 480px) {
  .hideMobile {
    display: none !important;
  }

  .showMobile {
    display: block !important;
  }
}

.anchor-target {
  scroll-margin-top: 60px; /* sticky-header compensation */
}

h1 {
  color: var(--text-clr);
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -1.44px;
  line-height: 1.2;
  margin: 0 0 1.3rem;

  @media screen and (max-width: 639px) {
    font-size: 2.5rem;
  }
}

h2 {
  color: var(--text-clr);
  font-size: 2.375rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1.3rem;
}

h3 {
  color: var(--text-clr);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 24px;
}

h4 {
  color: var(--text-clr);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}

/* BUTTONS */
.btn {
  background-color: var(--primary-6);
  border: 1px solid transparent;
  border-radius: 20px;
  color: var(--theme);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  line-height: 40px;
  padding: 0 24px;
  gap: 0.5rem;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease;
  white-space: nowrap;

  &:hover {
    background-color: var(--primary-5);
  }

  &:focus {
    outline: 2px solid var(--primary-5);
    outline-offset: 2px;
  }

  &.btn-link {
    background: none;
    color: inherit;

    &:hover {
      border-color: #00000044;
    }
  }

  &.btn-secondary {
    background: var(--theme);
    border-color: var(--gray-300);
    color: var(--text-clr);

    &:hover {
      border-color: var(--gray-500);
    }
  }

  &.btn-glass {
    border: 1px solid #ffffff77;
    background: radial-gradient(
      78.85% 78.85% at 13.35% 16.4%,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0) 100%
    );
    background-blend-mode: plus-lighter;
    box-shadow:
      0 80px 100px -19px rgba(0, 0, 0, 0.25),
      0 0 38.8px 0 rgba(255, 255, 255, 0.1) inset;

    &:hover {
      border: 1px solid #ffffffdd;
      background: radial-gradient(
        78.85% 78.85% at 13.35% 16.4%,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.1) 100%
      );
    }
  }

  &.btn-glow {
    border: 1px solid #ffffff;
    background: #fff;
    box-shadow:
      0 80px 100px -19px rgba(0, 0, 0, 0.25),
      0 0 38.8px 0 rgba(255, 255, 255, 0.1) inset;
    color: var(--primary-7);

    &:hover {
      background: var(--primary-6);
      border: 1px solid #ffffffbb;
      color: var(--theme);
    }

    &:disabled {
      opacity: 1;
      pointer-events: none;
    }
  }

  &.btnMobile {
    border-radius: 0;
    display: flex;
    line-height: 52px;
    gap: 12px;
    justify-content: center;
  }

  &:disabled {
    opacity: 0.2;
    pointer-events: none;
  }
}

.btn_group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.blueGrad {
  background: linear-gradient(180deg, var(--primary-5), var(--primary-7));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--primary-6);
}

.grayGrad {
  background: linear-gradient(90deg, var(--gray-700), var(--gray-800));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gray-700);
}

.disabled {
  opacity: 0.2;
  pointer-events: none;
}

#app {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
  width: 100%;
}

button.close-btn {
  background: none;
  border: 1px solid transparent;
  color: #555;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  height: 30px;
  width: 30px;

  display: flex;
  justify-content: center;
  align-items: center;

  position: absolute;
  top: 10px;
  right: 10px;

  &:hover {
    border: 1px solid #00000033;
  }
}

/* HEADER */
#header {
  background: transparent;
  color: #fff;
  height: 60px;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;

  display: flex;
  align-items: center;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  &.scrolled {
    background: var(--theme);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: var(--primary-9);
  }

  &:not(.scrolled) {
    &:after {
      background: #ffffff77;
      content: '';
      height: 1px;
      opacity: 0.2;
      width: 100%;

      position: absolute;
      top: 100%;
    }

    .logo stop {
      stop-color: var(--theme) !important;
    }

    .nav-list li a:hover,
    .btn-link:hover {
      border-color: #ffffff77 !important;
    }

    .btn:not(.btn-link) {
      border: 1px solid #ffffff77;
      background: radial-gradient(
        78.85% 78.85% at 13.35% 16.4%,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 100%
      );
      background-blend-mode: plus-lighter;
      box-shadow:
        0 80px 100px -19px rgba(0, 0, 0, 0.25),
        0 0 38.8px 0 rgba(255, 255, 255, 0.1) inset;

      &:hover {
        border: 1px solid #ffffffdd;
        background: radial-gradient(
          78.85% 78.85% at 13.35% 16.4%,
          rgba(255, 255, 255, 0.2) 0%,
          rgba(255, 255, 255, 0.1) 100%
        );
      }
    }
  }

  .wrapper {
    display: flex;
    align-items: center;
    flex-grow: 1;
    gap: 50px;

    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;

    .logoBox {
      order: 1;

      .logo {
        height: 31px;
      }
    }

    .main-nav {
      order: 2;
      position: relative;
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 2rem;
      cursor: pointer;
      height: 60px;
    }

    .nav-list {
      display: flex;

      li {
        a {
          border: 1px solid transparent;
          border-radius: 20px;
          display: flex;
          align-items: center;
          line-height: 40px;
          padding: 0 15px;
          transition:
            background-color 0.3s ease,
            border-color 0.3s ease;
          white-space: nowrap;
          text-overflow: ellipsis;
          overflow: hidden;

          &:hover {
            border-color: #00000044;
            /*color: var(--primary-7);*/
          }
        }

        &:first-child,
        &:last-child {
          display: none;
        }
      }

      .patternBox {
        display: flex;
        height: 4rem;
        margin: 32px auto;
        position: relative;
        width: 130px;

        span {
          color: var(--gray-600);
          font-size: 30px;
          font-weight: 600;
          position: absolute;
          inset: 0;
          display: flex;
          align-items: center;
          justify-content: center;
        }
      }

      .menu-close {
        background-color: var(--gray-200);
        color: var(--gray-400);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 42px;
        margin: 0 auto;
        width: 42px;

        &:hover {
          color: inherit;
        }
      }
    }

    .registerActions {
      display: flex;
      margin-left: auto;
      order: 3;
      gap: 5px;
    }

    @media screen and (max-width: 939px) {
      gap: 20px;

      .main-nav {
        order: 3;

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

        .menu-close {
          display: none;
          align-items: center;
          justify-content: center;
        }

        .nav-list {
          flex-direction: column;
          display: none !important;
          padding: 0.5rem 0.5rem 2rem;
          position: fixed;
          top: 60px;
          right: 0;
          background-color: var(--gray-25);
          color: var(--primary-9);
          display: flex;
          gap: 1rem;
          min-width: 200px;
          text-align: center;
          font-size: 20px;
          min-width: 300px;
          overflow: auto;
          max-height: calc(100vh - 2.5rem);
        }

        &.open {
          .menu-show {
            display: none;
          }

          .menu-close {
            display: flex;
          }

          .nav-list {
            display: flex !important;

            li {
              a {
                justify-content: center;
                font-weight: 600;
              }

              &:first-child,
              &:last-child {
                display: list-item;
              }

              &:last-child {
                margin-top: auto;
                text-align: center;
              }
            }
          }
        }
      }

      .registerActions {
        display: flex;
        margin-left: auto;
        order: 2;
      }
    }

    @media screen and (max-width: 639px) {
      padding: 0 10px;

      .main-nav {
        &.open .nav-list {
          height: calc(100vh - 60px);
          padding-bottom: 60px;
          width: 100vw;

          &:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent);
            clip-path: inset(0 0 calc(100% - 10px) 0);
            pointer-events: none;
          }
        }
      }

      .registerActions .btn {
        padding: 0 10px;
      }
    }
  }
}

/* SECTIONS */

/* BOX   _______________________________*/

.box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;

  @media screen and (min-width: 720px) {
    min-height: 720px;
  }

  @media screen and (max-width: 639px) {
    min-height: 50vh;
  }

  &.vertical {
    flex-direction: column;
    align-items: center;
  }

  .content {
    padding: 6.25rem 20px;
    max-width: 1200px;
    position: relative;

    @media screen and (max-width: 639px) {
      padding: 2rem 16px;
    }
  }
}

/* BOX 1 _______________________________*/

.box1 {
  background-color: #0e6cc4;
  color: var(--text-clr-inverted);
  overflow: hidden;
  position: relative;
  justify-content: stretch;

  @media screen and (max-width: 480px) {
    min-height: 100vh;
    height: 1px;
  }

  .animatedBackground {
    position: absolute;
    top: 0;
    transform: rotate(80deg);
    left: 0;
  }

  &:after {
    content: '';
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
    transform: translate3d(0, 0, 0);
  }

  .wave {
    top: 0;
    left: 0;
    opacity: 0.4;
    position: absolute;
    top: 3%;
    left: 10%;
    background: #0af;
    width: 1500px;
    height: 1300px;
    margin-left: -150px;
    margin-top: -250px;
    transform-origin: 50% 48%;
    border-radius: 43%;
    animation: drift 14000ms infinite linear;

    @media (prefers-reduced-motion: reduce) {
      animation: none !important;
    }
  }

  &.paused .wave {
    animation-play-state: paused !important;
  }

  .wave.-three {
    animation: drift 16000ms infinite linear;
    position: fixed;
    background-color: #77daff;
  }

  .wave.-two {
    animation: drift 10000ms infinite linear;
    opacity: 0.1;
    background: black;
    position: fixed;
  }

  .content {
    padding-bottom: 0;
    padding-top: 8.75rem;
    z-index: 12;
    gap: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    min-height: 100%;

    h1 {
      color: var(--text-clr-inverted);
      line-height: 1.2em;

      b {
        padding-left: 7px;
        padding-right: 30px;
        position: relative;
      }

      em {
        font-size: 0.7em;
        font-weight: 400;
        position: absolute;
        top: -10px;
        right: 0;
      }
    }

    p {
      margin: 1.3rem auto;
      max-width: 420px;
    }

    .head-preview {
      img {
        display: block;
        margin: 2rem auto 0;
        max-width: 90%;
      }
    }

    @media screen and (max-width: 850px) {
      h1 span {
        display: block;
      }
    }

    @media screen and (max-width: 639px) {
      padding-top: 80px;
    }

    @media screen and (max-width: 480px) {
      gap: 1rem;

      h1,
      p {
        max-width: 100%;
      }

      .head-preview {
        background: url(../img/box1/head-preview.png) no-repeat 0 100%;
        background-size: cover;
        flex-grow: 1;
        margin-right: -16px;
        max-height: calc(100vw - 16px);
        padding-top: 20px;

        img {
          display: none;
        }
      }

      .btnMobile {
        margin: 0 -16px;
      }
    }
  }
}

/* BOX 2 _______________________________*/

.box2 {
  .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    flex-grow: 1;

    h2 + p {
      font-size: 1.25rem;
      margin: 1.3rem auto;
      max-width: 620px;
    }

    .advantages {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      flex-grow: 1;

      .item {
        border-bottom: 1px solid var(--gray-100);
        padding-bottom: 2rem;
        opacity: 0;
        transform: translateY(20px);
        transition:
          opacity 0.5s ease,
          transform 0.5s ease;
        flex: 1 0 210px;
        max-width: calc(33.333% - 12px);

        &.visible {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .picBox img {
        display: block;
        margin: 0 auto;
        max-width: 100px;
      }

      @media screen and (max-width: 767px) {
        flex-direction: column;

        .item {
          flex: 1;
          max-width: 100%;
        }
      }
    }

    @media screen and (min-width: 720px) {
      min-height: 720px;
    }
  }
}

/* BOX 3 _______________________________*/

.box3 {
  background: var(--gray-25);
  border: 1px solid var(--gray-50);
  border-width: 1px 0;
  padding: 6.25rem 20px;

  .content {
    background: var(--gray-50);
    max-width: 1120px;
    padding: 0;
    text-align: center;
    margin: 0 40px;

    display: flex;
    flex-grow: 1;
    justify-content: center;

    .corners {
      display: flex;
      flex-grow: 1;
      justify-content: center;
      position: relative;

      &::before {
        border: 1px solid var(--gray-200);
        border-width: 1px 1px 0 0;
        content: '';
        height: 40px;
        width: 40px;
        position: absolute;
        right: 100%;
        top: 100%;
      }

      &::after {
        border: 1px solid var(--gray-200);
        border-width: 1px 0 0 1px;
        content: '';
        height: 40px;
        width: 40px;
        position: absolute;
        left: 100%;
        top: 100%;
      }
    }

    .picBox img {
      max-width: 400px;
      width: 100%;
      aspect-ratio: 1446/1368;
    }

    .textBox {
      content: '';
      max-width: 820px;
      width: 100%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);

      h2 {
        margin-bottom: 3rem;
      }
    }

    &::before {
      border: 1px solid var(--gray-200);
      border-width: 0 1px 1px 0;
      content: '';
      height: 40px;
      width: 40px;
      position: absolute;
      right: 100%;
      bottom: 100%;
    }

    &::after {
      border: 1px solid var(--gray-200);
      border-width: 0 0 1px 1px;
      content: '';
      height: 40px;
      width: 40px;
      position: absolute;
      left: 100%;
      bottom: 100%;
    }
  }

  @media screen and (max-width: 639px) {
    min-height: 0;
    padding: 100px 5px;

    .content {
      margin: 0;

      &:before,
      &:after {
        display: none;
      }

      .corners {
        &:before,
        &:after {
          display: none;
        }
      }
    }
  }
}

/* BOX 4 _______________________________*/

.box4 {
  background: var(--gray-25) url(../img/box4/grid.svg);
  border: 1px solid var(--gray-50);
  border-width: 1px 0;
  position: relative;

  @media screen and (min-width: 720px) {
    min-height: 0;
  }

  .content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: flex-start;
    justify-content: center;
    z-index: +1;
    min-height: 300px;

    .numberBox {
      color: var(--text-clr);
      font-size: 200px;
      line-height: 0.8;
      letter-spacing: -0.7rem;
    }

    h2 {
      font-size: 2.25rem;
      margin: 2rem 0 0;
      text-align: left;
    }

    @media screen and (max-width: 999px) {
      .numberBox {
        font-size: calc(100vw * 0.2153125);
        letter-spacing: -0.3rem;
      }

      h2 {
        font-size: calc(100vw * (36 / 1024));
      }
    }

    @media screen and (max-width: 639px) {
      .numberBox {
        margin: 0 auto;
      }
      h2 {
        display: flex;
        flex-direction: column;
        gap: 20px;
        font-size: 28px;
        text-align: center;
      }
    }
  }
}

/* BOX 5 _______________________________*/

.box5 {
  position: relative;

  .content {
    display: flex;

    @media screen and (min-width: 768px) {
      > div {
        width: 50%;
      }
    }

    @media screen and (max-width: 767px) {
      flex-direction: column;
      gap: 32px;

      .cylinder-container {
        overflow: hidden;
      }
    }

    .contentCol {
      font-size: 1.25rem;
      text-align: left;

      > p {
        margin-bottom: 2rem;
      }

      > strong {
        display: block;
        font-weight: 600;
      }

      ol {
        margin-bottom: 1.4rem;

        li {
          margin: 0 0 0 2rem;
          position: relative;
        }

        li::before {
          background: var(--text-clr2);
          border-radius: 50%;
          content: '';
          height: 4px;
          width: 4px;
          left: -1rem;
          top: 50%;
          transform: translateY(-50%);
          position: absolute;
        }
      }
    }

    .imageCol {
      position: relative;
      aspect-ratio: 380/420;

      @media screen and (max-width: 767px) {
        aspect-ratio: unset;
        min-height: 440px;
      }

      svg {
        position: absolute;
        inset: 0;
      }

      #animatedScheme {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -51%);
        width: 380px;
        height: 420px;

        .lamp {
          top: 0;
          left: 50%;
          transform: translateX(-50%);
          width: 81px;
        }

        .smart-matching {
          top: 52px;
          left: 50%;
          transform: translateX(-50%);
          width: 99px;
        }

        .arrow-left {
          top: 57px;
          left: calc(50% + 41px);
          width: 63px;
        }

        .case-start {
          top: 58px;
          left: calc(50% + 99px);
          width: 90px;
        }

        .arrow-right {
          top: 57px;
          right: calc(50% + 41px);
          width: 63px;
        }

        .request-start {
          top: 58px;
          right: calc(50% + 99px);
          width: 90px;
        }

        .arrow-bottom-1 {
          top: 121px;
          left: 50%;
          transform: translateX(-50%);
          width: 16px;
        }

        .ai-analysis {
          top: 173px;
          left: 50%;
          transform: translateX(-50%);
          width: 104px;
        }

        .arrow-bottom-2 {
          top: 270px;
          left: 50%;
          transform: translateX(-50%);
          width: 23px;
        }

        .results {
          top: 304px;
          left: 50%;
          transform: translateX(-50%);
          width: 104px;
        }

        .arrow-bottom-3 {
          top: 340px;
          left: 50%;
          transform: translateX(-50%);
          width: 23px;
        }

        .decision {
          top: 380px;
          left: 50%;
          transform: translateX(-50%);
          width: 99px;
        }
      }
    }

    @media screen and (max-width: 639px) {
      h2,
      p {
        text-align: center;
      }
    }
  }

  #animatedScheme img {
    opacity: 0;
    transition: opacity 0.8s ease;
    max-width: 150px;
    position: absolute;
  }
  #animatedScheme.startAnimation img {
    opacity: 1;
  }
  #animatedScheme.startAnimation .loop1 {
    transition-delay: 0s;
  }
  #animatedScheme.startAnimation .loop2 {
    transition-delay: 1s;
  }
  #animatedScheme.startAnimation .loop3 {
    transition-delay: 2s;
  }
  #animatedScheme.startAnimation .loop4 {
    transition-delay: 3s;
  }
  #animatedScheme.startAnimation .loop5 {
    transition-delay: 4s;
  }
  #animatedScheme.startAnimation .loop6 {
    transition-delay: 5s;
  }
  #animatedScheme.startAnimation .loop7 {
    transition-delay: 6s;
  }
  #animatedScheme.startAnimation .loop8 {
    transition-delay: 7s;
  }
  #animatedScheme.startAnimation .loop9 {
    transition-delay: 8s;
  }

  .cylinder-container {
    --max-scale: 3;
    position: relative;
    width: 100%;
    perspective: 1000px;
    z-index: +1;
    margin-top: 1rem;
  }

  .cylinder-list {
    list-style: none;
    margin: 0;
    padding-bottom: calc((var(--max-scale) - 1) * 1em) 0;
    min-height: 240px;
    transform-style: preserve-3d;
  }

  .cylinder-list li {
    font-size: 1rem;
    cursor: default;
    transform-origin: left center;
    transition:
      transform 0.2s ease,
      color 0.2s ease,
      z-index 0.2s ease;
    will-change: transform, color;
    position: relative;
  }
}

/* BOX 6 _______________________________*/

.box6 {
  background: #085b9c url(../img/box6/bg.svg) no-repeat 50% 50% / cover;
  color: #fff;
  position: relative;

  .content {
    display: flex;

    .contentCol {
      font-size: 1.25rem;
      text-align: left;

      h2 {
        color: #fff;

        .patternBox {
          display: inline-flex;
          height: 4rem;
          position: relative;

          span {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
          }
        }
      }

      > p {
        margin-bottom: 2rem;
        opacity: 0.7;
      }

      > strong {
        display: block;
        font-weight: 600;
      }

      ol {
        margin-bottom: 2rem;

        li {
          margin: 1.2rem 0 0 2rem;
        }

        li::before {
          content: '•';
          font-size: 0.6em;
          display: inline-block;
          width: 1em;
          margin-left: -1em;
          transform: translateY(-0.25em);
        }
      }
    }

    .imageCol {
      display: flex;
      align-items: center;
      justify-content: center;

      .picWrapper {
        flex-grow: 1;
        position: relative;
        aspect-ratio: 1;
        max-width: 90%;
        overflow: hidden;
      }
    }

    @media screen and (min-width: 640px) {
      padding-top: 0;
      padding-bottom: 0;

      > div {
        width: 50%;
      }

      .contentCol {
        padding: 6.25rem 0;
      }
    }

    @media screen and (max-width: 639px) {
      flex-direction: column;
      gap: 32px;

      .contentCol {
        padding: 2rem 0 0;
        text-align: center;

        > strong {
          margin-bottom: 6px;
        }

        p:last-of-type {
          margin: 0;
        }
      }

      h2 {
        text-align: center;

        .patternBox span {
          flex-grow: 1;
          justify-content: center;
        }
      }
    }
  }
}

/* BOX 7 _______________________________*/

.box7 {
  position: relative;

  .content {
    display: flex;
    gap: 30px;

    .contentCol {
      display: flex;
      justify-content: flex-end;
      font-size: 1.25rem;
      text-align: left;
      padding-left: 40px;

      > div {
        max-width: 500px;
      }

      > p {
        margin-bottom: 2rem;
        opacity: 0.7;
      }

      > strong {
        display: block;
        font-weight: 600;
      }

      ul {
        li {
          cursor: pointer;
          font-weight: 700;
          margin-top: 2rem;
          position: relative;

          &:hover {
            color: var(--primary-6);
          }

          &.active {
            color: var(--primary-7);

            .progress-ring .progress {
              opacity: 1;
            }

            .play-icon {
              display: block;
            }
          }

          &.paused {
            .pause-icon {
              display: block;
            }

            .play-icon {
              display: none;
            }

            .progress-ring .progress {
              transition: none;
            }
          }

          .progress-ring {
            position: absolute;
            right: calc(100% + 10px);
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            width: 24px;
            height: 24px;

            circle {
              fill: none;
              stroke-width: 2;
            }

            .bg {
              stroke: var(--gray-100);
            }

            .progress {
              stroke: var(--primary-7);
              stroke-dasharray: 63;
              stroke-dashoffset: 63;
              transform: rotate(-90deg);
              transform-origin: center;
              opacity: 0;
              transition: stroke-dashoffset var(--slide-duration, 2s) linear;
            }
          }

          .pause-icon,
          .play-icon {
            position: absolute;
            right: calc(100% + 10px);
            top: 50%;
            transform: translateY(-50%);
            width: 15px;
            height: 8px;
            display: none;
          }

          .pause-icon {
            &::before,
            &::after {
              content: '';
              display: block;
              width: 2px;
              height: 8px;
              background: var(--primary-7);
              float: left;
              margin-right: 3px;
            }
          }

          .play-icon {
            &::before {
              content: '';
              display: block;
              width: 0;
              height: 0;
              border-left: 6px solid var(--primary-7);
              border-top: 5px solid transparent;
              border-bottom: 5px solid transparent;
              margin-left: 1px;
            }
          }
        }
      }
    }

    .imageCol {
      position: relative;

      img {
        display: none;
        max-width: 100%;
        width: 100%;
        opacity: 0;
        transition: opacity 0.5s ease;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
        border-radius: 3px;

        &.active {
          display: block;
          opacity: 1;
        }

        @media screen and (min-width: 640px) and (max-width: 1200px) {
          margin-left: -20px;
        }
      }
    }

    @media screen and (min-width: 640px) {
      padding-left: 0;

      > div {
        width: 50%;
      }
    }

    @media screen and (max-width: 639px) {
      flex-direction: column;
      gap: 32px;

      .contentCol {
        justify-content: flex-start;
        order: 1;
        padding-left: 0;

        #carousel {
          padding-left: 30px;
        }

        h2,
        h3 {
          text-align: center;
        }
      }

      .imageCol {
        order: 2;
      }
    }
  }
}

/* BOX 8 _______________________________*/

.box8 {
  background: var(--gray-25) url(../img/box4/grid.svg);
  border: 1px solid var(--gray-50);
  border-width: 1px 0;
  position: relative;

  @media screen and (min-width: 720px) {
    min-height: 0;
  }

  .content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: flex-start;

    .numberBox {
      color: var(--text-clr);
      font-size: 200px;
      line-height: 0.8;
      letter-spacing: -0.7rem;
    }

    h2 {
      font-size: 5.3rem;
      line-height: 1em;
      margin: 0;
      z-index: +1;
      text-align: left;

      @media screen and (max-width: 999px) {
        font-size: calc(100vw * (80 / 1024));
      }

      @media screen and (max-width: 639px) {
        font-size: 38px;
        text-align: center;
        margin: 0 auto;

        span {
          display: block;
        }
      }
    }

    h3 {
      font-size: 2.2rem;
      line-height: 1em;
      margin: 1rem 0;
      z-index: +1;
      text-align: left;

      @media screen and (max-width: 999px) {
        font-size: calc(100vw * (35 / 1024));
      }

      @media screen and (max-width: 639px) {
        font-size: 24px;
        text-align: center;
      }
    }
  }
}

/* BOX 9 _______________________________*/

.box9 {
  background: #fcfcfc;
  align-items: stretch;
  position: relative;

  .content {
    background: url(../img/box9/built_4_every_business_need.webp) no-repeat 50% 100% / contain;
    font-size: 1.25rem;
    flex-grow: 1;
    min-height: 400px;

    p {
      margin: 0 auto;
      max-width: 600px;
    }
  }
}

/* BOX 10 _______________________________*/

.box10 {
  align-items: flex-start;
  border-top: 1px solid var(--gray-100);

  .content {
    flex-grow: 1;

    h2 {
      padding-bottom: 3rem;
      text-align: left;
    }

    .cornersTop {
      width: 100%;
      position: absolute;
      left: 0;
      bottom: 100%;

      &::before {
        border: 1px solid var(--gray-200);
        border-width: 0 1px 1px 0;
        content: '';
        height: 40px;
        width: 40px;
        position: absolute;
        right: 100%;
        bottom: 100%;
      }

      &::after {
        border: 1px solid var(--gray-200);
        border-width: 0 0 1px 1px;
        content: '';
        height: 40px;
        width: 40px;
        position: absolute;
        left: 100%;
        bottom: 100%;
      }
    }

    .cornersBottom {
      width: 100%;
      position: absolute;
      left: 0;
      top: 100%;

      &::before {
        border: 1px solid var(--gray-200);
        border-width: 1px 1px 0 0;
        content: '';
        height: 40px;
        width: 40px;
        position: absolute;
        right: 100%;
        top: 100%;
      }

      &::after {
        border: 1px solid var(--gray-200);
        border-width: 1px 0 0 1px;
        content: '';
        height: 40px;
        width: 40px;
        position: absolute;
        left: 100%;
        top: 100%;
      }
    }

    .accordion {
      background: var(--gray-25);
      margin: 40px;
      padding: 0 1.25rem;
      position: relative;
      text-align: left;

      input[type='checkbox'] {
        display: none;
      }

      label {
        color: var(--text-clr);
        display: flex;
        gap: 10px;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
        cursor: pointer;
        font-weight: bold;
        position: relative;

        &:hover {
          color: var(--primary-7);

          .icon {
            opacity: 1;
          }
        }

        .icon {
          opacity: 0.4;
        }

        .icon.plus {
          display: block;
        }

        .icon.minus {
          display: none;
        }
      }

      input[type='checkbox']:checked + label {
        .icon.plus {
          display: none;
        }

        .icon.minus {
          display: block;
        }
      }

      .panel {
        max-height: 0;
        overflow: hidden;
        transition:
          max-height 0.4s ease,
          padding 0.4s ease;

        p + p {
          margin-top: 1rem;
        }
      }

      input[type='checkbox']:checked + label + .panel {
        max-height: 1000px;
        padding: 1em 0;
      }

      .panel + input + label {
        border-top: 1px solid var(--gray-100);
      }
    }

    ul,
    ol {
      margin: 1em 0 1em 2em;
      padding: 0;
      list-style-position: outside;
    }

    ul {
      list-style-type: decimal;
    }

    ol {
      list-style-type: disc;
    }

    li {
      margin: 0.3em 0;
    }

    strong {
      font-weight: 600;
    }

    @media screen and (max-width: 639px) {
      h2 {
        padding-bottom: 0;
        text-align: center;
      }

      .cornersTop,
      .cornersBottom {
        display: none;
      }

      .accordion {
        background: none;
        margin: 0;
        padding: 0;

        label svg {
          height: 36px;
          width: 36px;
        }
      }
    }
  }
}

/* BOX 11 _______________________________*/

.box11 {
  align-items: stretch;
  background: #085b9c url(../img/box6/bg.svg) no-repeat 50% 50% / cover;
  color: #fff;
  position: relative;

  .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    gap: 40px;

    .contentCol {
      h2 {
        color: #fff;
        margin: 0;
        text-align: center;

        .patternBox {
          display: inline-flex;
          height: 4rem;
          position: relative;

          span {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
          }
        }
      }

      > p {
        font-size: 1.25rem;
        margin: 0 auto 2rem;
        max-width: 500px;
      }

      > strong {
        display: block;
        font-weight: 600;
      }

      ol {
        margin-bottom: 2rem;

        li {
          margin: 1.2rem 0 0 2rem;
        }

        li::before {
          content: '•';
          font-size: 0.6em;
          display: inline-block;
          width: 1em;
          margin-left: -1em;
          transform: translateY(-0.25em);
        }
      }
    }

    .imageCol {
      display: flex;
      justify-content: space-between;
      position: relative;
      gap: 100px;

      .picHolder {
        flex: 0 1 calc(50% - 50px);
        max-width: 50%;
        overflow: hidden;
        position: relative;

        &:before {
          content: '';
          position: absolute;
          top: 50%;
          right: 11.66%;
          transform: translateY(-50%);
          width: 30px;
          height: 16px;
          border-radius: 50%;
          background-color: white;
          opacity: 1;
          filter: blur(7px);
          pointer-events: none;
        }

        &:after {
          content: '';
          position: absolute;
          top: 50%;
          right: 6.66%;
          transform: translateY(-50%);
          width: 60px;
          height: 30px;
          border-radius: 50%;
          background-color: white;
          opacity: 1;
          filter: blur(20px);
          pointer-events: none;
        }

        &:nth-of-type(2) {
          &:before {
            left: 11.66%;
            right: auto;
          }

          &:after {
            left: 6.66%;
            right: auto;
          }
        }

        svg {
          height: auto;
        }
      }

      img {
        max-width: 100%;
        width: 100%;
      }

      button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        justify-content: center;
        min-width: 180px;
        box-shadow:
          0 0 250px 0 #fff,
          0 0 100px 0 #fff,
          0 0 25px 0 #fff,
          0 0 10px 0 #fff;
        animation: pulseGlow 2s ease-in-out infinite;

        &:before {
          content: '';
          position: absolute;
          inset: 0;
          border-radius: inherit;
          box-shadow: inset 0 0 10px 2px #ffffff99;
          opacity: 0;
          transition: opacity 0.3s ease;
          pointer-events: none;
        }

        &:hover:before {
          opacity: 1;
        }
      }

      .clickMeBox {
        position: absolute;
        bottom: calc(50% + 40px);
        left: 50%;
        width: 90px;
        display: flex;
      }

      .click-arrow {
        align-self: flex-end;
        width: 30px;
      }

      .click-me {
        margin: 0 0 20px 10px;
        width: 60px;
      }
    }

    @media screen and (min-width: 768px) {
      .imageCol {
        .picHolder {
          aspect-ratio: 600 / 249;
        }

        svg {
          transform: translateY(-25%);
          width: 100%;
        }
      }
    }
    @media screen and (max-width: 767px) {
      .imageCol {
        margin: 0 -20px;

        .picHolder {
          aspect-ratio: 300 / 249;
        }

        .picHolder:first-of-type svg {
          margin-left: -100%;
        }

        svg {
          transform: translateY(-25%);
          width: 200%;
        }
      }
    }
    @media screen and (max-width: 639px) {
      .imageCol {
        margin: 0 -16px;
      }
    }
  }
}

/* BOX 12 _______________________________*/

.box12 {
  border: 1px solid var(--gray-50);
  border-width: 1px 0;
  position: relative;

  @media screen and (min-width: 720px) {
    min-height: 0;
  }

  .patternBox {
    position: absolute;
    inset: 0;
  }

  .content {
    display: flex;
    flex-grow: 1;
    padding: 1.75rem 10px;

    .contentCol {
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: left;

      h2 {
        text-align: left;

        @media screen and (max-width: 767px) {
          line-height: 1.1em;
        }
      }

      p {
        font-size: 1.25rem;
      }

      form {
        display: flex;
        margin-top: 1.25rem;
        position: relative;
      }

      input {
        background: var(--theme);
        border: 1px solid var(--gray-200);
        border-width: 1px 0 1px 1px;
        border-radius: 20px 0 0 20px;
        color: var(--text-clr);
        height: 40px;
        line-height: 40px;
        padding: 0 15px;
        width: 253px;

        &::placeholder {
          color: var(--gray-200);
        }
      }

      .error {
        display: none;
        color: #ff4d4f;
        gap: 10px;
        margin-top: 10px;
        padding: 6px;
      }

      .email_success {
        color: var(--primary-5);
        display: none;
        gap: 10;
        margin-top: 1.25rem;
        justify-content: flex-start;
        align-items: center;
        height: 40px;
      }

      button {
        background: var(--primary-6);
        border-radius: 0 20px 20px 0;
        color: var(--theme);
        cursor: pointer;
        height: 40px;
        line-height: 40px;
        padding: 0 15px;
        display: inline-flex;
        gap: 6px;
        align-items: center;
        transition: 0.2s;

        &:hover {
          background: var(--primary-7);
        }
      }

      #emailForm #spinner {
        display: none;
        width: 24px;
        height: 24px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        border-top-color: #fff;
        margin-right: -7px;
        animation: spin 1s ease-in-out infinite;
        -webkit-animation: spin 1s ease-in-out infinite;
      }

      #emailForm.loading #spinner {
        display: block;
      }

      @keyframes spin {
        to {
          -webkit-transform: rotate(360deg);
        }
      }
      @-webkit-keyframes spin {
        to {
          -webkit-transform: rotate(360deg);
        }
      }
    }

    .imageCol {
      display: flex;
      align-items: center;
      justify-content: flex-end;

      @media screen and (max-width: 767px) {
        display: none;
      }

      img {
        max-width: 300px;
      }
    }

    @media screen and (min-width: 768px) {
      padding: 1.75rem 20px;

      > div {
        width: 50%;
      }
    }
    @media screen and (max-width: 767px) {
      flex-direction: column;
    }

    @media screen and (max-width: 639px) {
      .contentCol {
        h2,
        p {
          text-align: center;
        }

        form {
          margin: 1.25rem auto 0;
        }
      }
    }
  }
}

footer {
  background: var(--gray-25);

  section {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
  }

  .row1 {
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-grow: 1;
    padding: 20px 0;

    .logoBox {
      display: flex;
      flex-direction: column;
      padding-top: 55px;
      width: 50%;

      .logoHolder {
        color: var(--text-clr);
      }
    }

    nav {
      width: 50%;

      ul {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        column-gap: 4rem;
        padding: 0;
        margin: 0;
        list-style: none;

        li {
          display: flex;
          flex-direction: column;
          gap: 0.5rem;
          margin-bottom: 0.5rem;

          a,
          span,
          button {
            color: inherit;
            cursor: pointer;
            white-space: nowrap;

            &:hover {
              color: var(--primary-7);
              text-decoration: underline;
              transition: text-decoration 0.3s ease;
            }
          }
        }
      }
    }

    @media screen and (max-width: 767px) {
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-start;

      .logoBox {
        padding-top: 0;
        width: auto;
      }

      nav {
        margin-top: 20px;
        width: auto;
      }
    }
  }

  .row2 {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5rem 0;

    p {
      opacity: 0.6;
      margin: 0;
    }

    .socials {
      color: var(--gray-600);
      display: flex;
      gap: 1.15rem;

      a:hover {
        color: var(--primary-7);
      }
    }
  }
}

/* Unsubscrive Status */
#unsubscribeStatus {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  inset: 0;
  z-index: 1000;

  display: none;
  align-items: center;
  justify-content: center;

  .msg {
    background: var(--theme);
    box-shadow: 0 0 10px #00000033;
    display: none;
    padding: 20px;
    gap: 10px;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    min-width: 280px;
    border-radius: 10px;
    position: relative;

    &:before {
      box-shadow: 0 0 7px #00000033;
      border-radius: 10px;
      content: '';
      height: calc(100% + 20px);
      width: calc(100% - 20px);
      position: absolute;
      top: -10px;
      left: 10px;
      z-index: -1;
    }

    &#unsubscribeSuccess {
      color: var(--primary-6);

      &:before {
        background-color: var(--primary-6);
      }
    }

    &#unsubscribeError {
      color: #ff4d4f;

      &:before {
        background-color: #ff4d4f;
      }
    }
  }
}

#notificationTimer {
  circle {
    animation: countdownStroke 3s linear forwards;
  }
}

@keyframes countdownStroke {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: 113;
  }
}

/* ANIMATIONS */
@keyframes drift {
  from {
    transform: rotate(0deg);
  }
  from {
    transform: rotate(360deg);
  }
}

@keyframes anim {
  0% {
    -webkit-transform: scale(0, 0) rotateZ(-90deg);
    transform: scale(0, 0) rotateZ(-90deg);
    opacity: 0;
  }
  30% {
    -webkit-transform: scale(1, 1) rotateZ(0deg);
    transform: scale(1, 1) rotateZ(0deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1, 1) rotateZ(0deg);
    transform: scale(1, 1) rotateZ(0deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(0, 0) rotateZ(90deg);
    transform: scale(0, 0) rotateZ(90deg);
    opacity: 0;
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow:
      0 0 250px 0 #fff,
      0 0 100px 0 #fff,
      0 0 25px 0 #fff,
      0 0 10px 0 #fff;
  }
  50% {
    box-shadow:
      0 0 300px 10px #fff,
      0 0 150px 10px #fff,
      0 0 40px 5px #fff,
      0 0 20px 5px #fff;
  }
}

/* Squares Grid */
.gridSquare-overlay {
  position: absolute;
  content: '';
  bottom: 0;
  right: 0;
  width: 140px;
  height: 220px;
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 0.4s ease;

  .gridSquare {
    opacity: 0;
    transition: opacity 0.3s ease;
  }
}

@keyframes fadeCycle {
  0% {
    opacity: 0;
  }
  33.33% {
    opacity: 1;
  }
  66.66% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOnce {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* SPINNER */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--gray-100);
  border-top: 4px solid var(--primary-6);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.spinner-hidden {
  display: none;
}

/* Animation */
.box11 .routes path {
  fill: none;
  stroke-width: 2;
  filter: blur(0.4px);
}

/* base pages */
.layout_sideBar {
  display: flex;
  flex-grow: 1;
  gap: 24px;
  margin: 0 auto;
  padding: 60px 20px 0;
  max-width: 1200px;
  text-align: left;

  aside {
    border: 1px solid var(--gray-100);
    border-width: 0 1px;
    width: 282px;
    flex-shrink: 0;

    nav {
      font-weight: 600;
      padding: 50px 20px;
    }

    ul li {
      border-bottom: 1px solid var(--gray-100);

      a {
        color: var(--text-clr);
        display: block;
        padding: 20px 0;
        position: relative;

        &:after {
          background: transparent;
          content: '';
          height: 100%;
          width: 1px;
          position: absolute;
          top: 0;
          left: -21px;
        }

        &:hover {
          color: var(--text-clr2);

          &:after {
            background: var(--gray-300);
          }
        }
      }

      &.selected {
        a {
          color: var(--primary-7);
          cursor: default;
          pointer-events: none;

          &:after {
            background: var(--primary-5);
          }
        }
      }
    }
  }

  .layout_content {
    flex-grow: 1;
    padding: 50px 0 30px;

    h1 {
      font-size: 2.375rem;
    }

    h4 {
      font-size: 1rem;
    }

    p {
      margin-bottom: 24px;
    }

    ul {
      list-style: disc outside;
      margin: 0 0 24px 20px;
    }

    a {
      color: var(--primary-7);
      text-decoration: underline;

      &:hover {
        color: var(--text-clr);
        text-decoration: none;
      }
    }

    .last_updated {
      border-bottom: 1px dashed var(--gray-200);
      color: var(--gray-600);
      font-size: 13px;
      margin-bottom: 24px;
      padding-bottom: 24px;
      text-transform: uppercase;
    }
  }

  @media screen and (max-width: 767px) {
    padding-top: 30px;
    gap: 0;
    flex-direction: column;

    aside {
      border-width: 0;
      margin: 0 -20px;
      width: auto;

      ul li a:after {
        width: 3px;
        left: -20px;
      }
    }

    .layout_content {
      padding-top: 0;
    }
  }
}

/* COOKIE ______________ */
.cookieModal {
  background: var(--theme);
  border-radius: var(--border-rad);
  border: 1px solid var(--gray-50, #f3f3f3);
  box-shadow:
    0 6px 16px 0 rgba(0, 0, 0, 0.08),
    0 3px 6px -4px rgba(0, 0, 0, 0.12),
    0 9px 28px 8px rgba(0, 0, 0, 0.05);
  max-width: 90%;
  padding: 0;
  text-align: left;

  display: flex;
  flex-direction: column;
  max-height: 100%;

  position: fixed;
  z-index: 1001;

  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;

  visibility: hidden;
  pointer-events: none;

  @media screen and (max-width: 639px) {
    max-width: 100%;
    right: 0 !important;
    bottom: 0 !important;
  }

  &[open] {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  &.screenMain {
    margin: 0;
    width: 640px;
    bottom: 40px;
    right: 20px;
    top: auto;
    left: auto;
  }

  > header {
    padding: 32px 20px 0;

    h2 {
      display: flex;
      gap: 10px;
      margin-bottom: 0;

      img {
        height: 46px;
      }
    }
  }

  > main {
    color: var(--text-clr2);
    overflow: auto;
    padding: 20px;

    > p {
      font-size: 1.25rem;
    }

    a {
      color: var(--primary-7);
      transition: color 0.3s;

      &:hover {
        color: var(--primary-5);
        text-decoration: underline;
      }
    }

    .switcher_group {
      border-top: 1px solid var(--gray-100);
      display: flex;
      flex-wrap: wrap;
      gap: 32px;
      margin-top: 32px;
      padding-top: 32px;
    }

    .switcher {
      flex: 1 1 calc(50% - 32px);
      min-width: 240px;

      .head {
        display: flex;
        flex-direction: column;
        font-weight: 600;
        margin-bottom: 10px;
      }

      input[type='checkbox'] + label {
        color: var(--text-clr);
        cursor: pointer;
        position: relative;
        padding-left: 55px;

        &:before {
          background: var(--gray-100);
          border-radius: 11px;
          content: '';
          height: 22px;
          width: 44px;

          position: absolute;
          top: 0;
          left: 0;
        }

        &:after {
          background: var(--theme);
          border-radius: 50%;
          box-shadow: 0 2px 4px rgba(0, 35, 11, 0.2);
          content: '';
          height: 18px;
          width: 18px;

          position: absolute;
          top: 2px;
          left: 2px;

          transition: left 0.3s;
        }
      }

      input[type='checkbox']:checked + label {
        &:before {
          background: var(--primary-6);
        }

        &:after {
          left: 24px;
        }
      }

      input[type='checkbox']:disabled + label {
        opacity: 0.7;
        cursor: not-allowed;
      }

      input[type='checkbox']:focus + label {
        &:before {
          outline: 2px solid var(--primary-5);
          outline-offset: 2px;
        }
      }
    }
  }

  > footer {
    background: var(--gray-50);
    border-radius: 0 0 var(--border-rad) var(--border-rad);
    justify-content: space-between;
    padding: 24px 20px;

    .btn {
      min-width: 140px;
      justify-content: center;
    }

    @media screen and (max-width: 639px) {
      .btn_group {
        flex-direction: column;
        flex-grow: 1;
      }

      .btn {
        display: flex;
        width: 100%;
      }
    }
  }
}
