section {
  padding: clamp(90px, 13.94vw, 200px) 0 40px;
  position: relative;
  text-align: center;
  overflow-x: hidden;
}
@media all and (max-width: 750px) {
  section {
    padding: clamp(70px, 13.94vw, 200px) 0 0px;
  }
}
section .section_title_inner {
  background: #444444;
  color: #fff;
  padding: 0px 20px;
  font-size: clamp(15px, 2vw, 30px);
  z-index: 1;
  position: relative;
}
@media all and (max-width: 750px) {
  section .section_title_inner {
    padding: 2px 5px;
  }
}
section::before {
  content: "COMPANY";
  position: absolute;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: #EEEEEE;
  top: 84px;
  left: 0;
  width: 100%;
  font-size: clamp(49px, 10vw, 131px);
  z-index: 0;
  white-space: nowrap;
}
@media all and (max-width: 750px) {
  section::before {
    top: 34px;
  }
}
section.environment::before, section.communication::before {
  color: #EEEEEE;
}
section.environment::before {
  content: "ENVIRONMENT";
}
section.healthcare {
  background: #EEEEEE;
}
section.healthcare::before {
  content: "HEALTH CARE";
  color: #fff;
}
section.communication::before {
  content: "COMMUNICATION";
}

.section_header_image {
  margin-top: 60px;
}
@media all and (max-width: 750px) {
  .section_header_image {
    margin-top: 30px;
  }
}

.section_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  padding: 60px 0;
}
@media all and (max-width: 750px) {
  .section_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.section_list_item {
  border-radius: 30px;
  background: #57CCB1;
  padding: 30px;
  position: relative;
}
@media all and (min-width: 751px) {
  .section_list_item {
    border-radius: 60px;
    padding: 50px;
    width: calc(50% - 20px);
  }
}

.section_list_item_title {
  position: absolute;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media all and (max-width: 750px) {
  .section_list_item_title {
    top: 15px;
  }
}
.section_list_item_title span {
  display: block;
  background: #fff;
  font-size: clamp(16px, 2vw, 28px);
  padding: 2px 10px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section_list_item_description {
  color: #fff;
  font-size: clamp(12px, 1.5vw, 18px);
  text-align: left;
  margin-top: 20px;
  font-weight: 600;
  line-height: 1.8;
}