
img {
  width: 100%;
}

.height {
  height: 10px;
}

/* Image-container design */
.image-container {
  position: relative;
  margin: auto;
  overflow: hidden;
}

.next {
  right: 0;
}

/* Next and previous icon design */
.previous, .next {
  cursor: pointer;
  padding: 10px;
}

/* caption decorate */
.captionText {
  color: #000000;
  font-size: 14px;
  position: absolute;
  padding: 12px 12px;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Slider image number */
.slideNumber {
  background-color: #5574C5;
  color: white;
  border-radius: 25px;
  right: 0;
  opacity: .5;
  margin: 5px;
  width: 30px;
  height: 30px;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  position: absolute;
}

.fa-chevron-circle-right, .fa-chevron-circle-left {
  font-size: 32px;
}

.fa:hover {
  transform: rotate(360deg);
  transition: 1s;
}

.footerdot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.5s ease;
}

.footerdot.active,
.footerdot:hover {
  background-color: black;
}