:root {
  --vmv-red: #8c2020;
  --vmv-red-bright: #b92b2b;
  --vmv-ink: #111111;
  --vmv-soft: #f7f4f2;
  --vmv-line: rgba(140, 32, 32, 0.16);
  --vmv-container: min(1500px, calc(100% - 80px));
}

.vmv-page {
  overflow-x: hidden;
  background: #ffffff;
  color: var(--vmv-ink);
}

.vmv-container {
  width: var(--vmv-container);
  margin-inline: auto;
}

.vmv-scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 12000;
  height: 3px;
  pointer-events: none;
}

.vmv-scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #641818, #c53232);
  transform: scaleX(0);
  transform-origin: left center;
}

/* Keep the supplied image logo in the header and footer. */
.vmv-page .project-header .footer-logo-image {
  display: block;
  width: 75px;
  max-width: 100%;
  height: auto;
}

.vmv-page .site-footer .footer-logo-image {
  display: block;
  width: 75px;
  max-width: 100%;
  height: auto;
}

.vmv-hero {
  position: relative;
  padding: 55px 0 68px;
  background:
    linear-gradient(90deg, rgba(140, 32, 32, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.026) 1px, transparent 1px),
    #ffffff;
  background-size: 120px 120px;
  overflow: hidden;
}

.vmv-hero-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: stretch;
  gap: 52px;
}

.vmv-intro {
  padding: 12px 0 20px;
  align-self: center;
}

.vmv-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 44px;
  color: rgba(17, 17, 17, 0.58);
  font-size: 12px;
  font-weight: 700;
}

.vmv-breadcrumb a:hover,
.vmv-breadcrumb span:last-child { color: var(--vmv-red); }

.vmv-kicker {
  margin: 0 0 12px;
  color: var(--vmv-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.vmv-intro h1 {
  margin: 0;
  color: #111111;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(67px, 6.3vw, 108px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.vmv-title-line {
  display: block;
  width: 82px;
  height: 4px;
  margin: 28px 0 23px;
  background: var(--vmv-red);
}

.vmv-lead {
  max-width: 555px;
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: 15px;
  line-height: 1.78;
}

.vmv-purpose-panel {
  position: relative;
  min-height: 555px;
  overflow: hidden;
  color: #ffffff;
  background: #0b0e11;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.18);
  isolation: isolate;
}

.vmv-purpose-image,
.vmv-purpose-overlay {
  position: absolute;
  inset: 0;
}

.vmv-purpose-image {
  z-index: -3;
  background: url("assets/projects/kasb_altitude.png") center / cover no-repeat;
  transform: scale(1.04) translate3d(0, var(--vmv-image-shift, 0px), 0);
  transition: transform 8s ease;
  will-change: transform;
}

.vmv-purpose-panel.is-ready .vmv-purpose-image { transform: scale(1.1) translate3d(0, var(--vmv-image-shift, 0px), 0); }

.vmv-purpose-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 10, 14, 0.88) 0%, rgba(6, 10, 14, 0.72) 56%, rgba(6, 10, 14, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.44));
}

.vmv-purpose-content {
  min-height: 555px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 44px 50px;
}

.vmv-purpose-content article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.vmv-purpose-content article:last-child { border-bottom: 0; }

.vmv-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: #e23b3b;
  border: 1px solid rgba(226, 59, 59, 0.5);
  background: rgba(140, 32, 32, 0.1);
}

.vmv-icon svg { width: 29px; height: 29px; fill: currentColor; }

.vmv-purpose-content span {
  display: block;
  margin-bottom: 7px;
  color: #ffffff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 25px;
  font-weight: 800;
  text-transform: uppercase;
}

.vmv-purpose-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 12.5px;
  line-height: 1.66;
}

[data-vmv-hero] {
  opacity: 0;
  transform: translateY(24px);
}

.vmv-page.is-ready [data-vmv-hero] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.vmv-page.is-ready [data-vmv-hero]:nth-child(2) { transition-delay: 80ms; }
.vmv-page.is-ready [data-vmv-hero]:nth-child(3) { transition-delay: 150ms; }
.vmv-page.is-ready [data-vmv-hero]:nth-child(4) { transition-delay: 220ms; }
.vmv-page.is-ready .vmv-purpose-panel[data-vmv-hero] { transition-delay: 260ms; }

