.trnd-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  background-color: #f8fafd;
  border-bottom: 1px solid #dedede;
  border-top: 1px solid #dedede;
  flex-wrap: wrap;
  padding: 0 10px;
}

.trnd-icons .trnd-icons_single {
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 1px solid #dedede;

  padding: 20px 20px 20px 0;
}
.trnd-icons_single-text {
  font-size: 22px;
  font-family: 'Bebas Neue', Sans-Serif;
  font-weight: 500;
  color: var(--theme-palette-color-4);
  max-width: 95px;
}

.trnd-icons_single-wide {
  max-width: 300px;
  font-family: 'Bebas Neue', Sans-Serif;
  padding: 20px 0;
  font-size: 22px;
  color: var(--theme-palette-color-4);
  line-height: 1.5em;
}
.trnd-icons_single-wide span {
  font-size: 32px;
}
.trnd-icons_single-wide .colored {
  color: var(--theme-palette-color-1);
}
@media (max-width: 1145px) {
  .trnd-icons .trnd-icons_single {
    border-right: none;
  }
}
@media (max-width: 450px) {
  .trnd-icons {
    flex-direction: column;
    align-items: center;
  }
}
