:root {
  --themeprimaryclr: #ff7000;
  --themesecondaryclr: #696969;
  --darkclr: #000;
  --plainclr: #fff;
  --lightbg: #f8f8f8;
  --themehoverclr: #ff8426;
}

.content {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--darkclr);
}
.content .media-section {
  display: flex;
  align-items: center;
  justify-content: center;
}
.content .media-heading {
  font-size: 33px;
  font-weight: bold;
  font-style: normal;
  color: var(--plainclr);
  text-wrap: balance;
  line-height: 1.32;
}
.content .media-subtext {
  font-size: 20px;
  font-style: normal;
  color: var(--plainclr);
  margin-top: 8px;
  text-wrap: balance;
  line-height: 1.4;
}
.content .media-logos img {
  max-width: 120px;
  height: auto;
  opacity: 0.9;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.content .media-logos img:hover {
  transform: scale(1.05);
  opacity: 1;
}
@media (max-width: 768px) {
  .content .media-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .content .media-logos img {
    max-width: 80px;
  }
}/*# sourceMappingURL=logo-showcaseDesign9.css.map */