/* GLOBAL STYLES

/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
    margin-bottom: 4rem;
    background-image: url('../img/blog.jpg'); 
  }
  /* Since positioning the image, we need to help out the caption */
  .carousel-caption {
    bottom: 3rem;
    z-index: 10;
  }
  
  /* Declare heights because of positioning of img element */
  .carousel-item {
    height: 32rem;
  }
  .carousel-item > img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    height: 32rem;
  }
  

/* Estilos para el segundo carrusel */
.carouselmarcas  {
    width: 15rem; /* Ancho deseado */
    height: 15rem; /* Altura deseada */
  }
  
  .carouselmarcas  .carousel2-inner {
    width: 125%;
    height: 50%;
  }
  
  .carouselmarcas  .carousel2-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta el tamaño de la imagen */
  }