/* Para telas menores que 1920px */
@media (max-width: 1919px) {
    .custom-width {
        width: 100% !important;
        /* w-full */
    }
}

/* Para telas maiores ou iguais a 1920px */
@media (min-width: 1920px) {
    .custom-width {
        width: 50% !important;
        /* w-1/2 */
    }
}