/*#header {
  display: flex;
  flex-direction: column;
  position: relative
}
*/
nav:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url(../img/bg_menu.svg);
  background-position: center top;
  background-size: contain;
  background-repeat: repeat-x;
  z-index: 10
}

header #top {
  background-color: #f0f4f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5vw
}

header #top .left a {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #316094;
  text-decoration: none
}

header #top .right {
  display: flex
}

header #top .right a {
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  color: #243746;
  background-color: #f7be00;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 1px 15px
}

header #top .right #lang_switch span {
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  color: #243746;
  padding: 0 0 0 10px
}

header #top .right #lang_switch ul {
  display: none
}

header #navigation {
  background-color: #fff;
  padding: 15px 5vw;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #243746
}

header #navigation #logo a {
  text-decoration: none
}

#header #navigation #logo a span {
  display: block;
  font-weight: 300;
  font-size: 53px;
  line-height: 1.3;
  color: #007da5;
  text-transform: uppercase;
  text-decoration: none
}

header #navigation #search {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  padding: 0 0 15px 0
}

header #navigation #search .input-group {
  justify-content: flex-end
}

header #navigation #search .input-group input {
  width: calc(100% - 80px);
  border: none
}

header #navigation #search .input-group button {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  border-right: 1px solid #243746;
  padding-right: 20px
}

header #navigation #search .input-group button img {
  width: 14px
}

header #navigation #links {
  display: flex;
  align-items: flex-end
}

header #navigation #links ul {
  display: flex;
  padding: 0 0 0 10px
}

header #navigation #links ul li {
  list-style: none;
  margin: 0 8px
}

header #nav {
  background-color: #fff;
  padding: 0 5vw
}

header #nav ul {
  display: flex;
  justify-content: space-between;
  padding: 15px 0 8px;
  margin: 0
}

header #nav ul li {
  list-style: none
}

header #nav ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  color: #243746;
  text-decoration: none;
  letter-spacing: .6px
}

header #nav ul li a:hover {
  text-decoration: underline
}

.nav-bar {
  height: 85px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 .5em;
  width: 100vw;
}

.nav-branding {
  font-size: 2rem;
  font-weight: 600;
  transition: color 500ms ease;
}

.nav-branding:hover,
.nav-branding:focus {
  color: dodgerblue;
}

.nav-menu {
  position: fixed;
  left: -100%;
  /* top: 125px; */
  flex-direction: column;
  background-color: rgb(255, 255, 255);
  width: 100vw;
  height: 100%;
  text-align: center;
  transition: 750ms;
  z-index: 999;
  list-style: none;
  padding: 15px;
}

.nav-menu.active {
  left: 0;
}

.nav-item {
  margin: 1em 0;
}

.nav-item form {
  display: flex;
}

.nav-item form .form-item {
  display: flex;
  flex-grow: 1
}

.nav-item form input[type=text] {
  padding: 0;
  /* width: 75%; */
  background: var(--ice-blue, #F0F4F5);
  box-shadow: 0px 2px 6px 0px rgba(49, 96, 148, 0.25) inset;
  display: flex;
  padding: 10px;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
  align-self: stretch;
  border: 0;
  margin: 0;
}

.nav-link {
  /* transition: 400ms ease; */
  text-align: left;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
  color: #243746;
}

.nav-link:hover,
.nav-link:focus {
  color: dodgerblue;

}

.hamburger {
  cursor: pointer;
}

.bar {
  display: block;
  background-color: #316094;
  width: 24px;
  /* The following 2 properties are essential in creating the "X" when the hamburger is clicked. If you change just 1 of the 2, then you need to find the proper combination for the other one */
  height: 2px;
  margin: 6px auto;

  /*    -webkit-transition: all 300ms ease;  */
  /* transition: all 300ms ease-in-out; */
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 768px) {

  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
    width: auto;
  }

  .hamburger {
    display: none;
  }
}

.logo_mobile {
  height: 60px;
}

@media (min-width: 768px) {

  .top_160 {
    top: 165px !important;
  }
}