/*
* @Project ASSESP
* @author  FABIANO KUERTEN <fabiano@3fk.com.br>
*/

iframe { width: 100%; height: 300px; }
h4 { margin: 30px 0px; }
.imggrid { display: grid; grid-template-columns: 1fr 1fr; grid-gap: 10px; grid-auto-rows: auto; justify-content: stretch; }
.imggrid div img { width: 100%; }
@media only screen and (min-width: 320px) {}

@media only screen and (min-width: 481px) {
.imggrid { grid-template-columns: 1fr 1fr 1fr; }
}

@media only screen and (min-width: 768px) {}

@media only screen and (min-width: 1025px) {
.imggrid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

@media only screen and (min-width: 1300px) {}