@charset "UTF-8";
/* CSS Document */
  
.overlaycontainer {
  position: relative;
  width: 100%;
	
	
}




.overlayimage {
  display: block;
  width: 100%;
  height: auto;

	
}





.overlay1 {
  position: absolute;
  bottom: 0;

  left: 0;
  right: 0;
  background-color: rgba(130,171,223,0.59);
  overflow: hidden;
  width: 98%;
  height: 0;
  transition: .5s ease;
	
}

.overlay2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(158,194,242,0.36);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
}
.overlay3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(206,231,245,0.25);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .3s ease;
}
.overlaycontainer:hover .overlay1 {
  height: 98%;
}

.overlaycontainer:hover .overlay2 {
  height: 100%;
}

.overlaycontainer:hover .overlay3 {
  height: 100%;
}

.text {
  color: Black;
font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", "sans-serif";
	font-style: italic;
	
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

