@charset "utf-8";
/* CSS Document */

<style>
div.gallery {
    border: 1px solid #ccc;
}


div.gallery img {
    width: 100%;
   /* height: auto;*/
}

div.descr {
    padding: 15px;
    text-align: center;
	font-weight:bold;
}

* {
    box-sizing: border-box;
}

.responsive {
    padding: 0 6px;
    float: left;
    width: 24.99999%;
}

@media only screen and (max-width: 700px){
    .responsive {
        width: 49.99999%;
        margin: 6px 0;
    }
}

@media only screen and (max-width: 500px){
    .responsive {
        width: 100%;
    }
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}
.img{
position: relative;
    float: left;
    width:  300px;
    height: 200px;
    background-position: 50% 50%;
    background-repeat:   no-repeat;
    background-size:     cover;	
	}
</style>