.mch_wrapper * {
  box-sizing: border-box;
  font-family: foxtrot, sans-serif, serif;
  line-height: 1.5;
}

.mch_image {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.mch_text-bold {
  font-weight: 700;
}

.mch_desktop {
  display: block;
}

.mch_mobile {
  display: none;
}

.mch_text {
  display: flex;
  flex-direction: column;
  gap: 2vw;
  padding: 5%;
  text-align: center;
}

.mch_title {
  font-size: clamp(16px, 2.5vw, 56px);
}

.mch_subtitle {
  font-size: clamp(14px, 2vw, 40px);
}

.mch_section {
  width: 100%;
  position: relative;
}

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

  .mch_mobile {
    display: block;
  }
}

@media screen and (max-width: 375px) {
  .mch_image-container-flex {
    display: flex;
  }

  .mch_image-container-flex > p {
    display: flex;
  }

  .mch_image--cover {
    -o-object-fit: cover;
    object-fit: cover;
  }
}