.responsive-image{width:100%;background-size:100% 100%}
/* Retina display */
@media screen and (min-width:1024px){
.responsive-image{background-image:url('/111/images/logo.jpg')}
}
/* Desktop */
@media screen and (min-width:980px) and (max-width:1024px){
.responsive-image{background-image:url('/111/images/logo.jpg')}
}
/* Tablet */
@media screen and (min-width:760px) and (max-width:980px){
.responsive-image{background-image:url('/111/images/logo.jpg')}
}
/* Mobile HD */
@media screen and (min-width:350px) and (max-width:760px){
.responsive-image{background-image:url('/111/images/logo.jpg')}
}
/* Mobile LD */
@media screen and (max-width:350px){
.responsive-image{background-image:url('/111/images/logo.jpg')}
}