.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(to right, #e9f8f9, #f9faff);
  padding: 60px 20px;
  margin-top: 50px;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
}

.text-content {
  flex: 1 1 45%;
  padding: 20px;
}

.text-content h4 {
  color: #007bff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.text-content h1 {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 20px;
}

.text-content h1 span {
  /* color: #007bff; */
  background: linear-gradient(95.76deg, #03D382 -0.95%, #0171E7 116.32%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-content ul {
  list-style: none;
}

.text-content ul li {
  font-size: 1.1rem;
  color: #007bff;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  display: inline-block;
  margin-right: 20px;
}

.text-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #007bff;
}

.image-content {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-content img {
  max-width: 80%;
  height: auto;
}

/* Dots */
.dots {
  text-align: center;
  margin-top: 30px;
}

.dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  /* background: #007bff; */
  background: linear-gradient(95.76deg, #03D382 -0.95%, #0171E7 116.32%);
  border-radius: 50%;
  margin: 5px;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s;
}

.dots span.active {
  width: 30px;
  border-radius: 20px;
  opacity: 1;
}

/* --- MEDIA QUERIES --- */

/* Tablet */
@media (max-width: 992px) {
  .slide-content {
    flex-direction: column;
    text-align: center;
  }

  .image-content, .text-content {
    flex: 1 1 100%;
  }

  .image-content {
    order: 1;
    margin-bottom: 20px;
  }

  .text-content {
    order: 2;
  }

  .text-content h1 {
    font-size: 2rem;
  }

  .text-content h4 {
    font-size: 1.1rem;
  }

  .text-content ul li {
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .slide-content {
    flex-direction: column;
    text-align: left;
  }

  .text-content h1 {
    font-size: 1.5rem;
  }

  .text-content h4 {
    font-size: 1rem;
  }

  .text-content ul li {
    font-size: 0.9rem;
  }

  .text-content ul {
    padding: 0;
  }
}