.cw-carousel-container {
  position: relative;
  overflow: hidden;
}

.cw-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.cw-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #fff;
  border: none;
  min-height: 200px;
  padding: 1rem;
  margin-right: 1.5rem;
}

.cw-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  color: rgba(0,0,0,.3);
  border: none;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
}

.cw-carousel-nav.prev {
  left: -0.5rem;
}

.cw-carousel-nav.next {
  right: -0.5rem;
}

@media (min-width: 992px) {
  .cw-slide {
    flex: 0 0 auto;
    width: calc(33.3333333% - 1rem);
  }
}
