@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700;800;900&display=swap');
.slider-tab {
  color: #ffffff;
  transition: color 0.3s ease;
  cursor: pointer;
}

.slider-controls {
  position: absolute;
  bottom: 45px;
  width: 100%;
  z-index: 20;
}

.slider-pagination {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  list-style: none;
}
.tab-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #fff;
  padding: 0 30px;
  display: inline-block;
  transition: color 0.3s ease;
  text-align: center;
}

.slider-tab:hover .tab-text,
.slider-tab.active .tab-text {
  color: #a35bbe;
  font-weight: 600;
}

