/* Стили только для блока uc-split-slider */
.uc-split-slider .t-col {
  transition: all 0.5s ease !important;
  height: 500px !important; /* Высота слайдера */
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Левая колонка */
.uc-split-slider .t-col:first-child {
  width: 50% !important;
  background: #3498db; /* Цвет фона */
}

/* Правая колонка */
.uc-split-slider .t-col:last-child {
  width: 50% !important;
  background: #e74c3c; /* Цвет фона */
}

/* Эффект при наведении на левую колонку */
.uc-split-slider .t-col:first-child:hover {
  width: 75% !important;
}
.uc-split-slider .t-col:first-child:hover + .t-col {
  width: 25% !important;
}

/* Эффект при наведении на правую колонку */
.uc-split-slider .t-col:last-child:hover {
  width: 75% !important;
}
.uc-split-slider .t-col:last-child:hover ~ .t-col:first-child {
  width: 25% !important;
}

/* Стили для текста внутри колонок */
.uc-split-slider .t-col .t396__artboard {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

/* Адаптивность */
@media (max-width: 768px) {
  .uc-split-slider .t-col {
    width: 100% !important;
    height: 300px !important;
  }
  .uc-split-slider .t-col:hover {
    width: 100% !important;
  }
}