.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;
  aspect-ratio: 560 / 315;
}

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

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

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

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

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

.mch_empty {
  font-size: clamp(12px, 1.2vw, 22px);
}

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

.mch_section-first-text {
  display: flex;
  flex-direction: column;
  gap: 3vw;
  max-width: 40%;
  color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  padding: 0 3%;
}

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

.mch_section-second .mch_title {
  text-align: center;
  padding: 0 3%;
}

.mch_section-second-items {
  background: url(https://files.foxtrot.com.ua/StaticContent/Ext/foxtrot/PHILIPS/STH7030_10/image/picture2.png) center / cover no-repeat;
  padding: 3%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2% 25%;
  min-height: clamp(400px, 45vw, 700px);
}

.mch_section-second-item {
  display: flex;
  flex-direction: column;
  gap: 5%;
  color: #fff;
  justify-content: space-between;
}

.mch_section-second-block {
  display: flex;
  align-items: center;
  gap: 5%;
}

.mch_section-second-icon {
  max-width: 23%;
  flex-shrink: 0;
}

.mch_section-second-picture {
  display: none;
}

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

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

.mch_section-third-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
  padding: 0 3%;
}

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

.mch_section-fourth-content {
  display: flex;
  flex-direction: column;
  gap: 2vw;
}

.mch_section-fourth .mch_title {
  text-align: center;
}

.mch_section-fourth .mch_subtitle {
  cursor: pointer;
  transition: 0.3s;
}

.mch_section-fourth .mch_caption {
  padding: 2% 0;
}

.mch_section-fourth-items {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

@media screen and (max-width: 768px) {
  .mch_section-second-items {
    background: none;
    min-height: auto;
    gap: 3vw;
    padding: 0 3%;
  }

  .mch_section-second-item {
    color: #000;
    gap: 2vw;
  }

  .mch_section-second-icon {
    -webkit-filter: invert(1);
    filter: invert(1);
  }

  .mch_section-second-picture {
    display: block;
  }
}

@media screen and (max-width: 540px) {
  .mch_section-first-content {
    display: flex;
    flex-direction: column;
    gap: 2vw;
  }

  .mch_section-first-text {
    color: #000;
    position: static;
    max-width: initial;
    -webkit-transform: none;
    transform: none;
    padding: 3% 3% 0;
    text-align: center;
    gap: 1vw;
  }
}

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

  .mch_section-second-icon {
    max-width: 20%;
  }
}

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