#sect-home-why .sect_content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
}
#sect-home-why .sect_content .why_item {
  background-color: #fff;
  color: #2840B6;
  padding: 30px 15px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
#sect-home-why .sect_content .why_item .item--img {
  align-self: flex-end;
  max-height: clamp(60px, 6.5vw, 130px);
}
#sect-home-why .sect_content .why_item .item--title {
  font-size: clamp(14px, 1.6vw, 25px);
  font-weight: 500;
}
#sect-home-why .sect_content .why_item:nth-child(2) {
  grid-row: span 2;
  justify-content: space-between;
}
#sect-home-why .sect_content .why_item:nth-child(3) {
  grid-column: span 2;
}
@media screen and (max-width: 992px) {
  #sect-home-why .sect_content .why_item {
    border-radius: 15px;
    padding: 10px 10px 18px;
  }
}
@media screen and (max-width: 768px) {
  #sect-home-why .sect_content {
    display: flex;
    flex-direction: column;
  }
  #sect-home-why .sect_content .why_item {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-end;
    padding: 20px 14px 20px 25px;
  }
}