header.header-new {
  position: fixed;
  width: 100%;
  height: auto;
  z-index: 999999;
  top: 0;
}

{# ******* HAMBURGHER ******* #}

#hamburger {
  width: 32px;
  height: 32px;
  cursor: pointer;
  position: relative;
  background:#032d5d;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:4px;
  box-sizing: content-box;
}
#hamburger > span {
  width:100%;
  height:4px;
  display:block;
  background:#ffffff;
  border-radius:10px;
}
#hamburger:before, 
#hamburger:after {
  content:"";
  position:absolute;
  width:calc(100% - 8px);
  height:4px;
  background:#ffffff;
  top:6px;
  left:4px;
  border-radius:10px;
  transition: transform ease 200ms;
}
#hamburger:after {
  top:initial;
  bottom:6px;
  left:4px;
}
#hamburger.opened > span {
  display:none;
}
#hamburger.opened:before {
  transform: translate(0px,12px)
    rotate(45deg); 
}

#hamburger.opened:after {
  transform:  translate(0px,-12px)
    rotate(-45deg);
}


header.header-new {
  color:#ffffff;
  background: #032d5d;
}

header.header-new > div {
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo-nav img,
.logo-nav svg {
  width:170px;
}
.logo-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 1040px) {

  .desktopX {
    display: none;
  }


  .logo-nav img,
  .logo-nav svg {
    width:120px;
  }

}

header.header-new .logo-nav a {
  padding:0;
  width: 100%;
}
.nav-wrapper ul {
  margin: 0;
  padding: 0;
}
.nav-wrapper li {
  list-style:none;
}

p.children {
  position:relative;
  margin:0;
  padding:0;
}

li.level_1:last-of-type > a {
  background: #df4c00;
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid #df4c00;
}
li.level_1:last-of-type > a:hover {
  background: transparent;
  border: 1px solid #ffffff;
}


/****** MOBILE only ********/
@media only screen and (max-width: 1040px) {

  header.header-new>div {
    padding: 0;
  }
  .logo-nav {
    padding:24px;
  }
  nav > ul {
    display:none;
  }
  p.children,
  p.children2 {
    width:100%;
    display:inline-block;
    position:relative;
  }
  p.children:before,
  p.children:after,
  p.children2:before,
  p.children2:after {
    content:"";
    position: absolute;
    width: 18px;
    height:4px;
    background:#ffffff;
    right:10px;
    top:calc(50% - 2px);
  }

  p.children:after,
  p.children2:after {
    width: 4px;
    height:18px;
    top: calc(50% - 9px);
    right:17px;
    transition: transform .2s ease;
  }

  p.current.children:after,
  p.current.children2:after {
    transform: rotate(90deg);
  }
  ul.main-menu {
    max-height: calc(100svh - 96px);
    overflow-y: scroll;
  }
  ul.main-menu {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 32px;
  }
  li.level_1 + li.level_1 {
    margin-top: 24px;
  }
  ul.main-dropdown.dropdown_2.ml2 {
    padding-left: 12px;
    padding-top: 18px;
    padding-bottom: 8px;
    position: relative;
  }

  ul.main-dropdown.dropdown_2.ml2::before {
    content: "";
    background: #df4c00;
    width: 100vw;
    height: calc(100% - 12px);
    position: absolute;
    top: 12px;
    left: -24px;
    z-index: -1;
  }


  ul.mobileX.ml3 {
    padding-left: 12px;
    padding-top: 18px;
    padding-bottom: 24px;
    position: relative;
  }
  ul.mobileX.ml3::before {
    content: "";
    background: #001b39;
    position: absolute;
    width: 100vw;
    height: calc(100% - 12px);
    left: -36px;
    top: 0;
    z-index: -1;
  }

  ul.mobileX.ml3 a {
    color: #ffffff;
  }
  ul.mobileX.ml3 li + li {
    margin-top: 16px;
  }
  ul.main-menu a {
    color: #ffffff;
  }

  li.level_2:last-child ul::before {
    height: calc(100% + 8px);
  }


}
/***** DESKTOP Only ******/

