/* found in components/header.js */
header {
  background-color: #1F2A4F;
}
header #topbar {
  height: 30px;
  background-color: #18203C;
}
header #navbar {
  width: 56.25%;
  max-width: 1080px;
  height: 100px;
  margin: 0 auto;
  background-color: #1F2A4F;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  /* for responsive dropdown starting at max-width: 601px */
}
header #navbar #logo {
  display: flex;
  flex-direction: row;
  z-index: 1;
}
header #navbar #logo #logo-cont {
  width: 220px;
  height: 140px;
  margin-top: 40px;
  background-image: url(../images/logo_container-background.png);
}
header #navbar #logo #logo-cont #logo-image {
  width: 70px;
  height: 100px;
  margin-top: 8px;
  margin-left: 75px;
  background-image: url(../images/logo.png);
}
header #navbar #logo #title {
  color: #fff;
  margin-top: 60px;
  margin-left: 10px;
}
header #navbar #logo #title h1 {
  font-size: 1.875rem;
}
header #navbar #logo #title h2 {
  font-size: 1.5rem;
}
header #navbar #nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
header #navbar #nav .nav-item {
  height: 40px;
  padding-left: 20px;
  padding-right: 20px;
  line-height: 40px;
  font-weight: bold;
  font-family: "Quattrocento Sans", sans-serif;
  border-right: 0.5px solid rgba(225, 255, 255, 0.25);
  color: #fff;
}
header #navbar #nav .nav-item:first-child {
  border-left: 0.5px solid rgba(225, 255, 255, 0.25);
}
header #navbar #nav-mobile {
  width: 36px;
  height: 36px;
  background-image: url(../images/hamburger_open.png);
  display: none;
}
header #navbar #nav-mobile #nav-mobile_item-container {
  position: absolute;
  width: 100%;
  margin-top: 75px;
  right: 0;
  background-color: #18203C;
  border-radius: 4px;
  z-index: 1;
  display: none;
  flex-direction: column;
}
header #navbar #nav-mobile #nav-mobile_item-container .nav-item-mobile {
  padding-left: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: bold;
  font-family: "Quattrocento Sans", sans-serif;
  border-bottom: 0.5px solid rgba(225, 255, 255, 0.25);
  color: #fff;
}
header #navbar #nav-mobile #nav-mobile_item-container .nav-item-mobile .dropdown-item-mobile {
  background-color: #1F2A4F;
  margin-right: 20px;
  margin-top: 20px;
  border-top: 4px solid #fff;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
header #navbar #nav-mobile #nav-mobile_item-container .nav-item-mobile .dropdown-item-mobile a {
  padding-left: 8px;
  padding-top: 10px;
  padding-bottom: 16px;
  font-size: 0.875rem;
  border-bottom: 0.5px solid rgba(225, 255, 255, 0.25);
  color: #fff;
}
header #navbar #nav-mobile #nav-mobile_item-container .nav-item-mobile .dropdown-item-mobile a:first-child {
  padding-top: 18px;
}
header #navbar-border {
  max-width: 1920px;
  height: 20px;
  left: 0;
  right: 0;
  margin-top: -1px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  background-image: url(../images/navbar-border.png);
}
header #banner {
  height: 320px;
  margin: 0 auto;
  background-image: url(../images/banner_1920px.png);
}

/* found in components/footer.js */
footer {
  background-color: #18203C;
}
footer #footer-cont {
  width: 56.25%;
  max-width: 1080px;
  height: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
footer #footer-cont #footer-info {
  color: #888;
  display: flex;
  flex-direction: row;
  gap: 90px;
}
footer #footer-cont #footer-info #footer-link {
  color: #888;
}
footer #footer-cont #footer-info p {
  font-size: 1rem;
}

