/* Zennaro.NET stylesheet — shared header, nav, footer */

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

body {
  background-color: #003366;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
a {
  color: #ffffff;
}

.top_header_item {
  position: relative;
}

#hamburger {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
}

@media (min-resolution: 2.01dppx) {
  .header_item { height: 100px; font-size: 2.0em; }
  .header_item a { padding-top: 20px; }
  .top_header_item { height: 100px; font-size: 2.2em; }
  #logo {
    padding-top: 7px;
    text-decoration: none;
    color: #eeeeff;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: 100%;
    margin: auto auto;
    display: inline-block;
  }
  a#hamburger {
    text-decoration: none;
    color: #eeeeff;
    text-align: left;
    margin: auto auto;
    display: inline-block;
  }
  .content_text_style { font-size: 1.8em; }
}
@media (min-resolution: 1.01dppx) and (max-resolution: 2.0dppx) {
  .header_item { height: 60px; font-size: 1.0em; }
  .header_item a { padding-top: 20px; }
  .top_header_item { height: 60px; font-size: 2.3em; }
  #logo {
    padding-top: 7px;
    text-decoration: none;
    color: #eeeeff;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: 100%;
    margin: auto auto;
    display: inline-block;
  }
  a#hamburger {
    text-decoration: none;
    color: #eeeeff;
    text-align: left;
    margin: auto auto;
    display: inline-block;
  }
  .content_text_style { font-size: 1.4em; }
}
@media (max-resolution: 1dppx) {
  .header_item { height: 40px; font-size: 1.0em; }
  .header_item a { padding-top: 11px; }
  .top_header_item { height: 40px; font-size: 1.5em; }
  #logo {
    padding-top: 7px;
    text-decoration: none;
    color: #eeeeff;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: 100%;
    margin: auto auto;
    display: inline-block;
  }
  a#hamburger {
    text-decoration: none;
    color: #eeeeff;
    text-align: left;
    margin: auto auto;
    display: inline-block;
  }
  .content_text_style { font-size: 1.2em; }
}

/* Headers */
.header {
  display: block;
  background-color: #003366;
  width: 100%;
  text-align: center;
  vertical-align: middle;
}
ul.navigation {
  max-width: 937px;
  margin: 0 auto;
  vertical-align: top;
  text-align: center;
  padding: 0;
  border: 0;
  background-color: #003366;
}
ul.navigation li {
  margin: auto;
  vertical-align: top;
  text-align: center;
  background-color: #003366;
}
ul.navigation li a {
  position: relative;
  text-decoration: none;
  color: #eeeeff;
  padding-bottom: 4px;
}
ul.navigation li a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #85C1E9;
  transition: width 0.25s ease, left 0.25s ease;
}
ul.navigation li:hover a {
  color: #85C1E9;
  transition: color 0.25s ease;
}
ul.navigation li:hover a::after {
  width: 70%;
  left: 15%;
}

@media (min-width: 769px) {
  #top_header { display: none; }
  ul.navigation { display: flex; }
  ul.navigation li { display: inline-block; max-width: 100px; }
  ul.navigation li a { display: inline-block; }
}
@media (max-width: 768px) {
  #menu_header { display: none; }
  #menu_header.open { display: block; }
}
@media (max-width: 350px) {
  #logo { display: none; }
}

/* Footer */
#footer_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 10px;
  width: 100%;
  max-width: 936px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #eeeeff;
  font-size: 1.0em;
}
#footer {
  text-align: right;
}
#text_footer {
  text-align: left;
  color: #dddddd;
  font-size: 0.6em;
}