/*
 Theme Name:     Customizr Child
 Theme URI:      http://mysite.com/
 Description:    My description
 Author:         Me
 Author URI:     http://mysite.com/
 Template:       customizr-pro
 Version:        1.0.0
*/

.pointer {cursor: pointer;}
/* *******************  STAFF /////////////////////////////////// */
.image-container {
text-align: center;
vertical-align: middle;
display: table-cell;
}

.image-container img {
max-width: 200px;
max-height: 100px;
}

.img_border{
    border: 1px solid #c1c1c1;
    border-radius: 4px;
    padding: 1px;
}

.img_border:hover{
    box-shadow: 0 0 2px 1px rgba(0, 92, 123, 0.5);
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.column {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    flex-shrink: 3; 
    
}

@media (min-width: 576px) {
    .column {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 768px) {
    .column {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (min-width: 992px) {
    .column {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media(max-width: 767.98px) {
    .section-title h1 {
        font-size: 40px;
        letter-spacing: 3px;
    }
}

@media(max-width: 567.98px) {
    .section-title h1 {
        font-size: 30px;
        letter-spacing: 2px;
    }
}

.team-2 {
    text-align: center;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.team-2 .team-img {
    position: relative;
    font-size: 0;
    border-radius: 5px 5px 0 0;
}

.team-2 .team-img img {
   /* width: 100%; */
   /* height: auto; */
    border-radius: 5px 5px 0 0;
}



.team-2 .team-content {
    padding: 10px;
}

.team-2 .team-content h2 {
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 2px;
}

.team-2 .team-content h3 {
    font-size: 16px;
    font-weight: 300;
}

.team-2 .team-content h4 {
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.team-2 .team-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.team-2{cursor: pointer;}
.team-2 img {
    transition: filter .5s ease-in-out;
    -webkit-filter: grayscale(100%); /* Ch 23+, Saf 6.0+, BB 10.0+ */
    filter: grayscale(100%); /* FF 35+ */
    }

.team-2:hover img {
    -webkit-filter: grayscale(0%); /* Ch 23+, Saf 6.0+, BB 10.0+ */
    filter: grayscale(0%); /* FF 35+ */
    }
.team-2 h3:hover~.team-2 img {
    -webkit-filter: grayscale(0%); /* Ch 23+, Saf 6.0+, BB 10.0+ */
    filter: grayscale(0%); /* FF 35+ */
    }


    .separator {
        display: flex;
        align-items: center;
        text-align: center;
        padding-top: 10px;
        padding-bottom: 15px;
    }
    .separator::before, .separator::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid lightgray;
    }
    .separator::before {
        margin-right: .25em;
    }
    .separator::after {
        margin-left: .25em;
    }

