body {
  margin: 0;
  font-family: "Montserratt", sans-serif;
}
/* FIX TILDA TRANSFORM BUG */
.t-body {
  transform: none !important;
}

/* HEADER */
.vk-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e6e6e6;
  position: sticky; /* stays on top */
  top: 0;
  z-index: 9999; /* highest priority */
}

.vk-header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 32px;
  padding-right: 32px;
}

/* LOGO */
.vk-logo img {
  max-height: 80px;
  width: auto;
}

/* DESKTOP NAV */
.vk-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.vk-nav a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #006430;
  transition: color .25s;
}

.vk-nav a:hover {
  color: #549634;
}

/* CTA BUTTON */
.vk-btn {
  padding: 9px 22px;
  background: #ff111e;
  border-radius: 24px;
  color: #ffffff !important;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
}

.vk-btn:hover {
  background: #c80913;
}

/* BURGER */
.vk-burger {
  display: none;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  position: relative;
  cursor: pointer;
}

.vk-burger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background: #c80913;
  left: 0;
  transition: .25s ease-in-out;
}

.vk-burger span:nth-child(1) { top: 0; }
.vk-burger span:nth-child(2),
.vk-burger span:nth-child(3) { top: 8px; }
.vk-burger span:nth-child(4) { top: 16px; }

.vk-burger.active span:nth-child(1),
.vk-burger.active span:nth-child(4) {
  width: 0;
  left: 50%;
}

.vk-burger.active span:nth-child(2) {
  transform: rotate(45deg);
}

.vk-burger.active span:nth-child(3) {
  transform: rotate(-45deg);
}

/* MOBILE PANEL */
.vk-mobile-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -4px 0 12px rgba(0,0,0,0.1);
  transition: right .3s ease;
  z-index: 9998; /* below header */
  padding-top: 80px;
  overflow-y: auto;
}

.vk-mobile-panel.open {
  right: 0;
}

/* MOBILE NAV */
.vk-mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 26px;
}

.vk-mobile-nav a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #006430;
}

/* OVERLAY */
.vk-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s;
  z-index: 9990;
}

.vk-mobile-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .vk-nav {
    display: none;
  }
  .vk-burger {
    display: block;
  }
}