:root {
  --h-supply-section-max-width: 1360px;
}

.home_supply {
  display: flex;
  width: 100%;
  justify-content: center;
}

.home_supply_sz {
  display: flex;
  justify-content: center;
  width: calc(100% - 20px);
  max-width: var(--h-supply-section-max-width);
  margin: 100px 0;
}

.home_supply_text_c {
  display: flex;
  width: calc(60% - 10px);
  flex-direction: column;
}

.home_supply_img_c {
  display: flex;
  width: calc(40% - 10px);
  flex-direction: column;
}

.home_supply_title_c {
  color: var(--h-presentation-title-color);
  display: block;
  font-family: 'Industry_Black', sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.1;
  text-align: left;
  text-decoration: none;
  width: 100%;
  position: relative;
  padding-top: 20px;
}

.home_supply_title_c::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: #A1C854;
  border-radius: 2px;
}

.home_supply_img_c .home_supply_img {
  width: 100%;
}

.home_supply_content_c {
  display: block;
  width: 100%;
    color: #4A5568;
    font-family: 'Noto_Regular', sans-serif;
    font-size: 20px;
    line-height: 1.5;
}

/* Styles pour la liste */
.home_supply_content_list {
  padding: 0;
  list-style: none;
}

.home_supply_content_list li {
    position: relative;
    padding-left: 20px;

    color: #4A5568;
    font-family: 'Noto_Regular', sans-serif;
    font-size: 20px;
    line-height: 1;
    margin-top: 12px;
}

.home_supply_content_list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #A1C854;
    border-radius: 50%;
}

.home_supply_icon_list_c {
    display: flex;
    margin-top: 70px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.home_supply_icon_list_i {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(30% - 10px);
}

.home_supply_icon_list_i img {
  width: 70px;
  height: 70px;
}

.home_supply_icon_list_i_lbl {
  color: #004D33;
  font-family: 'Noto_Bold', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.125;
  word-break: break-word;
  text-align: center;
  margin-top: 20px;
}

/* Responsive Tablet */
@media (max-width: 1024px) {

  .home_supply_content_c,
  .home_supply_content_list li {
    font-size: 18px;
    line-height: 1.5
  }
  .home_supply_sz {
    flex-direction: column;
    align-items: center;
  }

  .home_supply_text_c,
  .home_supply_img_c {
    width: 90%;
  }

  .home_supply_icon_list_i {
    width: calc(50% - 10px);
    margin-bottom: 30px;
  }
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .home_supply_sz {
    margin: 50px 0;
  }

  .home_supply_title_c {
    font-size: 28px;
  }

  .home_supply_icon_list_c {
    margin-top: 40px;
  }

  .home_supply_icon_list_i {
    width: 100%;
  }

  .home_supply_icon_list_i img {
    width: 60px;
    height: 60px;
  }
}
