/* Team */
.team-item .team-social {
    position: absolute;
    right: 15px;
    top: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 2;
}

.team-item .team-social li a svg{
    fill: currentColor;
    width: auto;
    height: 18px;
}

.team-item .team-social li a {
    color: var(--kidden-primary-color, #ff8851);
    font-size: 18px;
    width: 35px;
    height: 35px;
    text-align: center;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-item .team-social li a:hover {
    background-color: var(--kidden-primary-color, #ff8851);
    color: #fff;
}

.team-item .team-social li:not(:last-of-type) {
    margin-bottom: 5px;
}

.team-item .team-social li {
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: all .5s cubic-bezier(.30, .30, .05, .95);
}

.team-item:hover .team-social li {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.team-item .team-social li:nth-child(2) {
    transition-delay: 0.1s;
}

.team-item .team-social li:nth-child(3) {
    transition-delay: 0.2s;
}

.team-item .team-social li:nth-child(4) {
    transition-delay: 0.3s;
}

.team-item .team-social li:nth-child(5) {
    transition-delay: 0.4s;
}

.team-item .team-social li:nth-child(6) {
    transition-delay: 0.45s;
}

.team-item .team-social li:nth-child(7) {
    transition-delay: 0.5s;
}

.team-thumb img {
    width: 100%;
    transition: all 0.5s cubic-bezier(.30, .30, .05, .95);
}

.team-thumb {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(.30, .30, .05, .95);
}

.team-thumb .top-shape {
    width: 140px;
    height: 84px;
    position: absolute;
    left: -5px;
    top: -5px;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-100%) translateY(-100%);
    transition: all .5s cubic-bezier(.30, .30, .05, .95);
}

.team-thumb .bottom-shape {
    width: 90px;
    height: 90px;
    position: absolute;
    right: -5px;
    bottom: -5px;
    visibility: hidden;
    opacity: 0;
    transform: translateX(0) translateY(100%);
    transition: all .5s cubic-bezier(.30, .30, .05, .95);
}

.team-item:hover .top-shape, 
.team-item:hover .bottom-shape {
    visibility: visible;
    opacity: 1;
    transform: translateX(0) translateY(0);
    z-index: 1;
}

.team-item:hover .team-thumb img {
    transform: scale(1.05);
}

.team-item .team-content {
    background-color: #fff;
    text-align: center;
    padding: 20px 0;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, .05));
}

.team-item .team-content h3 {
    font-family: "Dosis", sans-serif;
    font-size: 22px;
    color: #343434;
    font-weight: 600;
    display: block;
    margin: 0;
    line-height: 20px;
}

.team-item .team-content h4 {
    font-family: "Dosis", sans-serif;
    font-size: 16px;
    color: #5f5f5f;
    font-weight: 600;
    display: block;
    margin: 5px 0 0;
    letter-spacing: 0;
}