
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100%;
  background: #020a15;
  overflow-x: hidden;
}


.home-banner {
  position: relative;
  width: 100%;
  background: #020a15;
  line-height: 0;
  overflow: hidden;
}

.home-banner picture {
  display: block;
  width: 100%;
}

.home-banner-image {
  display: block;
  width: 110%;
  height: 100vh;
  border: 0;
  object-position: center;
}


.home-banner {
  animation: bannerReveal 0.9s ease-out both;
}

.home-banner-image {
  animation: bannerZoom 1.2s ease-out both;
}

@keyframes bannerReveal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes bannerZoom {
  from {
    opacity: 0;
    transform: scale(1.025);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}


/* =========================================
   Large Desktop
========================================= */

@media (min-width: 1600px) {
  .home-banner-image {
    width: 100%;
  }
}


/* =========================================
   Tablet
========================================= */

@media (max-width: 900px) {
  .home-banner {
    min-height: auto;
  }

  .home-banner-image {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}


/* =========================================
   Mobile
========================================= */

@media (max-width: 600px) {
  .home-banner {
    width: 100%;
    background: #020a15;
  }

  .home-banner-image {
    width: 100%;
    min-height: 190px;
    object-fit: cover;
    object-position: center;
  }
}


@media (prefers-reduced-motion: reduce) {
  .home-banner,
  .home-banner-image {
    animation: none;
  }
}