﻿.wrapper {
    box-shadow: 0 1px 7px rgba(0, 0, 0, 0.2) !important; /*  Added this remove the page shadow */
}

.container {
    font-family: arial, sans-serif;
    width: 100%;
}

h1 {
    font-size: 32px;
    font-weight: normal;
    color: #333;
    border-bottom: none !important;
}

    h1 strong {
        color: #000;
    }

h3 {
    font-size: 24px !important;
    text-align: center;
    margin-top: 35px !important;
}

.tabs ul {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

    .tabs ul li {
        display: inline-block;
        color: #000;
        font-size: 13px;
        font-weight: 700;
        text-align: center;
        margin: 5px;
    }

        .tabs ul li a {
            display: block;
            color: #333333;
            padding: .5em .625em;
            border: 1px solid #ddd;
            border-radius: 3px;
        }

            .tabs ul li a:hover {
                background: #eeeeee;
                border: 1px solid #eee;
            }

            .tabs ul li a.selected, .tabs ul li a.selected:hover {
                color: white;
                background: #6e6e6e;
                padding: .5em .625em;
                border-radius: 3px;
            }

.team-members {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin: 20px 0 40px;
    padding: 5px 0 15px;
    background: linear-gradient(to bottom, white 0%, white 48%, #3b3838 48%, #3b3838 100%);
}

.member {
    box-sizing: border-box;
    width: 18%;
    margin-left: 1.666666%;
    margin-top: 30px;
    height: auto;
    text-align: center;
}

    .member img {
        width: 160px;
        height: 180px;
        object-fit: cover;
        object-position: top center;
        border-radius: 80px / 90px;
        box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.2);
        margin-bottom: -20px;
    }

    .member .name {
        display: block;
        box-sizing: border-box;
        height: auto;
        background: #d0cdcd;
        font-size: 14px;
        color: #000;
        padding: 6px;
        position: relative;
        z-index: 100;
        border: 1px solid #000;
        font-style: normal !important;
    }

    .member .title {
        display: block;
        box-sizing: border-box;
        min-height: 70px;
        vertical-align: top;
        background: #222a35;
        font-size: 13px;
        line-height: 1.4em;
        color: white;
        font-weight: 500px;
        padding: 6px 12px;
        border: 1px solid #000;
    }

/* =========================================*/
/* =================Responsive===============*/
/* =========================================*/


/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
    .team-members {
        flex-wrap: wrap;
        background: linear-gradient(to bottom, white 0%, white 70%, #3b3838 70%, #3b3838 100%);
    }

    .member {
        width: 30%;
        margin-left: 2.5%
    }
}
/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    .tabs ul {
        flex-wrap: wrap
    }

        .tabs ul li {
            width: 45%
        }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
    .tabs ul li {
        width: 90%
    }

    .team-members {
        background: linear-gradient(to bottom, white 0%, white 80%, #3b3838 80%, #3b3838 100%);
    }

    .member {
        width: 45%;
        margin-left: 3.333333%;
    }
}
/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {
}

