.dk-header,
.dk-header * {
  box-sizing: border-box;
}

.dk-header {
  --dk-header-green: #6f9957;
  --dk-header-green-dark: #527b43;
  --dk-header-dark: #142016;
  --dk-header-muted: #687266;
  --dk-career-bg: #efc99a;

  position: sticky;
  top: 0;
  z-index: 9999;

  width: 100%;

  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(19,31,20,.08);
  box-shadow: 0 8px 28px rgba(20,32,20,.04);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.dk-header a {
  text-decoration: none;
}

.dk-header button {
  font: inherit;
}

.dk-career-bar {
  width: 100%;
  min-height: 36px;

  display: flex;
  align-items: center;

  background: var(--dk-career-bg);
}

.dk-career-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.dk-career-link {
  min-height: 36px;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: #25271f;

  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.dk-career-link:hover,
.dk-career-link:focus-visible {
  color: #47673b;
}

.dk-career-icon {
  width: 15px;
  height: 15px;

  display: grid;
  place-items: center;

  flex: 0 0 15px;
}

.dk-career-icon svg {
  width: 15px;
  height: 15px;

  display: block;
}

.dk-header-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto auto;
  align-items: center;
  gap: 24px;
}

.dk-header-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;

  min-width: 0;

  color: var(--dk-header-dark);
}

.dk-header-logo {
  width: 58px;
  height: 58px;

  object-fit: contain;

  flex: 0 0 58px;
}

.dk-header-brand-copy {
  display: grid;
  gap: 1px;

  line-height: 1;
}

.dk-header-brand-copy strong {
  color: var(--dk-header-dark);

  font-size: 14px;
  font-weight: 850;
  letter-spacing: .02em;
}

.dk-header-brand-copy small {
  margin-top: 5px;

  color: #879083;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.dk-header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;

  min-width: 0;
}

.dk-nav-item {
  position: relative;

  display: flex;
  align-items: center;
}

.dk-header-link {
  position: relative;

  min-height: 76px;
  padding: 0;

  border: 0;
  background: transparent;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  color: #273028;

  font-size: 13.5px;
  font-weight: 700;
  line-height: 1;

  white-space: nowrap;
  cursor: pointer;
}

.dk-header-link::after {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: 13px;

  height: 2px;

  border-radius: 999px;

  background: var(--dk-header-green);

  transform: scaleX(0);
  transform-origin: center;

  transition: transform .2s ease;
}

.dk-header-link:hover,
.dk-header-link:focus-visible,
.dk-header-link.is-active {
  color: #152017;
}

.dk-header-link:hover::after,
.dk-header-link:focus-visible::after,
.dk-header-link.is-active::after {
  transform: scaleX(1);
}

.dk-chevron {
  width: 6px;
  height: 6px;

  flex: 0 0 6px;

  margin-top: -3px;

  border-right: 1.6px solid #60705e;
  border-bottom: 1.6px solid #60705e;

  transform: rotate(45deg);
  transform-origin: center;

  transition:
    transform .2s ease,
    border-color .2s ease;
}

.dk-has-mega:hover > .dk-mega-trigger .dk-chevron,
.dk-has-mega:focus-within > .dk-mega-trigger .dk-chevron,
.dk-has-mega.is-open > .dk-mega-trigger .dk-chevron {
  transform: rotate(225deg) translate(-1px,-1px);
  border-color: var(--dk-header-green);
}

.dk-header-call {
  display: inline-flex;
  align-items: center;
  gap: 11px;

  padding-left: 18px;

  border-left: 1px solid #e2e7df;

  color: var(--dk-header-dark);
}

.dk-header-call-icon {
  width: 42px;
  height: 42px;

  border-radius: 50%;

  display: grid;
  place-items: center;

  flex: 0 0 42px;

  background: #61755e;
  color: #fff;

  transition:
    background .2s ease,
    transform .2s ease;
}

