.mm-list-with-image-wrapper {
  * {
    letter-spacing: 0;
    font-family: var(--font-poppins);
  }

  img {
    width: 100%;
    height: auto;
  }

  .container {
    padding: 0 20px;
    max-width: 1320px;
    margin: 0 auto;
  }

  .icon {
    max-width: 50px;
    display: block;
    margin: 0 auto 24px;
  }

  .heading {
    text-align: center;
    font-family: var(--font-larken);
    color: #072165;
    font-size: 32px;
    line-height: 130%;
    font-weight: 500;
  }

  .description {
    text-align: center;
    color: #072165;
    font-weight: 300;
    font-size: 14px;

    p {
      margin: 0;
    }
  }

  .list-header {
    margin-bottom: 40px;
  }

  .li-inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 60px;
  }

  .image-wrapper>div {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
  }

  .image-wrapper .image-desktop {
    display: none;
  }

  .list-item {
    text-align: center;
    margin-bottom: 44px;
  }

  .list-item:last-child {
    margin-bottom: 0;
  }

  .list-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
  }

  .list-count {
    font-size: 24px;
    color: #072165;
    font-family: var(--font-larken);
    border: 1px solid #072165;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .list-title {
    color: #072165;
    font-family: var(--font-larken);
    margin: 0;
    font-size: 24px;
    font-weight: 500;
  }

  .list-description {
    color: #072165;
    font-size: 14px;
  }

  @media (min-width: 992px) {
    .list-header {
      max-width: 890px;
      margin: 0 auto 70px;
    }

    .icon {
      max-width: 70px;
    }

    .heading {
      font-size: 48px;
      margin: 16px 0 20px;
    }

    .description {
      font-size: 16px;
    }

    .li-inner {
      flex-direction: row;

      > div {
        width: 50%;
      }
    }

    .image-wrapper .image-desktop {
      display: flex;

      img {
        object-fit: cover;
      }
    }

    .image-wrapper,
    .image-desktop {
      height: 100%;
    }

    .image-wrapper .image-mobile {
      display: none;
    }

    .list-item {
      text-align: left;
      max-width: 550px;
    }

    .list-top {
      align-items: center;
      flex-direction: row;
      justify-content: flex-start;
      gap: 20px;
    }
  }

  @media (min-width: 1200px) {
    .list-top {
      margin-bottom: 24px;
    }

    .list-description {
      font-size: 16px;
    }

    .list-title {
      font-size: 28px;
    }

    .list-count {
      font-size: 28px;
      width: 50px;
      height: 50px;
    }
  }
}