header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  background-color: white;
  z-index: 1010;
  padding: 18px 0;
}
header.header--innerpage {
  filter: drop-shadow(0px 2px 10px rgba(57, 41, 18, 0.08));
}
header .header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .site-branding {
  display: flex;
  align-items: center;
  gap: 16px;
}
header .header-leftside {
  display: flex;
  align-items: flex-end;
  gap: 20px 88px;
}
.site-title {
  font-family: var(--secondaryFont);
  font-size: 32px;
  font-weight: 600;
  color: var(--secondaryColor);
}
.pll-parent-menu-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pll-parent-menu-item::after {
  content: "";
  margin-bottom: 2px;
  width: 14px;
  height: 8px;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDE0IDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDAuOTk5OTk5TDcgN0wxMyAxIiBzdHJva2U9IiM0OTM1MTciIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=");
}
.pll-parent-menu-item a {
  text-transform: uppercase;
  font-size: 18px;
  color: var(--secondaryColor);
}
.pll-parent-menu-item ul.sub-menu {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  top: 100%;
  left: 50%;
  transition: all 0.3s ease;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid #e9e9e9;
  transform: translate(-50%, 0);
}
.pll-parent-menu-item ul.sub-menu li a {
  padding: 10px 20px;
}
.pll-parent-menu-item ul.sub-menu li:hover {
  background-color: #e9e9e9;
}
.pll-parent-menu-item:hover {
  cursor: pointer;
}
.pll-parent-menu-item:hover ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}
nav.secondary-navigation ul.rightside-menu {
  display: flex;
  gap: 14px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1080px) {
  header {
    padding: 10px 0;
  }
  .site-title {
    font-size: 26px;
  }
  .pll-parent-menu-item a {
    font-size: 14px;
  }
  .pll-parent-menu-item::after {
    width: 10px;
    height: 6px;
    background-size: contain;
  }
  header .header-leftside {
    flex-direction: row-reverse;
    align-items: center;
    gap: 16px;
  }
  .burger {
    position: relative;
    display: block;
    padding: 0;
    width: 22px;
    height: 18px;
    outline: none;
    background: transparent;
    font-size: 0;
  }
  .burger span {
    position: absolute;
    display: block;
    width: 17px;
    height: 2px;
    background: #000000;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    transition: all 0.12s ease;
    border-radius: 4px;
  }
  .burger::after, .burger::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: #000000;
    left: 0;
    transition: all 0.12s ease;
    border-radius: 4px;
  }
  .header-scrolled .burger::after, .header-scrolled .burger::before, .header-scrolled .burger span {
    background: #333;
  }
  .burger::before {
    top: 0;
  }
  .burger::after {
    bottom: 0;
  }
  .main-navigation.toggled .burger::before {
    top: 50%;
    transform: translate(0, -50%) rotate(-45deg);
    transition: all 0.12s ease;
  }
  .main-navigation.toggled .burger::after {
    bottom: 50%;
    transform: translate(0, 50%) rotate(45deg);
    transition: all 0.12s ease;
  }
  .main-navigation.toggled .burger span {
    left: -100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.12s ease;
  }
}
@media screen and (max-width: 820px) {
  ul.rightside-menu > li {
    display: none;
  }
  ul.rightside-menu > li.pll-parent-menu-item {
    display: flex;
  }
  a.custom-logo-link {
    max-width: 24px;
  }
  .site-title {
    font-size: 20px;
  }
  header .site-branding {
    gap: 8px;
  }
}