body header #navbar #nav .nav-item .dropdown-item {
  position: absolute;
  width: 200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: -20px;
  border-top: 4px solid #fff;
  background-color: #888;
  display: none;
}
body header #navbar #nav .nav-item .dropdown-item a {
  font-size: 0.875rem;
  border-bottom: 0.5px solid rgba(225, 255, 255, 0.25);
  color: #fff;
}
body header #navbar #nav .nav-item .dropdown-item a:hover {
  color: #333;
}
body header #navbar #nav .nav-item:hover .dropdown-item {
  display: flex;
  flex-direction: column;
}

/* found in index.html */
main {
  padding-top: 2px;
  border-top: 12px solid #333;
  background-color: #f9f6ef;
}
main #main-container_A {
  width: 56.25%;
  max-width: 1080px;
  margin: 0 auto;
  margin-top: -110px;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
main #main-container_A #main-section_1 {
  background-color: #bbb;
  display: flex;
  flex-direction: row;
}
main #main-container_A #main-section_1 #ms_1-a {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 32px;
  padding-bottom: 32px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  flex: 1.25;
}
main #main-container_A #main-section_1 #ms_1-a h1 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 12px;
}
main #main-container_A #main-section_1 #ms_1-a h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 24px;
}
main #main-container_A #main-section_1 #ms_1-a p {
  margin-bottom: 16px;
}
main #main-container_A #main-section_1 #ms_1-b {
  background-image: url(../images/history-001.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
  flex: 1;
}
main #main-container_A #main-section_2 #ms_2-a {
  margin-top: 16px;
  margin-bottom: 40px;
}
main #main-container_A #main-section_2 #ms_2-a h1 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 24px;
}
main #main-container_A #main-section_2 #ms_2-a p {
  width: 75%;
}
main #main-container_A #main-section_2 #ms_2-b {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
main #main-container_A #main-section_2 #ms_2-b #ms_2-b-history {
  padding-left: 32px;
  padding-right: 32px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  background-color: #fff;
  flex: 1;
}
main #main-container_A #main-section_2 #ms_2-b #ms_2-b-history h1 {
  font-size: 1.75rem;
  font-weight: 400;
}
main #main-container_A #main-section_2 #ms_2-b #ms_2-b-history p {
  margin-top: 16px;
  margin-bottom: 16px;
}
main #main-container_A #main-section_2 #ms_2-b #ms_2-b-war {
  padding-left: 32px;
  padding-right: 32px;
  padding-top: 24px;
  padding-bottom: 32px;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  background-color: #fff;
  flex: 1;
}
main #main-container_A #main-section_2 #ms_2-b #ms_2-b-war h1 {
  font-size: 1.75rem;
  font-weight: 400;
}
main #main-container_A #main-section_2 #ms_2-b #ms_2-b-war p {
  margin-top: 16px;
  margin-bottom: 16px;
}
main #main-container_B {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: rgba(219, 132, 11, 0.6);
}
main #main-container_B #main-section_3 {
  width: 56.25%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 40px;
}
main #main-container_B #main-section_3 #ms_3-a {
  flex: 2.25;
}
main #main-container_B #main-section_3 #ms_3-a h1 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 24px;
}
main #main-container_B #main-section_3 #ms_3-b {
  margin-top: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
