/* FIRST ANIMATION */
.pre-footer-banner{
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}

.pre-footer-banner::before{
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 40%;
  height: 80%;
  transform: translateY(-50%);
  background-image: url('/wp-content/uploads/2025/07/pre-footer-watermark.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.pre-footer-bg{
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center center;
    will-change: transform;
    z-index: 0; 
}
.pre-footer-bg::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
    top: 0;
    left: 0;
}
h2.pre-footer-title{
    z-index: 1;
    color: white;
    font-size: 90px;
    font-weight: 400;
    height: fit-content;
    line-height: 1;
    margin: 0;
    text-align: center;
    padding: 0;
    opacity: 0;
}
p.pre-footer-subtitle{
    color: white;
    text-align: center;
    font-size: 30px;
    z-index: 2;
    margin-top: 20px;
}
 /* END OF FIRST ANIMATION */




@media only screen and (max-width: 1440px){
  h2.pre-footer-title {
    font-size: 65px;
  }
  .pre-footer-banner{
    height: 95vh;
  }
}

@media only screen and (max-width: 1366px){
  .pre-footer-banner{
    height: 90vh;
  }
}
@media only screen and (max-width: 1199px){
  .pre-footer-banner::before {
    width: 34%;
    height: 56%;
  }
}
@media only screen and (max-width: 900px){
  .pre-footer-banner::before {
    left: -10%;
    width: 49%;
    height: 67%;
  }
  .pre-footer-banner{
    height: 80vh;
  }

  h2.pre-footer-title {
    font-size: 55px;
  }
}
@media only screen and (max-width: 650px){
  .pre-footer-banner::before {
    left: -15%;
    width: 70%;
    height: 70%;
  }
}
@media only screen and (max-width: 540px){
  .pre-footer-banner{
    height: 66vh;
    padding: 0 30px;
  }

  h2.pre-footer-title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 475px){
  .pre-footer-banner::before {
    left: -23%;
    width: 87%;
    height: 70%;
  }
}
@media only screen and (max-width: 375px){
  .pre-footer-banner::before {
    left: -25%;
    width: 100%;
    height: 64%;
  }
}
 /* SECOND ANIMATION */
 /* .container.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh;
    color: white;
    text-align: center;
  }
  
 
  .hero__inner {
    display: flex;
    position: relative;
    width: 100vw;
    max-height: 100vh;
    overflow: hidden;
  }
  
  .hero__inner::before {
    content: "";
    display: block;
    padding-bottom: calc(100% / (16 / 9));
  }
  
  .hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 160%;
    object-fit: cover;
  }
  
  .hero__content {
    display: flex;
    position: absolute;
    right: 0;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  
  .hero__headline {
    --padding: 1.5vmin;
    --duration: 800ms;
    --delay: calc(var(--duration) / 2);
    --ease: cubic-bezier(0.25, 1, 0.5, 1);
  
    position: relative;
    display: inline-block;
    font-size: 10vmin;
    overflow: hidden;
    margin-top: calc(var(--padding) * -1);
    padding: var(--padding);
  }
  
  .hero__headline::after {
    content: "";
    position: absolute;
    top: calc(100% - var(--padding));
    left: 0;
    background-color: white;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transition: transform var(--duration) var(--delay) var(--ease);
  }
  
  .hero__headline h2 {
    font-size: 70px;
    font-weight: 400;
    color: white !important;
    display: block;
    transform: translateY(110%);
    transition: transform var(--duration) var(--ease);
  }
  
  .active .hero__headline::after {
    transform: scaleX(1);
    transition-delay: 0s;
  }
  
  .active .hero__headline h2 {
    transform: translateY(0);
    transition-delay: var(--delay);
  } */
 /* END OF SECOND ANIMATION */