.dk-header-call:hover .dk-header-call-icon {
  background: var(--dk-header-green);
  transform: translateY(-1px);
}

.dk-header-call-icon svg {
  width: 19px;
  height: 19px;
}

.dk-header-call-copy {
  display: grid;
  gap: 3px;

  line-height: 1;
}

.dk-header-call-copy small {
  color: #7b8478;

  font-size: 9px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.dk-header-call-copy strong {
  color: var(--dk-header-green);

  font-size: 13px;
  font-weight: 850;

  white-space: nowrap;
}

.dk-mega {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 100;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translate(-50%, 10px);

  border: 1px solid rgba(18,28,18,.09);
  border-radius: 0 0 20px 20px;

  background: #fff;

  box-shadow: 0 30px 60px rgba(12,20,12,.16);

  overflow: hidden;

  transition:
    opacity .2s ease,
    transform .2s ease,
    visibility .2s ease;
}

.dk-mega-info {
  width: min(860px, calc(100vw - 40px));
}

.dk-mega-audience {
  width: min(740px, calc(100vw - 40px));
}

.dk-has-mega:hover > .dk-mega,
.dk-has-mega:focus-within > .dk-mega,
.dk-has-mega.is-open > .dk-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

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

.dk-mega-inner {
  padding: 12px;

  display: grid;
  grid-template-columns: 220px minmax(0,1fr);
  gap: 0;
}

.dk-mega-intro {
  position: relative;
  isolation: isolate;

  min-height: 240px;
  padding: 22px 20px;

  border-radius: 14px;

  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  color: #fff;
  background: #344b32;
}

.dk-mega-intro::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: -2;

  background-size: cover;
  background-position: center;

  transform: scale(1.02);

  transition: transform .45s ease;
}

.dk-mega-intro::after {
  content: "";

  position: absolute;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(
      180deg,
      rgba(20,35,19,.08) 0%,
      rgba(25,43,24,.36) 42%,
      rgba(26,43,25,.82) 100%
    );
}

.dk-mega-intro-info::before {
  background-image:
    image-set(
      url("https://duizendknoop.nl/wp-content/uploads/2026/09/japanse-duizendknoop-bestrijden-zeven-en-verhitten.avif") type("image/avif"),
      url("https://duizendknoop.nl/wp-content/uploads/2026/09/japanse-duizendknoop-bestrijden-zeven-en-verhitten.webp") type("image/webp")
    );

  background-position: 58% center;
}

.dk-mega-intro-audience::before {
  background-image:
    image-set(
      url("https://duizendknoop.nl/wp-content/uploads/2026/09/grote-oppervlakte-japanse-duizendknoop-bestrijden.avif") type("image/avif"),
      url("https://duizendknoop.nl/wp-content/uploads/2026/09/grote-oppervlakte-japanse-duizendknoop-bestrijden.webp") type("image/webp")
    );

  background-position: 65% center;
}

.dk-has-mega:hover .dk-mega-intro::before,
.dk-has-mega:focus-within .dk-mega-intro::before,
.dk-has-mega.is-open .dk-mega-intro::before {
  transform: scale(1.07);
}

