/* Team Member */
.team-member {
    position: relative;
}

.team-member .team-thumb {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.team-member .team-thumb img {
    display: block;
    transition: all 0.5s cubic-bezier(.30, .30, .05, .95);
}

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

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

.team-member .team-content h3 {
    font-size: 20px;
    color: #0b2238;
    font-weight: 600;
    display: block;
    margin: 0;
    line-height: 20px;
}

.team-member .team-content a{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.team-member .team-thumb .position h4 {
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0;
}

.team-member .team-thumb .position {
    background: var(--galactic-gradiant, #9841ff);
    position: absolute;
    padding: 5px 30px;
    right: 0;
    bottom: 0;
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: .5s cubic-bezier(.30, .30, .05, .95);
    z-index: 1;
}
.team-member .color-shape .shape:before,
.team-member .team-thumb .position:before{
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.team-member .team-social {
    position: absolute;
    right: 15px;
    top: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-member .team-social li a {
    color: #007aff;
    font-size: 18px;
    width: 35px;
    height: 35px;
    text-align: center;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member .team-social li a:hover {
    background-color: #007aff;
    color: #fff;
}

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

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

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

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

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

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

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

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

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

.team-member .color-shape {
    position: absolute;
    left: 20px;
    top: -20px;
    visibility: hidden;
    opacity: 0;
    transition: .5s cubic-bezier(.30, .30, .05, .95);
}

.team-member .color-shape .shape {
    background: var(--galactic-gradiant, #9841ff);
    width: 25px;
    height: 90px;
    position: absolute;
    left: 0;
    top: 0;
    transform: skew(-30deg);
    z-index: 1;
    transition: .5s cubic-bezier(.30, .30, .05, .95);
}

.team-member .color-shape .shape.shape-1 {
    position: absolute;
    left: 0;
    top: -10px;
    opacity: 0.9;
    transition: .5s cubic-bezier(.30, .30, .05, .95);
}

.team-member .color-shape .shape.shape-2 {
    height: 50px;
    left: 5px;
    top: 40px;
    opacity: 0.4;
    width: 20px;
}

.team-member .color-shape .shape.shape-3 {
    left: -30px;
    top: 15px;
    opacity: 1;
}

.team-member .color-shape .shape.shape-4 {
    height: 50px;
    left: -25px;
    top: 0;
    opacity: 0.9;
}

.team-member .color-shape .shape.shape-5 {
    height: 50px;
    left: -50px;
    top: 30px;
    opacity: 0.3;
    width: 18px;
}

.team-member .team-thumb .position,
.team-member:hover .color-shape,
.team-member.active .position,
.team-member.active .color-shape {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}