/* .partners-section .slider {
    height: 60px;
    position: relative;
    width: 100%;
  
    display: grid;
    place-items: center;
    overflow: hidden;
  }
  .partners-section .slide img {
    height: 50px;
    object-fit: contain;
}
  .partners-section .slider::before,
  .partners-section .slider::after{
    position:absolute;
    
    content:'';
    height:100%;width:25%;
    z-index:2;pointer-events:none;
  }
  .partners-section .slider::before{
    left:0;
    top:0;
  }
  .partners-section .slider::after{
    right:0;
    top:0;
    transform:rotateZ(180deg);
  } */
  
  /*  IMPORTANT CODE BELOW */
  

  /* .partners-section .slide-track2 {
    width: calc(204px * 15);
    display: flex;
    animation: scroll2 15s linear infinite;
    justify-content: space-between;
  }
  
  .partners-section .slide {
    width: 150px;
    height: 60px;
  
    display: grid;
    place-items: center;
    transition:0.5s;
    cursor:pointer;
  }
  .partners-section .slide:hover{
    transform:scale(0.8)
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(calc(-204px * 10));
    }
  }
  
  @keyframes scroll2 {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(calc(-204px * 5));
    }
  }
  
  @media screen and (max-width: 768px) {
    .partners-section .slide-track {
      width: calc(80px * 20);
    }
  
    .partners-section .slide-track2 {
      width: calc(80px * 15);
    }
  
    .partners-section .slide {
      width: 80px;
    }
  
    @keyframes scroll {
      0% {
        transform: translateX(0px);
      }
      100% {
        transform: translateX(calc(-80px * 10));
      }
    }
  
    @keyframes scroll2 {
      0% {
        transform: translateX(0px);
      }
      100% {
        transform: translateX(calc(-80px * 5));
      }
    }
  } */
  
  .logo-box {
    border: 1px solid #D0D0D0;
    padding: 10px;
    border-radius: 10px;
    margin: 5px;
}
