html {
  background: #fff;
}

.p_partners {
  background: #ecf0f1;
  padding: 60px 0;
  border-bottom: 10px solid var(--partners-slider-border-color);
}

.p_partners_slide:before {
  background: -webkit-gradient(linear, left top, right top, color-stop(13%, rgba(255, 255, 255, 0)), color-stop(65%, #ecf0f1));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 13%, #ecf0f1 65%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 13%, #ecf0f1 65%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 13%, #ecf0f1 65%);
}

.rtl .p_partners_slide:before {
  background: -webkit-gradient(linear, right top, right top, color-stop(13%, #ecf0f1), color-stop(65%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(right, #ecf0f1 13%, rgba(255, 255, 255, 0) 65%);
  background: -o-linear-gradient(right, #ecf0f1 13%, rgba(255, 255, 255, 0) 65%);
  background: -webkit-gradient(linear, left top, right top, color-stop(13%, #ecf0f1), color-stop(65%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(left, #ecf0f1 13%, rgba(255, 255, 255, 0) 65%);
  background: -o-linear-gradient(left, #ecf0f1 13%, rgba(255, 255, 255, 0) 65%);
  background: linear-gradient(90deg, #ecf0f1 13%, rgba(255, 255, 255, 0) 65%);
}

@media (max-width: 991px) {
  .p_partners {
    padding: 60px 0 0;
  }
}