.hero-slider-container {
    height: 100vh;
    position: relative;
  }
  


  #hero-slider {
    position: relative;
    margin: 0 auto;
    border-radius: 0 0 100px 100px;
    overflow: hidden;

  }
  
  .stacked-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;

    z-index: 0;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;

    
  }

  #hero-slider .bg{
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0;
    background-repeat: no-repeat;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #hero-slider .bg::before{
    content: ' ';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.1) 85%);
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.1) 85%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.1) 85%);
  }
  #hero-slider .bg::after{
    content: '';
    position: absolute;
    width: 45%;
    height: 78%;
    bottom: -16%;
    right: -19%;
    background-image: url(/wp-content/uploads/2025/06/logo-watermark-white.svg);
    background-size: cover;
    background-position: center;
  }

  .slide-content{
    pointer-events: auto;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, 0); 

    will-change: transform, opacity;
    z-index: 1;
    text-align: center;
  }

  .section-slide:first-child .slide-content {

    
  }
  .slide-content, .slide-content h2, .slide-content p {
    color: white !important;
  }
  
  .shrink-trigger {
    height: 1px;
  }



  .slide-content h2{
    font-weight: 400;
    font-size: 90px !important;
    margin-bottom: 30px;
  }

  .slide-content p{
    font-weight: 300;
    font-size: 33px;
    letter-spacing: 1.5px;
    margin-bottom: 0;
  }
  .slide-content p.marg-bott{
    margin-bottom: 60px;
  }

  .slide-content .header_button{
    margin: 0 auto;
    font-size: 19px;
    font-weight: 600;
  } 