#gspb_container-id-gsbp-4348f0e,
#gspb_container-id-gsbp-b4d7ca4 {
  overflow: hidden !important;
  overflow-x: hidden !important;
  overflow-y: visible !important;
}

.animation-container {
  position: relative;
  width: 100%;
}
.animation-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--background-image, none);
  background-color: var(--background-color, transparent);
  background-position: top center;
  background-size: 100%;
  background-repeat: no-repeat;
  transition: background-image 0.2s ease-in-out;
}
.animation-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--overlay-image);
  background-position: bottom left;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.animation-container.active::after {
  opacity: 1;
}
.animation-container .scroll-anchor {
  height: 100vh;
}
.animation-container .animation-block {
  position: absolute;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  opacity: 0;
}
.animation-container .animation-block:nth-child(odd) {
  justify-content: flex-start;
}
.animation-container .animation-block.active .content.blue-background {
  background-color: #223a6d;
  border-radius: 28px;
}
.animation-container .animation-block.active .content.blue-background > .text-container h2 {
  font-family: LibreBaskerville-Regular, sans-serif;
  text-transform: capitalize;
  font-size: 36px;
  line-height: 48px;
  color: #fff;
}
.animation-container .animation-block.active .content.blue-background > .text-container p {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
}
.animation-container.has-video-background .animation-block {
  align-items: center;
  justify-content: flex-end;
  padding-top: 50px;
}
.animation-container .content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 50px;
  max-width: 800px;
  padding: 40px 140px;
  background-color: transparent;
  transition: background-color 0.5s ease;
}
@media (max-width: 1024px) {
  .animation-container .content {
    padding: 20px 40px;
    gap: 20px;
  }
}
.animation-container .image-container {
  flex: 1;
}
.animation-container .text-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
}
.animation-container .text-container h2 {
  color: var(--Stage-Dark-Blue, #223A6D);
  font-family: "LibreBaskerville-Regular";
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 62px;
  letter-spacing: -1.28px;
  margin: 0;
}
@media (max-width: 1024px) {
  .animation-container .text-container h2 {
    font-size: 36px;
    line-height: 48px;
  }
}
.animation-container .text-container p {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  max-width: 475px;
  margin: 6px 0;
}
.animation-container.has-video-background .content .text-container {
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 20px;
}

.homepage-slider {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
}
.homepage-slider > .homepage-slider-video {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  z-index: -1;
  background-color: #fff;
}
.homepage-slider > .global-featured-image {
  position: absolute;
  bottom: 0;
  left: 200px;
  width: 37%;
  height: 100%;
  max-height: 700px;
  -o-object-fit: cover;
  object-fit: contain;
  z-index: 2;
  background-image: var(--img);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  transition: opacity 0.2s ease-in-out;
}
.homepage-slider > .global-featured-image.hidden {
  opacity: 0;
}
.homepage-slider > .global-featured-image.backwards {
  left: unset;
  right: 200px;
}

.homepage-slider-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease;
}

.homepage-slider-slide.active {
  opacity: 1;
}
