.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_text-bold {
  font-weight: 700;
}

.mch_heading {
  font-size: clamp(16px, 3vw, 56px);
  color: #00aeef;
}

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

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

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

.mch_section-second-items {
  display: flex;
  flex-direction: column;
  padding: 3% 0;
}

.mch_section-second-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3vw;
  align-items: center;
}

.mch_section-second-item:nth-child(2n) .mch_section-second-text {
  order: -1;
  padding: 5% 0 5% 5%;
}

.mch_section-second-text {
  display: flex;
  flex-direction: column;
  gap: 2vw;
  padding: 5% 5% 5% 0;
}

.mch_section-third-content {
  display: flex;
  flex-direction: column;
  gap: 3vw;
}

.mch_section-third-block {
  text-align: center;
  padding: 0 3%;
}

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

@media screen and (max-width: 960px) {
  .mch_section-second-items {
    gap: 4vw;
  }

  .mch_section-second-item {
    grid-template-columns: 1fr;
  }

  .mch_section-second-item:nth-child(2n) .mch_section-second-text {
    padding: 0 5%;
  }

  .mch_section-second-text {
    padding: 0 5%;
    order: -1;
  }
}

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

  .mch_section-third-picture {
    width: calc(50% - 2vw);
  }
}

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