
#exampleSlider {
  position: relative;
  
}
@media (max-width: 767px) {
  #exampleSlider {
    border-color: transparent;
  }
}
#exampleSlider .MS-content {
  margin: 15px 5%;
  padding-bottom: 50px;

  overflow: hidden;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden; /* Para ocultar los elementos que se desbordan fuera del contenedor */
}
@media (max-width: 767px) {
  #exampleSlider .MS-content {
    margin: 0;
  }
}

#exampleSlider .MS-content .item {
  flex: 0 0 24%; /* Cada item ocupa el 25% del ancho del slider */
  display: inline-block;
  height: 100%;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  width: 25%;
  margin-right: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.item .btn {
  margin-top: auto;
  align-self: flex-start; /* Esto asegura que el botón esté alineado al inicio horizontalmente */
}

@media (max-width: 1200px) {
  #exampleSlider .MS-content .item {
    flex: 0 0 25%; /* Cada item ocupa el 25% del ancho del slider */
  }
}
@media (max-width: 992px) {
  #exampleSlider .MS-content .item {
    flex: 0 0 33.3333%;
  }
}
@media (max-width: 767px) {
  #exampleSlider .MS-content .item {
    flex: 0 0 100%
  }
}
#exampleSlider .MS-content .item p {
  font-size: 14px;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

#exampleSlider .MS-controls button {
  position: absolute;
  border: none;
  background: transparent;
  font-size: 30px;
  outline: 0;
  top: 40%;
}

@media (max-width: 767px) {
  #exampleSlider .MS-controls button {
    display: none;
  }
}
#exampleSlider .MS-controls button:hover {
  cursor: pointer;
}
#exampleSlider .MS-controls .MS-left {
  left: 10px;
}
@media (max-width: 992px) {
  #exampleSlider .MS-controls .MS-left {
    left: -2px;
  }
}
#exampleSlider .MS-controls .MS-right {
  right: 10px;
}
@media (max-width: 992px) {
  #exampleSlider .MS-controls .MS-right {
    right: -2px;
  }
}