main #main-container_B #main-section_3 #ms_3-b #ms_3-b-inn {
  padding: 16px;
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  background-color: #fff;
}
main #main-container_B #main-section_3 #ms_3-b #ms_3-b-inn h2 {
  font-size: 1.25rem;
  font-weight: 400;
}
main #main-container_B #main-section_3 #ms_3-b #ms_3-b-inn #ms_3-b-inn-dropdown {
  opacity: 0;
  max-height: 0;
}
main #main-container_B #main-section_3 #ms_3-b #ms_3-b-inn #ms_3-b-inn-dropdown p {
  line-height: 1.4rem;
}
main #main-container_B #main-section_3 #ms_3-b #ms_3-b-inn:hover #ms_3-b-inn-dropdown {
  opacity: 1;
  max-height: 320px;
  transition-duration: 0.75s;
}
main #main-container_B #main-section_3 #ms_3-b #ms_3-b-inn:hover #ms_3-b-inn-dropdown p {
  margin-top: 16px;
  margin-bottom: 16px;
}
main #main-container_B #main-section_3 #ms_3-b #ms_3-b-resort {
  padding: 16px;
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  background-color: #fff;
}
main #main-container_B #main-section_3 #ms_3-b #ms_3-b-resort h2 {
  font-size: 1.25rem;
  font-weight: 400;
}
main #main-container_B #main-section_3 #ms_3-b #ms_3-b-resort #ms_3-b-resort-dropdown {
  opacity: 0;
  max-height: 0;
}
main #main-container_B #main-section_3 #ms_3-b #ms_3-b-resort #ms_3-b-resort-dropdown p {
  line-height: 1.4rem;
}
main #main-container_B #main-section_3 #ms_3-b #ms_3-b-resort:hover #ms_3-b-resort-dropdown {
  opacity: 1;
  max-height: 320px;
  transition-duration: 0.75s;
}
main #main-container_B #main-section_3 #ms_3-b #ms_3-b-resort:hover #ms_3-b-resort-dropdown p {
  margin-top: 16px;
  margin-bottom: 16px;
}
main #main-container_C {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: rgba(51, 51, 51, 0.85);
  background-image: url(../images/banner-2.png);
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
}
main #main-container_C #main-section_4 {
  width: 56.25%;
  max-width: 1080px;
  margin: 0 auto;
}
main #main-container_C #main-section_4 #ms_4-a h1 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 24px;
}
main #main-container_C #main-section_4 #ms_4-a p {
  margin-bottom: 16px;
}
main #main-container_C #main-section_4 #ms_4-a a {
  width: 240px;
  height: 40px;
  margin-bottom: 8px;
  border-radius: 6px;
  background-color: #fff;
  color: #000;
  display: flex;
  align-items: center;
}
main #main-container_C #main-section_4 #ms_4-a a h2 {
  margin-left: 12px;
  font-size: 1rem;
  font-weight: 400;
}
main #main-container_C #main-section_4 #ms_4-b {
  margin-top: 24px;
}
main #main-container_C #main-section_4 #ms_4-b p {
  margin-bottom: 16px;
}
main #main-container_C #main-section_4 #ms_4-b a {
  width: 240px;
  height: 40px;
  margin-bottom: 8px;
  border-radius: 6px;
  background-color: #fff;
  color: #000;
  display: flex;
  align-items: center;
}
main #main-container_C #main-section_4 #ms_4-b a h2 {
  margin-left: 12px;
  font-size: 1rem;
  font-weight: 400;
}

/* styling for sidepages found under "page_*" folders */
.sidepage-container {
  width: 56.25%;
  max-width: 1080px;
  margin: 0 auto;
  margin-top: -110px;
  border-top: 4px solid #333;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  background-color: #fff;
}
.sidepage-container .sidepage-section {
  padding-left: 110px;
  padding-right: 110px;
  padding-top: 70px;
  padding-bottom: 70px;
  /* found in health.html */
  /* found in generalContact.html */
}
.sidepage-container .sidepage-section h1 {
  font-size: 2.25rem;
  margin-bottom: 32px;
}
.sidepage-container .sidepage-section h2 {
  font-size: 1.25rem;
  margin-top: 40px;
  margin-bottom: 24px;
}
.sidepage-container .sidepage-section p {
  margin-bottom: 24px;
}
.sidepage-container .sidepage-section #contact {
  margin-bottom: 8px;
}
.sidepage-container .sidepage-section #deptContacts {
  display: flex;
  flex-direction: row;
  gap: 90px;
}
.sidepage-container .sidepage-section a {
  font-size: 1.125rem;
  text-decoration: none;
  margin-bottom: 24px;
}
.sidepage-container .sidepage-section #bullet-list {
  font-size: 1.125rem;
  word-spacing: 1px;
  list-style: circle;
  margin-left: 36px;
}
.sidepage-container .sidepage-section #bullet-list li {
  margin-bottom: 8px;
}
.sidepage-container .sidepage-section #boxed-list {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-left: 16px;
}
.sidepage-container .sidepage-section #boxed-list div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 6px;
  background-color: #ddd;
  color: #333;
}
.sidepage-container .sidepage-section table {
  font-size: 1.125;
}