.dk-mega-kicker {
  margin-bottom: 8px;

  color: #cbe3b8;

  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.dk-mega-intro strong {
  max-width: 165px;
  margin-bottom: 9px;

  color: #fff;

  font-size: 18px;
  font-weight: 850;
  line-height: 1.06;
  letter-spacing: -.025em;
}

.dk-mega-intro p {
  max-width: 170px;
  margin: 0;

  color: rgba(255,255,255,.77);

  font-size: 11px;
  line-height: 1.48;
}

.dk-mega-columns {
  padding: 13px 14px 13px 24px;

  display: grid;
  grid-template-columns: 1fr 1fr .84fr;
  align-content: start;
  gap: 8px 14px;
}

.dk-mega-col {
  min-width: 0;

  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.dk-mega-title {
  margin: 0 10px 6px;

  color: #899184;

  font-size: 8px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.dk-mega-col a {
  position: relative;

  width: 100%;
  min-height: 34px;

  padding: 8px 24px 8px 10px;

  border-radius: 9px;

  display: flex;
  align-items: center;

  color: #3a433b;
  background: transparent;

  font-size: 11.5px;
  font-weight: 650;
  line-height: 1.25;

  transition:
    background-color .18s ease,
    color .18s ease,
    transform .18s ease;
}

.dk-mega-col a::after {
  content: "›";

  position: absolute;
  right: 10px;
  top: 50%;

  color: #9ba596;

  font-size: 15px;
  font-weight: 500;

  opacity: 0;

  transform: translate(-3px, -50%);

  transition:
    opacity .18s ease,
    transform .18s ease,
    color .18s ease;
}

.dk-mega-col a:hover,
.dk-mega-col a:focus-visible {
  color: #527f32;
  background: #f3f6f1;

  transform: translateX(2px);
}

.dk-mega-col a:hover::after,
.dk-mega-col a:focus-visible::after {
  opacity: 1;
  color: var(--dk-header-green);

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

.dk-audience-inner {
  grid-template-columns: 220px minmax(0,1fr);
}

.dk-audience-list {
  padding: 13px 14px 13px 26px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 4px;
}

.dk-audience-list a {
  padding: 10px 11px;

  border-radius: 10px;

  display: grid;
  gap: 2px;

  transition:
    background .18s ease,
    transform .18s ease;
}

.dk-audience-list a:hover,
.dk-audience-list a:focus-visible {
  background: #f3f6f1;
  transform: translateX(2px);
}

.dk-audience-list b {
  color: #303831;

  font-size: 12px;
  font-weight: 800;
}

.dk-audience-list span {
  color: #7f887d;

  font-size: 9.5px;
  line-height: 1.35;
}

.dk-menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  padding: 9px;

  border: 0;
  border-radius: 10px;

  background: transparent;

  cursor: pointer;
}

.dk-menu-toggle span {
  display: block;

  height: 2px;
  margin: 5px 0;

  border-radius: 99px;

  background: #1d291e;

  transition:
    transform .22s ease,
    opacity .22s ease;
}

.dk-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.dk-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.dk-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.dk-mobile-menu {
  display: none;
}

@media (max-width: 1100px) {
  .dk-header-inner,
  .dk-career-inner {
    width: min(100% - 32px, 1180px);
  }

  .dk-header-inner {
    gap: 17px;
  }

  .dk-header-brand-copy {
    display: none;
  }

  .dk-header-nav {
    gap: 20px;
  }

  .dk-header-link {
    font-size: 13px;
  }

  .dk-header-call-copy small {
    display: none;
  }
}

@media (max-width: 900px) {
  .dk-career-bar {
    min-height: 32px;
  }

  .dk-career-link {
    min-height: 32px;

    font-size: 11px;
  }

  .dk-header-inner {
    min-height: 68px;

    grid-template-columns: auto 1fr auto;
  }

  .dk-header-logo {
    width: 48px;
    height: 48px;

    flex-basis: 48px;
  }

  .dk-header-nav,
  .dk-header-call {
    display: none;
  }

  .dk-menu-toggle {
    display: block;

    grid-column: 3;
  }

  .dk-mobile-menu {
    display: block;

    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    z-index: 9998;

    max-height: calc(100dvh - 100px);

    overflow-y: auto;

    background: #fff;

    border-top: 1px solid #edf0eb;

    box-shadow: 0 24px 50px rgba(14,22,14,.12);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-10px);

    transition:
      opacity .22s ease,
      transform .22s ease,
      visibility .22s ease;
  }

  .dk-mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: none;
  }

  .dk-mobile-menu-inner {
    width: min(100% - 28px, 640px);
    margin: 0 auto;
    padding: 14px 0 26px;

    display: grid;
    gap: 7px;
  }

  .dk-mobile-menu-inner > a,
  .dk-mobile-group > summary {
    min-height: 50px;
    padding: 0 15px;

    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #1d271e;
    background: #f5f7f3;

    font-size: 14px;
    font-weight: 750;
  }

  .dk-mobile-group {
    margin: 0;
  }

  .dk-mobile-group summary {
    list-style: none;

    cursor: pointer;
  }

  .dk-mobile-group summary::-webkit-details-marker {
    display: none;
  }

  .dk-mobile-group summary::after {
    content: "+";

    color: #798475;

    font-size: 20px;
    font-weight: 500;
  }

  .dk-mobile-group[open] summary::after {
    content: "−";
  }

  .dk-mobile-group-body {
    padding: 7px 8px 4px;

    display: grid;
    gap: 4px;
  }

  .dk-mobile-group-body a {
    padding: 10px 11px;

    border-radius: 9px;

    color: #4c564b;
    background: #fff;

    font-size: 13px;
  }

  .dk-mobile-cta {
    margin-top: 5px;

    justify-content: center !important;

    background: #86b93d !important;
    color: #13200d !important;

    font-weight: 850 !important;
  }

  .dk-mobile-contact {
    padding: 12px 7px 0;

    display: grid;
    gap: 5px;
  }

  .dk-mobile-contact a {
    color: #61705f;

    font-size: 12px;
    font-weight: 700;
  }

  html.dk-menu-open,
  html.dk-menu-open body {
    overflow: hidden;
  }
}

@media (max-width: 540px) {
  .dk-header-inner,
  .dk-career-inner {
    width: calc(100% - 24px);
  }

  .dk-career-link {
    width: 100%;

    justify-content: flex-end;
  }
}

/* Tijdelijke Elementor button reset - verwijderen zodra Elementor volledig weg is */

.dk-header button.dk-header-link,
.dk-header button.dk-mega-trigger {
  appearance: none !important;
  -webkit-appearance: none !important;

  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;

  height: auto !important;
  min-height: 76px !important;

  margin: 0 !important;
  padding: 0 !important;

  border: 0 !important;
  border-radius: 0 !important;

  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;

  box-shadow: none !important;
  text-shadow: none !important;

  color: #273028 !important;

  font-family: inherit !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: normal !important;
  text-transform: none !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;

  cursor: pointer !important;
}

.dk-header button.dk-header-link:hover,
.dk-header button.dk-header-link:focus,
.dk-header button.dk-header-link:active,
.dk-header button.dk-mega-trigger:hover,
.dk-header button.dk-mega-trigger:focus,
.dk-header button.dk-mega-trigger:active {
  background: transparent !important;
  background-color: transparent !important;

  color: #152017 !important;

  border: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 900px) {
  .dk-header button.dk-header-link,
  .dk-header button.dk-mega-trigger {
    min-height: 68px !important;
  }
}

/* Einde tijdelijke Elementor button reset */


/* MOBILE HEADER FIX V3 */
@media (max-width: 900px) {

  .dk-header .dk-header-inner {
    min-height: 70px !important;
  }

  .dk-header button.dk-menu-toggle {
    appearance: none !important;
    -webkit-appearance: none !important;

    position: relative !important;

    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;

    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;

    margin: 0 !important;
    padding: 10px !important;

    border: 1px solid #dfe5dc !important;
    border-radius: 12px !important;

    display: grid !important;
    align-content: center !important;

    background: #f7f9f6 !important;
    background-image: none !important;

    box-shadow: none !important;

    transform: none !important;

    overflow: hidden !important;
  }

  .dk-header button.dk-menu-toggle::before,
  .dk-header button.dk-menu-toggle::after {
    display: none !important;
    content: none !important;
  }

  .dk-header button.dk-menu-toggle span {
    position: static !important;

    width: 100% !important;
    height: 2px !important;

    margin: 3px 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 99px !important;

    display: block !important;

    background: #1d291e !important;

    box-shadow: none !important;
  }

  .dk-header button.dk-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
  }

  .dk-header button.dk-menu-toggle.is-open span:nth-child(2) {
    opacity: 0 !important;
  }

  .dk-header button.dk-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
  }

  .dk-mobile-menu {
    top: 70px !important;
    max-height: calc(100dvh - 70px) !important;
  }
}

