.banner_loga {
  padding: 5rem 0;
  background-color: var(--black-color);
  position: relative;
  z-index: 2;
}
.banner_loga .container {
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.banner_loga .container::after, .banner_loga .container::before {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}
.banner_loga .container::after {
  right: 0;
  background: #0f172a;
  background: linear-gradient(270deg, #0f172a 0%, rgba(15, 23, 42, 0) 100%);
}
.banner_loga .container::before {
  left: 0;
  background: #0f172a;
  background: linear-gradient(90deg, #0f172a 0%, rgba(15, 23, 42, 0) 100%);
}
.banner_loga_grid_wrap {
  display: inline-flex;
  animation: 35s slide infinite linear;
}
.banner_loga_grid {
  display: inline-block;
  margin-top: 2rem;
}
.banner_loga_grid:hover .banner_loga_grid_wrap {
  animation-play-state: paused;
}
.banner_loga .section_headline {
  display: block;
  width: 100%;
  text-align: center;
  color: var(--text-color-invert);
  opacity: 0.3;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 300;
}
.banner_loga_item {
  display: inline-grid;
  height: 150px;
  width: 150px;
  margin: auto 2rem;
  place-content: center;
}
.banner_loga_item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  opacity: 0.5;
}
.banner_loga_item:hover img {
  opacity: 1;
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 768px) {
  .banner_loga .container::after, .banner_loga .container::before {
    width: 50px;
  }
}
@media screen and (max-width: 425px) {
  .banner_loga_item {
    height: 100px;
    width: 100px;
  }
}
