.cm-slider-images-and-buttons-container {
  width: 100%; 
  position: relative;
  max-width: 1140px;
  margin: auto;
}

.cm-slider-images-container,
.cm-slider-image-container {
  width: 100%;
  height: 100%;
}
.cm-slider-images-container {
  display: flex;
  overflow: hidden;
}
.cm-slider-image-container {
  position: relative;
  flex-shrink: 0;
}
.cm-slider-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cm-slider-buttons {
  position: absolute;
  top: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  outline: none;
  border: 2px solid var(--primary);
  border-radius: 100%;
  width: 50px;
  height: 50px;
  background-color: var(--secondary);
  font-weight: bold;
  opacity: 0.8;
  cursor: pointer;
  fill: white;
  font-size: 2.5rem;
  transition: all 0.5s;
}
.cm-slider-buttons i{
    color: white;
    font-size:1rem;
}

.cm-slider-buttons:active {
  transform: scale(0.9);
}

.cm-slider-next {
  right: 1px;
}
.cm-slider-prev {
  left: 1px;
}
.cm-slider-dots-container {
  position: absolute;
  bottom: 1px;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: auto;
  left: 0;
  right: 0;
  width: 100%;
}
.cm-slider-dot {
  width: 30px;
  height: 10px;
  border-radius: 100px;
  background-color: white;
}
.cm-slider-dot-active {
  background-color:var(--secondary);
}
.sliderData,
.sliderOverLay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.sliderData {
  background-color: transparent;
  opacity: 1;
}
.sliderData .outLineButton {
  margin-top: 15px;
}
.sliderDescription,
.sliderTitle {
  color: white;
  text-align: center;
  margin: 0;
  width: 80%;
}
.sliderTitle {
  font-size: 5rem;
  font-weight: bold;
}
.sliderDescription {
  font-size: 1.5rem;
}
@keyframes activeImageAnimation {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.activeImage {
  animation: activeImageAnimation 10s forwards;
}

@media screen and (max-width: 600px) {
  .sliderTitle {
    font-size: 2.5rem;
  }
  .sliderDescription {
    font-size: 1rem;
    width: 70%;
  }
  .cm-slider-buttons {
      width:30px;
      height:30px;
  }
}
