.people{
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
}

.people h2 {
    font-size: 30px;
    margin-bottom: 25px;
    margin-top: 0px;
    text-transform: uppercase;
}

.people-margin{
    margin: 0 -15px;
}

.list-people{
    width: 100%;
    padding: 0px 15px;
    box-sizing: border-box;
    position: relative;
}

.list-people:after{
    content: "";
    display: block;
    clear: both;
}

.items-people{
    float: left;
    width: 16.66667%;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 10px;
    
    padding: 5px;
}

.items-people:hover{
    z-index: 100;
}

.items-people-content{
    height: 320px;
/*    height: 16.7vw;*/
    height: 12vw;
    
    transition: 0.5s;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-size: 100%;
    
    margin-bottom: 10px;
}

.people-name{
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.people-job-title{
    font-size: 12px;
    color: rgba(0,0,0,0.5);
}

.title_items{
    width: 100%;
    height: 60px;
    text-transform: uppercase;
    box-sizing: border-box;
    padding: 20px 0px;
    
    display: none;
}

.title_items .people-name{
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: bold;
}

@media only screen and (max-width: 1400px){
    .items-people{
        width: 20%;
    }
    
    .items-people-content{
        height: 14vw;
    }
}

@media only screen and (max-width: 1300px){
    .items-people{
        width: 25%;
    }
    
    .items-people-content {
        height: 16vw;
    }
}

@media only screen and (max-width: 1100px){
    
    .items-people {
        width: 33.33333%;
    }
    
    .items-people-content {
        height: 21vw;
    }
    
}

@media only screen and (max-width: 850px){

    
}

@media only screen and (max-width: 768px){
    
    .people h2 {
        padding: 0px 25px;
        box-sizing: border-box;
        font-size: 18px;
    }
    
    .people-margin {
        margin: 0px 5px;
    }
    
    .items-people {
        width: 50%;
        padding: 3px;
        margin-bottom: 5px;
    }
    
    .items-people-content {
        height: 44vw;
        margin-bottom: 5px;
    }
    
    .people-name{
        font-size: 12px;
        font-size: 9px;
        margin-bottom: 1px;
        letter-spacing: 0px;
    }
    
    .people-job-title{
        font-size: 12px;
        font-size: 9px;
    }
    
}