
.home-animation-wrapper {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 6 / 4;
  overflow: hidden;
  position: relative;
}

#home_animation_box {
  position: relative;
  width: 100%; 
  height: 100%; 
  overflow: hidden;
}

#home_animation_box .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 1.5s ease;
  opacity: 1;
  z-index: 1;
}

#home_animation_box .image img {
  width: 100%;
  height: auto;
  display: block;
}


