/* The same VTX symbol is used in the install icon, header and footer. */
.brand img.brand-mark {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  background: transparent;
  border-radius: 9px;
  clip-path: none;
}

.hero-visual {
  display: none;
}

@media (max-width: 600px) {
  .brand img.brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .hero {
    min-height: 690px !important;
    padding-bottom: 65px !important;
    background: #050505 !important;
  }

  .hero-visual {
    --hero-image-opacity: 1;
    --hero-image-y: 0px;
    --hero-image-scale: 1;
    position: absolute;
    inset: -2%;
    z-index: 0;
    display: block;
    background-image: url("assets/vtx-invest-hero.png");
    background-repeat: no-repeat;
    background-position: 90% center;
    background-size: auto 100%;
    opacity: var(--hero-image-opacity);
    transform: translate3d(0, var(--hero-image-y), 0) scale(var(--hero-image-scale));
    transform-origin: center center;
    will-change: transform, opacity;
    pointer-events: none;
  }

  .hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 5, .80) 0%, rgba(5, 5, 5, .76) 48%, rgba(5, 5, 5, .66) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual {
    transform: none !important;
  }
}

.mobile-nav {
  display: none;
}

.contact-pending {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.contact-status {
  margin: 18px auto 0 !important;
  color: #ffdb42 !important;
  font-size: 14px !important;
  font-weight: 650;
}

@media (max-width: 980px) {
  .menu {
    position: relative;
    z-index: 2;
    padding: 10px;
    cursor: pointer;
  }

  .menu span {
    transition: transform .2s ease, opacity .2s ease;
    transform-origin: center;
  }

  .nav.menu-open .menu span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav.menu-open .menu span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 8px 18px 20px;
    background: #1f1f1f;
    border-top: 1px solid #383838;
    box-shadow: 0 18px 32px rgba(0, 0, 0, .32);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .nav.menu-open .mobile-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-nav > a {
    padding: 14px 4px;
    border-bottom: 1px solid #373737;
    color: #fff;
    font-size: 15px;
    font-weight: 650;
  }

  .mobile-nav > a:last-child {
    border-bottom: 0;
  }

  .mobile-nav .mobile-client {
    margin-top: 10px;
    padding: 13px 18px;
    border-radius: 999px;
    background: #ffc800;
    color: #111;
    text-align: center;
    font-weight: 800;
  }
}
