@charset "utf-8";
/* CSS Document */
.column1{
  float: left;
  width: 33.33%;
  padding: 5px;
  background-color: #f1f1f1;
}

/* Clear floats after the columns */
.row1:after {
  content: "";
  display: table;
  clear: both;
  width:100%;
}

.image1 {
  display: block;
  width: 100%;
}

.overlay1 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #006FBF;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: .7s ease;
  transition: .3s ease;
}

.container1:hover .overlay1 {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.container1 {
  position: relative;
  width: 100%;
}

.text1 {
  color: white;
  font-size: 18px;
  position: relative;
	padding-left: 20px;
	padding-right: 20px;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.centered1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}
