header nav {
  position: relative;
  padding: 15px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.18);
          box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.18);
}

header nav .brand {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

header nav .main_menu {
  display: none;
}

header nav .contact {
  display: none;
}

header nav .brand img {
  width: 462px;
  max-width: 75%;
}

header nav .main_menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0;
  border: 1px solid #eee;
  border-left-width: 0;
  border-right-width: 0;
  background: #efe;
  background: #fff;
  overflow: hidden;
  -webkit-transition: height 400ms;
  transition: height 400ms;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  color: #1f386e;
  font-size: 14px;
  font-weight: 700;
  z-index: 10;
}

header nav .main_menu li {
  padding: 10px;
}

header nav .main_menu li a {
  text-decoration: none;
  color: #222222;
}

header nav .main_menu li a:visited {
  color: #222222;
}

header nav .main_menu.show {
  height: var(--menu_height);
}

header nav .contact {
  margin: 4px 0 0 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #999;
}

header nav .contact span {
  font-size: 14px;
  display: block;
  color: #1f386e;
}

@media (min-width: 1200px) {
  header nav .main_menu {
    display: block;
  }
  header nav .contact {
    display: block;
  }
  header nav .menu_icon {
    display: none;
  }
  header nav .brand img {
    width: 462px;
    max-width: unset;
  }
  header nav .main_menu {
    position: static;
    width: unset;
    height: unset;
    border-width: 0;
    padding: 8px 2px;
  }
  header nav .main_menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header nav .main_menu li {
    padding: 0 10px;
  }
}
/*# sourceMappingURL=header.css.map */