/* Carousel */

#carousel .carousel-item img {
    width: 100%; /* Ajustar el ancho de la imagen al 100% del contenedor */
    height: 70vh; /* Mantener la proporción de aspecto original de la imagen */
    object-fit: cover;
    filter: grayscale(55%);
}

#carousel{
    position: relative;
}

#carousel .overlay_home{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}
#carousel .overlay_home h6{
    color: #F46A07;
}
#carousel .overlay_home h1{
    color: white;
}

#carousel .overlay_home .container,
#carousel .overlay_home .row{
    height: 100%;
}

.btn-platzi{
    color: white !important;
    background-color: #F46A07 !important;
}

.btn-platzi:hover{
    background-color: #FF5733 !important;
}