@import url("https://fonts.googleapis.com/css?family=Muli:300,400,700&display=swap");
body {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: none;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  padding: 0;
  margin: 0;
}

.nav-bar {
  display: none;
  font-family: "Muli", sans-serif;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 8px;
  padding: 30px 0;
  width: 100%;
}
@media (min-width: 1160px) {
  .nav-bar {
    display: block;
  }
}
.nav-bar .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}
.nav-bar .brand img {
  max-width: 122px;
}
.nav-bar .options {
  list-style: none;
  margin: 0 0 0 2.65rem;
  padding: 0;
}
.nav-bar .options li {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  margin-right: 2.5rem;
  padding: 0.5rem 0;
}
.nav-bar .options li a {
  text-decoration: none;
  color: #0a0a0a;
}
.nav-bar .actions {
  list-style: none;
  margin: 0;
  padding: 0;
  justify-self: end;
}
.nav-bar .actions li {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  margin-right: 2rem;
  padding: 0.5rem 0;
}
.nav-bar .actions li a {
  text-decoration: none;
  color: #1BB6AA;
}
.nav-bar .actions li a:hover {
  color: #148a81;
}
.nav-bar .actions li.open-account {
  margin-right: 0;
}
.nav-bar .actions li.open-account a {
  min-width: 150px;
  background-color: #1BB6AA;
  color: white;
  padding: 15px 24px;
  border-radius: 4px;
}
.nav-bar .actions li.open-account a:hover {
  background: #148a81;
}

.mobile-nav-bar {
  display: block;
  font-family: "Muli", sans-serif;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 8px;
  padding: 30px 0;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 2;
}
@media (min-width: 1160px) {
  .mobile-nav-bar {
    display: none;
  }
}
.mobile-nav-bar .container {
  display: grid;
  grid-template-columns: auto auto;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}
.mobile-nav-bar .brand img {
  max-width: 122px;
}
.mobile-nav-bar .menu {
  justify-self: end;
  border: none;
  background: transparent;
  cursor: pointer;
  margin: 0;
  outline: none;
  padding: 0;
  position: relative;
}
.mobile-nav-bar .menu img {
  width: 20px;
  position: relative;
  top: 0.1rem;
}

.mobile-nav-options {
  background: white;
  display: none;
  font-family: "Muli", sans-serif;
  position: fixed;
  width: 100%;
  z-index: 1;
  top: 92px;
}
.mobile-nav-options.active {
  display: block;
}
@media (min-width: 1160px) {
  .mobile-nav-options.active {
    display: none;
  }
}
.mobile-nav-options .container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 31px 26px 35px;
}
.mobile-nav-options h4 {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4em;
  text-transform: uppercase;
  letter-spacing: 0.86px;
  color: #90969e;
  margin: 0;
  padding: 0 0 17px;
}
.mobile-nav-options ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav-options ul li {
  margin-bottom: 1rem;
}
.mobile-nav-options a {
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.mobile-nav-options a:hover {
  color: #148a81;
}
.mobile-nav-options .btn {
  min-width: 150px;
  background-color: #1BB6AA;
  color: white;
  padding: 15px 24px;
  border-radius: 4px;
  margin: 0 12px 0 0;
}
.mobile-nav-options .btn:hover {
  background: #148a81;
  color: white;
}
.mobile-nav-options .btn.secondary {
  border: 1px solid #f0eee9;
  background: white;
  color: #1BB6AA;
}
.mobile-nav-options .btn.secondary:hover {
  background: #148a81;
  color: white;
}
.mobile-nav-options p {
  margin-top: 2rem;
}
.mobile-nav-options hr {
  margin-bottom: 23px;
  border-top: 1px solid #ebebe8;
}

/*# sourceMappingURL=navbar.css.map */
