.elementor-51 .elementor-element.elementor-element-90b9dba{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-51 .elementor-element.elementor-element-90b9dba:not(.elementor-motion-effects-element-type-background), .elementor-51 .elementor-element.elementor-element-90b9dba > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-primary );}.elementor-51 .elementor-element.elementor-element-55ffdd3.elementor-element{--align-self:center;--flex-grow:1;--flex-shrink:0;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-55ffdd3 */:root{
  --nox-primary: #0F2A44;
  --nox-secondary: #1F6FEB;
  --nox-dark: #0A0F1A;
  --nox-text: #1E2936;
  --nox-muted: #6B7785;
  --nox-light: #F5F7FA;
  --nox-white: #FFFFFF;
  --nox-border: rgba(255,255,255,0.12);
  --nox-shadow: 0 16px 40px rgba(0,0,0,0.18);
  --nox-radius: 12px;
  --nox-container: 1280px;
  --nox-transition: 0.3s ease;
}

body.nox-no-scroll{
  overflow: hidden;
}

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

.nox-header{
  position: relative;
  width: 100%;
  z-index: 1000;
  background: transparent;
}

.nox-header__inner{
  max-width: var(--nox-container);
  margin: 0 auto;
  min-height: 88px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nox-logo{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nox-logo img{
  display: block;
  max-width: 160px;
  height: auto;
}

.nox-nav--desktop{
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.nox-nav__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 34px;
}

.nox-nav__list > li{
  position: relative;
}

.nox-nav__list > li > a{
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--nox-white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  transition: color var(--nox-transition);
}

.nox-nav__list > li > a:hover{
  color: var(--nox-secondary);
}

.nox-has-dropdown > a::after{
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg);
  margin-left: 8px;
  margin-top: -3px;
}

.nox-dropdown{
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 250px;
  background: rgba(15,42,68,0.98);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px 0;
  margin: 0;
  list-style: none;
  box-shadow: var(--nox-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--nox-transition);
}

.nox-has-dropdown:hover .nox-dropdown{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nox-dropdown li{
  margin: 0;
}

.nox-dropdown a{
  display: block;
  padding: 12px 18px;
  color: var(--nox-white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background var(--nox-transition), color var(--nox-transition);
}

.nox-dropdown a:hover{
  background: rgba(255,255,255,0.05);
  color: var(--nox-secondary);
}

.nox-header__right{
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.nox-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 15px 24px;
  transition: all var(--nox-transition);
}

.nox-btn--primary{
  background: var(--nox-secondary);
  color: var(--nox-white);
}

.nox-btn--primary:hover{
  background: #1657b9;
  transform: translateY(-2px);
}

.nox-btn--full{
  width: 100%;
}

.nox-burger{
  display: none;
  width: 46px;
  height: 46px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  align-items: center;
  justify-content: center;
}

.nox-burger span{
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--nox-white);
  transition: all var(--nox-transition);
}

.nox-burger span:nth-child(1){ transform: translateY(-7px); }
.nox-burger span:nth-child(2){ transform: translateY(0); }
.nox-burger span:nth-child(3){ transform: translateY(7px); }

.nox-burger.is-active span:nth-child(1){
  transform: rotate(45deg);
}
.nox-burger.is-active span:nth-child(2){
  opacity: 0;
}
.nox-burger.is-active span:nth-child(3){
  transform: rotate(-45deg);
}

.nox-mobile-overlay{
  position: fixed;
  inset: 0;
  background: rgba(5,10,18,0.52);
  opacity: 0;
  visibility: hidden;
  transition: all var(--nox-transition);
  z-index: 1090;
}

.nox-mobile-overlay.is-open{
  opacity: 1;
  visibility: visible;
}

.nox-mobile-menu{
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 88vw);
  height: 100vh;
  background: var(--nox-primary);
  color: var(--nox-white);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 32px;
  box-shadow: -20px 0 40px rgba(0,0,0,0.25);
}

.nox-mobile-menu.is-open{
  transform: translateX(0);
}

.nox-mobile-menu__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.nox-mobile-menu__title{
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.65);
}

.nox-mobile-menu__close{
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  color: var(--nox-white);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.nox-mobile-nav ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

.nox-mobile-nav > ul > li{
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nox-mobile-nav a,
.nox-mobile-toggle{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  text-decoration: none;
  color: var(--nox-white);
  font-size: 20px;
  font-weight: 600;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.nox-mobile-toggle::after{
  content: "+";
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

.nox-mobile-group.is-open .nox-mobile-toggle::after{
  content: "−";
}

.nox-mobile-submenu{
  display: none;
  padding: 0 0 12px 0 !important;
}

.nox-mobile-group.is-open .nox-mobile-submenu{
  display: block;
}

.nox-mobile-submenu li{
  margin: 0;
}

.nox-mobile-submenu a{
  padding: 10px 0 10px 14px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
}

.nox-mobile-submenu a:hover,
.nox-mobile-nav a:hover,
.nox-mobile-toggle:hover{
  color: var(--nox-secondary);
}

.nox-mobile-menu__cta{
  margin-top: auto;
  padding-top: 24px;
}

/* Sticky white version */
.nox-header.is-scrolled{
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.nox-header.is-scrolled .nox-nav__list > li > a,
.nox-header.is-scrolled .nox-burger span{
  color: var(--nox-primary);
  background: var(--nox-primary);
}

.nox-header.is-scrolled .nox-has-dropdown > a::after{
  border-color: var(--nox-primary);
}

@media (max-width: 1024px){
  .nox-header__inner{
    min-height: 78px;
    padding: 0 20px;
  }

  .nox-nav--desktop,
  .nox-btn--primary{
    display: none;
  }

  .nox-burger{
    display: inline-flex;
  }

  .nox-logo img{
    max-width: 130px;
  }
}

@media (max-width: 767px){
  .nox-header__inner{
    min-height: 72px;
    padding: 0 16px;
  }

  .nox-logo img{
    max-width: 116px;
  }

  .nox-mobile-menu{
    width: 88vw;
    padding: 24px 20px 28px;
  }

  .nox-mobile-nav a,
  .nox-mobile-toggle{
    font-size: 18px;
    padding: 16px 0;
  }
}/* End custom CSS */