#contHeaderFooter {
    position: absolute;
    background: rgba(256,256,256,0.3);
    width: 100%;
    display: flex;
	top: 85%;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-250px * 7));
            transform: translateX(calc(-250px * 7));
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-250px * 7));
            transform: translateX(calc(-250px * 7));
  }
}
.crediteka-slider {
  background: rgba(256,256,256,0.3);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  margin: auto;
  overflow: hidden;
  position: absolute !important;
  width: 100%;
}
.crediteka-slider::before, .crediteka-slider::after {
  /*background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);*/
  content: "";
  position: absolute !important;
  width: 200px;
  z-index: 2;
}
.crediteka-slider::after {
  right: 0;
  top: 0;
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}
.crediteka-slider::before {
  left: 0;
  top: 0;
}
.crediteka-slider .crediteka-slide-track {
  -webkit-animation: scroll 40s linear infinite;
          animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}
.crediteka-slider .crediteka-slide {
  height: 80x;
  width: 400px;
}