.navigation > ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.navigation > ul ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  padding: 15px 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.navigation > ul ul::before {
  content: "";
  display: block;
  position: absolute;
  top: -11px;
  left: 0;
  width: 100%;
  height: 15px;
}
.navigation > ul ul li {
  margin-bottom: 5px;
}
.navigation > ul ul a {
  color: #005f60;
}
.navigation li {
  position: relative;
}
.navigation li:has(ul) {
  padding-right: 20px;
}
.navigation li:has(ul)::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  right: 0;
  width: 10px;
  height: 10px;
  background-color: #fff;
  -webkit-mask-image: url("/themes/custom/fourcheeses/assets/img/icons/stack.svg#arrow-down");
          mask-image: url("/themes/custom/fourcheeses/assets/img/icons/stack.svg#arrow-down");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.navigation li:has(ul) ul {
  display: none;
}
.navigation li:has(ul):hover::after {
  background-color: #e1b430;
  transform: rotate(180deg);
}
.navigation li:has(ul):hover ul {
  display: block;
}
.navigation li:has(ul):hover > a {
  color: #e1b430;
}
.navigation a {
  color: #ffffff;
}
.navigation a:hover {
  color: #e1b430;
}
