.bodyContainer {
  animation-name: heightZero;
  animation-duration: 4.5s;
}

.imageContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

/* <!-- Setting the animation, duration, fill mode and timing function for the images. --> */
img {
  animation-duration: calc(var(--j) * 1.2s);
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}

img:nth-child(1) {
  animation-name: slideLeft;
  border-top-left-radius: 10px;
}
img:nth-child(2) {
  animation-name: slideTop;
}
img:nth-child(3) {
  animation-name: slideRight;
  border-top-right-radius: 10px;
}
img:nth-child(4) {
  animation-name: slideLeft;
}
img:nth-child(5) {
  animation-name: slideTop;
}
img:nth-child(6) {
  animation-name: slideRight;
}
img:nth-child(7) {
  animation-name: slideLeft;
  border-bottom-left-radius: 10px;
}
img:nth-child(8) {
  animation-name: slideBottom;
}
img:nth-child(9) {
  animation-name: slideRight;
  border-bottom-right-radius: 10px;
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideTop {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideBottom {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.w3l-box {
    align-self: stretch;
}

/* Slideshow container */
.slideshow-container {
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #333;
  font-size: 14px;
  text-align: right;
  font-style: oblique;    

}

/* The dots/bullets/indicators */
.dot {
  height: 5px;
  width: 5px;
  margin: 0 2px;
  background-color: #BABCBC;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active1 {
  background-color: #BABCBC;
}

/* Fading animation */
.fade1 {
  animation-name: fade;
}

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

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}
.bord{
  border-radius: 4px;
  border: 1px solid var(--border-color-light1);
}

