.clients .h1 {
    margin-bottom: 30px;
}
.clients-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 33.3%;
    height: 33.3%;
}
.clients-item img {
    filter: grayscale(1);
}
.clients-loop {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}
.clients-descr p {
    font-family: "Montserrat";
    font-style: italic;
    font-weight: normal;
    font-size: 13px;
    line-height: 16px;
    color: #000000;
    margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
    .clients-loop {
        margin-left: -15px;
        margin-right: -15px;
    }
    .clients-item {
        padding: 15px;
    }
}
@media screen and (max-width: 450px) {
    .clients-loop {
        margin-left: 0px;
        margin-right: 0px;
    }
    .clients-item {
        width: 300px;
        height: auto;
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
        flex: 0 0 100%;
    }
}

.review-loop {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.review-item {
    padding: 15px 20px;
    background-color: #F9F9F9;
    height: 100%;
    min-height: 185px;
    width: calc(100% / 12 * 6 - 15px);
    display: flex;
    flex-direction: column;
}
.review-item .top {
    display: flex;
    margin-bottom: 15px;
    justify-content: space-between;
}
.review-name {
    font-family: var(--raleway-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    color: #00594D;
}
.review-grade {
    padding: 0;
    margin: 0;
    display: flex;
}
.review-grade li {
    list-style: none;
}
.review-grade li svg>path {
    fill: #E9E9E9;
}
.review-grade li.active svg>path {
    fill: #E7A320;
}
.review-item .text {
    font-family: var(--raleway-family);
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    color: #000000;
}
@media screen and (max-width: 992px) {}
@media screen and (max-width: 768px) {
    .clients .col8 {
        width: calc(100% - 28px);
    }
    .clients .col4 {
        width: calc(100% - 28px);
    }
    .clients-descr {
        margin-bottom: 50px;
    }
}
@media screen and (max-width: 576px) {
    .review-loop {
        flex-wrap: nowrap;
        flex-direction: column;
    }
    .review-item {
        width: 100%;
    }
}