.logo-section {
  background-color: #e6e6e6;
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 56px;
}

.logo-category-name {
  position: relative;
  color: var(--foundation-primary-blue);
  font-family: "Inter";
  font-size: var(--text-22_36);
  font-weight: 700;
  line-height: 1.11;
}

.logo-category-name span {
  background-color: #e6e6e6;
  padding: 20px;
  position: relative;
  z-index: 11;
}

.logo-category-name::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: linear-gradient(
    180deg,
    #e830ff 0%,
    #00bbbc 112.27%,
    #befeff 169.33%,
    #fff 194.59%
  );
  left: 0;
  top: 50%;
}

.box-logo {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.logos:first-child .box-logo {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-img {
  max-width: 130px;
}

@media screen and (min-width: 992px) {
  .logo-section {
    padding: 56px;
  }

  .box-logo {
    gap: 40px;
  }

  .logo-img {
    max-width: 204px;
  }
}
