/*!
 * copyright.css - https://kodester.com/
 * Version - 2.5.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2026 Kasanova
 */

.logo-card {
  border: 1px solid var(--bd);
  text-align: center;
  width: 100%;
  border-radius: var(--r6);
  padding-bottom: 14px;
  padding-top: 20px;
  position: relative;
  margin-top: 0;
}

.logo-text {
  display: inline-block;
  padding: 0 10px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
}

.logo-box {
  border-top: 1px solid var(--bd);
  padding-top: 16px;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
  margin: 0 auto;
  justify-content: center;
}

.logo-item {
  border: 1px solid var(--bd);
  border-radius: 50%;
  height: 25px;
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  max-width: 75%;
  max-height: 75%;
}

@media (max-width: 767px) {
  .logo-grid {
    max-width: 100%;
}

.logo-item {
    height: 25px;
    width: 25px;
  }
}