

/* ************************************************************************** *\
|* ****************************** GENERAL *********************************** *|
\* ************************************************************************** */

.btn {
    color: #FFF !important;
    font: 700 13px 'Poppins', 'Helvetica';
    letter-spacing: 0.05rem;
    border: none;
    text-align: center;
    background-color: #325182;
    min-width: 150px;
    padding: 8px 0;
    margin: 10px 0;
}

.btn:hover {
    color: #FFF;
    background: #4068a7;
    font-weight: 800 !important;
}




/* ************************************************************************** *\
|* ******************************** #hero *********************************** *|
\* ************************************************************************** */




/* ************************************************************************** *\
|* ******************************** #INFO *********************************** *|
\* ************************************************************************** */

#info {
	display: block;
	width: 100%;
}

#info .inner {
	display: block;
	max-width: 1200px;
	width: 93%;
	margin: 0 auto;
	padding: 100px 0 125px;
}

#info .content {
	line-height: 27px;
    font-size: 15px;
    display: inline-block;
    
    font-weight: 300;
}


#info .content > span.first-letter {
	color: #4068a7;
    font-size: 75px;
    font-weight: 700;
    float: left;
    font-family: 'Poppins';
    line-height: 75px;
    padding: 0 15px;
    text-transform: uppercase;
}

/* ************************************************************************** *\
|* ******************************** #INFO *********************************** *|
\* ************************************************************************** */

#info .m-title {
    margin-top: 50px;
}

#info .m-con {
    display: block;
    width: 100%;
    /*border: 1px solid #DDD;*/
    border-top: none;
}

#info .m-con .member {
    display: block;
    width: 100%;
    padding: 25px;
    border-bottom: 1px solid #DDD;
    margin: 0 0 30px 0;

    -webkit-box-shadow: 0 0 15px 0 rgba(175, 175, 175, 1);
       -moz-box-shadow: 0 0 15px 0 rgba(175, 175, 175, 1);
            box-shadow: 0 0 15px 0 rgba(175, 175, 175, 1);
}

#info .member .img {
    display: inline-block;
    max-width: 175px;
    max-height: 175px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

#info .member .img img {
    width: 100%;
    height: 100%;
    -o-object-position: 0 0;
       object-position: 0 0;
    -o-object-fit: contain;
       object-fit: contain;
}

#info .member .desc {
    position: relative;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: -webkit-calc(100% - 180px);
    width: calc(100% - 180px);
    vertical-align: top;
    padding: 25px;
}


#info .member .desc .name {
    font: 400 25px 'Montserrat', 'Helvetica';
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 30px;
    margin: 0 0 10px 0;
}

#info .member .desc .pos {
    margin: 0 0 10px 0;
}

#info .member .desc .btn-group {}

#info .member .desc .btn-group > .btn { margin: 0 5px 0 0; }
#info .member .desc .btn-group > .btn:last-child { margin: 0; }

#info .member .bio {
    height: 0px;
    overflow: hidden;
    margin: 0;

    -webkit-transition: all .5s linear;
    -o-transition: all .5s linear;
    transition: all .5s linear;
}

/* opens bios in organization tab */
.user-open-bio {
    height: auto !important;
    overflow: visible !important;
    padding: 15px 0 0 0;

    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

#info .member .bio p:first-child { margin: 0; }

#info .member .bio p.p1 { 
    line-height: 25px;
}


@media only screen and (max-width: 600px) {
    #info .m-con .member { padding: 15px; }
    .btn { font-size: 12px; }
}

@media only screen and (max-width: 475px) {
    #info .m-con .member { padding: 15px; }
    .btn { width: 100%; }

    #info .member .desc {
        width: 100%;
        padding: 10px 0;
    }

    #info .member .bio p.p1 {
        line-height: 22px;
        font-size: 12px;
    }
}















