.resolucion {
    width: 99%;
}

/**Mobile**/
@media(max-width: 600px) {
    .desktop {
        display: none;
    }

    .tablet {
        display: none;
    }
}

/**Tablet**/
@media(min-width: 601px) and (max-width: 991px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: none;
    }
}

/**Escritorio**/
@media(min-width: 991px) {

    .tablet {
        display: none;
    }

    .mobile {
        display: none;
    }
}