﻿* {
  box-sizing: border-box;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  /*width: 33.33%;*/
  
}
.column1{
width: 20%;}
.column2{
width: 60%;}

.column3{
width: 20%;}

.row{
	padding-bottom: 2%;
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 1025px) {
  .column {
    width: 100%;
  }
	.column1 img{
		 display: block;
  margin: auto;
  width: 60%;
	}
	.column2{
	text-align: center;	
	}
	.column3 img{
		width: 100%;
		 /*display: block;*/
  /*margin: auto;*/
 /*width: 80%;*/
	}
}