.slidesContainer{
    position:relative;
    height: 525px;
    width:600px;
    display: block;
    margin: 15px 0px;
}
.slides1 .slides2 .slides3 .slides4 .slides5 .slides6 .slides7{
    display: none;
}
/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 42%;
  width: auto;
  padding: 16px;
  color: #ffffff;
  font-size: 24px;
  transition: 0.6s ease;
  border-radius: 50px 0px 0px 50px;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
    margin-right: 0px;
    right:0;
    border-radius: 0px 50px 50px 0px;
}
.slidesCaption{
    position:absolute;
    bottom: 0px;
    width:100%;
    text-align: center;
    margin:0px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: #ff87eb;
  color: #ffffff;
}
/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.slidesImg{
    object-fit: contain;
    display:block;
    height:500px;
    width:500px;
    margin: auto;
}