.third {
  padding: 30px 0;
  overflow: hidden;
}

.third-container {
  margin: 0 80px;
  /* padding: 0 15px; */
  /* background: #f9f9f9; */
  border-radius: 10px;
}

.third-title {
  text-align: center;
  margin-bottom: 15px;
}

.third-title p {
  color: #000;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
}

.third-inner {
  position: relative;
  overflow: hidden;
}

.brands_carousel {
  display: flex;
  gap: 30px;
  padding: 10px 0;
  width: fit-content;
}

.brand__item {
  flex: 0 0 auto;
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 12px;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease;
}

.brand__item:hover {
  transform: translateY(-5px);
}

.brand__item a {
  display: contents;
  text-decoration: none;
  color: inherit;
}

.brand__item img {
  max-width: 120%;
  max-height: 120%;
  object-fit: contain;
  border-radius: 5px;
}

/* Пауза при наведении */
.brands_carousel:hover {
  animation-play-state: paused;
}


@media (max-width: 600px) {
    .third-title p {
        font-size: 28px;
        line-height: 1.2;
    }
}

@media (max-width: 500px) {
    .third-title p {
        font-size: 25px;
    }
}

@media (max-width: 400px) {
    .third-title p {
        font-size: 22px;
    }
}
