section.section__look_closer {
  background-color: #151c23;
  padding: 70px 0;
  max-width: unset;
}

section.section__look_closer .layout {
  max-width: 1280px;
  padding: 0 70px;
  margin: 0 auto;
}

@media screen and (max-width: 800px) {
  section.section__look_closer .layout {
    padding: 0 20px;
  }
}

section.section__look_closer .layout .header {
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  color: var(--white-color);
}

@media screen and (max-width: 800px) {
  section.section__look_closer .layout .header {
    font-size: 30px;
    line-height: 40px;
  }
}

section.section__look_closer .layout .list {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  column-gap: 20px;
}

@media screen and (max-width: 800px) {
  section.section__look_closer .layout .list {
    flex-direction: column;
    margin-top: 30px;
    row-gap: 20px;
  }
}

section.section__look_closer .layout .list .item {
  width: calc(50% - 10px);
  background-color: var(--white-color);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

@media screen and (max-width: 800px) {
  section.section__look_closer .layout .list .item {
    width: 100%;
  }
}

@media screen and (max-width: 576px) {
  section.section__look_closer .layout .list .item {
    flex-direction: column-reverse;
  }
}

section.section__look_closer .layout .list .item.item2 {
  width: 100%;
}

section.section__look_closer .layout .list .item .left .title {
  font-size: 18px;
  line-height: 32px;
  font-weight: 700;
  color: #999999;
}

@media screen and (max-width: 576px) {
  section.section__look_closer .layout .list .item .left .title {
    font-size: 16px;
    line-height: 22px;
  }
}

section.section__look_closer .layout .list .item .left .text {
  margin-top: 10px;
  font-size: 22px;
  line-height: 32px;
  color: var(--main-black-color);
}

@media screen and (max-width: 800px) {
  section.section__look_closer .layout .list .item .left .text {
    font-size: 18px;
    line-height: 24px;
  }
}