.vmv-values-section {
  padding: 78px 0 86px;
  background: linear-gradient(180deg, #f7f4f2, #ffffff);
}

.vmv-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 32px;
}

.vmv-section-head p,
.vmv-closing-card p {
  margin: 0 0 8px;
  color: var(--vmv-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.vmv-section-head h2,
.vmv-closing-card h2 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 900;
  line-height: 0.94;
  text-transform: uppercase;
}

.vmv-section-head h2 { font-size: clamp(42px, 4.2vw, 64px); }
.vmv-section-head > span {
  max-width: 510px;
  color: rgba(17, 17, 17, 0.6);
  font-size: 13px;
  line-height: 1.7;
  text-align: right;
}

.vmv-values-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  width: 100%;
  overflow: visible;
  border-top: 1px solid var(--vmv-line);
  border-left: 1px solid var(--vmv-line);
  background: #ffffff;
}

.vmv-value-card {
  position: relative;
  min-width: 0;
  min-height: 430px;
  padding: 18px 13px 28px;
  background: #ffffff;
  border-right: 1px solid var(--vmv-line);
  border-bottom: 1px solid var(--vmv-line);
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.vmv-value-card::before {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -84px;
  width: 160px;
  height: 160px;
  border: 23px solid rgba(140, 32, 32, 0.042);
  border-radius: 50%;
  pointer-events: none;
}

.vmv-value-card:hover {
  z-index: 2;
  transform: translateY(-7px);
  background: #ffffff;
  box-shadow: 0 24px 55px rgba(140, 32, 32, 0.12);
}

.vmv-value-card > strong {
  position: absolute;
  top: 15px;
  right: 16px;
  color: rgba(140, 32, 32, 0.38);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.vmv-value-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin: 42px auto 25px;
  color: var(--vmv-red);
  border: 1px solid rgba(140, 32, 32, 0.28);
  border-radius: 50%;
  font-size: 29px;
  background: rgba(255, 255, 255, 0.78);
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.vmv-value-card:hover .vmv-value-icon {
  color: #ffffff;
  background: var(--vmv-red);
  transform: translateY(-2px) scale(1.03);
}

.vmv-value-card h3 {
  margin: 0 0 13px;
  color: #111111;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(17px, 1.15vw, 21px);
  font-weight: 800;
  line-height: 1.03;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.vmv-value-card p {
  position: relative;
  margin: 0;
  color: rgba(17, 17, 17, 0.66);
  font-size: clamp(11px, 0.8vw, 13px);
  line-height: 1.55;
}

.vmv-closing-section { padding: 0 0 84px; background: #ffffff; }
.vmv-closing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 42px 48px;
  color: #ffffff;
  background: linear-gradient(110deg, #6a1717, #a82727);
  box-shadow: 0 26px 75px rgba(140, 32, 32, 0.22);
}
.vmv-closing-card p { color: rgba(255, 255, 255, 0.7); }
.vmv-closing-card h2 { font-size: clamp(34px, 3.8vw, 54px); }
.vmv-closing-card a {
  min-width: 205px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.vmv-closing-card a:hover { color: var(--vmv-red); background: #ffffff; transform: translateY(-4px); }

.vmv-reveal { opacity: 0; transform: translateY(30px); }
.vmv-reveal.is-visible { opacity: 1; transform: translateY(0); transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.22, 1, 0.36, 1); }

/* ABOUT US DROPDOWN: same block can be copied into other pages. */
.project-header .about-pages-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.project-header .about-pages-dropdown .project-nav-dropdown-toggle {
  width: auto !important;
  min-width: max-content !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 !important;
  margin: 0 !important;
  border: 0;
  background: transparent;
  color: #111111;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  line-height: 1 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap !important;
  cursor: pointer;
}

.project-header .about-pages-dropdown-menu {
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  z-index: 10020;
  width: 310px;
  padding: 10px 18px;
  background: #ffffff;
  border: 1px solid rgba(140, 32, 32, 0.16);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
}

.project-header .about-pages-dropdown:hover .about-pages-dropdown-menu,
.project-header .about-pages-dropdown:focus-within .about-pages-dropdown-menu,
.project-header .about-pages-dropdown.open .about-pages-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.project-header .about-pages-dropdown-menu a {
  display: block !important;
  width: 100% !important;
  padding: 12px 0 !important;
  white-space: nowrap !important;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.project-header .about-pages-dropdown-menu a:last-child { border-bottom: 0; }

@media (max-width: 1200px) {
  :root { --vmv-container: min(100% - 48px, 1120px); }
  .vmv-hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .vmv-purpose-panel,
  .vmv-purpose-content { min-height: 500px; }

  .project-header .about-pages-dropdown { width: 100%; display: block; }
  .project-header .about-pages-dropdown .project-nav-dropdown-toggle {
    width: 100% !important;
    min-width: 0 !important;
    justify-content: space-between;
    padding: 14px 0 !important;
  }
  .project-header .about-pages-dropdown-menu {
    position: static;
    width: 100%;
    padding: 0 0 0 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .project-header .about-pages-dropdown.open .about-pages-dropdown-menu { display: block; }
  .project-header .about-pages-dropdown-menu a {
    padding: 12px 0 !important;
    white-space: normal !important;
  }
}

@media (max-width: 760px) {
  :root { --vmv-container: min(100% - 32px, 700px); }
  .vmv-page .project-header .footer-logo-image { width: 126px; }
  .vmv-hero { padding: 38px 0 55px; }
  .vmv-breadcrumb { margin-bottom: 30px; }
  .vmv-intro h1 { font-size: 62px; }
  .vmv-purpose-content { padding: 28px 24px; }
  .vmv-purpose-content article { grid-template-columns: 44px 1fr; gap: 14px; padding: 20px 0; }
  .vmv-icon { width: 44px; height: 44px; }
  .vmv-purpose-content span { font-size: 22px; }
  .vmv-values-section { padding: 60px 0 66px; }
  .vmv-section-head { display: block; }
  .vmv-section-head > span { display: block; margin-top: 13px; text-align: left; }
  .vmv-closing-card { align-items: flex-start; flex-direction: column; padding: 34px 28px; }
  .vmv-closing-card a { width: 100%; }
}

@media (max-width: 480px) {
  .vmv-intro h1 { font-size: 52px; }
}



/* Additional restrained motion for the purpose panel and philosophy cards. */
.vmv-purpose-content article {
  opacity: 0;
  transform: translateX(28px);
}

.vmv-purpose-panel.is-ready .vmv-purpose-content article {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.vmv-purpose-panel.is-ready .vmv-purpose-content article:nth-child(1) {
  transition-delay: 0.38s;
}

.vmv-purpose-panel.is-ready .vmv-purpose-content article:nth-child(2) {
  transition-delay: 0.52s;
}

.vmv-purpose-panel.is-ready .vmv-purpose-content article:nth-child(3) {
  transition-delay: 0.66s;
}

.vmv-purpose-panel.is-ready .vmv-icon {
  animation: vmvIconBreath 4.2s ease-in-out infinite;
}

.vmv-purpose-panel.is-ready .vmv-purpose-content article:nth-child(2) .vmv-icon {
  animation-delay: 0.7s;
}

.vmv-purpose-panel.is-ready .vmv-purpose-content article:nth-child(3) .vmv-icon {
  animation-delay: 1.4s;
}

.vmv-value-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.62) 50%,
    transparent 60%,
    transparent 100%
  );
  transform: translateX(-135%);
  transition: transform 0.9s ease;
}

.vmv-value-card:hover::after {
  transform: translateX(135%);
}

@keyframes vmvIconBreath {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(185, 43, 43, 0);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(185, 43, 43, 0.08);
  }
}



/* Eight cards remain visible together on laptop and desktop screens. */
@media (max-width: 1100px) and (min-width: 761px) {
  .vmv-values-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .vmv-value-card {
    min-height: 350px;
    padding-inline: 18px;
  }
}

/* On mobile, show one card at a time with horizontal swipe. */
@media (max-width: 760px) {
  .vmv-values-grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: minmax(270px, 86vw);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    border-right: 1px solid var(--vmv-line);
    scrollbar-width: thin;
    scrollbar-color: rgba(140, 32, 32, 0.35) rgba(140, 32, 32, 0.06);
  }

  .vmv-values-grid::-webkit-scrollbar {
    height: 8px;
  }

  .vmv-values-grid::-webkit-scrollbar-track {
    background: rgba(140, 32, 32, 0.06);
  }

  .vmv-values-grid::-webkit-scrollbar-thumb {
    background: rgba(140, 32, 32, 0.35);
    border-radius: 999px;
  }

  .vmv-value-card {
    min-height: 370px;
    padding: 18px 28px 32px;
    scroll-snap-align: start;
  }

  .vmv-value-icon {
    width: 78px;
    height: 78px;
    font-size: 32px;
  }

  .vmv-value-card h3 {
    font-size: 24px;
  }

  .vmv-value-card p {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-vmv-hero], .vmv-reveal, .vmv-purpose-content article { opacity: 1 !important; transform: none !important; transition: none !important; }
  .vmv-purpose-image { transform: none !important; transition: none !important; }
  .vmv-icon { animation: none !important; }
}

/* ===== Vision, Mission & Values: homepage-style sticky responsive menu ===== */
.vmv-page {
  --vmv-sticky-navbar-height: var(--sticky-navbar-height, 92px);
}

.vmv-page .vmv-profile-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11000;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 18px max(28px, calc((100vw - var(--container)) / 2));
  overflow: visible;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(140, 32, 32, 0.12);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: padding 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.vmv-page .vmv-profile-navbar.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.11);
}

.vmv-page .vmv-hero {
  padding-top: calc(var(--vmv-sticky-navbar-height) + 55px);
}

.vmv-page .vmv-profile-navbar .nav-menu,
.vmv-page .vmv-profile-navbar .nav-dropdown,
.vmv-page .vmv-profile-navbar .nav-dropdown-menu {
  overflow: visible;
}

.vmv-page .vmv-profile-navbar .nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.vmv-page .vmv-profile-navbar .nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111111;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.25s ease;
}

