header.section_header {
  position: fixed;
  width: 100%;
  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;
  }
}