.normal-display {
    margin-top: 20vh;
}

.mobile-display img {
    width:80vw;
}

.first-badge-wrapper {
    padding-right:150px;
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) { 
    .normal-display {
        display: none !important;
    }

    .mobile-display {
        display: block !important;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) { 
    .normal-display {
        display: block !important;
    }    

    .mobile-display {
        display: none !important;
    }
}