/* responsive design code, desktop, tablet & mobile*/
@media screen and (max-width: 1536px) {
  body header #navbar {
    width: 65%;
  }
  body header #banner {
    background-image: url(../images/banner_1536px.png);
  }
  body main #main-container_A {
    width: 65%;
  }
  body main #main-container_B #main-section_3 {
    width: 65%;
  }
  body main .sidepage-container {
    width: 65%;
  }
  body footer #footer-cont {
    width: 65%;
  }
}
@media screen and (max-width: 1440px) {
  body header #navbar {
    width: 70%;
  }
  body header #banner {
    background-image: url(../images/banner_1440px.png);
  }
  body main #main-container_A {
    width: 70%;
  }
  body main #main-container_B #main-section_3 {
    width: 70%;
  }
  body main .sidepage-container {
    width: 70%;
  }
  body footer #footer-cont {
    width: 70%;
  }
}
@media screen and (max-width: 1366px) {
  body header #banner {
    background-image: url(../images/banner_1366px.png);
  }
}
@media screen and (max-width: 1280px) {
  body header #navbar {
    width: 80%;
  }
  body header #banner {
    background-image: url(../images/banner_1280px.png);
  }
  body main #main-container_A {
    width: 80%;
  }
  body main #main-container_B #main-section_3 {
    width: 80%;
  }
  body main .sidepage-container {
    width: 80%;
  }
  body footer #footer-cont {
    width: 80%;
  }
}
@media screen and (max-width: 1080px) {
  body header #navbar {
    width: 85%;
  }
  body header #navbar #logo #title {
    margin-top: 68px;
    margin-left: 0px;
  }
  body header #navbar #logo #title h1 {
    font-size: 1.5rem;
  }
  body header #navbar #logo #title h2 {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 962px) {
  body header #navbar #logo #title {
    display: none;
  }
  body header #banner {
    background-image: url(../images/banner_962px.png);
  }
  body main #main-container_A #main-section_1 #ms_1-b {
    display: none;
  }
  body main #main-container_A #main-section_2 #ms_2-b #ms_2-b-war #ms_2-b-files {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  body main #main-container_C #main-section_4 {
    width: 75%;
  }
  body main .sidepage-container .sidepage-section {
    padding-left: 80px;
    padding-right: 80px;
  }
  body main #boxed-list {
    flex-direction: column;
    gap: 16px;
  }
}
@media screen and (max-width: 800px) {
  body header #navbar {
    width: 85%;
  }
  body header #banner {
    background-image: url(../images/banner_800px.png);
  }
  body main #main-container_A {
    width: 85%;
  }
  body main #main-container_B #main-section_3 {
    width: 85%;
  }
  body main .sidepage-container {
    width: 85%;
  }
  body footer #footer-cont {
    width: 85%;
  }
}
@media screen and (max-width: 768px) {
  body header #navbar {
    width: 90%;
  }
  body main #main-container_A {
    width: 90%;
  }
  body main #main-container_B #main-section_3 {
    width: 90%;
  }
  body main .sidepage-container {
    width: 90%;
  }
  body footer #footer-cont {
    width: 90%;
  }
}
@media screen and (max-width: 601px) {
  body header #navbar #nav {
    display: none;
  }
  body header #navbar #nav-mobile {
    display: flex;
  }
  body header #banner {
    background-image: url(../images/banner_601px.png);
  }
  body main #main-container_A {
    width: 90%;
  }
  body main #main-container_B #main-section_3 {
    width: 90%;
    flex-direction: column;
  }
  body main .sidepage-container {
    width: 100%;
  }
  body main .sidepage-container .sidepage-section {
    padding-left: 50px;
    padding-right: 50px;
  }
  body main #bullet-list li {
    margin-bottom: 12px;
  }
  body footer {
    background-color: #262626;
  }
  body footer #footer-cont #footer-info {
    flex-direction: column;
    gap: 32px;
  }
}
@media screen and (max-width: 414px) {
  body header #navbar {
    width: 100%;
  }
  body header #navbar #nav-mobile {
    margin-right: 36px;
  }
  body header #banner {
    background-image: url(../images/banner_414px.png);
  }
  body main #main-container_A {
    width: 100%;
    border-top: 6px solid #262626;
  }
  body main #main-container_A #main-section_1 #ms_1-a {
    padding-top: 32px;
    padding-bottom: 32px;
    border-bottom: 6px solid #262626;
  }
  body main #main-container_A #main-section_1 #ms_1-a h1 {
    font-size: 2.5rem;
  }
  body main #main-container_A #main-section_2 #ms_2-a {
    margin-left: 24px;
  }
  body main #main-container_A #main-section_2 #ms_2-a h1 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 16px;
  }
  body main #main-container_A #main-section_2 #ms_2-a p {
    width: 90%;
    margin-left: 8px;
    font-size: 1.125rem;
  }
  body main #main-container_A #main-section_2 #ms_2-b {
    flex-direction: column;
    gap: 16px;
  }
  body main #main-container_A #main-section_2 #ms_2-b #ms_2-b-history {
    margin-left: 12px;
    margin-right: 12px;
  }
  body main #main-container_A #main-section_2 #ms_2-b #ms_2-b-war {
    margin-left: 12px;
    margin-right: 12px;
  }
  body main #main-container_B {
    border-top: 6px solid #262626;
  }
  body main #main-container_B #main-section_3 {
    width: 90%;
  }
  body main .sidepage-container {
    width: 100%;
  }
  body main .sidepage-container .sidepage-section {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 40px;
    padding-bottom: 70px;
  }
  body main .sidepage-container .sidepage-section #deptContacts {
    flex-direction: column;
    gap: 0px;
  }
}
h1, h2, h3, h4, h5, h6, p, a, ul, table {
  padding: 0;
  margin: 0;
  font-family: "Quattrocento Sans", sans-serif;
}

