.tf-team {
    overflow: hidden;
}

.tf-team .image-team img {
    width: 100%;
    height: auto;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.tf-team .image-team {
    position: relative;
    overflow: hidden;
}
.tf-team .image-team::after {
    position: absolute;
    opacity: 0;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(255, 64, 64, 0.2);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.tf-team:hover .image-team::after {
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tf-team:hover .image-team img  {
    -webkit-transform: scale(1.1); 
    -ms-transform: scale(1.1); 
    transform: scale(1.1); 
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tf-team .image-team .social {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    position: absolute;
    bottom: 0px;
    left: 50%;
    opacity: 0;
    transform: translate(-50%,0%);
    -ms-transform: translate(-50%,0%);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 5;
}

.tf-team:hover .image-team .social {
    opacity: 1;
    bottom: 20px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tf-team .image-team .social a {
    color: #fff;
    font-size: 15px;
    opacity: 0;
    visibility: hidden;
}

.tf-team:hover .image-team .social a {
    opacity: 1;
    visibility: visible;
}

.tf-team .image-team .social a:hover {
    transform: translateY(- 5px);
}

.tf-team .image-team .social a:not(:last-child) {
    margin-right: 30px;
}

.tf-team .social a:nth-child(1) {
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

.tf-team .social a:nth-child(2) {
    -webkit-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    -ms-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
}


.tf-team .social a:nth-child(3) {
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.tf-team .social a:nth-child(4) {
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    -ms-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.tf-team.style1 {
    text-align: center;
}

.tf-team.style1:hover .inner-image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.tf-team .inner-image {
    position: relative;
    overflow: hidden;
}

.tf-team.style2 .image-team {
    margin-left: auto;
    margin-right: auto;
}

.tf-team.style2 {
    text-align: center;
}

.tf-team.style2 .content {
    border: 1px solid rgb(102, 102, 102,0.1);
    border-radius: 7px;
}

.tf-team.style2 .social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 7px;
    border: 1px solid rgb(102, 102, 102,0.1);
}

.tf-team.style2 .social a:last-child {
    margin-right: 0;
}