.module-2 {
  position: relative;
  max-width: 1300px;
  width: 100%;
  padding-inline: 30px;
  margin-inline: auto;
  text-align: center;
  background: transparent;
  z-index: -2;
}

.module-2 p {
  font-size: var(--text);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.2px;
  color: var(--text-primary);
  margin-bottom: 40px;
}

.module-2 .logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;
  flex-wrap: wrap;
}

.module-2 .logos img {
  max-width: 150px;
  height: auto;
  filter: brightness(1);
}

[data-theme="dark"] .module-2 .logos img {
  filter: invert(1);
}

@media screen and (max-width: 1200px) {
  .module-2 .logos {
    gap: 80px;
  }

  .module-2 .logos img {
    max-width: 130px;
  }
}

@media screen and (max-width: 768px) {
  .module-2 {
    margin-top: 80px;
    padding-inline: 20px;
  }

  .module-2 .logos {
    gap: 40px;
  }

  .module-2 .logos img {
    max-width: 110px;
  }

  .module-2 p {
    font-size: calc(var(--text) * 0.9);
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 480px) {
  .module-2 {
    margin-top: 60px;
    padding-inline: 15px;
  }

  .module-2 .logos {
    gap: 25px;
  }

  .module-2 .logos img {
    max-width: 90px;
  }

  .module-2 p {
    font-size: calc(var(--text) * 0.85);
    margin-bottom: 25px;
    letter-spacing: 1px;
  }
}
