.name{
color:white;
	text-transform: capitalize;
}



.our-team {
  padding: 30px 0 40px;
  margin-bottom: 30px;
  background: linear-gradient(to right, #000428, #004e92);
  text-align: center;
  overflow: hidden;
  position: relative;
  border-radius: 18px;
  box-shadow: inset 3px -2px 1px 2px #a4e3ff;



}
.our-team .picture {
  display: inline-block;
  height: 210px;
  width: 210px;
  margin-bottom: 25px;
  z-index: 1;
  position: relative;
}

.our-team .picture::before {
  content: "";
  width: 100%;
  height: 0;
  border-radius: 50%;
  background-color: #a4e3ff;
  position: absolute;
  bottom: 135%;
  right: 0;
  left: 0;
  opacity: 0.9;
  transform: scale(3);
  transition: all 0.3s linear 0s;
}

.our-team:hover .picture::before {
  height: 100%;
}

.our-team .picture::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #000428;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.our-team .picture img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  transform: scale(1);
  transition: all 0.9s ease 0s;
}

.our-team:hover .picture img {
  box-shadow: 0 0 0 14px #053c6d;
  transform: scale(0.7);
}

.our-team .title {
  display: block;
  font-size: 15px;
  color: white;
  text-transform: capitalize;
  letter-spacing:2px;
}

.our-team .social {
  width: 100%;
  padding: 0;
  margin: 0;
  color:black;
  background-color: #a4e3ff;
  position: absolute;
  bottom: -100px;
  left: 0;
  transition: all 0.5s ease 0s;
}

.our-team:hover .social {
  bottom: 0;

}

.our-team .social li {
  display: inline-block;

}

.our-team .social li a {
  display: block;
  padding: 10px;
  font-size: 17px;
  color: black;
  transition: all 0.3s ease 0s;
  text-decoration: none;
}

.our-team .social li a:hover {
  color: #041627;
  background-color: #053c6d;
}