/* Team */
.team-item{
    --blippi-team-bg: #ff88b0;
}
.team-item .team-social {
    position: absolute;
    right: 51px;
    bottom: 1px;
    list-style: none;
    margin: 0;
    padding: 0;
    transform: skew(-5deg, 0deg);
    z-index: 2;
}

.team-item .team-social li a svg{
    fill: currentColor;
    width: auto;
    height: 18px;
}

.team-item .team-social li a {
    color: var(--blippi-team-bg);
    font-size: 18px;
    width: 40px;
    height: 45px;
    text-align: center;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.team-item .team-social li a svg{
    fill: currentColor;
}

.team-item .team-social li a:hover {
    background-color: var(--blippi-team-bg);
    color: #fff;
}

.team-item .team-social li:not(:last-of-type) {
    margin-bottom: 0;
}

.team-item .team-social li {
    visibility: hidden;
    opacity: 0;
    transform: translateX(20px);
    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 {
    border-radius: 4px;
    width: 93%;
    height: 300px;
    object-fit: cover;
    object-position: top;
    margin-left: auto;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

.team-thumb {
    position: relative;
}

.team-thumb .team-shape{
    width: 160px;
    height: auto;
    position: absolute;
    left: 0;
    bottom: -25px;
    z-index: 3;
}

.team-thumb .team-shape.shape-1 {
    bottom: -1px;
    left: -35px;
}

.team-thumb .team-shape.shape-2{
    left: -35px;
    bottom: -7px;
    transform: rotate(3deg);
}

.team-item .team-content {
    background-color: var(--blippi-team-bg);
    text-align: center;
    width: 100%;
    height: 82px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 97% 100%, 2% 100%);
}
.team-item .team-content:before{
    background-color: #fff;
    content: "";
    width: calc(100% - 34px);
    height: calc(100% - 20px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    clip-path: polygon(0% 9%, 100% 2%, 99% 100%, 0% 94%);
    z-index: -1;
}

.team-item .team-content h3 {
    font-family: "Dosis", sans-serif;
    font-size: 22px;
    color: #343434;
    font-weight: 600;
    display: block;
    margin: 0;
    line-height: 1;
}
.team-item .team-content h3 a{
    color: #343434;
}

.team-item .team-content h3 a:hover{
    color: var(--blippi-team-bg);
}

.team-item .team-thumb h4 {
    background-color: var(--blippi-team-bg);
    width: auto;
    height: max-content;
    min-height: 180px;
    padding: 26px 10px;
    position: absolute;
    right: 10px;
    bottom: -1px;
    writing-mode: tb-rl;
    transform: rotate(-180deg) skew(-5deg, 0deg);
    font-family: "Dosis", sans-serif;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0;
    z-index: 3;
}