.photos-of-employees {
    overflow: hidden;
    padding: 40px 0;
}

.photos-of-employees-title {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.photos-of-employees-items {
    overflow: hidden;
}

.photos-of-employees-item {
    width: 360px;
    height: 360px;
    float: left;
    margin: 15px;
    text-decoration: none;
    box-sizing: border-box;
    background-color: #fff;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media screen and (max-width: 1024px) {
    .photos-of-employees-item {
        width: 300px;
        height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .photos-of-employees-item {
        width: 215px;
        height: 215px;
    }
}

@media screen and (max-width: 667px) {
    .photos-of-employees-item {
        width: 185px;
        height: 185px;
    }
}

@media screen and (max-width: 420px) {
    .photos-of-employees-item {
        width: 100%;
        height: 300px;
    }
}