.customers_say {
    padding: 120px 0 100px;
    background: #222222;
    border-bottom: 2px solid #FFFFFF;
    overflow: hidden;
    position: relative;
}
.customers_say .title_block{
    text-align: center;
    font-weight: 800;
    font-size: 58px;
    line-height: 120%;
    color: #F5F5F5;
    padding-bottom: 50px;
    border-bottom: 1px solid #444444;
}
.customers_say .description_block {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    text-align: center;
    color: #F5F5F5;
    align-self: center;
    max-width: 850px;
    margin: 30px auto 50px;
}
.customers_say .feedback_block {
    transition: all 500ms ease;
    display: grid;
    grid-gap: 25px;
    grid-auto-flow: column;
    margin: auto;
    box-sizing: border-box;
}
.customers_say .feedback_block .item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px;
    gap: 20px;
    width: 410px;
    height: auto;
    border: 1px solid #444444;
    border-radius: 10px;
    transition: all 500ms ease;
    position: relative;
}
.customers_say .feedback_block .item .name_project {
    font-weight: 700;
    font-size: 24px;
    line-height: 160%;
    color: #FFFFFF;
    transition: all 500ms ease;
}
.customers_say .feedback_block .item .text {
    position: relative;
}
.customers_say .feedback_block .item .text .mini {
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    color: #F5F5F5;
    transition: all 1000ms ease;
    width: 350px;
    display: block;
}
.customers_say .feedback_block .item .text .big {
    font-weight: 400;
    line-height: 160%;
    color: #F5F5F5;
    font-size: 18px;
    font-style: italic;
    transition: all 500ms ease;
    opacity: 0;
    width: 570px;
    visibility: hidden;
    position: absolute;
    top: 0;
    z-index: -1;
    display: block;
}
.customers_say .feedback_block .item .client {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.customers_say .feedback_block .item .image  {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
    transition: all 500ms ease;
}
.customers_say .feedback_block .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.customers_say .feedback_block .item .client .name {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    color: #F5F5F5;
    transition: all 500ms ease;
}
.customers_say .feedback_block .item .client .position {
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    color: #F5F5F5;
    font-style: italic;
}
.customers_say .feedback_block .item:hover {
    width: 630px;
    background: #333333;
}
.customers_say .feedback_block .item:hover .name_project {
    font-size: 16px;
}
.customers_say .feedback_block .item:hover .text .mini {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: -1;
}
.customers_say .feedback_block .item:hover .text .big {
    opacity: 1;
    visibility: visible;
    position: relative;
    transition: all 100ms ease;
    z-index: 2;
}
.customers_say .feedback_block .item:hover .image  {
    width: 80px;
    height: 80px;
}
.customers_say .feedback_block .item:hover .client .name {
    font-size: 28px;
    color: #ABA6F2;
}

.carousel_wrapper .feedback_block.slide_left .item {
    transform: translateX(-220px);
}



.carousel_wrapper {
    overflow: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.carousel_wrapper::-webkit-scrollbar {
    height: 0;
}
.buttons_slider {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 30px;
}

#prev,
#next {
    border: none;
    outline: 0;
    cursor: pointer;
    position: relative;
    width: 60px;
    height: 60px;
    background: #333333;
    border-radius: 10px;
}

#prev.disabled,
#next.disabled {
    opacity: .5;
}
#prev svg,
#next svg {
    fill: #ABA6F2;
}

@media screen and (max-width: 1023px) {
    .customers_say .feedback_block .item {
        padding: 25px;
        gap: 20px;
        height: auto;
        width: 300px;
    }
    .customers_say .feedback_block .item .text .mini {
        width: 100%;
    }
    .customers_say .feedback_block .item .text .big {
        display: none;
    }
    .customers_say .feedback_block .item:hover .text .mini {
        opacity: 1;
        visibility: visible;
        position: relative;
        z-index: 2;
    }
    .customers_say .feedback_block .item:hover {
        width: 300px;
        height: auto;
    }
}
@media screen and (max-width: 768px) {
    .customers_say {
        padding: 40px 0;
    }
    .customers_say .title_block {
        font-weight: 700;
        font-size: 24px;
        padding-bottom: 15px;
    }

    .customers_say .feedback_block .item .name_project {
        font-weight: 700;
        font-size: 20px;
        line-height: 120%;
    }
    .customers_say .feedback_block .item:hover .name_project {
        font-weight: 700;
        font-size: 20px;
        line-height: 120%;
    }
    .customers_say .description_block {
        margin: 30px 0 20px;
    }
}
