.tk-logos-carousel {
  width: 100%;
  padding: 10px 0 30px;
  position: relative;
  box-sizing: border-box;
}

.tk-lc-wrapper {
  overflow: hidden;
  width: 100%;
}

.tk-lc-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.tk-lc-item {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  box-sizing: border-box;
}

.tk-lc-item a,
.tk-lc-item img {
  display: block;
}

.tk-lc-item img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.tk-lc-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.tk-lc-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}

.tk-lc-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c8c8c8;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease;
}

.tk-lc-dot.active {
  background: #2a9d8f;
}
