.trusted-by-sec{
    width: 100%;
    height: 10rem;
    overflow: hidden;
    background-color: rgb(238, 244, 244);
}
.trusted-by-inner{
    width: 200%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    animation: scroll-left 50s linear infinite;
    overflow: hidden;
}

.trusted-client-con{
    width: 7rem;
    height: 7rem;
    border-radius: 10px;
    overflow: hidden;
}
.trusted-client{
    width: 100%;
    height: 100%;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 720px) {
    .trusted-by-inner{
        width: 300%;
    }
}

@media (max-width: 380px) {
    .trusted-by-inner{
        width: 550%;
    }
}