.mm-image-with-details-wrapper {
  background-color: #F2EDE6;

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

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

  .mm-left-wrapper {
    position: relative;
  }

  .mm-details {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 1;
    padding: 0 20px;
    text-align: center;
    color: #fff;
    max-width: 580px;
  }

  .mm-icon {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    max-width: 70px;
  }

  .mm-details h2 {
    color: #F2EDE6;
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    line-height: 120%;
    text-transform: uppercase;
  }

  .mm-description {
    color: #DADADA;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.56px;

    strong {
      color: #fff;
    }
  }

  .mm-button {
    color: #333;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    border-radius: 8px;
    background: #F2EDE6;
    padding: 12px 50px;
  }

  .mm-right-wrapper {
    padding: 30px 20px 0;
  }

  .mm-detail-text {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
  }

  .mm-detail-icon {
    max-width: 42px;
  }

  .detail-heading {
    color: #2C2B2C;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: -0.56px;
    margin-bottom: 0;
  }

  .mm-detail-description {
    color: rgba(44, 43, 44, 0.60);
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.56px;
  }

  @media (min-width: 992px) {
    padding-bottom: 60px;
    .id-inner-wrapper {
      display: flex;
      gap: 50px;

      >div {
        width: 50%;
      }
    }

    .mm-right-wrapper {
      align-content: center;
    }

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

    .detail-heading {
      font-size: 24px;
    }

    .mm-detail-description {
      font-size: 18px;
    }

    .mm-image {
      height: 100%;
    }

    .mm-image-desktop {
      display: block;
      height: 100%;
      object-fit: cover;
    }

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

    .mm-icon {
      max-width: 110px;
    }
  }

  @media (min-width: 1200px) {
    .mm-details h2 {
      font-size: 56px;
    }

    .mm-description {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .mm-button {
      font-size: 18px;
    }

    .mm-detail-text {
      gap: 20px;
    }

    .mm-detail:not(:last-child) {
      margin-bottom: 30px;
    }
  }
}