/* MOBILE HEADER V4 - Elementor volledig neutraliseren */
@media (max-width: 900px) {

  .dk-header {
    min-height: 70px !important;
    height: 70px !important;

    overflow: visible !important;
  }

  .dk-header .dk-header-inner {
    width: calc(100% - 28px) !important;

    min-height: 70px !important;
    height: 70px !important;

    grid-template-columns: auto 1fr auto !important;
    gap: 12px !important;
  }

  .dk-header .dk-header-brand {
    grid-column: 1 !important;

    min-width: 0 !important;
  }

  .dk-header .dk-header-logo {
    width: 48px !important;
    min-width: 48px !important;
    max-width: 48px !important;

    height: 48px !important;
    min-height: 48px !important;
    max-height: 48px !important;

    margin: 0 !important;
  }

  .dk-header .dk-header-brand-copy,
  .dk-header .dk-header-nav,
  .dk-header .dk-header-actions,
  .dk-header .dk-header-call,
  .dk-header .dk-header-careers {
    display: none !important;
  }

  .dk-header button.dk-menu-toggle {
    appearance: none !important;
    -webkit-appearance: none !important;

    position: static !important;

    grid-column: 3 !important;

    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;

    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;

    margin: 0 !important;
    padding: 10px !important;

    border: 1px solid #dfe5dc !important;
    border-radius: 12px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;

    gap: 5px !important;

    color: #172218 !important;
    background: #f7f9f6 !important;
    background-image: none !important;

    box-shadow: none !important;
    text-shadow: none !important;

    transform: none !important;

    overflow: hidden !important;
  }

  .dk-header button.dk-menu-toggle::before,
  .dk-header button.dk-menu-toggle::after {
    display: none !important;
    content: none !important;
  }

  .dk-header button.dk-menu-toggle span {
    position: static !important;
    inset: auto !important;

    width: 100% !important;
    height: 2px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 99px !important;

    display: block !important;

    background: #172218 !important;

    box-shadow: none !important;
  }

  .dk-header .dk-mobile-menu {
    top: 70px !important;

    max-height: calc(100dvh - 70px) !important;
  }

  .dk-header .dk-mobile-careers,
  .dk-header .dk-mobile-cta {
    position: static !important;

    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;

    height: auto !important;
    min-height: 50px !important;

    margin: 0 !important;
    padding: 0 15px !important;

    border: 0 !important;
    border-radius: 12px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    color: #1d271e !important;
    background: #f5f7f3 !important;
    background-image: none !important;

    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 750 !important;
    line-height: 1.2 !important;
    text-transform: none !important;

    box-shadow: none !important;

    transform: none !important;

    overflow: hidden !important;
  }

  .dk-header .dk-mobile-careers::after {
    content: "↗" !important;

    position: static !important;

    width: auto !important;
    height: auto !important;

    color: #6f9957 !important;

    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1 !important;

    background: none !important;

    transform: none !important;
  }

  .dk-header .dk-mobile-cta {
    justify-content: center !important;

    color: #13200d !important;
    background: #86b93d !important;

    font-weight: 850 !important;
  }

  .dk-header .dk-mobile-careers svg,
  .dk-header .dk-mobile-cta svg {
    width: 14px !important;
    height: 14px !important;
    max-width: 14px !important;
    max-height: 14px !important;
  }
}

