﻿.imgfull {
 display:inline-block;
 width:100%;
 height:auto;
     
}
.imgmobile {
    display: none;
}



@media screen and (max-width:600px ) {
    .imgfull {
        display: none;
    }
    .imgmobile {
        display: inline-block;
        width:100%;
        height: auto;
    }

}