/*
    Created on : Oct 29, 2016, 1:37:53 PM
    Author     : Juraj Marcin
*/


/*  Team  */

.teammembers {
    text-align: center;
}

.mentor {
    display: block !important;
    margin: auto;
    margin-bottom: 25px;
}

.teammember {
    position: relative;
    display: inline-block;
    width: 300px;
    height: 400px;
    margin-right: 10px;
    margin-left: 10px;
}

.teammember .image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    text-align: center;
    background-color: #1C75BC;
}

.teammember .image img {
    max-width: 100%;
    object-fit: contain;
}

.teammember .bio {
    line-height: 25px;
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: height .5s ease;
    text-align: left;
    color: #EEE;
    background-color: rgba(28, 117, 188, .5);
}

.teammember:hover .bio {
    height: 100%;
}

.teammember .bio h4, .teammember .bio h6 {
    margin: 0;
    text-align: center;
}

.teammember .bio * {
    margin-right: 5px;
    margin-left: 5px;
}

@media screen and (max-width: 768px), screen and (orientation: portrait) {
    .teammember {
        max-width: calc(100vw - 50px);
        margin-left: 0;
    }
}
