h3 {
  margin: 0;
  font-family: sans-serif;
}
.our-team {
  text-align: center;
  position: relative;
  color: #e4e4e4;
}
.our-team:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease 0s;
  opacity: 0;
}
.our-team:hover:before {
  opacity: 1;
}
.our-team img {
  width: 100%;
  height: auto;
}
.our-team .team-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 0;
  background-color: #0051ff9d;
  transition: all 0.3s ease 0s;
}
.our-team:hover .team-content {
  bottom: 20%;
}
.our-team .team-content .name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  color: azure;
  font-family: sans-serif;
  display: block;
  margin-bottom: 7px;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}
.our-team:hover .team-content .name {
  transform: translateY(30px);
  transition-delay: 0.3s;
}
.our-team .team-content .post {
  font-size: 17px;
  display: block;
  transition: all 0.3s ease 0s;
  text-transform: capitalize;
}
.our-team:hover .team-content .post {
  transform: translateY(-30px);
  transition-delay: 0.3s;
}

@media screen and (max-width: 990px) {
  .our-team {
    margin-bottom: 30px !important;
  }
}
