.pro-home-page h1{
	padding-top: 30px;
	margin-bottom: 0px;
    margin-left: -2px;
}

.website-intro-page{
    background: white;
    padding-bottom: 80px;
    padding-top: 1px;
    box-shadow: 0px 5px 10px lightgrey;
}

.pro-home-page small{
	margin-bottom: 32px;
	display: inline-block;
}

.pro-cover-page p{
    padding: 0px 160px;
    box-sizing: border-box;
}

.module-container {
    margin-top:100px;
    position: relative;
    width: 100%;
    height: 80vh;
}

.module {
	font-family: Avenir, sans-serif;
    position: absolute;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    border: 1px solid #999;
    opacity: 0.8;
    background: #fafafa;
    color: #555;
    opacity: 0.5
}

.pro-home-page .pro-body{
    height: auto;
    margin-bottom: 80px;
}

.pro-home-page .pro-body small{
    opacity: 0.7;
}

.pro-button{
    margin-left: 0px;
}

.pro-cover-page{
    text-align: center;
    width: 977px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.people-grid{
    margin-top: 24px;
    margin-bottom: 24px;
    text-align: center;
    width: 100%;
    display: inline-block;
    align: center;
    overflow: hidden;
}

.people-grid .single-profile{
    display: inline-block;
    float: left;
    border: 1px solid #fafafa;
    height: 93px;
    width: 93px;
    background: #efefef;
    text-align: center;
    transition: all 0.5s ease-in-out;
    position: relative;
}

.people-grid .single-profile img{
    height: 94px;
    width: 94px;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    transition: 0.2s ease-in-out;
    opacity: 0.5;
}


.speaker-tooltip{
    position: absolute;
    padding: 8px;
    box-sizing: border-box;
    background: #333;
    color: white;
    font-size: 14px;
    z-index: 2;
    line-height: 18px;
    text-align: left;
    height: 95px;
    left: 0px;
    top: 0px;
    width: 95px;
    visibility: hidden;
    background: rgba(61, 79, 89, 1.0);
    background: -webkit-linear-gradient(bottom right, rgba(61, 79, 89, 0.8), rgba(33, 35, 38, 0.8));
    background: -moz-linear-gradient(bottom right, rgba(61, 79, 89, 0.8), rgba(33, 35, 38, 0.8));
    background: linear-gradient(bottom right, rgba(61, 79, 89, 0.8), rgba(33, 35, 38, 0.8));
}

.section-division-title{
    text-align: center;
    color: #999;
    margin-bottom: 80px;
}

@media (hover: hover) {
    .single-profile:hover .speaker-tooltip{
        visibility: visible;
    }

    .people-grid .single-profile img:hover{
        -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
        filter: grayscale(0%);
        opacity: 1;
    }
}