.w-slider {
  position: relative;
  width: 100%;
  /* top: calc(50% - 97.25px); */
  top: calc(50% - 36.25px);
  overflow: hidden;
}
.w-slider .slider-row {
  width: 3000px;
  height: 170px;
  background-image: url(../img/slider-row.jpg);
  background-size: 3000px 170px;
  -webkit-animation: slide 50s linear infinite;
          animation: slide 50s linear infinite;
}

@-webkit-keyframes slide {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: -1478.5px;
  }
}

@keyframes slide {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: -1478.5px;
  }
}


/* @media (max-width: 700px) { 
  .w-slider {
    height: 10px !important;
    display: none !important;
  }
  .slider-row {
    height: 10px !important;
    display: none !important;
  }
  
  } */