.clients_widget{
    padding-bottom: 4rem;
}
.clients_list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.clients_item {
    width: 23.5%;
    height: 230px;
    background: radial-gradient(circle at top left,
            #4a2b8c,
            #2b154f 60%,
            #1b0e33 100%);
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center; 
    position: relative;
    flex-direction: column;
    gap: 1rem;
    padding: 20px;
}

.clients_item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(145deg, #7d5bff, #3a1b82);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.clients_txt {
    display: none;
}

.clients_item:hover .clients_txt {
    display: block;
}

.clients_txt p {
    font-size: 13px;
    line-height: 20px;
    color: #fff;
    font-family: 'Inter-light';
    font-weight: 400;
}
.clients_list img{
    height: 30px;
    filter: brightness(0) invert(1);
}
@media screen and (max-width: 767px) {
    .clients_item {
        width: 100%;
    }
}