.logo-moving-carousel-wrapper{
    position: relative;
    z-index: 1;
}
.logo-moving-carousel-wrapper .logo-carousel{
    background: #F0F2F5;
    border-radius: 32px;
    padding: 25px 0;
    overflow: hidden;
    box-shadow: 0px -4px 35px 30px rgba(0, 0, 0, 0.19);
    position: absolute;
    left: 0;
    right: 0;
    max-width: 1166px;
    margin: 0 auto;
    top: -65px;
}
.logo-moving-carousel-wrapper .logo-carousel h4{
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #180D36;
    text-transform: uppercase;
    text-align: center;
}
.logo-moving-carousel-wrapper .logo-carousel .logo-moving-carousel{
    margin-top: 25px;
}
.logo-moving-carousel-wrapper .logo-carousel .logo-moving-carousel .item{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
}
.logo-moving-carousel-wrapper .logo-carousel .logo-moving-carousel .item img{
    max-width: 150px;
    max-height: 70px;
    filter: saturate(0);
    opacity: .6;
}
.logo-moving-carousel::before,
.logo-moving-carousel::after {
background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(240,242,245,1) 100%);

  content: "";
  height: 100%;
  position: absolute;
  width: 80px;
  z-index: 2;
}
.logo-moving-carousel::after {
  right: 0;
  top: 0;
 
}
.logo-moving-carousel::before {
  left: 0;
  top: 0;
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}
@media(max-width: 767px){
    .logo-moving-carousel-wrapper .container{
        padding-left: 0;
        padding-right: 0;
    }
    .logo-moving-carousel-wrapper .logo-carousel{
        box-shadow: 0px -4px 35px 4px rgba(0, 0, 0, 0.19);
        top: 0;
        border-radius: 0;
        position: relative;
        top: 0;
    }
    .logo-moving-carousel-wrapper .logo-carousel .logo-moving-carousel .item{
        height: 50px;
    }
    .logo-moving-carousel-wrapper .logo-carousel .logo-moving-carousel .item img{
        max-height: 50px;
    }
    .logo-moving-carousel-wrapper .logo-carousel .logo-moving-carousel::before, .logo-moving-carousel-wrapper .logo-carousel .logo-moving-carousel::after{
        display: none;
        opacity: 0;
    }
}