<!-- start Simple Custom CSS and JS -->
<style type="text/css">
.slide-container {
  width: 60%;
  position: relative;
  overflow: hidden;
}

.holder {
  height: 100%;
  width: 400%;
  display: flex;
  transition: transform 0.6s ease;
}
.card {
  padding: 40px 25px;
  flex-basis: 100%;
  border: 1px solid #ccc;
  background-color: #a2d2ff;
}
.card h2 {
  text-align: center;
  margin: 15px 0 40px;
  text-transform: uppercase;
  color: #f6f6f6;
}
.card p {
  line-height: 1.5;
  font-size: 19px;
  text-align: center;
  color: #000;
}

.navigation i {
  font-size: 28px;
  margin: 5px;
  color: #ff865e;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.navigation i.right {
  right: 0;
}

.controls {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}
.controls ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
.controls ul li {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  border: 1px solid #ff865e;
  background-color: #ff865e;
  margin: 5px;
  cursor: pointer;
}
.controls ul li.selected {
  background-color: transparent;
}

@media screen and (max-width: 592px) {
  .slide-container {
    width: 80%;
  }
  .card {
    padding: 20px 30px;
  }
  .card h2 {
    margin: 15px 0 30px;
  }
  .card p {
    line-height: 1.3;
    font-size: 17px;
  }
  .navigation i {
    font-size: 25px;
    margin: 3px;
  }
  .controls ul li {
    width: 15px;
    height: 15px;
  }
}

</style>
<!-- end Simple Custom CSS and JS -->
