/*body {
    align-items: center;
    background: #E3E3E3;
    display: flex;
    height: 100vh;
    justify-content: center;
  }*/
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 11));
    }
  }
  .txtslider {
    position: relative;
    top:-480px;
    background: transparent;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
    height: auto;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  
  /*.slider::before,
  .slider::after {
    background: linear-gradient(to right, black 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 700px;
    position: absolute;
    width: 50px;
    z-index: 2;
  }
  
  .txtslider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
  }
  
  .txtslider::before {
    left: 0;
    top: 0;
  }*/
  
  .txtslider .txtslide-track {
    position: relative;
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 22);
  }
  
  .txtslider .txtslide {
    height: auto;
    width: auto;
  }

  @media (min-width: 320px) and (max-width: 768px){
    .txtslider .txtslide {
      width: 180px;
    }
  }
  @media (min-width: 1281px) and (max-width: 1440px){
    .txtslider {
        top:-360px;
      }
  }
  @media (min-width: 1025px) and (max-width: 1280px){
    .txtslider {
        top:-320px;
      }
  }
  @media (min-width: 769px) and (max-width: 1024px){
    .txtslider {
        top:-280px;
      }
  }
  @media (min-width: 320px) and (max-width: 768px){
    .txtslider {
        top:-180px;
      }
  }