
.providers{
    width: 100%;
    height: auto;
    margin-top: 40px;
  }
  
  .providers_tittle{
    color: #FFF;
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.56px;
  }
  
  .providers_items{
    width: 100%;
    height: auto;
    margin-top: 20px;
    overflow: hidden;
    position: relative;
  }
  
  /* Градиенты по краям для эффекта скрытия */
  .providers_items::before,
  .providers_items::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }
  
  .providers_items::before {
    left: 0;
    background: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0.8) 50%, transparent 100%);
  }
  
  .providers_items::after {
    right: 0;
    background: linear-gradient(to left, #000 0%, rgba(0, 0, 0, 0.8) 50%, transparent 100%);
  }
  
  .providers_items_wrapper {
    display: flex;
    align-items: center;
    gap: 13px;
    animation: marquee 40s linear infinite;
    will-change: transform;
    width: fit-content;
  }
  
  .providers_items_wrapper:hover {
    animation-play-state: paused;
  }
  
  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-50% - 6.5px));
    }
  }
  
  .providers_item{
    width: 253px;
    height: 115px;
    border-radius: 13.3px;
    background: #0D0D0D;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .providers_item_content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 20px;
  }

  .providers_item_icon {
    width: 140px;
    height: 44px;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
  }
  


  @media (min-width: 320px) and (max-width: 499px){
  
    .providers_tittle{
      font-size: 20px;
    }
    .providers_item {
      width: 150px;
      height: 115px;
    }
    .providers_item_content {
      padding: 0 12px;
    }
    .providers_item_icon {
      width: 110px;
      height: 36px;
    }
  }

  @media (min-width: 500px) and (max-width: 799px){
    .providers_item_icon {
      width: 120px;
      height: 40px;
    }
  }