.verticalBox-slide {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
}
.verticalBox-slide .verticalSlide-foto {
  transition: all 0.5s linear;
  margin-left: 30px;
  margin-right: 30px;
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* visibility: hidden; */
  opacity: 0;
  cursor: pointer;
  z-index: 10;
}
.verticalBox-slide .top {
  top: 0;
  left: 0;
  right: 0;
  height: 37%;
  animation: fotoFon 1s linear ;
  /* visibility: visible; */
  opacity: 1;
}
.verticalBox-slide .center-top {
  top: 12%;
  left: 0;
  right: 0;
  height: 37%;
  margin: 0;
  animation: fotoFon 1s linear ;
  /* visibility: visible; */
  opacity: 1;
}
.verticalBox-slide .center-slide {
  display: inline-block;
  top: 25%;
  left: -10%;
  right: -10%;
  height: 50%;
  z-index: 50;
  margin: 0;
  animation: foto 1s linear;
  /* visibility: visible; */
  opacity: 1;
}
.verticalBox-slide .center-bottom {
  top: 50%;
  left: 0;
  right: 0;
  height: 37%;
  z-index: 30;
  margin: 0;
  animation: fotoFon 1s linear ;
  /* visibility: visible; */
  opacity: 1;
}
.verticalBox-slide .bottom {
  top: 62%;
  left: 0;
  right: 0;
  height: 37%;
  animation: fotoFon 1s linear ;
  z-index: 20;
  /* visibility: visible; */
  opacity: 1;
}

/* slide2 */
.horizontalBox-slide {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  
}
.horizontalBox-slide .horizontalSlide-foto {
  transition: all 0.5s linear;
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
}
.horizontalBox-slide .left {
  top: 20%;
  bottom: 0;
  left: -37%;
  right: 0;
  height: 60%;
  animation: fotoFon2 1s linear ;
  opacity: 1;
}
.horizontalBox-slide .center-left {
  top: 10%;
  bottom: 0;
  left: -25%;
  right: 0;
  height: 80%;
  margin: 0;
  animation: fotoFon2 1s linear ;
  opacity: 1;
}
.horizontalBox-slide .center-slide {
  display: inline-block;
  top: 0;
  bottom: 0;
  left: -10%;
  right: -10%;
  height: 100%;
  z-index: 50;
  margin: 0;
  animation: foto2 1s linear;
  opacity: 1;
}
.horizontalBox-slide .center-right {
  top: 10%;
  bottom: 0;
  left: 0;
  right: -25%;
  height: 80%;
  z-index: 30;
  margin: 0;
  animation: fotoFon2 1s linear ;
  opacity: 1;
}
.horizontalBox-slide .right {
  top: 20%;
  bottom: 0;
  left: 0;
  right: -37%;
  height: 60%;
  animation: fotoFon 1s linear ;
  opacity: 1;
  z-index: 20;
}
@keyframes foto {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: .90;
  }
}
@keyframes fotoFon {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: .60;
  }
}
