* {
  box-sizing: border-box;
}

html {
  background: #050505;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #050505;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

img,
video {
  display: block;
}

.landing {
  width: 100%;
  max-width: 1536px;
  margin: 0 auto;
  background: #050505;
}

.hero-section {
  position: relative;
  width: 100%;
  aspect-ratio: 1536 / 1024;
  overflow: hidden;
  background: #050505;
}

.hero-video,
.hero-overlay,
.hero-overlay img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  object-position: center;
}

.hero-video-mobile {
  display: none;
}

.hero-overlay {
  z-index: 1;
}

.hero-overlay img {
  object-fit: cover;
}

.image-section {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #050505;
}

.image-section picture,
.image-section img {
  width: 100%;
}

.image-section img {
  height: auto;
}

@media (max-width: 767px) {
  .landing {
    max-width: none;
  }

  .hero-section {
    aspect-ratio: 370 / 800;
  }

  .hero-video-desktop {
    display: none;
  }

  .hero-video-mobile {
    display: block;
  }
}
