/**
 * @file
 * Is the responsive layout composition.
 *
 * Is intented to set basic layout rules to regions and global blocks. 
 * Also add grid common rules.
 */
 
/**
 * Grid row
 */

.grid-row {
	padding: 0 1.5rem;
}
@media all and (min-width: 750px) {
  .grid-row {
  	padding: 0;
    width: 80%;
    max-width: 1300px;
    margin: 0 auto;
  }
}