
.header_area {
  /* padding: 0 60px; */
  /* background-color: #EAF9FF; */
   position: fixed !important;
  width: 100%;
   top: 24px;
   z-index: 9;
   transition: all 0.3s ease;
}
/* .home-header {
  position: fixed !important;
  width: 100%;
  backdrop-filter: blur(6px);
   border-bottom: 1px solid rgba(255, 255, 255, 0.30);
}
.inner-header {
  background-color: transparent !important;
  position: sticky;
  width: 100%;
} */
/* .inner-header .nav-link {
  color: #252525;
} */

.header_area .auto-container {
      max-width: 1810px;
      transition: all 0.3s ease;
}
/* .header_area .auto-container .years-badge {
    position: absolute;
        top: 82px;
    right: 0;
    height: 340px;
} */
.container {
  transition: all 0.3s ease;
}
.header-logo {
  height: 50px;
  width: auto;
}


.nav-link {
  font-family: var(--head-font);
  font-size: 14px;
  line-height: normal;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
}
.nav-link.active {
  color: var(--main-color) !important;
  font-weight: 900;
}
.nav-link.sub-active {
  color: var(--main-color) !important;
  font-weight: 600;
}
.nav-link:hover, .nav-link:focus {
  color: var(--main-color) !important;
}

nav {
  border: 1px solid #f8f8f8;
   background: #ffffffd9;
 backdrop-filter: blur(3.299999952316284px);
      padding: 6px 10px 6px 20px  !important;
    border-radius: 50px;
 box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.03);
 transition: var(--smooth);
}

.onscroll-overlap {
  width: 835px;
}



/* loader animation */

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* From Uiverse.io by Nawsome */ 
.boxes {
  --size: 32px;
  --duration: 800ms;
  height: calc(var(--size) * 2);
  width: calc(var(--size) * 3);
  position: relative;
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
  margin-top: calc(var(--size) * 1.5 * -1);
  transform: rotateX(60deg) rotateZ(45deg) rotateY(0deg) translateZ(0px);
}

.boxes .box {
  width: var(--size);
  height: var(--size);
  top: 0;
  left: 0;
  position: absolute;
  transform-style: preserve-3d;
}

.boxes .box:nth-child(1) {
  transform: translate(100%, 0);
  -webkit-animation: box1 var(--duration) linear infinite;
  animation: box1 var(--duration) linear infinite;
}

.boxes .box:nth-child(2) {
  transform: translate(0, 100%);
  -webkit-animation: box2 var(--duration) linear infinite;
  animation: box2 var(--duration) linear infinite;
}

.boxes .box:nth-child(3) {
  transform: translate(100%, 100%);
  -webkit-animation: box3 var(--duration) linear infinite;
  animation: box3 var(--duration) linear infinite;
}

.boxes .box:nth-child(4) {
  transform: translate(200%, 0);
  -webkit-animation: box4 var(--duration) linear infinite;
  animation: box4 var(--duration) linear infinite;
}

.boxes .box > div {
  --background: var(--sub-color);
  --top: auto;
  --right: auto;
  --bottom: auto;
  --left: auto;
  --translateZ: calc(var(--size) / 2);
  --rotateY: 0deg;
  --rotateX: 0deg;
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--background);
  top: var(--top);
  right: var(--right);
  bottom: var(--bottom);
  left: var(--left);
  transform: rotateY(var(--rotateY)) rotateX(var(--rotateX)) translateZ(var(--translateZ));
}

.boxes .box > div:nth-child(1) {
  --top: 0;
  --left: 0;
}

.boxes .box > div:nth-child(2) {
  --background: var(--main-color);
  --right: 0;
  --rotateY: 90deg;
}

.boxes .box > div:nth-child(3) {
  --background: #71f9d6;
  --rotateX: -90deg;
}

.boxes .box > div:nth-child(4) {
  --background: #DBE3F4;
  --top: 0;
  --left: 0;
  --translateZ: calc(var(--size) * 3 * -1);
}

@-webkit-keyframes box1 {
  0%, 50% {
    transform: translate(100%, 0);
  }

  100% {
    transform: translate(200%, 0);
  }
}

@keyframes box1 {
  0%, 50% {
    transform: translate(100%, 0);
  }

  100% {
    transform: translate(200%, 0);
  }
}

@-webkit-keyframes box2 {
  0% {
    transform: translate(0, 100%);
  }

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

  100% {
    transform: translate(100%, 0);
  }
}

@keyframes box2 {
  0% {
    transform: translate(0, 100%);
  }

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

  100% {
    transform: translate(100%, 0);
  }
}

@-webkit-keyframes box3 {
  0%, 50% {
    transform: translate(100%, 100%);
  }

  100% {
    transform: translate(0, 100%);
  }
}

@keyframes box3 {
  0%, 50% {
    transform: translate(100%, 100%);
  }

  100% {
    transform: translate(0, 100%);
  }
}

@-webkit-keyframes box4 {
  0% {
    transform: translate(200%, 0);
  }

  50% {
    transform: translate(200%, 100%);
  }

  100% {
    transform: translate(100%, 100%);
  }
}

@keyframes box4 {
  0% {
    transform: translate(200%, 0);
  }

  50% {
    transform: translate(200%, 100%);
  }

  100% {
    transform: translate(100%, 100%);
  }
}



/* ------------------------------------- */

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* Optional: remove gap */
    padding: 0;
    overflow: hidden;
    transition: var(--smooth);
}

/* Keep dropdown visible while hovering */
.navbar .dropdown-menu {
    display: none;
    margin-top: 0;
}
.navbar .dropdown-menu .dropdown-item {
  border-bottom: 1px solid #0000000f !important;
  padding: 15px 20px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  color: var(--grey-color);
  text-transform: uppercase;
  transition: var(--smooth);
}
.navbar .dropdown-menu .dropdown-item:hover {
  color: var(--main-color);
}
.navbar .dropdown-menu .dropdown-item:active {
  background-color: #c1f5e2;
}
.navbar .dropdown-menu .dropdown-item:last-of-type {
border-bottom: none;
}

.nav-dropdown {
    min-width: 180px;
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    list-style: none;
    z-index: 98;
    white-space: nowrap;
    border-radius: 4px;
    overflow: hidden;
}

.navigation-portrait .nav-dropdown {
    width: 100%;
    position: static;
    left: 0;
}

.nav-dropdown .nav-dropdown {
    left: 100%;
}

.nav-menu > li > .nav-dropdown {
    border-top: solid 1px #f0f0f0;
        box-shadow: 1px 2px 5px #00000042;
}

.nav-dropdown > li {
    width: 100%;
    float: left;
    clear: both;
    position: relative;
    text-align: left;
    left: -15px;
}

.nav-dropdown > li > a {
    width: 100%;
    padding: 30px;
    display: inline-block;
    text-decoration: none;
    /* float: left; */
    font-size: 13px;
    color: #343a40;
    background-color: #fdfdfd;
}

.nav-dropdown > li:hover > a,
.nav-dropdown > li.focus > a {
    color: #35e0b4;
}

.nav-dropdown.nav-dropdown-left {
    right: 0;
}

.nav-dropdown > li > .nav-dropdown-left {
    left: auto;
    right: 100%;
}






/* back to top */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  font-family: "unicons";
  content: "\e84b";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: var(--main-color);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}

.progress-wrap:hover::after {
  opacity: 0;
}

.progress-wrap::before {
  position: absolute;
  font-family: "unicons";
  content: "\e84b";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  opacity: 0;
  background: black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 200ms linear;
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--main-color);
  /* --- Lijn progres kleur --- */
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}

/* back to top end */