@media only screen and (min-width: 1041px) {

  .mobileX {
    display:none;
  }


  nav#menu {
    display: flex;
    grid-gap: 24px;
    justify-content: space-between;
    align-items:center;
  }
  #menu .main-menu {
    display: flex;
    grid-gap: 28px;
    align-items:center;
    width: 100%;
    margin-left: 24px;
  }
  ul.main-dropdown.dropdown_2 {
    position: absolute;
    left: 0;
    top: 66px;
    background: #ffffff;
    width: 100%;
  }
  ul.main-dropdown * {
    color:#032d5d;
    margin:0;
    padding:0;
    font-weight:500;
  }
  #hamburger {
    display: none;
  }
  li.level_1 {
    display: flex;
    height: 66px;
    align-items: center;
  }
  li.level_2 {
    width: 300px;
  }

  .level_2 + .level_2 {
    border-top: 1px solid #ffffff;
  }

  p.children:after {
    border-bottom: 2.5px solid #ffffff;
    border-left: 2.5px solid #ffffff;
    border-radius: 2px;
    content: "";
    height: 8px;
    position: absolute;
    right: -12px;
    top: 7px;
    transform: rotate(-45deg);
    transition: transform .2s ease;
    width: 8px;
  }
  p.children:hover:after,
  p.children.opened:after {
    border-color:#df4c00;
  }

  p.children:hover,
  p.children.opened {
    color:#df4c00;
    cursor:pointer;
  }


  li.level_1 .main-dropdown {
    display:none;
  }
  li.level_1:hover .main-dropdown {
    display: grid;
    grid-template-columns: 320px 1fr;
    /* min-height: 440px; */
  }
  img.ico {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .level_3 + .level_3 {
  }
  .l3.has-icon {
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    grid-gap:18px;
  }
  .l3.has-icon.align-top {
    align-items: start;
  }


  .l2 {
    display: none;
    grid-template-columns: 1fr 260px;
    grid-gap:24px;
    padding: 18px!important;
    height: 100%;
  }
  .l2.visible {
    display:grid;
  }
  .level_1 > a {
    color:#ffffff;
  }
  ul.main-dropdown.dropdown_2 > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  li.level_2 {
    /*height: 100%;*/
    display: flex;
    align-items: center;
    padding: 40px 30px 40px 18px;
    background: #224771;
    position: relative;
    width: 100%;
  }
  li.level_2 p {
    color:#ffffff;
  }


  li.level_2:hover {
    cursor:pointer;
  }


  li.level_2:hover,
  li.level_2.opn.act {
    background: #ffffff;
  }
  li.level_2:hover p,
  li.level_2.opn.act p {
    color: #df4c00;
  }

  li.level_2.opn::after {
    content: url(https://www.hubkengroup.com/hubfs/right.svg);
    position: absolute;
    right: 12px;
    width: 18px;
    height: 18px;
  }

  li.level_2.opn.act::after {
    content: none;
  }
  .l3 > div li {
    list-style-type: disc;
    list-style-position: inside;
  }
  .level_3 + .level_3 {
    margin-top:12px;
  }
  .grid .level_3 + .level_3 {
    margin-top:0;
  }
  .l3 > div li+li {
    margin-top: 2px;
  }
  .l3 > div a {
    font-weight: 700;
  }

  ul.dropdown_3.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 12px;
  }
  .circle {
    aspect-ratio: 1 / 1;
    background: #eeeeee;
    border-radius: 50px;
    padding: 10px!important;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .offer {
    background: #eeeeee;
  }
  .offer > div {
    padding:18px;
  }
  .offer > div p {
    margin-top:24px;
  }
  .offer > div p a {
    color:#DF4C00!important;
  }
  ul.main-dropdown .mTmB {
    margin-top:12px;
    margin-bottom:12px;
  }

  .level_2 > p,
  .level_1 > p,
  .level_1 > a {
    font-weight: 700;
  }
  .asdf {
    background: #224771;
  }
  li.level_1:last-of-type {
    justify-self: flex-end;
    margin-left: auto;
  }




}