.vmv-page .vmv-profile-navbar .nav-dropdown-toggle > span {
  display: inline-block;
  font-size: 13px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.vmv-page .vmv-profile-navbar .nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: var(--vmv-red);
  transition: width 0.25s ease;
}

.vmv-page .vmv-profile-navbar .nav-dropdown:hover .nav-dropdown-toggle,
.vmv-page .vmv-profile-navbar .nav-dropdown.open .nav-dropdown-toggle,
.vmv-page .vmv-profile-navbar .nav-dropdown-toggle:focus-visible,
.vmv-page .vmv-profile-navbar .nav-dropdown-toggle.active {
  color: var(--vmv-red);
}

.vmv-page .vmv-profile-navbar .nav-dropdown:hover .nav-dropdown-toggle::after,
.vmv-page .vmv-profile-navbar .nav-dropdown.open .nav-dropdown-toggle::after,
.vmv-page .vmv-profile-navbar .nav-dropdown-toggle:focus-visible::after,
.vmv-page .vmv-profile-navbar .nav-dropdown-toggle.active::after {
  width: 100%;
}

.vmv-page .vmv-profile-navbar .nav-dropdown:hover .nav-dropdown-toggle > span,
.vmv-page .vmv-profile-navbar .nav-dropdown.open .nav-dropdown-toggle > span {
  transform: rotate(180deg);
}

