
  .ts-team-wrapper {
    position: relative;
    overflow: hidden;
    width: 230px;
    height: 300px;
    border-radius: 5px;
    margin:auto;
  }
  
  @media (max-width: 567px) {
    .ts-team-wrapper {
      text-align: center;
     
     
      
    }
    .welcome-slides{}
  }
  
  .ts-team-wrapper .ts-team-content {
    position: absolute;
    top: 74%;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 15px 25px;
    margin-top: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    transition: 350ms;
  }
  
  @media (max-width: 1200px) {
    .ts-team-wrapper .ts-team-content {
      top: 72%;
    }
  }
  
  @media (max-width: 575px) {
    .ts-team-wrapper .ts-team-content {
      text-align: center;
    }
  }
  
  .ts-team-wrapper .ts-name {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 3px;
    line-height: normal;
    color: #964ad9;
  }
  
  .ts-team-wrapper .ts-designation {
    color: #fff;
    font-size: 12px;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 12px;
  }
  
  .ts-team-wrapper .team-social-icons a i {
    color: #fff;
    margin-right: 8px;
    text-align: center;
    transition: 400ms;
    animation-delay: 0;
  }
  
  .ts-team-wrapper .team-social-icons a i:hover {
    color: black;
  }
  
  .ts-team-wrapper:hover .ts-team-content {
    top: 0;
    padding-top: 50px;
    background-color: #964ad9cc;
  }


  .ts-team-wrapper:hover .ts-name {
    color: white;
    transition: all .5s ease;
    font-size: 24px;
  }

  .team-img-wrapper{
    height: 100%;
    width: 100%;
  }
  .team-img-wrapper img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: all .5s ease;
  }
  
   .ts-team-wrapper:hover img{
   transform: scale(1.2);
  }
  
  
 



  
  
  