.slider .slider-content .controls {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    padding: 30px;
}


/*MOBILE VIEW start*/


/* (min-width:480px) (max-width:767px) */

@media only screen and (max-width:767px) {
    .slider .slider-content .controls {
        width: 90%;
        display: none;
        flex-wrap: wrap;
        align-items: center;
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 1;
        padding: 30px;
    }
}