@media all and (min-width: 480px) {
    .deskContent {
        display: block;
    }

    .phoneContent {
        display: none;
    }

    .logoHome {
        max-height: 40%;
        padding: 0 !important;
    }


}

@media all and (max-width: 479px) {
    .deskContent {
        display: none;
    }

    .phoneContent {
        display: block;
    }

    .logoHome {
        max-height: 250px;
        padding: 0 !important;
    }


}