.certification {
  width: 100%;
  padding: 35px 0;
  background: #f8f8f8;
}
.certification-list {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 40px;
}
.certification-item {
  width: calc(100% / 5 - 35px);
  display: flex;
  align-items: center;
  gap: 20px;
}
.certification-item-icon {
  width: 42px;
  flex-shrink: 0;
}
.certification-item-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.certification-item-title {
  font-weight: bold;
  font-size: 18px;
  color: #1e293b;
  line-height: 24px;
  text-align: left;
}

@media screen and (max-width: 760px) {
  .certification-list {
    justify-content: center;
  }
  .certification-item {
    width: calc(100% / 2 - 20px);
  }
}

@media screen and (min-width: 760px) and (max-width: 1020px) {
  .certification-list {
    justify-content: center;
  }
  .certification-item {
    width: calc(100% / 2 - 20px);
  }
}

@media screen and (min-width: 1020px) and (max-width: 1350px) {
  .certification-list {
    justify-content: center;
  }
  .certification-item {
    width: calc(100% / 3 - 25px);
  }
}

@media screen and (min-width: 1350px) and (max-width: 1900px) {
}
