.our-team-fo {
  padding: 30px 0 40px;
  margin-bottom: 30px;
  /* background-color: #f7f5ec; */
  background: #70e1f5;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to top, #ffd194, #70e1f5);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to top, #ffd194, #70e1f5); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  text-align: center;
  overflow: hidden;
  position: relative;
}

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

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

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

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

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

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

.our-team-fo .name-fo {
  display: block;
  font-size: 20px;
  color: #4e5052;
  font-weight: bold;
}

.our-team-fo .title-fo {
  display: block;
  font-size: 14px;
  color: #4e5052;
}

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

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

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

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

.our-team-fo .social-fo li a:hover {
  color: #1369ce;
  background-color: #f7f5ec;
}