.site-header .menu-item.secondary-button {
  margin-right: 10px;
}

.site-header .menu-item.secondary-button a {
  padding: 1rem 1.5rem;
  background-color: #aff770 !important;
  border-radius: 1rem;
  color: #061f2e !important;
  text-align: center;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.01rem;
  transition: all 0.2s ease-in;
  text-transform: none;
}

.site-header .menu-item.secondary-button a:hover {
  opacity: 0.85;
}

#menu-secondary-mobile-menu > li.secondary-button > a,
#menu-secondary-mobile-menu > li.secondary-button > button {
  padding: 1rem 1.5rem;
  background-color: #aff770 !important;
  border-radius: 1rem;
  color: #061f2e !important;
  text-align: center;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.01rem;
  transition: all 0.2s ease-in;
  text-transform: none;
  margin-bottom: -10px;
}

#menu-secondary-mobile-menu > li.secondary-button > a:hover,
#menu-secondary-mobile-menu > li.secondary-button > button:hover {
  opacity: 0.85;
}

.site-header__menu--secondary li:last-child a {
  padding: 1rem 1.5rem;
}

/* -----------------------------------------------
   Simple Dropdown
----------------------------------------------- */

/* Desktop */

.site-header__menu-container .menu-item.has-simple-dropdown {
  position: relative;
}

.site-header__menu-container .menu-item.has-simple-dropdown .simple-dropdown-control {
  /* no chevron, no hover color change */
}

.site-header__menu-container .menu-item.has-simple-dropdown .simple-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform: none;
  min-width: 20rem;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  padding: 0.6rem;
  margin-top: 0.8rem;
  z-index: 200;
  /* invisible bridge fills the gap so mouseleave doesn't fire mid-hover */
}

.site-header__menu-container .menu-item.has-simple-dropdown .simple-dropdown::before {
  content: "";
  position: absolute;
  top: -1.4rem;
  left: 0;
  right: 0;
  height: 1.4rem;
}

.site-header__menu-container .menu-item.has-simple-dropdown .simple-dropdown ul {
  list-style: none !important;
  margin: 0;
  padding: 0;
  display: block;
}

.site-header__menu-container .menu-item.has-simple-dropdown .simple-dropdown li {
  margin: 0;
}

.site-header__menu-container .menu-item.has-simple-dropdown .simple-dropdown li:before {
  display: none !important;
}

.site-header__menu-container .menu-item.has-simple-dropdown .simple-dropdown li a {
  display: block;
  padding: 0.85rem 1.4rem;
  color: #1d1d21;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 0.8rem;
  transition: 0.3s;
}

.site-header__menu-container .menu-item.has-simple-dropdown .simple-dropdown li a:hover {
  color: #32b4c2;
}

.site-header__menu-container .menu-item.has-simple-dropdown.active .simple-dropdown {
  display: block;
}

/* Mobile */

.site-header__mobile-menu .menu-item.has-simple-dropdown .simple-dropdown-control {
  color: #1d1d21;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.24rem;
  padding: 1rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  transition: all 0.2s ease-in;
  color: #2e607b;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.24rem;
  text-decoration: none;
  padding: 1rem 1rem;
}

.site-header__mobile-menu .menu-item.has-simple-dropdown .simple-dropdown-control::after {
  content: "";
  width: 0.6rem;
  height: 1.1rem;
  display: block;
  margin-left: auto;
  background-image: url("data:image/svg+xml,%3Csvg width='7' height='11' viewBox='0 0 7 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.40839 11L0.499939 10.0187L4.68304 5.5L0.499939 0.981328L1.40839 0L6.49994 5.5L1.40839 11Z' fill='%2332B4C2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.2s ease-in;
}

.site-header__mobile-menu .menu-item.has-simple-dropdown .simple-dropdown-control.active {
  background: #f3f3f3;
}

.site-header__mobile-menu .menu-item.has-simple-dropdown .simple-dropdown-control.active::after {
  transform: rotate(90deg);
}

.site-header__mobile-menu .menu-item.has-simple-dropdown .simple-dropdown {
  display: none;
}

.site-header__mobile-menu .menu-item.has-simple-dropdown .simple-dropdown.active {
  display: block;
}

.site-header__mobile-menu .menu-item.has-simple-dropdown .simple-dropdown ul {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.site-header__mobile-menu .menu-item.has-simple-dropdown .simple-dropdown li:before {
  display: none !important;
}

.site-header__mobile-menu .menu-item.has-simple-dropdown .simple-dropdown li a {
  display: block;
  padding: 0.8rem 2rem;
  color: #1d1d21;
  font-size: 1.4rem;
  font-weight: 400;
  text-decoration: none;
}

.site-header__mobile-menu .menu-item.has-simple-dropdown .simple-dropdown li a:hover {
  color: #32b4c2;
}

@media (min-width: 1000px) and (max-width: 1200px) {
  .site-header__menu li {
    margin-right: 2rem;
  }
}