/* Image Gallery */
.image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 35px;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color:rgba(0,140,186,.5);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: 2s ease;
  border-radius: 35px;
}

.portainer:hover .overlay {
  height: 100%;
}

.overlaytext {
  color: white;
  font-size: 15px;
  position: absolute;
  top: 10%;
  left: 10%;
  -webkit-transform: translate(-10%, -10%);
  -ms-transform: translate(-10%, -10%);
  transform: translate(-10%, -10%);
  text-align: center;
}
.card {
  background-color:rgba(255,255,255,.6);
  border-style: solid;
  border-radius: 35px;
  border: 1px solid rgba(0, 0, 0, .4);
  
}
.btn {
  font-size: 15px;
}