.wr_clients {

}
.clients {
    width: 1280px;
    margin: 0px auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.client_item {
    width: 295px;
    margin: 45px 0px;
}
.wr_client_item_text {
    margin-top: 40px;
    width: 270px;
    height: 270px;
    box-sizing: border-box;
    border-radius: 135px;
    border: solid 15px #1f7cac;
    background-color: #e1f4fd;
    color: #153a6c;
    display: flex;
    justify-content: center;
    align-items: center;
}
.client_item_text {

}
.client_item_text p {
    font-size: 35px;
    text-align: center;
    line-height: 0.9;
}
.client_item_text p:nth-child(2) {
    font-size: 60px;
}
.client_item_anons {
    height: 100px;
    overflow: hidden;
    font-size: 25px;
    text-align: center;
    line-height: 28px;
    margin-top: 35px;
}

@media only screen and (max-device-width: 499px) {
    .clients {
        width: 100%;
    }
    .client_item {
        width: 100%;
        box-sizing: border-box;
        padding: 0px 5px;
        margin: 10px 0px;
    }
    .client_item_img {
        text-align: center;
    }
}
@media only screen and (min-device-width: 500px) and (max-device-width: 1279px) {
    .clients {
        width: 100%;
        justify-content: space-around;
    }
}