
.flex-container {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.flex-item-wrapper {
    flex: 1 0 33%;
    -webkit-flex: 1 0 33%;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    justify-content: space-between;
}

.flex-item {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-direction: row;
    -webkit-flex-direction: row;
}

.trustees .flex-container {
    justify-content: space-between;
}

.item-thumbnail {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* background-color: #f2f2f2; */
    overflow: hidden;
    height: 275px;
    /* border: 10px solid #f2f2f2; */
    border-bottom: 5px solid #bc1e26;
}

.item-thumbnail img {
    transition: transform .4s ease-out;
    max-width: 200px;
    box-shadow: 12px 9px 0px 2px rgb(202 199 213);
    border: 2px solid #fff;
}

.item-thumbnail img:hover {
    transform: scale(1.1);
}

.item-body {
    padding: 5%;
    /* background-color: #faf8ff; */
    width: 100%;
    height: auto;
}

.item-body h5,
.item-body h6,
.item-body p {
    margin: 0;
}

.item-footer {
    width: 100%;
    padding: 0px 20px 10px;
    text-align: right;
}

.trustees .flex-item-wrapper {
    max-width: 300px;
    margin: 10px;
}

@media (max-width: 993px) {
    .flex-container {
        flex: 1 0 100%;
        -webkit-flex: 1 0 100%;
        flex-direction: column;
        -webkit-flex-direction: column;
        flex-wrap: nowrap;
        -webkit-flex-wrap: nowrap;
    }
    .flex-item {
        display: block;
        flex-direction: column;
        -webkit-flex-direction: column;
        flex-wrap: nowrap;
        -webkit-flex-wrap: nowrap;
        flex: 1 0 auto;
        -webkit-flex: 1 0 auto;
    }
    .flex-item-wrapper {
        flex: 1 0 100%;
        -webkit-flex: 1 0 100%;
        flex-direction: column;
        -webkit-flex-direction: column;
        flex-wrap: nowrap;
        -webkit-flex-wrap: nowrap;
    }
    .trustees .flex-container {
        flex-direction: row;
        -webkit-flex-direction: row;
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        justify-content: center;
    }
    .trustees .flex-item-wrapper {
        flex: 1 0 50%;
        -webkit-flex: 1 0 50%;
    }
}

@media screen and (max-width: 600px) {
    .trustees .flex-item-wrapper {
        flex: 1 0 50%;
        -webkit-flex: 1 0 50%;
    }
}

.trustee-contact p {
    margin-top: .5rem;
    line-height: 110%;
}

.trustee-subtitle {
    font-weight: 600;
}