/* -------------------------------------------------------------------
 * ## close button for search and mobile navigation
 * ------------------------------------------------------------------- */
.light-blue-bg {
  background: #d6f3ff !important;
}

.light-blue-bg:hover {
  background: #bfe9fb !important;
}

.light-purple-bg {
  background: #f5e3fe !important;
}

.light-purple-bg:hover {
  background: #edd7f8 !important;
}

.dark-blue-bg {
  background: #b2e5fa !important;
  border-bottom: 2px solid #ffffff;
  font-weight: bold;
  color: #0690b4;
}

.dark-blue-bg a {
  display: flex !important;
  align-items: center;
}

.dark-blue-bg a strong {
  color: #0766aa;
}

.nav-icon {
  width: 37px;
  background: #ffffff;
  padding: 6px;
  border-radius: 100%;
  margin-right: 7px;
}

.dark-purple-bg {
  background: #edd7f8 !important;
  border-bottom: 2px solid #ffffff;
  font-weight: bold;
  color: #0690b4;
}

.dark-purple-bg a {
  display: flex !important;
  align-items: center;
}

.dark-purple-bg a strong {
  color: #866199;
}

.header__overlay-close {
  position: fixed;
  display: block;
  width: 45px;
  height: 45px;
  top: 19px;
  right: 26px;
  margin-left: -23px;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background: #fff;
}

.header__overlay-close::before, .header__overlay-close::after {
  content: '';
  position: absolute;
  display: inline-block;
  width: 2px;
  height: 20px;
  top: 12px;
  left: 22px;
  background-color: #000000;
}

.header__overlay-close::before {
  transform: rotate(45deg);
}

.header__overlay-close::after {
  transform: rotate(-45deg);
}

/* ===================================================================
 * # header
 *
 * ------------------------------------------------------------------- */
.s-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
}

.s-header.navShadow {
  top: 0 !important;
  background: #ffffff;
  box-shadow: 0 0 15px #0000004a;
}

body.index .s-header {
  top: 90%;
}

/* -------------------------------------------------------------------
 * ## header logo
 * ------------------------------------------------------------------- */
.header__logo img {
  width: 165px;
}

/* -------------------------------------------------------------------
 * ## header-toggle
 * ------------------------------------------------------------------- */
.header__toggle-menu {
  display: none;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 20%;
  right: 27px;
}

.header__toggle-menu span {
  display: block;
  width: 22px;
  height: 2px;
  margin-top: -1px;
  background-color: #000000;
  transition: background 0.2s ease-in-out;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  position: absolute;
  right: 9px;
  top: 50%;
  bottom: auto;
  left: auto;
}

.header__toggle-menu span::before, .header__toggle-menu span::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: inherit;
  position: absolute;
  left: 0;
}

.header__toggle-menu span::before {
  top: -8px;
}

.header__toggle-menu span::after {
  bottom: -8px;
}

/* -------------------------------------------------------------------
 * ## main navigation
 * ------------------------------------------------------------------- */
.header__nav-wrap a {
  color: rgba(0, 0, 0, 0.6);
}

.header__nav-wrap .close-mobile-menu {
  display: none;
}

.header__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 60px;
}

.header__nav li {
  display: inline-block;
  position: relative;
  padding: 0 1.5rem;
}

.header__nav li.has-children {
  padding-right: 3.3rem;
}

.header__nav li a {
  display: block;
  color: rgba(0, 0, 0, 0.6);
  transition: color 0.3s ease-in-out;
  font-size: 20px;
}

.header__nav li.has-children > a::after {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  border-right: 1px solid rgba(0, 0, 0, 0.5);
  content: '';
  display: block;
  height: 5px;
  width: 5px;
  margin-top: -3px;
  pointer-events: none;
  position: absolute;
  right: 1.8rem;
  top: 50%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.3s ease-in-out;
}

.header__nav li:hover li, .header__nav li:focus li {
  background: transparent;
}

.header__nav li:hover > a, .header__nav li:focus > a {
  color: #000000;
}

.header__nav li.current > a {
  color: #0766aa;
}

.header__nav li ul {
  position: absolute;
  top: 100%;
  left: 0;
  font-size: 15px;
  font-weight: 400;
  margin: 0;
  padding: 1.8rem 0;
  background: #ffffff;
  border-radius: 0 0 3px 3px;
  z-index: 500;
  transform: translate3d(0, 15px, 0);
  transition: all 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.header__nav li ul ul {
  position: absolute;
  top: 0;
  left: 100%;
  left: calc(100% + 1px);
  border-radius: 0 0 3px 3px;
  padding-top: 1.2rem;
}

.header__nav li ul li {
  display: block;
  text-align: left;
  padding: 0;
  margin: 0;
  min-height: 33px;
  width: 100%;
}

.header__nav li ul li:hover {
  background: #eaeaea;
}

.header__nav li ul li:hover a {
  color: #0766aa;
}

.header__nav li ul li a {
  display: block;
  white-space: nowrap;
  padding: 13px 2rem;
  text-transform: none;
  letter-spacing: 0;
  line-height: 18px;
}

.header__nav li ul li a:hover, .header__nav li ul li a:focus {
  color: #0766aa;
}

.header__nav li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.header__nav .current {
  animation: heartBeat 5s  infinite;
}

@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.1);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.1);
  }
  70% {
    transform: scale(1);
  }
}

