@font-face {
  font-family: "FuturaMedium";
  src: url("./Futura-Medium.eot") format("embedded-opentype"), url("./Futura-Medium.woff") format("woff"), url("./Futura-Medium.ttf") format("truetype");
}

.font-futura {
  font-family: "FuturaMedium";
}

#header {
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  width: 100%;
}

#header.fixed-top {
  position: fixed;
}

#header .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#header .site-logo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 85%;
  flex: 0 0 85%;
  max-width: 85%;
  padding: 1rem 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#header .site-logo a {
  display: block;
  width: 100%;
}

@media screen and (min-width: 768px) {
  #header .site-logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: none;
  }
}

#header .site-logo[v-cloak] {
  min-width: 355px;
  min-height: 65px;
  background: #f2f2f2;
}

.scrolled #header .site-logo {
  padding: 0.8rem 0;
}

#header .site-logo img {
  width: auto;
  max-height: 60px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: auto;
  max-width: 100%;
}

/* @media screen and (min-width: 1200px) {
    .en #header .site-logo img {
        max-height: 48px;
    }
} */

@media screen and (min-width: 1440px) {
  #header .site-logo img {
    max-height: 80px;
  }
}

.scrolled #header .site-logo img {
  max-height: 48px;
}

@media screen and (min-width: 1440px) {
  .scrolled #header .site-logo img {
    max-height: 50px;
  }
}

#header a {
  color: #434343;
}

#header a:hover {
  color: #005795;
}

#header #btnMenu {
  padding: 0;
}

#header #btnMenu .icon {
  width: 30px;
  height: 30px;
}

#header #btnMenu:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media screen and (min-width: 1200px) {
  #header #btnMenu {
    display: none;
  }
}

#header .header-menu {
  margin-left: auto;
  text-align: right;
  display: none;
  max-width: 100vw;
}

@media screen and (min-width: 1200px) {
  #header .header-menu {
    display: flex;
    margin-left: auto;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    flex-wrap: wrap;
  }
}

@media (max-width: 1199px) {
  #header .header-menu.is-active {
    display: block;
    border-top: 1px solid #c1c1c1;
    -webkit-box-shadow: 0px 10px 10px 0px #c1c1c1;
    box-shadow: 0px 10px 10px 0px #c1c1c1;
    background: #fff;
    position: fixed;
    top: 5.5rem;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 1.5rem;
    margin: 0;
    text-align: left;
    z-index: 999;
    overflow: auto;
  }
  #header .header-menu.is-active .menu-item {
    display: block;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

.scrolled #header .header-menu.is-active {
  top: 5rem;
}

@media screen and (max-width: 576px) {
  .scrolled #header .header-menu.is-active {
    top: 4.7rem;
  }
}

#header .header-menu .menu-item {
  display: inline-block;
  vertical-align: middle;
  font-family: "FuturaMedium";
  margin: 0.8rem 0.5rem;
}

@media screen and (min-width: 1200px) {
  #header .header-menu .menu-item {
    margin: 0 0.5rem;
  }
  #header .header-menu .menu-item:hover > a,
  #header .header-menu .menu-item:hover .hasSub > a,
  #header .header-menu .menu-item.hover > a,
  #header .header-menu .menu-item.hover .hasSub > a {
    color: #005795;
  }
  #header .header-menu .menu-item:hover .sub-menu,
  #header .header-menu .menu-item.hover .sub-menu,
  #header .header-menu .menu-item .hasSub > a:focus .sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    z-index: 10;
    border-top: 1px solid #c1c1c1;
  }
  #header .header-menu .menu-item:hover .sub-menu:before,
  #header .header-menu .menu-item.hover .sub-menu:before,
  #header .header-menu .menu-item .hasSub > a:focus .sub-menu:before {
    z-index: 0;
    height: 45px;
    width: 100%;
    bottom: 100%;
    left: 0;
  }
  .scrolled #header .header-menu .menu-item:hover .sub-menu:before,
  .scrolled #header .header-menu .menu-item.hover .sub-menu:before,
  .scrolled #header .header-menu .menu-item .hasSub > a:focus .sub-menu:before {
    height: 30px;
  }
  #header .header-menu .menu-item:hover .sub-menu:after,
  #header .header-menu .menu-item.hover .sub-menu:after,
  #header .header-menu .menu-item .hasSub > a:focus .sub-menu:after {
    z-index: -1;
    top: 0;
    height: 100%;
    width: 10000px;
    left: -5000px;
    background: #fff;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  }
}

