/*--------------------
     Team
---------------------*/
.member {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 30px;
    /* @include prefix(transition, all .3s linear, webkit moz ms o); */
    transition: all .3s linear;

}

.member .member-img {
    position: relative;
}

.member .member-img img {
    width: 100%;
}

.member .member-info {
    position: relative;
    margin-top: -100px;
    padding: 40px 40px 25px;
    background-color: transparent;
    clip-path: url(#path-direction-up);
    /* @include prefix(transition, all .3s ease, webkit moz ms o); */
    transition: all .3s ease;
}

.member .member-info .member-name {
    font-size: 20px;
    margin-bottom: 7px;
    padding-top: 80px;
    /* @include prefix(transition, all .3s ease, webkit moz ms o); */
    transition: all .3s ease;
}

.member .member-info .member-desc {
    font-size: 14px;
    margin-bottom: 0;
    /* @include prefix(transition, all .3s ease, webkit moz ms o); */
    transition: all .3s ease;
}

.member .social-icons {
    transform: scale(0);
    /* @include prefix(transition, all .3s ease, webkit moz ms o); */
    transition: all .3s ease;
}

.member .social-icons li:last-child {
    margin-right: 0;
}

.member .social-icons li a {
    width: 38px;
    height: 38px;
    border: 0;
    box-shadow: none;
    border-radius: 2px;
    background-color: var(--color-secondary);
    /* @include prefix(transition, all .3s linear, webkit moz ms o); */
    transition: all .3s linear;
}

.member .social-icons li a i {
    width: 20px;
    height: 20px;
    color: var(--color-secondary);
    background-color: var(--color-white);
}

.member .social-icons li a:hover {
    background-color: var(--color-primary);
}

.member .social-icons li a:hover i {
    color: var(--color-primary);
}

.member:hover .member-info {
    background-color: var(--color-white);
}

.member:hover .social-icons {
    transform: scale(1);
}

/* Team Layout 1 */
.team-layout1 .member {
    box-shadow: 0px 5px 83px 0px rgba(40, 40, 40, 0.11);
}

.team-layout1 .member .member-info::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    height: 100px;
    background-color: var(--color-white);
}

/* Team Layout 2 */
.team-layout2 .member .member-info {
    padding-top: 70px;
}

.team-layout2 .member:hover {
    box-shadow: 0px 5px 83px 0px rgba(40, 40, 40, 0.11);
}

/* Mobile Phones and tablets */
/* @include xs-sm-screens { */
@media screen and (max-width: 768px) {
    .member {
        max-width: 450px;
        margin: 0 auto 30px;
    }

    .member .member-info .member-name {
        font-size: 15px;
        margin-bottom: 0;
    }

    .team-layout1 .member .member-info::after {
        height: 90px;
    }
}
/* } */
