html,
body {
  overflow-y: scroll;
}

canvas.webgl {
  position: fixed;
  top: 0;
  left: 0;
  outline: none;
}

.x-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Hero Section */
#hero-section {
  width: 100vw;
  height: 100vh;
}

/* NAVBAR */
header.main-header {
  position: fixed;
  width: 100%;
  background: #f8f5f5;
  top: 0;
  z-index: 99;
}

a.navbar-brand img {
  height: 54px;
}

.navbar-toggler {
  display: none;
}

.nav-menu-desktop-wrapper ul {
  display: flex;
  flex-direction: row;
  gap: 32px;
}

/* HERO SECTION */
.hero-section-home {
  height: 100dvh;
  position: relative;
}

.hero-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background: #0a0a0a57;
  z-index: 10;
  top: 0;
}

.hero-content {
  position: absolute;
  z-index: 11;
  top: 50%;
  left: 50%;

  width: 100%;
  max-width: 1440px;
  padding-inline: 64px;
  box-sizing: border-box;

  margin: 0;
  transform: translate(-50%, -50%);
}

.hero-image.bg-standard-img {
  height: 100%;
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* FOOTER */
#footer {
  background-color: var(--brand-black);
  color: var(--brand-white);
  padding: 80px 0 24px 0;
}

.footer-brand-wrapper {
  max-width: 40%;
  gap: 16px;
}

.upper-inner-footer-wrapper {
  gap: 64px;
}

p.footer-payoff-text {
  font-size: 14px;
}

a.footer-logo {
  height: 48px;
}

#footer a {
  color: #ffffff8c !important;
  padding: 4px 0;
}

h4.footer-menu-title {
  font-size: 14px;
  text-transform: uppercase;
}

.sub-footer-wrapper {
  padding-top: 24px;
  margin-top: 80px;
  border-top: 1px solid var(--brand-white);
}

ul.footer-legal {
  padding: 0;
  margin: 0;
  display: flex;
  list-style-type: none;
  gap: 32px;
}

.copyright-text {
  font-size: 14px;
}

@media screen and (max-width: 870px) {
  .footer-brand-wrapper {
    max-width: 80%;
  }

  .upper-inner-footer-wrapper {
    margin-top: 80px;
  }

  .sub-footer-wrapper {
    flex-direction: column-reverse;
    gap: 24px;
  }
}

@media screen and (max-width: 570px) {
  .x-container {
    padding: 0 16px;
  }

  #footer {
    padding: 54px 0 24px 0;
  }

  a.footer-logo {
    height: 44px;
  }

  p.footer-payoff-text {
    font-size: 12px;
  }

  .upper-inner-footer-wrapper {
    margin-top: 54px;
  }

  .footer-brand-wrapper {
    max-width: 100%;
  }

  .upper-inner-footer-wrapper {
    gap: 32px;
  }

  .upper-inner-footer-wrapper > div {
    width: 100%;
  }

  ul.footer-legal {
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
  }

  .sub-footer-wrapper {
    margin-top: 54px;
  }
}
