@import url('//netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css');
    .accordion-toggle:after {
        font-family: 'FontAwesome';
        content: "\f078";    
        float: right;
    }
    .accordion-opened .accordion-toggle:after {    
        content: "\f054";    
    }
    .accordion-group{
        padding: 12px;
        font-size: 18px;
    }

    .team-member{
        text-align: center;
        padding: 30px 20px;
    }
    .team-member .pic{
        position: relative;
        overflow: hidden;
        transform: scale(1);
        transition: all 0.3s ease 0s;
    }
    .team-member:hover .pic{
        transform: scale(1.01);
    }
    .team-member .pic:after{
        content: "";
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.5);
        box-shadow: 0 0 0 900px rgba(255, 255, 255, 0.5);
        position: absolute;
        bottom: -100px;
        right: -100px;
        opacity: 0;
        transform: scale3d(0.5, 0.5, 1);
        transform-origin: 50% 50% 0;
        transition: all 0.35s ease 0s;
    }
    .team-member:hover .pic:after{
        opacity: 1;
        transform: translate3d(0px, 0px, 0px);
    }
    .team-member .pic img{
        width: 100%;
        height: auto;
    }
    .team-member .read-more{
        width: 100px;
        padding: 0 15px 15px 0;
        font-size: 14px;
        color: #fff;
        letter-spacing: 0.35px;
        text-align: right;
        text-transform: uppercase;
        position: absolute;
        bottom: 0;
        right: 0;
        opacity: 0;
        z-index: 1;
        transform: translate3d(20px, 20px, 0px);
        transition: all 0.35s ease 0s;
    }
    .team-member:hover .read-more{
        opacity: 1;
        transform: translate3d(0px, 0px, 0px);
    }
    .team-member .team-content{
        padding: 20px 0;
        background: #f5f5f5;
    }
    .team-member .title{
        font-size: 18px;
        font-weight: 700;
        color: #3b3b3b;
        text-transform: capitalize;
        margin: 0 0 8px 0;
    }
    .team-member .post{
        font-size: 13px;
        font-weight: 500;
        color: #6e6e70;
        text-transform: capitalize;
    }

    .modal4 {
        display: none;
        position: fixed;
        z-index: 1;
        padding-top: 25px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgb(0,0,0);
        background-color: rgba(0,0,0,0.9);
    }
    .modal4-content {
        margin: auto;
        display: block;
        width: 100%;
        max-width: 700px;
        background: white;
    }
    .modal4-content .modal-header{
        background-color: #EA0E2F;
        color: white;
    }

    .modal5 {
        display: none;
        position: fixed;
        z-index: 1;
        padding-top: 75px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgb(0,0,0);
        background-color: rgba(0,0,0,0.9);
    }
    .modal5-content {
        margin: auto;
        display: block;
        width: 100%;
        max-width: 700px;
        background: white;
    }
    .modal5-content .modal-header{
        background-color: #EA0E2F;
        color: white;
    }

    .modal6 {
        display: none;
        position: fixed;
        z-index: 1;
        padding-top: 100px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgb(0,0,0);
        background-color: rgba(0,0,0,0.9);
    }
    .modal6-content {
        margin: auto;
        display: block;
        width: 100%;
        max-width: 700px;
        background: white;
    }
    .modal6-content .modal-header{
        background-color: #EA0E2F;
        color: white;
    }

    @media(max-width:640px){
        .team-member {
            padding: 30px 60px;
        }
    }

    @media (max-width:768px){
        .team-member {
            padding: 30px 60px;
        }
    }