.home-section {
  background-image: url("/bg-white.webp");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: left bottom;
  width: 100%;
  height: calc(100vh - 76px);
}

@media (max-width: 768px) {
  .home-section {
    background-image: url("/bg-mobile-white.webp");
  }
}

.dark .home-section {
  background-image: url("/bg.webp");
}

@media (max-width: 768px) {
  .dark .home-section {
    background-image: url("/bg-mobile.webp");
  }
}
