@charset "UTF-8";
/* CSS Document */
body {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  background-color: #fbf6f0;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 18px;
  box-shadow: 0 0 3px 3px #cfcfcf;
}
h1, h2, h3, h4, h4, h6 {
  font-family: 'Open Sans', sans-serif;
}
h1 {
  font-size: 2.5rem;
  font-weight: 300;
  padding: 1rem 0;
}
h2 {
  font-size: 2rem;
  padding: 1rem 0;
  font-weight: 300;
}
a {
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}
.hide-small {
  display: none;
}
.header-banner {
  width: 100%;
  text-align: center;
  padding: 20px 0;
  background-color: #fbf6f0;
}
.header-banner img {
  max-width: 100%;
  height: auto;
}
.header-banner .tagline {
  font-family: 'Open Sans', sans-serif;
  color: #af6527;
  font-size: 1.7rem;
  margin-top: 1rem;
}
.tagline {
  margin-bottom: 1rem;
}
.menu-banner {
  width: 100%;
  background-color: #0b607b;
  color: white;
  padding: 0 1rem 0 0;
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
}
.menu-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.right-sidebar {
  text-align: right;
  font-size: 1.5rem;
}
.right-sidebar a {
  text-decoration: none;
}
.right-sidebar a:hover {
  text-decoration: underline;
}
.menu-toggle {
  cursor: pointer;
  font-size: 1.5rem;
  display: block;
  padding: 2rem;
  height: 100%;
}
.menu-toggle:hover {
  background-color: #fbf6f0;
  color: #0b607b;
}
.show {
  display: flex !important;
}
.hide {
  display: none !important;
}
.content {
  padding: 2rem 2rem;
}
.parallax {
  background-attachment: scroll;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 350px;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 2rem;
  color: white;
  font-size: 2rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}
.parallax-content {
  text-align: center;
  display: block;
  position: relative;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 0 2rem;
  border-radius: 12px;
}
.divider {
  height: 1px;
  width: 100%;
  background-color: #000;
  margin: 1rem 0;
}
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  display: none;
}
.menu-panel {
  background-color: rgba(11, 96, 123, 0.95);
  width: 100%;
  max-width: 500px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  transition: transform 0.7s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: scroll;
}
.menu-overlay.show {
  display: block;
}
.menu-panel.show {
  transform: translateX(0);
}
.menu-panel a {
  width: 100%;
  color: #fbf6f0;
  font-size: 2rem;
  text-decoration: none;
  text-align: left;
  margin: 0;
  padding: 1rem;
  padding-left: 3rem;
  font-weight: bold;
}
.menu-panel a:hover {
  color: #0b607b;
  background-color: #fbf6f0
}
.minor-menu {
  padding: .5rem !important;
  padding-left: 3rem !important;
  font-weight: normal;
  font-size: 1.5rem !important;
}
.button {
  display: inline-block;
  padding: 1rem 2rem;
  vertical-align: middle;
  overflow: hidden;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  background-color: #0b607b;
  color: #fbf6f0;
  margin: 0 auto;
  border-radius: 10px;
}
.button:hover {
  color: #0b607b;
  background-color: #fbf6f0
}
.close-button {
  position: absolute;
  top: 0px;
  right: 20px;
  font-size: 6rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}
.modal-content {
  background-color: #fbf6f0;
}
.modal-close {
  font-size: 2rem;
}
.logo-icons {
  text-align: center;
}
.logo-icons a {
  text-decoration: none;
}
.logo-icons img {
  height: 4rem;
  width: auto;
  color: #000;
  padding: .5rem 1rem;
  margin: 0;
  background-color: inherit;
  border-radius: 5px;
}
.logo-icons img:hover {
  background-color: #cfcfcf;
}
.footer {
  width: 100%;
  background-color: #0b607b;
  color: white;
  padding: 2rem 0;
  text-align: center;
}
.footer .logo-icons img{
  filter: invert(1);
}
@media (min-width: 769px) {
  .hide-large {
    display: none;
  }
  .hide-small {
    display: flex !important;
  }
  .content {
    padding: 4rem 6rem;
  }
  .menu-banner {
    padding: 0 6rem 0 4rem;
  }
  .parallax {
    background-attachment: fixed;
  }
}
