#home-slider{
    width: 100%;
    height: 500px;
}

.item-dim{
    background-color: rgba(0,0,0,0.5);
    width: 100%;
    height: 500px;
}

.item{
    width: 100%;
    height: 100%;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    color: #fff;
}


.slider-titulo{
    width: 90%;
    margin-left: 10%;
    font-size: 3em;
    font-family: 'Josefin sans',sans-serif;
    
}

.slider-desc{
    width: 90%;
    margin-left: 10%;
    margin-top: 30px;
    font-size: 1.2em;
    font-family: 'Roboto',sans-serif;
}

.slider-fecha{
    width: 90%;
    margin-left: 10%;
    margin-top: 30px;
    text-transform: uppercase;
    font-weight: lighter;
    font-family: 'Roboto',sans-serif;
}

.slider-container{
    width: 90%;
    margin-left: 10%;
    margin-top: 30px;
}

.slider-button{
    width: 200px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--blue);
    border-radius: 5px;
    text-transform: uppercase;
    cursor: pointer;
}

.slider-button:hover{
    background-color: var(--red);
}

#home-slider a{
    color: #fff;
    text-decoration: none;
}

.owl-theme .owl-dots .owl-dot span{
    transition: 0.3s;
    margin-top: 20px;
    transform: scale(1.2);
}

.owl-dot.active span{
    background-color: var(--red) !important;
}

.owl-dot:hover span{
    background-color: #fff !important;
    transition: 0.3s;
}

.owl-prev{
    position: absolute !important;
    margin-top: -250px !important;
    left: 20px !important;
    color: #fff !important;
    font-size: 5em !important;
    width: 60px !important;
    height: 60px !important;
}

.owl-prev span{
    position: absolute;
    margin-top: -55px !important;
    margin-left: -14px;
}

.owl-next{
    position: absolute !important;
    margin-top: -250px !important;
    right: 20px !important;
    color: #fff !important;
    font-size: 5em !important;
    width: 60px !important;
    height: 60px !important;
}

.owl-next span{
    position: absolute;
    margin-top: -55px !important;
    margin-left: -13px;
}

.owl-prev:hover, .owl-next:hover{
    background: rgba(255,255,255,0.4) !important;
    transform: scale(1.1) !important;
    transition: 0.3s !important;
    
}

.owl-dots{
    position: absolute;
    transform: translate(-50%);
    margin-top: -50px;
    left: 50%;
}

@media(max-width:900px){
    .owl-prev,.owl-next{
        display: none !important;
    }
}