.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_desktop {
  display: block;
}

.mch_mobile {
  display: none;
}

.mch_sup {
  display: inline;
  font-size: clamp(8px, 1vw, 14px);
  vertical-align: super;
}

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

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

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

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

.mch_caption {
  font-size: clamp(10px, 1.5vw, 26px);
}

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

.mch_section-first-content {
  display: flex;
  flex-direction: column;
}

.mch_section-first-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mch_section-first-items:nth-child(2) .mch_section-first-item {
  order: 1;
}

.mch_section-first-items:first-child .mch_section-first-block {
  padding: 3%;
}

.mch_section-first-item {
  display: flex;
  flex-direction: column;
  background: #FFD9B4;
  justify-content: space-between;
}

.mch_section-first .mch_title {
  background: #FE8202;
  padding: 3%;
}

.mch_section-first .mch_subtitle {
  background: #FFA54C;
  padding: 3%;
}

.mch_section-first-block {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  padding: 3% 3% 3% 6%;
  background: #FFC081;
}

.mch_section-first-link {
  list-style-type: disc;
}

.mch_section-first-logo {
  max-width: 15%;
  padding: 3%;
}

.mch_section-first-text {
  display: flex;
  flex-direction: column;
}

.mch_section-first-container {
  display: flex;
  flex-direction: column;
}

.mch_section-first-contain {
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.2fr;
  background: #ffd9b4;
}

.mch_section-first-contain .mch_title {
  background: #FE8202;
  padding: 3%;
  display: flex;
  align-items: center;
}

.mch_section-first-contain .mch_caption {
  background: #FFA54C;
  padding: 3%;
  display: flex;
  align-items: center;
}

.mch_section-first-contain .mch_section-first-logo {
  background: #ffd9b4;
  padding: 15%;
  max-width: initial;
}

.mch_section-first-pictures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1vw;
  padding: 1%;
}

.mch_section-first-fraction {
  padding: 1%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1vw;
}

.mch_section-first-box {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  width: calc(33.3% - 1vw);
}

.mch_section-first-box .mch_section-first-block {
  background: none;
}

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

  .mch_mobile {
    display: block;
  }

  .mch_section-first-items {
    grid-template-columns: 1fr;
  }

  .mch_section-first-items:nth-child(2) .mch_section-first-item {
    order: 0;
  }

  .mch_section-first-contain {
    grid-template-columns: 1fr;
  }

  .mch_section-first-contain .mch_section-first-logo {
    max-width: 15%;
    padding: 3%;
  }

  .mch_section-first-box {
    width: calc(50% - 1vw);
  }
}

@media screen and (max-width: 480px) {
  .mch_section-first-pictures {
    grid-template-columns: 1fr;
  }

  .mch_section-first-box {
    width: 100%;
  }
}

@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;
  }
}