.glcr-team {
    display: block;
    position: relative;
    overflow: hidden;
}

.glcr-team-image {
    position: relative;
    display: block;
    overflow: hidden;
}

.glcr-team-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    display: block;
    z-index: 0;
    opacity: 0;
    visibility: visible;
    transition: all .3s ease-in-out;
}

.glcr-team-content {
    position: relative;
    display: block;
    padding: 27px 0;
    text-align: left;
}

.glcr-team-name, .glcr-team-name a {
    font-size: 22px;
}

.glcr-team-position {
    font-size: calc(var(--body-font-size) - 3px);
    font-family: var(--swm-headings-font-family);
    font-weight: var(--swm-headings-font-weight);
}

.glcr-team-align-left .glcr-team-content {
    text-align: left;
}

.glcr-team-align-right .glcr-team-content {
    text-align: right;
}

.glcr-team-align-center .glcr-team-content {
    text-align: center;
}

@keyframes glcr-text-in {
    0% {
        transform: opacity:0;
    }

    100% {
        transform: opacity:1;
    }

}

@keyframes glcr-text-out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }

}

.glcr-team .glcr-team-social {
    font-size: 20px;
    position: absolute;
    z-index: 1;
    bottom: 40px;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    opacity: 0;
    visibility: visible;
    transition: all .3s ease-in-out;
}

.glcr-team .glcr-team-social-holder {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.glcr-team .glcr-team-social a.glcr-icon {
    font-size: 17px;
    line-height: 0;
    color: var(--swm-color-light-1);
    margin: 5px 8px;
}

.glcr-team .glcr-team-social a.glcr-icon:hover {
    color: var(--swm-color-light-1);
}

.glcr-team:hover .glcr-team-image:before, .glcr-team:hover .glcr-team-social {
    opacity: 1;
    visibility: visible;
}

.glcr-team .glcr-icon {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.25s, transform 0.45s cubic-bezier(0.26, -0.14, 0, 1.01);
}

.glcr-team:hover .glcr-icon {
    opacity: 1;
    transform: translateX(0) translateZ(0);
}

.glcr-team:hover .glcr-icon:nth-child(2) {
    transition-delay: 0.3s;
}

.glcr-team:hover .glcr-icon:nth-child(3) {
    transition-delay: 0.4s;
}

.glcr-team:hover .glcr-icon:nth-child(4) {
    transition-delay: 0.5s;
}