@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

.slider {
    height: 20vh;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100vw;
    /* background-color: aliceblue; */
}

.slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    /* flex-direction: row; */
    align-items: center;
    justify-content: center;
    width: calc(250px * 12);
    /* width: auto; */
}

.slide {
    height: 100px;
    width: 100%;
    padding: 20px;
    justify-content: center;
}

.slide img{
    margin-left: 5px;
}

.slider::before,
.slider::after {
    height: 20vh;
    width: 100px;
    position: absolute;
    content: "";
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1000;
}

.slider::before {
    left: 0;
    top: 0;
}

.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    /* z-index: -1; */
}

.wave svg {
    position: relative;
    display: block;
    width: calc(156% + 1.3px);
    height: 200px;
}

.wave .shape-fill {
    fill: rgba(255, 255, 255, 0.3);
}

.testimonials {
    height: 60vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* background-color: antiquewhite; */
}

.container {
    overflow: hidden;
    position: relative;
    /* max-width: 900px; */
    width: 100%;
    padding: 50px 0;
}

.testimonials .info .image {
    height: 200px;
    width: 200px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonials .info{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 30px;
}

.testimonials .info p{
    text-align: center;
    padding: 0px 160px;
    font-weight: 400;
    font-size: 16px;
    flood-color: #333;
}

.testimonials .info .details{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 5px;
}

.details .name{
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.details .job{
    font-weight: 400;
    font-size: 14px;
    color: #333;
}

.details .c-name{
    font-weight: 400;
    font-size: 12px;
    color: #333;
}