.slider-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out;
  position: absolute;
  width: 100%;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.slide-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.slide-image {
  flex: 0 0 70%;
  line-height: 0;
}

.slide-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 300px;
}

.slide-text-wrapper {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.slide-text {
  color: #767582;
  font-size: 10pt;
  max-width:80%;
}

.slide-text h3 {
  color: #767582;
  margin-bottom: 20px;
  font-size: 14pt;
  font-family: Avenir-Black;
}

.slide-text .description {
  line-height: 1.6;
}

.slider-dots {
  text-align: left;
  margin-top: 30px;
}

.slider-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin-right: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-dot.active {
  background: #666;
}

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

  .slide-image,
  .slide-text-wrapper {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .slide-text{
    max-width:100% !important;
  }

  .slider-dots {
    text-align: center;
  }
