.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_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_section {
  width: 100%;
  position: relative;
}

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

.mch_section-first-items {
  display: flex;
  flex-direction: column;
  gap: 3vw;
  position: relative;
}

.mch_section-first-text {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 346px;
  background: #fff;
  color: #000;
  padding: 10px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.mch_section-first-block {
  position: absolute;
  width: 30px;
  height: 30px;
  left: calc(26.5% - 18px);
  top: calc(15% - 18px);
}

.mch_section-first-block:nth-child(3) {
  top: calc(33% - 18px);
}

.mch_section-first-block:nth-child(4) {
  top: calc(49% - 18px);
  left: calc(31.5% - 18px);
}

.mch_section-first-block:hover::after {
  background: rgba(50, 150, 255);
}

.mch_section-first-block:hover .mch_section-first-text {
  opacity: 1;
  visibility: visible;
}

.mch_section-first-block::after {
  content: "";
  display: block;
  border: 2px solid #fff;
  background: rgba(145, 145, 145);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  outline-style: none;
  cursor: pointer;
}

.mch_section-first-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: 50%;
  text-align: center;
  padding: 0 5%;
}

.mch_section-first-caption {
  font-size: clamp(8px, 1.2vw, 22px);
  color: #ffffffb5;
}

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

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

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

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

.mch_section-second-item:nth-child(2) .mch_section-second-picture {
  order: -1;
}

.mch_section-second-item:last-child .mch_section-second-picture {
  max-width: initial;
}

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

.mch_section-second-caption {
  font-size: clamp(8px, 1.2vw, 22px);
  color: #ffffffb5;
}

.mch_section-second-picture {
  max-width: 60%;
  margin: 0 auto;
}

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

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

.mch_section-third-items:first-child .mch_section-third-text {
  padding: 0 3%;
}

.mch_section-third-items:first-child .mch_section-third-picture {
  position: relative;
}

.mch_section-third-items:first-child .mch_section-third-picture::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5%;
  background: radial-gradient(circle, #c87d55 0%, #dba27b 100%);
}

.mch_section-third-items:last-child {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2vw;
  padding: 0 3%;
}

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

.mch_section-third-title {
  background: radial-gradient(circle, #c87d55 0%, #dba27b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.mch_section-third-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2vw;
}

.mch_section-third-box {
  display: flex;
  gap: 1vw;
}

.mch_section-third-icon {
  max-width: 30%;
  flex-shrink: 0;
}

.mch_section-third-caption {
  font-size: clamp(8px, 1.2vw, 22px);
  color: #ffffffb5;
}

@media screen and (max-width: 1440px) {
  .mch_section-first-block:nth-child(4) {
    top: calc(55% - 18px);
  }
}

@media screen and (max-width: 768px) {
  .mch_section-first-block {
    width: 20px;
    height: 20px;
    left: calc(27.5% - 18px);
  }
}

@media screen and (max-width: 640px) {
  .mch_section-third-items:last-child {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 570px) {
  .mch_section-first-block:nth-child(4) {
    left: calc(32.5% - 18px);
    top: calc(50% - 18px);
  }
}

@media screen and (max-width: 550px) {
  .mch_section-first-text {
    width: 300px;
  }
}

@media screen and (max-width: 480px) {
  .mch_section-first-text {
    width: 250px;
  }

  .mch_section-first-block {
    width: 15px;
    height: 15px;
    left: calc(28.5% - 18px);
  }

  .mch_section-first-block:nth-child(4) {
    left: calc(33.5% - 18px);
    top: calc(54% - 18px);
  }

  .mch_section-first-box {
    margin-left: 30%;
  }

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

  .mch_section-second-item:nth-child(2) .mch_section-second-picture {
    order: 0;
  }

  .mch_section-third-block {
    grid-template-columns: 1fr;
  }

  .mch_section-third-icon {
    max-width: 15%;
  }
}

@media screen and (max-width: 460px) {
  .mch_section-first-block:nth-child(4) {
    top: calc(52% - 18px);
  }
}

@media screen and (max-width: 405px) {
  .mch_section-first-text {
    width: 200px;
  }
}

@media screen and (max-width: 380px) {
  .mch_section-first-block:nth-child(4) {
    top: calc(48% - 18px);
  }
}

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

@media screen and (max-width: 345px) {
  .mch_section-first-block:nth-child(4) {
    top: calc(45% - 18px);
  }
}

@media screen and (max-width: 330px) {
  .mch_section-first-text {
    width: 150px;
  }

  .mch_section-first-block {
    width: 10px;
    height: 10px;
    left: calc(31.5% - 18px);
  }

  .mch_section-first-block:nth-child(3) {
    top: calc(28% - 18px);
  }

  .mch_section-first-block:nth-child(4) {
    top: calc(43% - 18px);
    left: calc(35.5% - 18px);
  }
}

@media screen and (max-width: 300px) {
  .mch_section-first-block:nth-child(4) {
    top: calc(40% - 18px);
  }
}