html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-family: inherit;
  font-size: 100%;
  vertical-align: baseline;
}
body {
  line-height: 1;
  color: #222;
  background: #fff;
}
ol,
ul {
  list-style: none;
}
table {
  border-collapse: separate;
  border-spacing: 0;
  vertical-align: middle;
}
caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}
a img {
  border: none;
}
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
ul {
  padding: 0;
}
li {
  list-style-type: none;
}
body {
  color: #193e52;
  font-family: 'Alegreya Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.3;
  font-size: 125%;
}
header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 35px;
  align-items: center;
}
div.logo {
  justify-self: center;
}
header {
  background: #fff;
  padding: 1em;
}
@media only screen and (max-width: 768px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    padding: 0.5em;
  }
}
.hamburger {
  font: inherit;
  display: inline-block;
  overflow: visible;
  margin: 0;
  padding: 15px;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  text-transform: none;
  color: inherit;
  background-color: transparent;
  border: 0;
  display: none;
}
@media only screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }
}
.hamburger.is-active:hover,
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
  background-color: #0289d1;
}
.hamburger-box {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}
.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  position: absolute;
  width: 40px;
  height: 4px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  border-radius: 4px;
  background-color: #0289d1;
}
.hamburger-inner:after,
.hamburger-inner:before {
  display: block;
  content: "";
}
.hamburger-inner:before {
  top: -10px;
}
.hamburger-inner:after {
  bottom: -10px;
}
.hamburger--squeeze .hamburger-inner {
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 75ms;
}
.hamburger--squeeze .hamburger-inner:before {
  transition: top 75ms ease 0.12s, opacity 75ms ease;
}
.hamburger--squeeze .hamburger-inner:after {
  transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(45deg);
}
.hamburger--squeeze.is-active .hamburger-inner:before {
  top: 0;
  transition: top 75ms ease, opacity 75ms ease 0.12s;
  opacity: 0;
}
.hamburger--squeeze.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transform: rotate(-90deg);
}
.menu {
  display: grid;
  grid-template-columns: 2fr 1fr;
}
.menu button {
  grid-column: 2;
}
.menu .menuppal {
  grid-column: 1/-1;
}
#menu-list {
  list-style: none;
  padding-left: 1em;
  display: flex;
  justify-content: space-evenly;
  font-family: 'Alegreya', Georgia, Cambria, "Times New Roman", Times, serif;
}
#menu-list li {
  text-align: left;
  position: relative;
  transition: all 0.5s ease;
}
#menu-list li a {
  text-decoration: none;
  display: block;
  color: #193e52;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}
#menu-list li a::after {
  background-color: #0289d1;
  content: '';
  display: block;
  height: 3px;
  position: absolute;
  transform: scale(0);
  transform-origin: left;
  transition: 0.25s ease-out;
  visibility: hidden;
  width: 100%;
}
#menu-list li a:hover::after {
  transform: scale(1);
  visibility: visible;
}
#menu-list li a.active {
  border-bottom: 3px solid #0289d1;
  color: #0289d1;
}
@media only screen and (max-width: 768px) {
  #menu-list {
    background-color: #fff;
    bottom: 0;
    height: 100vh;
    left: 0;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    transform: translate3d(0px, -100%, 0px);
    transition: transform 0.1s cubic-bezier(0.05, 1.04, 0.72, 0.98) 0s;
    min-width: 100%;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    padding: 0;
    justify-content: flex-start;
  }
  #menu-list.is_active {
    transform: translate3d(0px, 90px, 0px);
    height: 100vh;
    overflow-y: scroll;
  }
  #menu-list li:nth-child(odd) {
    border-bottom: 1px solid #5f889e;
    border-top: 1px solid #5f889e;
  }
  #menu-list li a {
    padding: 1em;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
  }
  #menu-list li a::after {
    display: none;
  }
  #menu-list li a.active {
    color: #0289d1;
    border-bottom: none;
  }
}
.logo {
  width: 4em;
  height: 4em;
}
@media only screen and (max-width: 768px) {
  .logo {
    width: 3.1em;
    height: 3.1em;
  }
}
body {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

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