.vmv-page .vmv-profile-navbar .nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 24px);
  left: -20px;
  z-index: 11020;
  min-width: 250px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.99);
  border: 1px solid rgba(140, 32, 32, 0.16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
}

.vmv-page .vmv-profile-navbar .nav-dropdown:hover .nav-dropdown-menu,
.vmv-page .vmv-profile-navbar .nav-dropdown:focus-within .nav-dropdown-menu,
.vmv-page .vmv-profile-navbar .nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.vmv-page .vmv-profile-navbar .nav-dropdown-menu a,
.vmv-page .vmv-profile-navbar .nav-dropdown-menu a:link,
.vmv-page .vmv-profile-navbar .nav-dropdown-menu a:visited {
  display: block;
  width: 100%;
  padding: 14px 15px;
  color: #111111;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  border-left: 3px solid transparent;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.vmv-page .vmv-profile-navbar .nav-dropdown-menu a::after {
  display: none;
  content: none;
}

.vmv-page .vmv-profile-navbar .nav-dropdown-menu a:hover,
.vmv-page .vmv-profile-navbar .nav-dropdown-menu a.active {
  color: var(--vmv-red);
  background: rgba(140, 32, 32, 0.07);
  border-left-color: var(--vmv-red);
}

@media (max-width: 1024px) {
  .vmv-page .vmv-profile-navbar,
  .vmv-page .vmv-profile-navbar.is-scrolled {
    padding: 14px 24px;
  }

  .vmv-page .vmv-profile-navbar .nav-menu {
    position: fixed;
    top: var(--vmv-sticky-navbar-height);
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100dvh - var(--vmv-sticky-navbar-height));
    margin: 0;
    padding: 22px 24px 30px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(255, 255, 255, 0.99);
    border: 0;
    border-top: 1px solid rgba(140, 32, 32, 0.12);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.15);
  }

  .vmv-page .vmv-profile-navbar .nav-dropdown {
    display: block;
    width: 100%;
  }

  .vmv-page .vmv-profile-navbar .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 10px 0;
    text-align: left;
  }

  .vmv-page .vmv-profile-navbar .nav-dropdown-toggle::after {
    bottom: 4px;
  }

  .vmv-page .vmv-profile-navbar .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    width: 100%;
    margin: 4px 0 8px;
    padding: 4px 0 4px 14px;
    background: rgba(140, 32, 32, 0.035);
    border: 0;
    border-left: 2px solid rgba(140, 32, 32, 0.22);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .vmv-page .vmv-profile-navbar .nav-dropdown.open .nav-dropdown-menu {
    display: block;
    animation: vmvMobileSubmenu 0.25s ease both;
  }

  .vmv-page .vmv-profile-navbar .nav-dropdown-menu a {
    padding: 12px 13px;
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .vmv-page .vmv-hero {
    padding-top: calc(var(--vmv-sticky-navbar-height) + 38px);
  }
}

