#members .page-big-title {
    margin-bottom: 50px;
}
.member-res-wrap {
    cursor: pointer;
}
.member-res-image {
    padding-top: 55%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: 0.5;
    -webkit-transition: all .35s ease;
    -moz-transition: all .35s ease;
    -o-transition: all .35s ease;
    transition: all .35s ease;
}
.member-res-wrap h4 {
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    color: black;
    font-size: 14px;
    margin-bottom: 0;
}
/*Responsive*/
@media only screen and (min-width:1025px) {
    .member-res-wrap:hover .member-res-image {
        -webkit-filter: grayscale(0);
        filter: grayscale(0);
        opacity: 1;
    }
}
@media only screen and (min-width:1025px) and (max-width:1450px) {
    .member-res-item {
        width: 33.33%;
    }
}
@media only screen and (max-width:1024px) {
    #members .row-65 {
        margin-left: -15px;
        margin-right: -15px;
    }
    .member-res-item {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media only screen and (max-width:769px) {
    #members .page-big-title {
        margin-bottom: 25px;
    }
    .member-res-wrap h4 {
        font-size: 10px;
    }
}
@media only screen and (min-width:551px) and (max-width:769px) {
    .member-res-item {
        width: 33.33%;
    }
}
@media only screen and (max-width:500px) {
    .member-res-item {
        margin-bottom: 30px;
    }
    .member-res-item:last-child {
        margin-bottom: 0;
    }
}