.tf-team .image-team {
overflow: hidden;
position: relative;
}
.tf-team .image-team img {
max-height: 325px;
object-fit: cover;
width: 100%;
}
.tf-team .social {
display: flex;
align-items: center;
column-gap: 25px;
row-gap: 10px;
padding: 6px 23px;
background: var(--theme-primary-color);
position: absolute;
bottom: 15px;
left: 50%;
transform: translateX(-50%);
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.tf-team:hover .social {
bottom: 20px;
opacity: 1;
visibility: visible;
}
.tf-team .social a {
color: #fff;
}
.tf-team .social a:hover {
opacity: 0.7;
}
.tf-team .image-team img {
transition: clip-path 1s cubic-bezier(.12,.76,.36,1), opacity .3s, transform 1.5s cubic-bezier(.12,.76,.36,1);
}
.tf-team .image-team {
display: block;
overflow: hidden;
}
.tf-team .image-team:hover img {
transform: scale(1.05);
}
.tf-team .title {
font-size: 22px;
font-weight: 700;
line-height: 27.72px;
margin-bottom: 5px;
}
.tf-team .position {
font-size: 16px;
font-weight: 400;
line-height: 20.16px;
}
.tf-team .content {
padding-top: 24px;
}