@charset "utf-8";
/* CSS Document */
/* START GRID CONTAINERS */
.grid-gallery {
    display: grid;
    /*grid-template-columns: 1fr 1fr 1fr 1fr;*/
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}
.grid-gallery .box {
    color: #fff;
    padding: 0;
    width: auto;
	position: relative;
    /*    overflow: hidden;*/
    border: 1px solid #D2D2D2;
    background-image: -webkit-linear-gradient(270deg, rgba(255,255,255,1.00) 0%, rgba(217,217,217,1.00) 100%);
    background-image: -moz-linear-gradient(270deg, rgba(255,255,255,1.00) 0%, rgba(217,217,217,1.00) 100%);
    background-image: -o-linear-gradient(270deg, rgba(255,255,255,1.00) 0%, rgba(217,217,217,1.00) 100%);
    background-image: linear-gradient(180deg, rgba(255,255,255,1.00) 0%, rgba(217,217,217,1.00) 100%);
    box-sizing: border-box;
    background-color: rgba(217,217,217,1.00);
}
section#prods-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: repeat(6, 1fr);
    max-width: 1200px;
    margin: 30px auto;
    padding: 0;
    position: relative;
    /*    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;*/
    min-height: 300px;
    background-color: red;
}
.caption {
    background-color: rgba(95,95,95,0.80);
    padding: 3%;
    position: absolute;
    min-height: 50px;
    width: 100%;
    bottom: 0;
    box-sizing: border-box;
}

.caption h1 {
	font-size: 1.1em;
    text-align: center;
	color: white;
}
.caption h2 {
    font-size: .85em;
    text-align: center;
    color: white;
    font-weight: 100;	
	line-height: 1.2em;
}
.caption-press {
    background-color: rgba(95,95,95,0.80);
    padding: 2%;
    position: absolute;
    min-height: 22px;
    width: 100%;
    bottom: 0;
    box-sizing: border-box;
}
.caption-press h2 {
	    font-size: .75em;
    text-align: center;
    color: white;
    font-weight: 100;	
	line-height: 1.3em;
}
/* END GRID CONTAINERS */
@media only screen and (max-width: 480px) {
.grid-gallery {
    grid-template-columns: 1fr;
    background-color: yellow;
}
}
@media only screen and (max-width: 750px) and (min-width: 481px) {
.grid-gallery {
    grid-template-columns: repeat(2, 1fr);
    background-color: blue;
}
}
@media only screen and (max-width: 1024px) and (min-width: 751px) {
.grid-gallery {
    grid-template-columns: repeat(3, 1fr);
    background-color: red;
}
}