#header .header-menu .menu-item .hasSub .submenu_arrow {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

@media screen and (min-width: 1200px) {
  #header .header-menu .menu-item .hasSub .submenu_arrow {
    display: none;
  }
}

#header .header-menu .menu-item .hasSub .submenu_arrow.is-active {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

#header .header-menu .sub-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 99%;
  left: 0;
  right: 0;
  text-align: left;
  padding: 1.5rem 3rem 2rem;
  -webkit-transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translateY(-2rem);
  transform: translateY(-2rem);
}

@media screen and (max-width: 1199px) {
  #header .header-menu .sub-menu {
    -webkit-transform: none;
    transform: none;
    padding: 0.5rem 2rem;
    display: none;
  }
  #header .header-menu .sub-menu.is-active {
    display: block;
    position: relative;
    opacity: 1;
    visibility: visible;
  }
}

#header .header-menu .sub-menu:before,
#header .header-menu .sub-menu:after {
  content: "";
  display: block;
  position: absolute;
  -webkit-transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

#header .header-menu .sub-menu .sub-item {
  margin: 0.5rem 0;
}

@media screen and (min-width: 1200px) {
  #header .header-menu .sub-menu .sub-item {
    margin: 1rem 0;
  }
}

#header .search-holder.menu-item {
  display: inline-block;
  margin: 0 0.3rem;
}

#header .search-holder.menu-item:hover .btn,
#header .search-holder.menu-item:focus .btn {
  color: #00dfc1;
}

#header .search-holder.menu-item .btn {
  padding: 0;
  display: none;
}

@media screen and (min-width: 1200px) {
  #header .search-holder.menu-item .btn {
    display: inline-block;
  }
}

#header .search-holder.menu-item .btn:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

#header .search-holder.menu-item .sub-menu {
  padding: 0.5rem 0;
}

#header .search-holder.menu-item .search-inner {
  max-width: 600px;
  margin: 0.5rem auto 0;
}

@media screen and (min-width: 1200px) {
  #header .search-holder.menu-item .search-inner {
    margin: 2rem auto;
    text-align: center;
  }
}

#header .search-holder.menu-item .search-inner input:not([type="submit"]) {
  width: calc(100% - 2.5rem);
  color: #434343;
  border: 1px solid transparent;
  border-bottom-color: #c1c1c1;
  padding: 0.5rem;
  background-color: transparent;
}

@media screen and (min-width: 1200px) {
  #header .search-holder.menu-item .search-inner input:not([type="submit"]) {
    width: 90%;
  }
}

#header .search-holder.menu-item .search-inner #btnSearch {
  vertical-align: middle;
  border: 0;
  margin: 0;
  padding: 0.25rem 1rem;
  text-indent: -99999rem;
  /* background: url(../img/icons/search.svg) no-repeat 100% center; */
}

#header .lang-switch {
  margin: 5rem 0.3rem 1rem;
  text-align: center;
}

@media screen and (min-width: 1200px) {
  #header .lang-switch {
    margin: 0 0 0 0.5rem;
    display: inline-block;
  }
}

#header .lang-switch a {
  line-height: 1;
  display: inline-block;
  color: #707070;
  border: 2px solid #707070;
  border-radius: 5px;
  padding: 0.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#header .lang-switch a + a {
  margin-left: 0.3rem;
}

@media screen and (min-width: 1200px) {
  #header .lang-switch a + a {
    margin-left: 0.5rem;
  }
}

#header .lang-switch a:hover {
  background-color: #333d5e;
  color: #fff;
}

#header .container,
#header .container-wide {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1200px) {
  #header .container,
  #header .container-wide {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media screen and (min-width: 1440px) {
  #header .container-wide {
    max-width: 1620px;
  }
}

/* added from ams-eamsrp */
#header a {
  font-family: "FuturaMedium";
}

#header .share-sub-holder.active {
  display: block;
}

#btnMenu:not(.active) img:first-child,
#btnMenu.active img:last-child {
  display: none;
}


#header .header-menu .menu-item .hasSub .submenu_arrow {
    width: 25px;
}


#header .header-menu .menu-item .hasSub .submenu_arrow img {
    width: 100%;
}