.image-with-text-banner {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
  background: var(--section-bg);
}

.full-width-image-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-width-image-container {
  position: relative;
}

.center-text-container {
  max-width: 869px;
  width: 100%;
  position: absolute;
  /* top: 0; */
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 10%);
  opacity: 0;
  transition: all 0.8s ease;
  padding: 0 20px;
}

.center-text-container .text__centered {
  font-size: var(--heading-font-desk);
  color: var(--color);
  text-align: center;
  letter-spacing: 2px;
}

.is-animated .center-text-container {
  transform: translate(-50%, 50%);
  opacity: 1;
  bottom: 50%;
  /* top: 50%; */
}

@media (max-width:768px) {
  .image-with-text-banner {
    padding-top: var(--padding-top-mobile);
    padding-bottom: var(--padding-bottom-mobile);
  }

  .center-text-container .text__centered {
    font-size: var(--heading-font-mob);
    letter-spacing: 1px;
    line-height: 1.5;
  }
  .center-text-container{
    max-width: 350px;
  }
}