/* page-equipe :: team — CSS di sezione (estratto) */

/* --- from custom/personal.css --- */
.team-social-link li a {
    color: #0a8ae6 !important;
}

@media only screen and (max-width: 1199px) {
    .team-area {
        padding: 60px 0 60px !important;
    }
}

/* --- from modules/team-section.css --- */
/*** 
=============================================
    Team Area Css
=============================================
***/
.team-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0 90px;
    z-index: 1;
}



.single-team {
    position: relative;
    display: block;
    transform: translate3d(0px, 0px, 0px);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    margin-bottom: 30px;
}


.single-team:hover {
    box-shadow: 0px 10px 50px 0px rgba(26, 46, 85, 0.2);
    transform: translateY(-5px);
    transition: all 0.3s ease-in-out 0.1s;
}


.single-team .img-holder {
    position: relative;
    display: block;
}


.single-team .img-holder .inner {
    position: relative;
    display: block;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    overflow: hidden;
    background: var(--thm-base);
    z-index: 1;
}


.single-team .img-holder .inner img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    object-position: top center;
    display: block;
}


.single-team .title-holder {
    position: relative;
    display: block;
    text-align: center;
    padding-top: 23px;
    padding-bottom: 18px;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    z-index: 1;
}


.single-team .title-holder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: var(--thm-base);
    transform: perspective(400px) scaleX(0);
    transform-origin: center;
    transition: all 400ms linear;
    transition-delay: 0.1s;
    z-index: -1;
}


.single-team:hover .title-holder::before {
    transform: perspective(400px) scaleX(1.0);
    transition: all 400ms linear;
    transition-delay: 0.1s;
}


.single-team .title-holder h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    text-transform: capitalize;
    margin: 0 0 0px;
}


.single-team .title-holder h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}


.single-team .title-holder h3 a:hover {
    color: var(--thm-base);
}


.single-team .title-holder p {
    padding: 0 4px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    margin: 0;
}




.single-team .social-link-box {
    position: relative;
    display: block;
    padding-top: 13px;
}


.team-social-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


.team-social-link li {
    position: relative;
    display: inline-block;
    float: none;
    margin: 0 10px;
}


.team-social-link li a {
    position: relative;
    display: block;
    color: var(--thm-gray);
    font-size: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}


.team-social-link li a:hover {
    color: var(--thm-base);
}
