  
/********************* STYLE CAROUSEL ****************/
.carousel {
  width: 100%;
  overflow: hidden;
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
}

/* Botones de navegación del carousel */
.carousel-btn {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: white;
  background-color: #333;
  border: none;
  padding: 10px;
  outline: none;
}
/********************* END STYLE CAROUSEL ****************/


/*estilos etiqueta <a>*/
.decore-none{
  text-decoration: none;
  color: black;
}