.prominent {
  margin: var(--section-margin) 0;
}
.prominent__wrapper {
  background: var(--color-accent);
  padding: var(--card-padding);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.prominent__title {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.8);
}
.prominent__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 580px;
  width: 100%;
}
.prominent__logo {
  width: calc(33.33% - 13.5px);
  height: 80px;
  display: flex;
  padding: 14px;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: #fff;
}
.prominent__logo img {
  max-width: 100%;
	max-height: 100%;
	width: 100%;
	height: auto;
	object-fit: contain;
}
@media (width >= 992px) {
  .prominent__logo:last-child {
    display: none;
  }
}
@media (width < 992px) {
  .prominent__wrapper {
    flex-direction: column;
    gap: 60px;
  }
  .prominent__title {
    text-align: center;
  }
}
@media (width < 576px) {
  .prominent__logo {
    width: calc(50% - 10px);
  }
  .prominent__title {
    max-width: 242px;
    margin: 0 auto;
  }
}

/*# sourceMappingURL=style.css.map */
