.people-wrapper{
    width: 1280px;
    margin: 0 auto;
}
.people-title{
    font-size: 35px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.people-left{
    float: left;
    width: calc(100% - 330px);
}
.people-right{
    float: right;
    width: 300px;
}
.people-standart-window{
    width: 300px;
    height: 400px;
    background: yellowgreen;
    margin-bottom: 30px;
}
.people-img{
    width: 100%;
    height: 221px;
    background: lightblue;
    background-image: url(https://website16108.ru/person.jpg);
    background-size: cover;
}
.people-name{
    margin-top: 5px;
    color: #1b75bb;
    cursor: pointer;
    transition: 0.2s;
}
.people-name:hover{
    color: #faaf41;
}
.people-item{
    width: calc(20% - 24px);
    float: left;
    margin-right: 30px;
}
.people-item:nth-child(5n){
    margin-right: 0px;
}
.people{
    overflow: hidden;
}
.people-items{
    overflow: hidden;
}
.people-item{
    margin-bottom: 30px;
}

@media screen and (max-width: 600px) {
    .people-wrapper{
        width: 100%;
    }
    .people-title{
        font-size: 25px;
        text-align: center;
    }
    .people-left{
        float: none;
        width: 100%;
    }
    .people-item{
        width: 90%;
        margin: 20px 5%;
    }
    .people-name{
        font-size: 16px;
        text-align: center;
    }
    .people-right{
        float: none;
        width: 100%;
    }
    .people-standart-window{
        margin: 30px auto;
    }
}