@media (max-width: 640px) {
  .vmv-page .vmv-profile-navbar,
  .vmv-page .vmv-profile-navbar.is-scrolled {
    padding: 12px 16px;
  }

  .vmv-page .vmv-profile-navbar .nav-menu {
    padding: 18px 20px 28px;
  }
}

@keyframes vmvMobileSubmenu {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .vmv-page .vmv-profile-navbar,
  .vmv-page .vmv-profile-navbar *,
  .vmv-page .vmv-profile-navbar *::before,
  .vmv-page .vmv-profile-navbar *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* Menu text black and menu shadows removed */
.vmv-page .vmv-profile-navbar .nav-menu > a,
.vmv-page .vmv-profile-navbar .nav-dropdown-toggle {
  color: #111111 !important;
  text-shadow: none !important;
}

/* Dropdown links black */
.vmv-page .vmv-profile-navbar .nav-dropdown-menu a,
.vmv-page .vmv-profile-navbar .nav-dropdown-menu a:link,
.vmv-page .vmv-profile-navbar .nav-dropdown-menu a:visited {
  color: #111111 !important;
  text-shadow: none !important;
}

/* Remove header and dropdown shadows */
.vmv-page .vmv-profile-navbar,
.vmv-page .vmv-profile-navbar.is-scrolled,
.vmv-page .vmv-profile-navbar .nav-menu,
.vmv-page .vmv-profile-navbar .nav-dropdown-menu {
  box-shadow: none !important;
}

/* Hover and active menu red */
.vmv-page .vmv-profile-navbar .nav-menu > a:hover,
.vmv-page .vmv-profile-navbar .nav-menu > a.active,
.vmv-page .vmv-profile-navbar .nav-dropdown-toggle:hover,
.vmv-page .vmv-profile-navbar .nav-dropdown-toggle.active,
.vmv-page .vmv-profile-navbar .nav-dropdown-menu a:hover,
.vmv-page .vmv-profile-navbar .nav-dropdown-menu a.active {
  color: var(--vmv-red) !important;
}