<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.menu {
  height: auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .menu {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 639px) {
  .menu {
    display: none;
  }
}
.menu__items {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  line-height: 1;
  position: relative;
  margin-top: 10px;
}
.menu--align-menus .menu__items {
  justify-content: space-between;
}
.menu__item {
  margin-right: 2em;
}
.menu__item a {
  font-family: europa, sans-serif !important;
  display: block;
  position: relative;
  color: black;
  font-size: 0.8em;
  font-weight: 700;
  text-decoration: none;
}
.menu__item--main &gt; a:after {
  content: '';
  position: absolute;
  height: 10px;
  width: 100%;
  left: 0;
  top: 20px;
  background-color: #00484f;
  opacity: 0;
  transition: opacity 0.25s linear;
}
.menu__item--open &gt; a:after {
  opacity: 1;
}
.menu__item:first-child {
  margin-left: 0;
}
.menu__search-field {
  position: relative;
  top: 2px;
  border: 1px solid #e5e6e7;
  height: 25px;
  border-radius: 12.5px;
  padding: 0 1em;
  font-family: europa, sans-serif !important;
  color: black;
}
.menu__search-field::placeholder {
  font-family: europa, sans-serif !important;
  font-size: 0.6rem;
  color: black;
  font-weight: 300;
}
.menu__search-button {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  font-size: inherit;
  outline: none;
  position: absolute;
  z-index: 1;
  right: 10px;
  top: 5px;
  cursor: pointer;
  height: 16px;
  width: 16px;
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .menu__search-button {
    top: 7px;
  }
}
/* submenu */

.body-contents {
  /*makes sure submenu can flow over content, but not to the right of body*/
  overflow: hidden;
}
.body-contents:before {
  content: "";
  width: 100vw;
  height: 150px;
  display: block;
}
@media only screen and (max-width: 639px) {
  .body-contents:before {
    height: 50px;
  }
}
.menu__submenu-items {
  background: #00484f;
  position: absolute;
  width: 3000px;
  left: 0;
  padding: 55px 0 55px 80px;
  margin: 0;
  z-index: 100;
  top: 30px;
  visibility: collapse;
  opacity: 0;
  transition: opacity 0.25s linear, visibility 0.25s step-end;
}
.menu__submenu-item a {
  font-family: europa, sans-serif !important;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  line-height: 3em;
}
.menu__item--open .menu__submenu-items {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.25s linear, visibility 0.25s step-start;
}
.menu,
.mobile-menu {
  float: left;
}
.mobile-menu {
  display: block;
}
@media screen and (max-width: 639px) {
  .mobile-menu {
    display: block;
  }
}
.mobile-menu__search-link {
  text-decoration: none;
  position: relative;
  top: 2px;
  margin-right: 2em;
}
.mobile-menu__search-link-icon {
  width: 22px;
  height: 22px;
}
</pre></body></html>