.section_3 {
    position: relative;
    min-height: 100vh;
    width: 100%;
    margin-top: 50px;
    /* bottom: 0px; */
}

.row_profiles {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.sliding_row {
    width: 1750px;
    /* background-color: red; */
    display: flex;
    column-gap: 30px;
    max-height: 260px;
    animation: loopSlider 30s linear infinite forwards;
    position: relative;
}

.sliding_row:nth-child(2) {
    left: -150px;
}

.sliding_row:nth-child(3) {
    left: -50px;
}

.column_profile {
    min-width: 250px;
    max-width: 250px;
}

.column_profile div {
    border-radius: 10px;
    height: 200px;
    width: 200px;
    /* background-color: blue; */
    width: 100%;
    position: relative;
    /* padding-top: 75%; */
    /* max-height: 200px; */
}

.column_profile .i_mg {
    object-fit: cover;
    border-radius: inherit;
    left: 0;
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    border: 0.2px solid #fff;
}

.profile_container {
    display: grid;
    grid-template-columns: 20% 70%;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    column-gap: 10px;
}

.dd {
    /* display: flex;
    align-items: center;
    justify-content: center; */
    /* max-height: 20px; */
    /* margin-top: 15px; */
}

.profile_new img {
    border-radius: 50%;
}

@keyframes loopSlider {
    /* 0% {
        left: -2155px;
    }
    100% {
        left: 1750px;
    } */
    0% {
        transform: translate(0);
    }
    to {
        transform: translate(calc(-1 * 1750px))
    }
}