<style>
  .container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .section {
    height: 100vh;
  }

  .section1 {
    background: linear-gradient(to bottom, #DFAF50, #053822);
  }

  .section2 {
    background: linear-gradient(to bottom, #9F6827, #053922);
  }

  .separator {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    background-color: #fff;
    background-image: linear-gradient(-60deg, #e0c3fc 0%, #8ec5fc 100%);
    animation: wave 1s infinite;
  }

  @keyframes wave {
    0% {
      background-position: 0 bottom;
    }
    100% {
      background-position: 800px bottom;
    }
  }
</style>

<div class="container">
  <div class="section section1"></div>
  <div class="section section2"></div>
  <div class="separator"></div>
</div>

<script>
  const separator = document.querySelector('.separator');

  for (let i = 0; i < 20; i++) {
    setTimeout(() => {
      separator.style.backgroundPosition = `${i * 40}px bottom`;
    }, i * 50);
  }
</script>


.interior-carousel {
  background: linear-gradient(to bottom, #fff, #f5f5f5);
}



.swiper-container {
 box-shadow: 0 0 20px rgb(0 0 0 / 0%);
}

.swiper-button-prev,
.swiper-button-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #DFAF50;
  color: #fff;
  font-size: 16px;
  line-height: 36px;
  text-align: center;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #053822;
}

.swiper-slide img {
  border-radius: 10px;
  transition: all 0.3s ease;
}

.swiper-slide img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}


.text-secondary {
  color: #DFAF50;
}

.caption {
  font-size: 0.9rem;
  color: #050101;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 0.5rem 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}


.bird {
position: absolute;
  bottom: 0;
  left: 0;
}

