:root {
  --swiper-navigation-sides-offset: 60px;
}

.banner-slider {
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.banner-slider .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bannerSwiper {
  height: 100%;
}

.banner-anim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--bs-dark);
  overflow: hidden;
  min-height: 700px;
}

.banner-slider-bg {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  visibility: hidden;
  animation: hidden 1s ease forwards;
  animation-delay: 5.3s;
}

.banner-content {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  min-height: 700px;
}

.banner-content--1 {
  opacity: 0;
  animation: banner-content-1 5.3s ease forwards;
  animation-delay: 1.6s;
  transform: scale(1.2);
}

.banner-content--2 {
  opacity: 0;
  animation: show 2s ease forwards;
  animation-delay: 5.3s;
  position: absolute;
  right: 0;
  left: 0;
}

.banner-anim--1 {
  height: 100%;
  width: 100%;
  animation: banner-anim-1 3s ease forwards;
  animation-delay: 3s;
  position: absolute;
  background: var(--bs-dark);
  z-index: -1;
  transform: scale(1.2);
}

.banner-anim--2 {
  animation: slide-up-left 2.7s cubic-bezier(0.08, 0.72, 0.97, 1.42) forwards;
  animation-delay: 3s;
  position: absolute;
  z-index: -5;
  width: 100%;
  height: 100%;
}

.banner-anim--2 img {
  width: 100%;
  height: 100%;
}

.banner-text {
  height: 100%;
  width: 100%;
  max-width: 800px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.lottie-anim {
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: banner-content-1 6s ease forwards;
}

.lottie-anim-2 {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: show 1s ease forwards;
  animation-delay: 5.3s;
}

.content-bg {
  width: 100%;
  height: 300px;
}

.slide-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.slide-overlay--text {
  position: absolute;
  color: var(--bs-light);
  max-width: 800px;
  text-align: center;
}

.slide-cta {
  height: 15%;
  width: 100%;
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.2s ease;
}

.slide-cta a {
  width: max-content;
  height: 100%;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  text-decoration: none;
}

.slide-cta:hover {
  background: rgba(0, 0, 0, 0.7);
}

.mw-50 {
  max-width: 75%;
}

.slider-link--arrow {
  transition: all 0.2s ease;
  position: absolute;
  left: 100%;
  margin-left: 2rem;
}

.slide-cta:hover .slider-link--arrow {
  transform: translateX(7px);
}

.bannerSwiper .swiper-button-prev:not(.swiper-button-disabled),
.bannerSwiper .swiper-button-next:not(.swiper-button-disabled) {
  background: rgba(0, 0, 0, 0.8);
  padding: 24px 12px;
  align-items: center !important;
  width: 48px !important;
  height: 48px !important;
  animation: blink 1.6s ease-in-out infinite alternate;
}

.bannerSwiper .swiper-button-disabled {
  opacity: 0 !important;
}

.bannerSwiper .swiper-button-prev::after {
  content: "" !important;
}

.bannerSwiper .swiper-button-next::after {
  content: "" !important;
}

.bannerSwiper .swiper-button-next svg,
.bannerSwiper .swiper-button-prev svg {
  height: auto !important;
}

@keyframes banner-anim-1 {
  0% {
    background: var(--bs-dark);
  }

  100% {
    background: none;
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes show {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
}

@keyframes hidden {
  0% {
    opacity: 0;
    visibility: hidden;
  }

  100% {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes banner-content-1 {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 1;
    transform: scale(1.2);
  }

  60% {
    opacity: 1;
    transform: scale(1.2);
  }

  75% {
    opacity: 1;
    transform: scale(1);
  }

  90% {
    opacity: 1;
    transform: scale(1);
  }

  99% {
    width: 100%;
    height: 100%;
  }

  100% {
    transform: scale(1) translateX(30px);
    opacity: 0;
    width: 0;
    height: 0;
  }
}

@keyframes slide-up-left {
  0% {
    transform: translateY(500px);
  }

  50% {
    transform: translateY(0);
  }

  90% {
    transform: translateY(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 905px) {
  .banner-text {
    max-width: 600px;
  }

  .slide-overlay--text {
    max-width: 500px;
  }
}

#homepage-banner .bannerSwiper .swiper-button-next {
  right: 20px;
}

#homepage-banner .bannerSwiper .swiper-button-prev {
  left: 20px;
}

@media screen and (min-width: 600px) and (max-width: 1239px) {
  #homepage-banner .bannerSwiper .swiper-button-next {
    right: 32px;
  }

  #homepage-banner .bannerSwiper .swiper-button-prev {
    left: 32px;
  }
}

@media screen and (min-width: 1240px) {
  #homepage-banner .bannerSwiper .swiper-button-next {
    right: 60px;
  }

  #homepage-banner .bannerSwiper .swiper-button-prev {
    left: 60px;
  }
}