.mch_wrapper {
  background: #000;
  color: #fff;
}

.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_empty {
  font-size: clamp(9px, 1.2vw, 22px);
}

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

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

.mch_section-first-items {
  position: relative;
}

.mch_section-first-item {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 3%;
  padding: 3%;
  background: #0000007d;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  max-width: 75%;
  gap: 2vw;
}

.mch_section-first-block {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  text-align: center;
}

.mch_section-first-icon {
  max-width: 55px;
  margin: 0 auto;
}

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

.mch_section-first-contain {
  position: relative;
}

.mch_section-first-contain:first-child .mch_section-first-text {
  max-width: 60%;
  padding: 1%;
  background: #0000007d;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  border-radius: 10px;
  margin: 1%;
}

.mch_section-first-contain:nth-child(2n) .mch_section-first-text {
  right: 0;
  left: initial;
}

.mch_section-first-contain:nth-child(4) .mch_section-first-text,
.mch_section-first-contain:nth-child(6) .mch_section-first-text {
  right: initial;
  left: 0;
}

.mch_section-first-contain:last-child .mch_section-first-text {
  max-width: 60%;
}

.mch_section-first-text {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 55%;
  padding: 2%;
  margin: 2%;
  display: flex;
  flex-direction: column;
  gap: 1vw;
  background: #0000007d;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  border-radius: 10px;
}

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

.mch_section-first-box .mch_section-first-text {
  position: static;
  max-width: initial;
  padding: 3%;
}

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

  .mch_mobile {
    display: block;
  }

  .mch_section-first-item {
    max-width: initial;
  }
}

@media screen and (max-width: 640px) {
  .mch_section-first-item {
    grid-template-columns: repeat(3, 1fr);
    position: static;
    background: none;
    margin: 0;
    border-radius: 0;
  }

  .mch_section-first-contain:first-child .mch_section-first-text {
    border-radius: 0;
    background: none;
    -webkit-backdrop-filter: initial;
    backdrop-filter: initial;
    max-width: initial;
    padding: 3%;
  }

  .mch_section-first-contain:last-child .mch_section-first-text {
    max-width: initial;
  }

  .mch_section-first-text {
    position: static;
    max-width: initial;
    border-radius: 0;
    background: none;
    -webkit-backdrop-filter: initial;
    backdrop-filter: initial;
  }

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

  .mch_section-first-box .mch_section-first-text {
    order: -1;
  }
}

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

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