#navbarMain {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
  transition: top 0.3s ease-in-out;
}

main {
  margin-top: 86px;
}

#navbarMain .container {
  min-height: 78px;
}

.vc-brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.vc-brand-logo {
  width: clamp(180px, 19vw, 260px);
  height: auto;
  max-width: 100%;
  display: block;
}

#navbarMain .navbar-nav {
  gap: 1.15rem;
}

#navbarMain .nav-link {
  font-family: "Oswald", "Antonio", "Bebas Neue", "Arial Black", "Segoe UI", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: clamp(10.5px, .82vw, 14px);
  position: relative;
  color: #000 !important;
  padding: .65rem 0;
  line-height: 1.1;
  white-space: nowrap;
  transition: color .3s ease-in-out;
}

#navbarMain .nav-link:hover {
  color: #d32f2f !important;
}

#navbarMain .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .15rem;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

#navbarMain .nav-link:hover::after,
#navbarMain .nav-link:focus-visible::after {
  transform: scaleX(1);
}

#navbarMain .nav-link.active::after {
  transform: scaleX(1);
}

#navbarMain .nav-link.active {
  font-weight: 700;
}

@media (min-width: 992px) {
  .navbar-nav {
    flex-wrap: nowrap;
  }

  .navbar-nav .nav-item,
  .navbar-nav .nav-link {
    white-space: nowrap;
  }
}

@media (max-width: 991.98px) {
  main {
    margin-top: 78px;
  }

  #navbarMain .container {
    min-height: 68px;
  }

  .vc-brand-logo {
    width: 170px;
  }

  #navbarMain .navbar-collapse {
    background: rgba(255,255,255,.97);
    margin-top: .75rem;
    padding: .75rem 0;
    border-radius: 12px;
  }

  #navbarMain .navbar-nav {
    gap: .35rem;
  }

  #navbarMain .nav-link {
    font-size: 15px;
    padding: .55rem 0;
  }
}

@media (max-width: 768px) {
  .vc-brand-logo {
    width: 150px;
  }
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#page {
  flex: 1 0 auto;
}