.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(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-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2vw;
  position: relative;
}

.mch_section-first-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: #024AD8;
  height: 100px;
  width: 30%;
  -webkit-clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.mch_section-first-item {
  display: flex;
  flex-direction: column;
  gap: 2vw;
  text-align: end;
  align-items: flex-end;
  padding: 3% 3% 110px 3%;
}

.mch_section-first-logo {
  width: 75px;
}

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

.mch_section-first-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2vw;
  align-items: center;
  padding: 3%;
  position: relative;
}

.mch_section-first-items::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 120px;
  height: 100%;
  background: #024AD8;
  -webkit-clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
}

.mch_section-first-items::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 50%;
  background: #024AD8;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%);
}

.mch_section-first-items .mch_section-first-picture {
  z-index: 11;
}

.mch_section-first-items .mch_section-first-text {
  padding: 30px 0 0 40px;
}

.mch_section-first-block {
  display: flex;
  gap: 1vw;
}

.mch_section-first-icon {
  flex-shrink: 0;
  max-width: 40%;
}

.mch_section-first-list {
  padding-left: 3%;
}

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

.mch_section-first-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2vw;
  align-items: center;
  position: relative;
  padding: 3%;
}

.mch_section-first-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: #024AD8;
  height: 100px;
  width: 30%;
  -webkit-clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.mch_section-first-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 300px;
  height: 100%;
  background: #024AD8;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 52% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 0%, 52% 100%, 0% 100%);
}

.mch_section-first-box .mch_section-first-picture {
  z-index: 11;
}

.mch_section-first-box .mch_section-first-text {
  padding-bottom: 110px;
}

.mch_section-first-container {
  padding: 3%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2vw;
  align-items: center;
  position: relative;
}

.mch_section-first-container .mch_section-first-text {
  padding-bottom: 110px;
}

.mch_section-first-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: #024AD8;
  height: 100px;
  width: 30%;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
}

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

  .mch_mobile {
    display: block;
  }

  .mch_section-first-content::after {
    width: 75%;
  }

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

  .mch_section-first-item {
    text-align: start;
  }

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

  .mch_section-first-logo {
    position: absolute;
    top: 0;
    right: 0;
    padding: 3%;
  }

  .mch_section-first-items::after {
    height: 50%;
  }

  .mch_section-first-items::before {
    height: 25%;
  }

  .mch_section-first-items .mch_section-first-text {
    padding: 0;
  }

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

  .mch_section-first-block {
    flex-direction: column;
    padding: 40px 0 0 60px;
  }

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

  .mch_section-first-box::after {
    -webkit-clip-path: polygon(100% -15%, 100% 100%, 0% 100%);
    clip-path: polygon(100% -15%, 100% 100%, 0% 100%);
    height: 50%;
    width: 20%;
  }

  .mch_section-first-box::before {
    height: 75vw;
    width: 50vw;
  }

  .mch_section-first-box .mch_section-first-text {
    padding: 0 120px 0 0;
  }

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

  .mch_section-first-container .mch_section-first-text {
    padding: 0 0 0 80px;
  }

  .mch_section-first-container::after {
    left: 0;
    bottom: initial;
    top: 0;
    width: 100px;
    height: 25%;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%);
  }

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

@media screen and (max-width: 480px) {
  .mch_section-first-icon {
    max-width: 30%;
  }

  .mch_section-first-box .mch_section-first-text {
    padding: 0 80px 0 0;
  }

  .mch_section-first-container .mch_section-first-text {
    padding: 0 0 0 60px;
  }

  .mch_section-first-container::after {
    width: 70px;
  }
}

@media screen and (max-width: 380px) {
  .mch_section-first-box .mch_section-first-text {
    padding: 0 60px 0 0;
  }
}

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