/*-------------------------------
   Team  Section  CSS
-------------------------------*/
.team-card {
    margin-bottom: 25px;
  }
  
  .team-card .team-img {
    overflow: hidden;
    position: relative;
  }
  
  .team-card .team-img img {
    -webkit-transition: 0.7s;
    transition: 0.7s;
  }
  
  .team-card .team-img .social-profile {
    position: absolute;
    bottom: 25px;
    left: 50%;
    width: 100%;
    text-align: center;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  
  .team-card .team-img .social-profile li {
    margin: 0 -0.5px;
    -webkit-transform: translateY(25px);
    transform: translateY(25px);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    visibility: hidden;
    opacity: 0;
    border-right: 1px solid rgba(0, 0, 0, 0.09);
  }
  
  .team-card .team-img .social-profile li:nth-child(1) {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  
  .team-card .team-img .social-profile li:nth-child(2) {
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
  
  .team-card .team-img .social-profile li:nth-child(3) {
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
  
  .team-card .team-img .social-profile li:nth-child(4) {
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  
  .team-card .team-img .social-profile li:last-child {
    border-right: none;
  }
  
  .team-card .team-img .social-profile li:last-child a {
    border-radius: 0 5px 5px 0;
  }
  
  .team-card .team-img .social-profile li a {
    width: 48px;
    height: 48px;
    background-color: #fff;
    text-align: center;
  }
  
  .team-card .team-img .social-profile li a i {
    font-size: 18px;
    line-height: 0.8;
  }
  
  .team-card .team-img .social-profile li a:hover {
    background-color: #086ad7;
  }
  
  .team-card .team-img .social-profile li a:hover i {
    color: #fff;
  }
  
  .team-card .team-info {
    padding: 22px 25px 0;
    text-align: center;
  }
  
  .team-card .team-info h3 {
    font-size: 22px;
    margin-bottom: 8px;
  }
  
  .team-card .team-info span {
    color: #666666;
  }
  
  .team-card.style1 .team-img {
    border-radius: 10px;
  }
  
  .team-card.style1 .team-img img {
    border-radius: 10px;
  }
  
  .team-card.style1 .team-img .social-profile li:nth-child(1) a {
    border-radius: 5px 0 0 5px;
  }
  
  .team-card.style1 .team-img .social-profile li:last-child a {
    border-radius: 0 5px 5px 0;
  }
  
  .team-card.style2 .team-img .social-profile li:nth-child(1) a {
    border-radius: 0;
  }
  
  .team-card.style2 .team-img .social-profile li:last-child a {
    border-radius: 0;
  }
  
  .team-card.style3 .team-img {
    border-radius: 10px;
  }
  
  .team-card.style3 .team-img img {
    border-radius: 10px;
  }
  
  .team-card.style3 .team-img .social-profile li:nth-child(1) a {
    border-radius: 50px 0 0 50px;
  }
  
  .team-card.style3 .team-img .social-profile li:last-child a {
    border-radius: 0 50px 50px 0;
  }
  
  .team-card:hover .team-img img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  
  .team-card:hover .team-img .social-profile li {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }