header.section_header {
  position: fixed;
  width: 95%;
  top:0;
  right:0;
  left:0;
  z-index: 100;
  padding:0 1.5rem;
  background: transparent;
}
header.section_header section {
  margin:0 auto;
  height:auto;
  padding:1.5rem 0;
  max-width: 1200px;
  display:flex;
  justify-content: space-between;
  align-items: center;
}
header.section_header::before {
  content: '';
  display: block;
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(5px) opacity(1);
  -webkit-backdrop-filter: blur(50px) opacity(1);
  box-shadow: 0 5px 10px 0 rgba(38,38,38,.32);
  transition: opacity 0.3s, top 0.3s;
  opacity: 0;
  z-index: -1;
}
header.section_header.scrolled::before {
  top: 0;
  opacity: 1;
}
header.section_header .header_logo svg {
  width:100px;
  height:auto;
}
header.section_header .header_button {
  display:flex;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  header.section_header .header_logo svg {
    width:160px;
  }
  header.section_header section {
    padding:2rem 0;
  }
  body.curaprox_style .header_logo svg {
    width:184px;
  }
}

.languageswitcher {
  position:relative;
  display:inline-block;
  display: flex;
  align-items: center;
}
.languageswitcher_button {
  border: none;
  background: none;
  padding: 0;
  font-size: 2rem;
  display: flex;
  align-items: center;
  position: relative;
  font-size:1.7rem;
  font-family: 'neo-sans', sans-serif;
  font-weight:400;
}
.languageswitcher_button:after {
  content: '';
  display: inline-block;
  margin-left: 0.7rem;
  width: 12px;
  height: 7px;
  background-size: cover;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12px" height="7px" viewBox="0 0 512 298.04"><path fill="%2349505a" d="M12.08 70.78c-16.17-16.24-16.09-42.54.15-58.7 16.25-16.17 42.54-16.09 58.71.15L256 197.76 441.06 12.23c16.17-16.24 42.46-16.32 58.71-.15 16.24 16.16 16.32 42.46.15 58.7L285.27 285.96c-16.24 16.17-42.54 16.09-58.7-.15L12.08 70.78z"/></svg>');
}
.section_header .languageswitcher_button:hover + .languageswitcher_menu,
.section_header .languageswitcher_menu:hover {
  display: block;
}
.languageswitcher_menu {
  display:none;
  position:absolute;
  right:0;
  z-index:100;
  list-style-type:none;
  padding:15px 0 0;
  margin:0;
  top:30px;
  min-width:100px;
  text-align: left;
}
.languageswitcher_menu:before {
  top:-8px;
  border:12px solid transparent;
  border-bottom-color:#000
}
.languageswitcher_menu:after,.languageswitcher_menu:before {
  content:"";
  display:block;
  position:absolute;
  right:18px;
  width:0;
  height:0;
  margin-left:-12px
}
.languageswitcher_menu:after {
  top:-7px;
  border:12px solid transparent;
  border-bottom-color:#fff;
  margin-bottom:-1px
}
.languageswitcher_menu li {
  background-color:#fff;
  border-left:1px solid #000;
  border-right:1px solid #000
}
.languageswitcher_menu li:first-child {
  padding-top:4px;
  border-top:1px solid #000
}
.languageswitcher_menu li:last-child {
  padding-bottom:4px;
  border-bottom:1px solid #000
}
.languageswitcher_menu li a {
  padding:6px 15px;
  display:inline-block;
  text-decoration:none;
  color: var(--cpx-primary);
  cursor:pointer;
  width:100%;
  line-height:1;
  font-size:1.6rem;
  white-space: nowrap
}
.languageswitcher_menu li a:hover {
  color: var(--cpx-secondary);
}


{##### CURAPROX ############################################################}

body.curaprox_style .header_logo svg {
  width:136px;
}
@media (min-width: 768px) {
  body.curaprox_style .header_logo svg {
    width:184px;
  }
}
/* Menu */
 .menu--desktop {
	 display: block;
}
 .menu--mobile {
	 display: none;
}
 @media (max-width: 767px) {
	 .menu--desktop {
		 display: none;
	}
	 .menu--mobile {
		 display: block;
	}
}
/* Base reset */
 .menu--mobile {
	 display: none;
}
/* Hamburger icon */
 .menu-toggle {
	 display: none;
	 flex-direction: column;
	 justify-content: center;
	 gap: 4px;
	 width: 32px;
	 height: 32px;
	 background: none;
	 border: none;
	 cursor: pointer;
	 z-index: 10;
}
 .menu-toggle__bar {
	 height: 2px;
	 width: 100%;
	 background-color: #fff;
	 border-radius: 3px;
	 transition: all 0.3s ease;
	 margin: 0 auto;
}
 .menu-toggle__bar:nth-child(2) {
	 width: 80%;
}
/* Mobile styles */
 @media (max-width: 768px) {
	/* Animate hamburger to X when active */
	 .header_logo {
		 flex: 1;
	}
	 .header_button {
		 margin-right: 24px;
	}
	 .menu--desktop {
		 display: none;
	}
	 .menu--mobile {
		 display: flex;
		 position: fixed;
		 flex-direction: column;
		 background-color: rgba(0, 174, 216, 1);
		 top: 0;
		 color: #fff;
		 right: -140%;
		 height: 100vh;
		 width: 100vw;
		 padding: 60px 20px;
		 box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
		 transition: right 0.3s ease;
		 z-index: 9;
	}
	 .menu--mobile.open {
		 right: 0;
		 padding: 0;
	}
	 .menu-toggle {
		 display: flex;
		 background-color: rgba(0, 174, 216, 1);
	}
	 .menu-toggle.active {
		 position: absolute;
		 right: 24px;
		 top: 18px;
	}
	 .menu-toggle.active .menu-toggle__bar:nth-child(1) {
		 transform: translateY(6px) rotate(45deg);
	}
	 .menu-toggle.active .menu-toggle__bar:nth-child(2) {
		 opacity: 0;
	}
	 .menu-toggle.active .menu-toggle__bar:nth-child(3) {
		 transform: translateY(-6px) rotate(-45deg);
	}
}
 .cpx1 {
	 fill: #00aed8;
}
 .cpx2 {
	 fill: #143c55;
}
 .menu ul {
	 list-style: none;
	 padding: 0;
}
 .menu ul li {
	 font-family: NeoSansPro-Regular, sans-serif;
	 cursor: pointer;
}
 .menu#desktop-menu ul {
	 display: flex;
}
 .menu#desktop-menu ul li {
	 margin: 0 20px;
	 color: rgba(0, 59, 92, 1);
	 font-size: 14px;
	 font-weight: 400;
	 padding: 2px 0;
   border-bottom: 2px solid transparent;
}
/*
.menu#desktop-menu ul li:hover {
	 border-bottom: 2px solid rgba(0, 59, 92, 1);
}*/
 

/* animation hover */
.menu--desktop .menu__link {
  position: relative;
  text-decoration: none !important;
  color: rgba(0, 59, 92, 1) !important;
  padding-bottom: 2px; 
  font-weight: 500;
}

.menu--desktop .menu__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;               
  width: 100%;
  height: 2px;
  background-color: rgba(0, 59, 92, 1);
  transform: scaleX(0);
  transform-origin: center;  
  transition: transform 0.3s ease;
}

.menu--desktop .menu__link:hover::after,
.menu--desktop .menu__link:focus-visible::after {
  transform: scaleX(1);
}

@media (max-width: 768px) {

  /* Remove any existing underline/border styles in the mobile menu */
  .menu--mobile .menu__link,
  .menu--mobile .menu__link:link,
  .menu--mobile .menu__link:visited,
  .menu--mobile .menu__link:hover,
  .menu--mobile .menu__link:active,
  .menu--mobile .menu__text {
    text-decoration: none !important;
    border: 0 !important;
    border-bottom: 0 !important;
  }

  /* Base style for links in the mobile menu */
  .menu--mobile .menu__link {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-family: NeoSansPro-Regular, sans-serif;
    font-weight: 500;
    padding-bottom: 4px;              /* space reserved for the underline */
  }

  /* Animated underline that grows from the center */
  .menu--mobile .menu__link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;                        /* right under the text */
    width: 100%;                      /* underline length */
    height: 2px;                      /* underline thickness */
    background-color: #ffffff;
    border-radius: 999px;
    transform: translateX(-50%) scaleX(0);   /* start hidden (collapsed) */
    transform-origin: center;               /* expand from the center */
    transition: transform 0.25s ease;
  }

  /* Show and animate the underline on hover / focus / tap */
  .menu--mobile .menu__link:hover::after,
  .menu--mobile .menu__link:focus-visible::after,
  .menu--mobile .menu__link:active::after {
    transform: translateX(-50%) scaleX(1);
  }
}


/* animation hover */

 .menu#mobile-menu ul {
	 display: flex;
	 flex-direction: column;
	 align-items: center;
	 justify-content: center;
	 height: 100%;
}
 .menu#mobile-menu ul li {
	 font-size: 18px;
	 font-weight: 500;
	 line-height: 28px;
	 margin: 20px 0;
}
/* Language switcher basic dropdown */
/* Language switcher basic dropdown */

.languageswitcher {
  position: relative;
  display: inline-block;
}

/* The EN/AF button */
.languageswitcher_button {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 4px 8px;
}

/* Hide bullets and style the dropdown menu */
.languageswitcher_menu {
  list-style: none;
  margin: 8px 0 0 0;
  padding: 8px 12px;
  background: #fff;
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 120px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  display: none; /* hidden by default */
  z-index: 50;
}

/* When the dropdown is open */
.languageswitcher.is-open .languageswitcher_menu {
  display: block;
}

.hs-language-switcher__item {
  margin: 4px 0;
}

.hs-language-switcher__item a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

/* Simple arrow next to the current language code */
.languageswitcher_label .arrow {
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  margin-left: 4px;
  transform: rotate(45deg);
}

.languageswitcher_button .languageswitcher_current-language {
  color: rgb(0, 59, 92);
}

.languageswitcher_button .arrow {
  border-color: rgb(0, 59, 92);
  top: -2px;
  position: relative;
}