.swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.aes-slide-inner {
  background-position: 50%;
  background-repeat: no-repeat;
  padding: 20px;
}

.aes-slide-bg {
  background-position: 50%;
  background-repeat: no-repeat;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
}

.aes-slide-bg-overlay {
  inset: 0;
  position: absolute;
}

.aes-slide-contents {
  color: #fff;
  text-align: center;
}

.aes-slide-title {
  font-size: 1.5rem;
}

.aes-slide-description {
  font-size: 1rem;
}

.aes-slide-button {
  color: white;
  border: 1px solid white;
  padding: 12px 15px;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
}

.aes-slide-button:hover {
  color: #fff;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

.aes-slider-pagination {
  right: 0;
  width: fit-content !important;
  /* margin: 0 auto; */
}

/* Slider Animations */
.animated {
  animation-duration: 1.25s;
}

@keyframes contentFadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.contentFadeInUp {
  animation-name: contentFadeInUp;
}

@keyframes contentFadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.contentFadeInDown {
  animation-name: contentFadeInDown;
}

@keyframes contentFadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.contentFadeInLeft {
  animation-name: contentFadeInLeft;
}

@keyframes contentFadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.contentFadeInRight {
  animation-name: contentFadeInRight;
}
