.caruselWrapper {
  overflow: hidden;
  height: 100%;
  width: 100%;
  white-space: nowrap;
  position: relative;
}

.cardWrapper {
  width: 100%;
  height: 100%;
  display: inline-block;
}

.chevron {
  position: absolute;
  top: 50%;
  z-index: 100;
  height: 65px;
  width: 65px;
  transform: translateY(-50%);
  background-color: #e4eef4;
  background-position: center;
  background-size: 25%;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: 0.5s ease;
}

.chevronLeft {
  background-image: url("/images/home/arrowLeft.png");
  left: 10px;
}

.chevronRight {
  clear: left;
  right: 10px;
  background-image: url("/images/home/arrowRight.png");
}

.chevronLeft:hover {
  left: 0px;
}

.chevronRight:hover {
  right: 0px;
}

.offsetEl1 {
  transform: translateX(400px);
}

.offsetEl2 {
  transform: translateX(800px);
}

.offsetEl3 {
  transform: translateX(1000px);
}

.offsetEl4 {
  transform: translateX(1200px);
}

.offsetEl5 {
  transform: translateX(500px);
}

@media (max-width: 1000px) {
  .caruselWrapper {
    position: absolute;
    top: 70px;
    left: 0;
    height: 100%;
  }
}
