* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.title {
    text-align: center;    
    font-size: 80px;
}

.item{
    background-color: blanchedalmond;
    color:rgb(124, 124, 124);
    justify-content: center;
    align-items: center;
    /*height: 10rem;*/
    display: flex;
}

.owl-container{
    width: 100%;
    /*min-height: 100vh;*/

    display: flex;
    align-items: center;

    max-width: 1250px;
    margin: 0 auto;    

    padding: 0 20px;
}

/* FLECHAS DE NAVEGACION */

.owl-container .owl-nav{
    color:rgb(255, 255, 255);    
}
.owl-container .owl-prev, .owl-container .owl-next{
    position: absolute;
    top:35%;
    
    font-size: 1.0rem !important;
    font-weight: 900 !important;

    background-color: rgba(41, 41, 41, 0.5) !important;
    width: 15px;
    height: 50px;
    
}

.owl-container .owl-prev{    
    left:5px;    
}
.owl-container .owl-next{    
    right:5px;    
}

/* PUNTOS DE NAVEGACIÓN */

.owl-container .owl-dot.active span{
    width: 15px !important;
    height: 15px !important;
    background-color: blue !important;
}

.owl-container .owl-dot:hover span{
    width: 15px !important;
    height: 15px !important;
    background-color: rgb(255, 153, 0) !important;
}