.gallery1-list {
  clear: both;
  display: table;
  list-style: none;
  padding: 0;
  margin:0;
  margin-bottom: 20px;
  margin-left: 33px;
}
.gallery1-list li {
  float: left;
  margin-bottom: 30px;
  margin-right: 35px; 
  height: 220px;
  width: 235px;
  overflow: hidden;
  text-align: center;
  position: relative;
  padding: inherit;
  border-radius: 8px;
  box-shadow: 5px 10px 8px grey;
}
.gallery1-list li a {
  position: absolute;
  left: 100%;
  margin-left: -200%;
  position: relative;
}

.overlay {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
  height:0;
  transition: .5s ease;
}

.tim:hover .overlay {
  bottom: 0;
  height: 100%; 
  padding-top: 20%;
}

.text {
  color:#E81E25;
  font-weight: bolder;
  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;
}


.gallery1-list li a:hover img {
  -moz-transform: scale(1.08, 1.08);
  -ms-transform: scale(1.08, 1.08);
  -webkit-transform: scale(1.08, 1.08);
  transform: scale(1.08, 1.08);
}
.gallery1-list li a img {
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 220px;
  width: auto;
}

.gallery1 {
  display: inline-block;
}
.gallery1:after {
  content: '';
  display: inline-block;
  width: 100%;
  vertical-align: top;
}
.gallery1 a {
  display: inline-block;
  margin-bottom: 7px;
  position: relative;
  vertical-align: top;
}
.gallery1 img {
  vertical-align: top;
}
