@charset "UTF-8";
/* CSS Document */
* {
  box-sizing: border-box;
}
.column {
  float: left;
  width: 50%;
  padding: 2px;
}
.threecolumn {
  float: left;
  width: 33%;
  padding: 4px 4px 20px 4px;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
.wrapper{
	margin: auto;
	width: 80%;
	max-width: 800px;
	font-family: 'Montserrat', sans-serif;
}
.column  img {
	max-width: 100%;
  height: auto;
}

.threecolumn  img {
	max-width: 100%;
  height: auto;
}
@media screen and (max-width: 700px) {
  .column {
    width: 100%;
  }
	.threecolumn {
    width: 100%;
  }
	
	.wrapper{
	margin: auto;
	width: 95%;
}
}
