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

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

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

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

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

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

.mch_caption {
  font-size: clamp(12px, 2vw, 28px);
  text-align: center;
  padding-top: 2%;
}

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

.mch_section-first-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2vw;
  align-items: center;
}

.mch_section-first-text {
  display: flex;
  flex-direction: column;
  gap: 2vw;
  align-items: center;
  padding: 0 2%;
}

.mch_section-second-picture {
  padding: 0 5%;
}

@media screen and (max-width: 768px) {
  .mch_image-container-flex > p {
    display: flex;
    height: 100%;
    width: 100%;
  }

  .mch_image-container-flex > p > img {
    -o-object-fit: cover;
    object-fit: cover;
  }

  .mch_section-first-content {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mch_section-first-text {
    order: -1;
    padding: 5% 2%;
  }
}