.imageSlidesPar {
  display: none;
}

.images-slideshowPar img {
  margin: auto;
  display: block;
  width: 100%;
  padding: 10px;
}

/* Our main images-slideshow container */
.images-slideshowPar {
  max-width: 1000px;
  position: relative;
  margin: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}

/*Style for ">" next and "<" previous buttons */
.slider-btnPar {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 8px 16px;
  margin-top: -22px;
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

/* setting the position of the previous button towards left */
.previousPar {
  left: 2%;
}
/* setting the position of the next button towards right */
.nextPar {
  right: 2%;
}

/* On hover, adding a background color */
.previousPar:hover,
.nextPar:hover {
  color: rgb(255, 253, 253);
  background-color: rgba(0, 0, 0, 0.8);
}
