@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(7,88,47,0.64);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
}

.overlay2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(4,71,5,0.91);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
}
.overlay3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(5,133,44,0.71);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .2s ease;
}
.overlaycontainer:hover .overlay1 {
  height: 100%;
}

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

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

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

