#member-card-holder-column {
    width: 90%;
}

.member-card-holder {
    margin-bottom: 30px;
}

.member-card {
    position: relative;
    width: 272px;
    height: 415px;
    padding: 27px;
    margin: 5px 25px;


    border-radius: 15px;

    text-align: center;
    color: #f5f5f5;

    overflow: hidden;

    opacity: 1;
    transition: 0.8s;
}

.member-card-holder:first-child .member-card {
    margin-left: 0px;
}

.member-card-holder:last-child .member-card {
    margin-right: 0px;
}

.member-card:hover .member-card-background {
    top: -200%;
    left: -200%;

    transition: 0.8s
}

.member-card a {
    position: relative;
    z-index: 2;
}

.member-card-background {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    border-radius: 15px;
    z-index: 0;
    background: linear-gradient(135deg, #012F6B 33%, #1D559F 66%);

    transition: 0.8s
}

.member-image-holder {
    /* width: 100%; */

}

.member-image {
    width: 190px;
    height: 190px;

    border: 2px solid #f5f5f5;
    border-radius: 100%;


    background-position: top;
    background-size: 100%;
    background-repeat: no-repeat;
    margin: auto;
}

.member-name-holder {
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-name {
    font-weight: 700;
    font-size: 25px;
    line-height: 23px;
    color: #f5f5f5;
    margin-top: 16px;
}

.member-job-title-holder {
    height: 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-job-title {
    font-size: 20px;
    line-height: 20px;
    color: #f5f5f5;
}

.member-linkedin-holder i {
    font-weight: 800;
    font-size: 30px;
    color: #f5f5f5;
    transition: 0.2s;
}

.member-linkedin-holder a:hover i {
    transform: scale(1.1);
    transition: 0.2s;
}

/*
full height:413

    img:
        height: 190
        padding-top:27

    name:
        height: 47

    title:
        height: 47

    linkedin:
        height: 42
*/


.member-card-wrapper {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    /* Hide vertical scrollbar */
    scrollbar-color: linear-gradient(135deg, #012F6B 33%, #1D559F 66%) #f5f5f5;

    padding-bottom: 30px;
}


.member-card-wrapper::-webkit-scrollbar {
    width: 12px;
}

.member-card-wrapper::-webkit-scrollbar-track {
    background-color: #f5f5f5;
    border-radius: 15px;
}

.member-card-wrapper::-webkit-scrollbar-thumb {
    border-radius: 15px;
    background-color: #012F6B;
    background: linear-gradient(135deg, #012F6B 33%, #1D559F 66%);
}


.member-card-wrapper .slick-prev::before,
.member-card-wrapper .slick-next::before {
    display: flex;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #FFD800;
    background-color: #012F6B;
    border-radius: 100%;
    opacity: 1;
    font-size: 30px;
}


/* ******** */
/* ******** */
/* ******** */

.member-card-wrapper .slick-dots{
    bottom: 0;
}

.member-card-wrapper .slick-dots li {
    width: 30px;
    height: 30px;
    margin: 0 7px;
}

.member-card-wrapper .slick-dots li button {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: solid 3px #012F6B;
    transition: 0.4s;
}

.member-card-wrapper .slick-dots li.slick-active button {
    background-color: #012F6B;
}

.member-card-wrapper .slick-dots li button:before {
    content: '';
}