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

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

.mch_desktop {
  display: block;
}

.mch_mobile {
  display: none;
}

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

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

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

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

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

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

.mch_section-fifth-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2vw;
  padding: 5% 2%;
}

.mch_section-fifth-text {
  display: flex;
  flex-direction: column;
  gap: 2vw;
  justify-content: center;
}

.mch_section-fifth-title {
  font-size: clamp(18px, 2.5vw, 40px);
}

.mch_section-fifth-subtitle {
  font-size: clamp(16px, 2vw, 30px);
}

@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_desktop {
    display: none;
  }

  .mch_mobile {
    display: block;
  }

  .mch_section-fifth-content {
    grid-template-columns: 1fr;
    gap: 5vw;
  }
}