.container {
  .install {
    padding: 8.3vw 0;

    .install-title {
      line-height: 117%;
      text-transform: uppercase;
      letter-spacing: -0.01em;
      color: #1A1A1A;
      font-size: 7.4vw;
    }

    .install-subtitle {
      line-height: 160%;
      color: #666;
      margin-top: 1.1vw;
      font-size: 3.7vw;
    }

    .install-list {
      display: flex;
      flex-direction: column;
      gap: 6.4vw;
      justify-content: center;
      align-items: stretch;
      padding-left: 5vw;
      margin-top: 8.5vw;
      list-style: none;
      counter-reset: my-counter;

      li {
        display: flex;
        flex-direction: column;
        gap: 1vw;
        counter-increment: my-counter;

        h3 {
          display: flex;
          align-items: center;
          gap: 1vw;
          font-weight: 500;
          font-size: 3.7vw;
          line-height: 143%;
          color: #1a1a1a;

          &::before {
            content: counter(my-counter);
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #34D07B;
            color: #1A1A1A;
            font-weight: 700;
            font-size: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
          }
        }

        img {
          margin-top: 12px;
        }
      }
    }

    .install-link {
      display: block;
      margin: 3.3vw auto 0;
      cursor: pointer;
      border-radius: 100px;
      font-weight: 700;
      border: 0;
      text-transform: uppercase;
      color: #1A1A1A;
      background: #34D07B;
      transition: background 0.5s, color 0.5s;
      margin-bottom: 8.3vw;
      padding: 3.7vw 7.4vw;
      font-size: 3.7vw;
      text-decoration: none;
      text-align: center;

      &:hover {
        background: #1A1A1A;
        color: #34D07B;
      }
    }
  }
}