p {
  font-size: 1rem;
  word-spacing: 1px;
  line-height: 2rem;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

body {
  max-width: 1920px;
  margin: 0 auto;
  background-color: #18203C;
}

/* multipage style items */
#section_acc {
  position: absolute;
  width: 100px;
  height: 100px;
  margin-left: -70px;
  margin-top: -60px;
  background-image: url(../images/section_acc.png);
  opacity: 0.25;
  z-index: 0;
}

#button-learnMore {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 6px;
  padding-bottom: 6px;
  border-radius: 4px;
  background-color: rgba(128, 10, 10, 0.8);
  font-size: 0.75rem;
  color: #fff;
}

.ms_2-b_button {
  display: flex;
  align-items: end;
  justify-content: center;
  width: 100px;
  height: 120px;
  background-size: 100px 120px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}
.ms_2-b_button div {
  width: 100%;
  padding-top: 4px;
  padding-bottom: 4px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
}

#ms_2-b_button-zero {
  background-image: url(../images/Waterloop-Summary.png);
}

#ms_2-b_button-one {
  background-image: url(../images/Waterloop-FrontEnd.png);
}

#ms_2-b_button-two {
  background-image: url(../images/Waterloop-PlanSet.png);
}

#ms_2-b_button-three {
  background-image: url(../images/Waterloop-TechSpecs.png);
}

#ms_2-b_button-four {
  background-image: url(../images/Waterloop-Addendum-1.png);
}

#ms_2-b-files {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}/*# sourceMappingURL=style.css.map */