
.events-card-img img {
  width: 100%;
}
.events-card {
  -webkit-box-shadow: 13px 17px 32px 0 rgba(0,0,0,.06);
  -moz-box-shadow: 13px 17px 32px 0 rgba(0,0,0,.06);
  box-shadow: 13px 17px 32px 0 rgba(0,0,0,.06);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  border: 1px solid #eee;
  position: relative;
  margin-bottom: 40px;
  overflow: hidden;
  cursor: pointer;
}
.event-card-content {
  padding: 40px 30px;
  min-height: 150px;
  display: block;
  text-align: center;
}
.event-card-content h3 {
  display: block;
  margin: 0;
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  font-weight: 600;
}
.events-card-img {
  position: relative;
  overflow: hidden;
}
.events-shape {
  position: absolute;
  bottom: -50px;
  height: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  -webkit-transition: all.3s ease;
  -moz-transition: all.3s ease;
  -o-transition: all.3s ease;
  transition: all.3s ease;
  background: rgba(0,0,0,.7);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.events-shape img {
  max-width: 100px;
}
.events-card-img:hover .events-shape {
  bottom: 0;
  height: 100%;
}