/* -------------------------------------------------------------------
 * responsive:
 * header
 * ------------------------------------------------------------------- */
@media only screen and (max-width: 1200px) {
  /* .header__logo {
   *  left: 30px
   *} */
  .header__logo img {
    width: 150px;
  }
  .header__search-trigger {
    right: 30px;
  }
  .header__nav {
    font-size: 11px;
  }
  .header__nav > li {
    padding: 0 1rem;
  }
  .header__nav > li.has-children {
    padding-right: 2.3rem;
  }
  .header__nav > li.has-children > a::after {
    right: 1.2rem;
  }
}

@media only screen and (max-width: 1000px) {
  .header__search-trigger {
    right: 20px;
  }
}

@media only screen and (max-width: 900px) {
  .s-header {
    padding: 16px 10%;
  }
  .header__logo img {
    width: 200px;
  }
  .header__search-trigger {
    right: 30px;
  }
  .header__search-trigger::before {
    display: none;
  }
  .header__search-form::after {
    font-size: 1.5rem;
  }
  .header__search-form input[type="search"] {
    max-width: none;
    width: 75%;
    font-size: 4.2rem;
  }
  .header__toggle-menu {
    display: block;
  }
  .header__nav-wrap {
    background-color: #FFFFFF;
    margin: 0;
    border: none;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 600;
    overflow-y: auto;
  }
  .header__nav-wrap .close-mobile-menu {
    display: block;
  }
  .header__nav {
    margin: 6rem 7rem 3rem 7rem;
    font-weight: 400;
    font-size: 18px;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .header__nav > li {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .header__nav > li a {
    line-height: 60px;
    color: #000000;
  }
  .header__nav li {
    display: block;
    padding: 0;
    text-align: left;
  }
  .header__nav li ul {
    display: none;
    position: static;
    background-color: transparent;
    padding: 0 0 1.8rem 0;
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    transition: none !important;
  }
  .header__nav li.has-children > a::after {
    top: 27px;
    border-bottom: 1px solid #000000;
    border-right: 1px solid #000000;
  }
  .header__nav li.has-children > a.sub-menu-is-open::after {
    transform: rotate(225deg);
  }
  .header__nav li:hover > a, .header__nav li:focus > a {
    color: #111860;
  }
  .header__nav li.current > a {
    color: #111860;
    font-weight: 700;
  }
  .header__nav li ul li a {
    padding: 11.5px 1.5rem 11.5px 1.5rem;
    color: black;
  }
  .header__nav li ul li a:hover, .header__nav li ul li a:focus {
    color: #111860;
  }
  body.nav-wrap-is-visible {
    overflow: hidden;
  }
  .nav-wrap-is-visible .header__nav-wrap {
    transition: all 0.3s ease-in-out;
    opacity: 1;
    visibility: visible;
  }
}

@media only screen and (max-width: 800px) {
  .header__nav {
    margin: 6rem 4rem 3rem 4rem;
  }
  .header__nav > li.has-children {
    padding-right: 0;
  }
}

@media only screen and (max-width: 600px) {
  .header__logo img {
    width: 160px;
  }
  .header__search-form input[type="search"] {
    font-size: 3.4rem;
  }
  .header__nav {
    font-size: 17px;
  }
}

@media only screen and (max-width: 400px) {
  .header__logo img {
    width: 140px;
  }
  .header__search-form input[type="search"] {
    font-size: 2.6rem;
  }
  .header__nav {
    margin: 6rem 2rem 3rem 2rem;
  }
}

/* -------------------------------------------------------------------
 * ## main navigation on large screens
 * ------------------------------------------------------------------- */
@media only screen and (min-width: 901px) {
  .header__nav li.has-children:hover > a::after, .header__nav li.has-children:focus > a::after {
    transform: rotate(225deg);
  }
  .header__nav li ul {
    display: block !important;
  }
}

@media screen and (max-width: 990px) {
  body.index .s-header {
    top: 0;
  }
}

@media screen and (max-width: 1366px) {
  .s-header {
    padding: 0 15px;
  }
}
/*# sourceMappingURL=menu.css.map */