.client-request-block_new {
    padding: 35px 0 70px;
}

.client-request-block_items_new {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px 0 0;
    margin: 0 0 45px;
}

.client-request-block_item_new {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    width: calc(25% - 15px);
    box-sizing: border-box;
    background: linear-gradient(135deg, #3d3225 0%, #171717 100%);
    border-radius: 8px;
    padding: 30px;
    overflow: hidden;
}

.client-request-block_item_new::after {
    position: absolute;
    bottom: -50px;
    left: -100px;
    content: '';
    filter: blur(9px);
    box-shadow: 0 10px 16px 20px rgba(208, 164, 116, 0.5), 0 -5px 14px 15px rgba(208, 164, 116, 0.55);
    background: #eebd88;
    transform: rotate(45deg);
    opacity: 0.15;
    width: 34px;
    height: 250px;
    animation: moveLight 4s infinite linear;
}

@keyframes moveLight {
    0% {
        left: -100px;
    }
    100% {
        left: 100%;
    }
}

.client-request-block_item_new p {
    font-weight: 700;
    font-size: 20px;
    line-height: 125%;
    text-align: center;
    color: white;
}

.client-request-block_text_new blockquote {
    border: none;
    padding: 0;
}

.client-request-block_text_new blockquote p {
    font-style: italic;
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    color: #252525;
    margin: 0 0 20px;
}

.client-request-block_text_new blockquote div {
    font-weight: 500;
    font-size: 20px;
    line-height: 125%;
    color: #252525;
}

.client-request-block_text_new blockquote div span {
    font-weight: 700;
}