.s-main-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.s-main-menu__item {
  position: relative;
  float: left;
}
.s-main-menu__item:not(:last-child) {
  margin-right: 1.25rem;
}
.s-main-menu__item-link {
  display: block;
  cursor: pointer;
  position: relative;
  height: 4rem;
  background: 0 0;
  border: none;
  color: #fff;
  font-family: Arial, Verdana, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.s-main-menu__item-link--active::before {
  content: "";
  position: absolute;
  height: 0.3125rem;
  bottom: 0;
  right: 0;
  left: 0;
  background: #fecb00;
}
.s-main-menu__expander {
  cursor: pointer;
  position: relative;
  height: 4rem;
  background: 0 0;
  border: none;
  color: #fff;
  font-family: Arial, Verdana, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  padding: 0;
}
.s-main-menu__expander[aria-expanded="true"] .s-main-menu__expander-border {
  position: absolute;
  height: 4px;
  width: 100%;
  background: #fecb00;
  left: 0;
  bottom: 0;
}
.s-main-menu__expander--has-children::after {
  font-family: icons;
  content: "";
  margin-left: 0.125rem;
  display: inline-block;
}
.s-main-menu__expander--has-children[aria-expanded="true"]::after {
  transform: rotate(180deg);
}
.s-main-menu__expander--active::before {
  content: "";
  position: absolute;
  height: 0.3125rem;
  bottom: 0;
  right: 0;
  left: 0;
  background: #fecb00;
}
.s-main-menu__sub-list {
  position: absolute;
  bottom: 0;
  left: -1.875rem;
  transform: translateY(100%);
  min-width: 30.5rem;
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
}
.s-main-menu__sub-list[data-open="true"] {
  display: block;
  padding: 2rem;
  border: 1px solid #f7f3ed;
  border-radius: 2px;
  border-top: none;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  z-index: 99;
}
.s-main-menu__sub-item {
  margin-bottom: 1rem;
}
.s-main-menu__sub-item > a {
  color: #0069b4;
  font-family: Arial, Verdana, sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
}
.s-main-menu__sub-item--first > a {
  color: #0069b4;
  text-decoration: underline;
  font-family: Arial, Verdana, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.875rem;
}
.s-main-menu__sub-item > a:hover {
  text-decoration: none;
}
.s-main-menu__sub-item--first > a:hover {
  text-decoration: none;
}
.s-main-menu__sub-item:not(.s-main-menu__sub-item--first) {
  margin-left: 1rem;
}
