.banner {
  margin-bottom: 200px;

  .container {
    max-width: 1168px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    @media (max-width: 480px) {
      padding: 20px;
    }

    .image-wrapper {
      width: 560px;
      height: 560px;

      @media (max-width: 992px) {
        width: 400px;
        height: 400px;
      }
    }

    .supervisors-choice-millions {
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      color: var(--bright-green);
      padding: 6px 20px;
      background-color: var(--light-green);
      border-radius: 24px;
      border: 1px var(--primary-green) solid;

      @media (max-width: 992px) {
        margin-bottom: 16px;
      }

      @media (max-width: 480px) {
        align-self: flex-start;
        line-height: 100%;
      }
    }

    h1 {
      font-weight: 600;
      font-size: 64px;
      line-height: 72px;
      margin-bottom: 16px;
      text-align: center;

      @media (max-width: 1200px) {
        font-size: 42px;
        line-height: 100%;
      }

      @media (max-width: 992px) {
        font-size: 32px;
        line-height: 100%;
      }

      @media (max-width: 480px) {
        font-size: 24px;
        text-align: start;
        line-height: 100%;
      }
    }

    .description {
      color: var(--gray-text);
      font-family: Montserrat;
      font-weight: 500;
      font-size: 24px;
      line-height: 32px;
      margin-bottom: 64px;

      @media (max-width: 992px) {
        line-height: 100%;
        font-size: 18px;
        margin-bottom: 48px;
      }

      @media (max-width: 480px) {
        align-self: flex-start;
        line-height: 100%;
        font-size: 14px;
      }

      @media (max-width: 360px) {
        align-self: flex-start;
        line-height: 100%;
        font-size: 12px;
      }
    }

    .go-over {
      @media (max-width: 480px) {
        width: 100%;
        padding: 20px 10px;
      }

      @media (max-width: 360px) {
        span {
          font-size: 18px;
        }
      }
    }
  }
}

.advantage {
  margin-bottom: 200px;

  .container {
    display: flex;
    flex-direction: column;
    align-items: center;

    h2 {
      margin-bottom: 64px;
    }
  }
}

.application-areas {
  margin-bottom: 200px;

  .container {
    h2 {
      margin-bottom: 64px;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(2, auto);
      gap: 24px;

      @media (max-width: 1200px) {
        grid-template-columns: repeat(2, 1fr);
      }

      @media (max-width: 768px) {
        grid-template-columns: repeat(1, 1fr);
      }

      .card {
        background-color: #fff;
        border: 1px var(--gray-text) solid;
        border-radius: 12px;
        padding: 32px 16px;

        img {
          margin-bottom: 20px;

          @media (max-width: 992px) {
            margin-bottom: 12px;
          }
        }

        span {
          font-weight: 500;
          font-size: 16px;
          line-height: 24px;
        }
      }
    }
  }
}

.software {
  margin-bottom: 200px;

  .container {
    h2 {
      margin-bottom: 64px;
    }

    .software-wrapper {
      display: flex;
      gap: 24px;

      @media (max-width: 992px) {
        flex-direction: column;
        align-items: center;
      }

      .picture-wrapper {
        display: flex;
        justify-content: center;
        width: 50%;
        height: 360px;
        background-color: #F5F5F5;
        position: relative;
        overflow: hidden;

        @media (max-width: 992px) {
          width: 100%;
        }

        img {
          position: absolute;
          object-fit: cover;
          object-position: center;
          width: auto;
          height: 100%;
        }
      }

      .text-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 50%;

        @media (max-width: 992px) {
          width: 100%;
        }

        .description {
          font-weight: 500;
          font-size: 16px;
          line-height: 24px;
          margin-bottom: 24px;
        }

        a {
          display: flex;
          gap: 12px;
          background-color: var(--primary-blue);
          border-radius: 12px;
          padding: 12px 16px;
          transition: .3s all linear;

          @media (max-width: 768px) {
            width: 100%;
            justify-content: center;
          }

          span {
            color: #fff;
            font-weight: 400;
            font-size: 14px;
            line-height: 20px;
          }
        }

        a:hover {
          transition: .3s all linear;
          background-color: var(--light-blue);
        }
      }
    }
  }
}