/* 13. team */

.team-img {
    position: relative; 
    & img{
        width: 100%;
    }
    &::before {
        height: 100%;
        width: 100%;
        position: absolute;
        content: "";
        background: #222;
        left: 0;
        top: 0;
        border-radius: 50%;
        opacity: .0;
        transition: .3s;
     }
}
  .team-wrapper:hover .team-img::before {
    opacity: .5;
 }
  .team-icon {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 40%;
    transition: .3s;
    opacity: 0;
    & > a {
        font-size: 14px;
        transition: .3s;
        margin: 0 1px;
        height: 36px;
        width: 36px;
        background: $white;
        display: inline-block;
        text-align: center;
        line-height: 36px;
        border-radius: 50%;
        color: #979797;
            &:hover {
            color: $white;
            background: $theme-color;
            }
        }
 }
.team-wrapper:hover .team-icon {
    opacity: 1;
    transform: translatey(-50%);
    top:50%
}
.team-02-icon{
    top: 6px;
    position: absolute;
    right: 24px;
    transition: .3s;
    & > a{
        background: $theme-color;
        color: $white;
        font-size: 16px;
        height: 45px;
        width: 45px;
        display: inline-block;
        line-height: 45px;
        text-align: center;
        border-radius: 50%;
    }
}
.team-wrapper:hover .team-02-icon{transform: scale(0);}
.team-text {
    margin-top: 26px;
& h3{
    margin-bottom: 9px;
    font-size: 24px;
}
& span{
    color: $theme-color;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    }
}
.team-parent .col-xl-6:nth-child(1) .team-wrapper {
    transform: translateY(-40px);
   }
.team-parent .col-xl-6:nth-child(3) .team-wrapper {
    transform: translateY(-40px);
   }


