.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_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.3vw, 22px);
  color: #ffffff99;
}

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

.mch_section-first-content {
  display: flex;
  flex-direction: column;
  gap: 3vw;
  padding: 3% 0;
}

.mch_section-first-item {
  display: flex;
  flex-direction: column;
  gap: 2vw;
}

.mch_section-first-item:nth-child(2),
.mch_section-first-item:nth-child(3),
.mch_section-first-item:nth-child(4),
.mch_section-first-item:nth-child(6) {
  padding: 0 3%;
}

.mch_section-first-title {
  padding: 0 3%;
  text-align: center;
}

.mch_section-first-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2vw;
}

.mch_section-first-block {
  display: flex;
  flex-direction: column;
  gap: 2vw;
  padding: 3%;
  background: #1e191a;
  border: 1px #fff solid;
  border-radius: 10px;
  justify-content: space-between;
}

.mch_section-first-block:nth-child(2) {
  background: #051122;
}

.mch_section-first-block:last-child {
  background: #1a1213;
}

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

.mch_section-first-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
}

.mch_section-first-container {
  display: flex;
  flex-direction: column;
  gap: 3vw;
  padding: 0 3%;
}

.mch_section-first-container .mch_section-first-contain:nth-child(2) .mch_section-first-cont {
  order: -1;
}

.mch_section-first-container .mch_section-first-contain:last-child {
  padding: 0;
}

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

.mch_section-first-contain:last-child {
  padding: 0 3%;
}

.mch_section-first-cont {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

@media screen and (max-width: 640px) {
  .mch_section-first-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .mch_section-first-block {
    width: calc(50% - 2vw);
  }

  .mch_section-first-container .mch_section-first-contain .mch_section-first-cont {
    order: -1;
  }

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

@media screen and (max-width: 480px) {
  .mch_section-first-block {
    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;
  }
}