/*Most Devices: Very small to Laptop*/
@media (min-width: 575px) and (max-width: 1199px) {
    .imageThumb{
        max-width: 520px !important;
    }
}

/*Inbetween Devices: Laptop to 4k*/
@media (min-width: 1200px) and (max-width: 2559px) {
    .imageThumb{
        max-width: 675px !important;
    }
}

/*4k devices*/
@media (min-width: 2560px) {
    .imageThumb{
        max-width: 820px !important;
    }
}