.border-radius {
  border-radius: 6px;
}
@media only screen and (min-width: 600px) {
  .badges-container {
    overflow: visible;
  }
}
.badges-wrapper {
  padding: 18px 0;
}
@media only screen and (min-width: 600px) {
  .badges-wrapper {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    overflow: visible;
  }
  .badges-wrapper > * {
    flex: 1 0 auto;
    width: 100%;
    max-width: calc(100% / 3 - 12px);
    box-sizing: border-box;
    margin-right: 18px;
    margin-bottom: 36px;
  }
  .badges-wrapper > *:nth-child(3) {
    margin-right: 0;
  }
}
.badges-item {
  box-shadow: 0 0 1rem 0.5rem rgba(0, 0, 0, 0.05);
  padding: 30px 18px;
  box-sizing: border-box;
}
@media only screen and (min-width: 900px) {
  .badges-item {
    height: auto;
  }
}
.badges-item figure {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}
.badges-item figure img {
  width: 50px;
  height: auto;
}
.badges__tekst h4 {
  -webkit-line-clamp: 2;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 18px 0 6px;
}
.badges__tekst p {
  -webkit-line-clamp: 1;
  line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 6px;
}
