.block-certs {
  margin-bottom: 80px;
}
.block-certs__body {
  display: flex;
  flex-direction: column;
}
.block-certs__body .cert-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  width: max-content;
  max-width: 100%;
}
.block-certs__body .cert-item:last-child {
  margin-bottom: 0px;
}
.block-certs__body .cert-item__icon {
  min-width: 30px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  background-color: var(--primary);
  border-radius: 50%;
}
.block-certs__body .cert-item__icon svg {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
}
.block-certs__body .cert-item__name {
  transition: color 0.3s ease;
}
.block-certs__body .cert-item:hover .cert-item__name {
  color: var(--primary);
}

@media (max-width: 1200px) {
  .block-certs {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .block-certs__body .cert-item__icon {
    min-width: 24px;
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }
}