.elementor-26 .elementor-element.elementor-element-0ec80ec{--display:flex;--min-height:0px;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:stretch;--gap:0px 0px;--row-gap:0px;--column-gap:0px;box-shadow:17px 10px 20px 0px rgba(0,0,0,0.1);--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0%;--padding-bottom:0%;--padding-left:0%;--padding-right:2%;}.elementor-26 .elementor-element.elementor-element-0ec80ec:not(.elementor-motion-effects-element-type-background), .elementor-26 .elementor-element.elementor-element-0ec80ec > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#0000008F;}.elementor-26 .elementor-element.elementor-element-22981b4 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:1024px){.elementor-26 .elementor-element.elementor-element-0ec80ec{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0%;--padding-bottom:0%;--padding-left:0%;--padding-right:0%;}}@media(min-width:768px){.elementor-26 .elementor-element.elementor-element-0ec80ec{--content-width:1098px;}}@media(max-width:1024px) and (min-width:768px){.elementor-26 .elementor-element.elementor-element-0ec80ec{--content-width:877px;}}@media(max-width:767px){.elementor-26 .elementor-element.elementor-element-0ec80ec{--min-height:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:5%;--padding-bottom:5%;--padding-left:5%;--padding-right:5%;}}/* Start custom CSS for html, class: .elementor-element-22981b4 */@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;900&family=Barlow:wght@400;500&display=swap');

.dun-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(116,229,73,0.1);
  transition: background 0.3s;
}

.dun-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dun-nav.scrolled {
  background: rgba(0,0,0,0.75);
}

.dun-nav-logo img {
  width: 120px;
  height: auto;
  display: block;
}

.dun-nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dun-nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #e8f0e5;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.dun-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #74e549;
  transition: width 0.2s;
}

.dun-nav-links a:hover {
  color: #74e549;
}

.dun-nav-links a:hover::after {
  width: 100%;
}

.dun-nav-cta {
  background: #74e549;
  color: #1f3029 !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 0.6rem 1.4rem !important;
  text-decoration: none !important;
  transition: background 0.2s !important;
  border-radius: 5px;
}

.dun-nav-cta::after {
  display: none !important;
}

.dun-nav-cta:hover {
  background: #ffffff !important;
  color: #1f3029 !important;
}

.dun-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  outline: none;
}

.dun-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #e8f0e5;
  transition: all 0.3s;
  transform-origin: center;
}

.dun-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.dun-burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.dun-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.dun-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 2rem;
}

.dun-mobile-menu.open {
  display: flex;
}

.dun-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
}

.dun-mobile-menu ul li {
  border-bottom: 1px solid rgba(116,229,73,0.08);
}

.dun-mobile-menu ul li a {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e8f0e5;
  text-decoration: none;
  padding: 1.2rem 0;
  transition: color 0.2s;
}

.dun-mobile-menu ul li a:hover {
  color: #74e549;
}

.dun-mobile-cta {
  margin-top: 2rem;
  background: #74e549;
  color: #1f3029 !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.dun-mobile-cta:hover {
  background: #ffffff;
}

@media (max-width: 768px) {
  .dun-nav-links {
    display: none;
  }

  .dun-burger {
    display: flex;
  }

  .dun-nav {
    padding: 1rem 1.5rem;
  }
}/* End custom CSS */