/* DESKTOP HEADER FIX V5 */
@media (min-width: 901px) {

  .dk-header {
    height: auto !important;
    min-height: 76px !important;
    overflow: visible !important;
  }

  .dk-header .dk-header-inner {
    width: min(1180px, calc(100% - 40px)) !important;
    min-height: 76px !important;
    height: 76px !important;

    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 24px !important;
  }

  .dk-header .dk-header-brand {
    min-width: 0 !important;
    height: auto !important;
  }

  .dk-header .dk-header-logo {
    width: 58px !important;
    min-width: 58px !important;
    max-width: 58px !important;

    height: 58px !important;
    min-height: 58px !important;
    max-height: 58px !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;
  }

  .dk-header .dk-header-nav {
    min-width: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 25px !important;
  }

  .dk-header .dk-header-actions {
    min-width: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;

    gap: 12px !important;
  }

  .dk-header .dk-header-call {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;

    height: auto !important;
    min-height: 42px !important;
    max-height: 42px !important;

    margin: 0 !important;
    padding: 0 0 0 18px !important;

    border: 0 !important;
    border-left: 1px solid #e2e7df !important;
    border-radius: 0 !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    gap: 11px !important;

    color: var(--dk-header-dark) !important;
    background: transparent !important;
    background-image: none !important;

    box-shadow: none !important;

    transform: none !important;
  }

  .dk-header .dk-header-call-icon {
    width: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;

    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 50% !important;

    display: grid !important;
    place-items: center !important;

    flex: 0 0 42px !important;

    background: #61755e !important;
    color: #fff !important;

    overflow: hidden !important;
  }

  .dk-header .dk-header-call-icon svg {
    width: 19px !important;
    min-width: 19px !important;
    max-width: 19px !important;

    height: 19px !important;
    min-height: 19px !important;
    max-height: 19px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: block !important;

    flex: 0 0 19px !important;
  }

  .dk-header .dk-header-call-copy {
    width: auto !important;
    min-width: 0 !important;

    display: grid !important;
    gap: 3px !important;

    line-height: 1 !important;
  }

  .dk-header .dk-header-call-copy small {
    margin: 0 !important;

    color: #7b8478 !important;

    font-size: 9px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: .10em !important;
    text-transform: uppercase !important;

    white-space: nowrap !important;
  }

  .dk-header .dk-header-call-copy strong {
    margin: 0 !important;

    color: var(--dk-header-green) !important;

    font-size: 13px !important;
    font-weight: 850 !important;
    line-height: 1 !important;

    white-space: nowrap !important;
  }

  .dk-header .dk-header-careers {
    appearance: none !important;
    -webkit-appearance: none !important;

    position: static !important;

    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;

    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;

    margin: 0 !important;
    padding: 0 13px !important;

    border: 1px solid #dfe5db !important;
    border-radius: 999px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 6px !important;

    color: #273328 !important;
    background: #f7f9f6 !important;
    background-image: none !important;

    font-family: inherit !important;
    font-size: 10.5px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-transform: none !important;

    white-space: nowrap !important;

    box-shadow: none !important;

    transform: none !important;

    overflow: hidden !important;
  }

  .dk-header .dk-header-careers::before,
  .dk-header .dk-header-careers::after {
    display: none !important;
    content: none !important;
  }

  .dk-header .dk-header-careers span {
    position: static !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    color: inherit !important;

    font: inherit !important;
    line-height: 1 !important;

    transform: none !important;
  }

  .dk-header .dk-header-careers svg {
    position: static !important;
    inset: auto !important;

    width: 11px !important;
    min-width: 11px !important;
    max-width: 11px !important;

    height: 11px !important;
    min-height: 11px !important;
    max-height: 11px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: block !important;

    flex: 0 0 11px !important;

    color: currentColor !important;

    transform: none !important;
  }

  .dk-header .dk-header-careers:hover,
  .dk-header .dk-header-careers:focus-visible {
    color: #456d36 !important;
    background: #eef4e9 !important;
    border-color: #cbd8c4 !important;

    box-shadow: 0 5px 14px rgba(55,82,43,.08) !important;

    transform: translateY(-1px) !important;
  }

  .dk-header .dk-menu-toggle,
  .dk-header .dk-mobile-menu {
    display: none !important;
  }
}
