div#home-page-container {
  margin: 0px 0px;
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  grid-auto-flow: column;
  padding: 0;
}
div#home-page-container .page-left-side {
  width: 150px;
}
div#home-page-container .page-right-side {
  width: 150px;
}
div#home-page-container .page-center {
  width: auto;
}
@media screen and (min-width: 300px) and (max-width: 850px) {
  div#home-page-container {
    grid-template-columns: 1fr;
    padding-right: 20px;
  }
}
@media screen and (min-width: 300px) and (max-width: 850px) {
  div#home-page-container .page-left-side {
    display: none !important;
  }
  div#home-page-container .page-right-side {
    display: none !important;
  }
  div#home-page-container .page-center {
    width: 100%;
  }
  div#home-page-container .grid-container {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
div#home-page-container .grid-container {
  display: grid;
  grid-template-columns: 10% 80% 10%;
  padding: 10px;
}
div#home-page-container .grid-item {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.8);
  padding: 20px;
  font-size: 30px;
  text-align: center;
}
div#home-page-container .page-center {
  margin-left: 10px;
  margin-right: 10px;
}
div#home-page-container .sidebar {
  border: 2px solid orange;
  border-radius: 25px;
  height: fit-content;
  width: fit-content;
  margin-left: 10px;
  position: fixed;
  z-index: 1;
  overflow-x: hidden;
}
@media screen and (min-width: 300px) and (max-width: 850px) {
  div#home-page-container .sidebar {
    top: 0px;
  }
}
div#home-page-container .sidebar .sidebar-title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  color: orangered;
}
div#home-page-container .page-banner {
  background-color: #3F6686;
  padding: 0;
  height: fit-content;
}
div#home-page-container .page-banner div.page-banner-header {
  text-align: center;
  padding: 20px 0 0 0;
  color: white;
  margin: 0px;
}
div#home-page-container .page-banner div.page-banner-header div.diver-banner-wrapper div.diver-flex-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
div#home-page-container .page-banner div.page-banner-header div.diver-banner-wrapper div.diver-flex-container div.diver-flex-item-left {
  font-family: "Poppins-Bold", "Courier New", Courier, monospace;
  font-size: 48px;
  width: fit-content;
}
@media screen and (min-width: 300px) and (max-width: 850px) {
  div#home-page-container .page-banner div.page-banner-header div.diver-banner-wrapper div.diver-flex-container div.diver-flex-item-left {
    font-size: 28px;
  }
}
div#home-page-container .page-banner div.page-banner-header div.diver-banner-wrapper div.diver-flex-container div.diver-flex-item-image {
  width: fit-content;
}
div#home-page-container .page-banner div.page-banner-header div.diver-banner-wrapper div.diver-flex-container div.diver-flex-item-image img.diver-by-himself {
  height: 70px;
}
@media screen and (min-width: 300px) and (max-width: 850px) {
  div#home-page-container .page-banner div.page-banner-header div.diver-banner-wrapper div.diver-flex-container div.diver-flex-item-image img.diver-by-himself {
    height: 35px;
  }
}
div#home-page-container .page-banner div.page-banner-header div.diver-banner-wrapper div.diver-flex-container div.diver-flex-item-right {
  font-family: "Poppins-Bold", "Courier New", Courier, monospace;
  font-size: 48px;
  width: fit-content;
  margin-left: -5px;
}
@media screen and (min-width: 300px) and (max-width: 850px) {
  div#home-page-container .page-banner div.page-banner-header div.diver-banner-wrapper div.diver-flex-container div.diver-flex-item-right {
    font-size: 28px;
    margin-left: -2px;
  }
}
div#home-page-container .page-banner div.page-banner-text {
  font-family: "RobotoSlab", "Courier New", Courier, monospace;
  font-size: 20px;
  font-weight: 400;
  padding: 0px 5% 5px 5%;
  text-align: center;
  color: white;
  padding-bottom: 30px;
  line-height: normal;
}
@media screen and (min-width: 300px) and (max-width: 850px) {
  div#home-page-container .page-banner div.page-banner-text {
    font-size: 14px;
    padding-bottom: 25px;
  }
}
div#home-page-container .edc-section {
  background-image: linear-gradient(-180deg, #fff 0%, #fae8cc 100%);
  height: fit-content;
}
div#home-page-container .edc-section .container {
  display: grid;
  grid-template-columns: 50% 50%;
  padding: 10px;
  grid-template-columns: repeat(auto-fit, minmax(50%, 50%));
}
@media screen and (min-width: 300px) and (max-width: 850px) {
  div#home-page-container .edc-section .container {
    grid-template-columns: repeat(auto-fit, minmax(100%, 100%));
  }
}
div#home-page-container .edc-section .left-side .text {
  font-family: "RobotoSlab", sans-serif;
  font-size: 18px;
  padding: 10px 10% 10px 10%;
  line-height: 1.2;
}
@media screen and (min-width: 300px) and (max-width: 850px) {
  div#home-page-container .edc-section .left-side .text {
    padding: 10px 5% 10px 5%;
    font-size: 18px;
  }
}
div#home-page-container .edc-section .left-side .button-wrapper {
  display: grid;
  place-items: center;
}
div#home-page-container .edc-section .left-side .button {
  border: 2px solid #e68a00;
  border-radius: 15px;
  background-color: #e68a00;
  color: white;
  font-family: "RobotoSlab", sans-serif;
  font-size: 18px;
  padding: 10px 25px 10px 25px;
  text-align: center;
  width: fit-content;
  font-weight: bold;
}
div#home-page-container .edc-section .right-side {
  text-align: center;
}
@media screen and (min-width: 300px) and (max-width: 850px) {
  div#home-page-container .edc-section .right-side {
    padding-top: 10px;
    text-align: center;
  }
  div#home-page-container .edc-section .right-side img {
    width: 100%;
    height: auto;
    filter: drop-shadow(8px 8px 10px rgba(0, 0, 0, 0.5));
  }
}
div#home-page-container .edc-section img {
  max-width: 450px;
  filter: drop-shadow(8px 8px 10px rgba(0, 0, 0, 0.5));
}
div#home-page-container .explorer-section {
  height: fit-content;
}
div#home-page-container .explorer-section .container {
  display: grid;
  grid-template-columns: 60% 40%;
  padding: 10px;
}
@media screen and (min-width: 300px) and (max-width: 850px) {
  div#home-page-container .explorer-section .container {
    grid-template-columns: repeat(auto-fit, minmax(100%, 100%));
  }
}
@media screen and (min-width: 300px) and (max-width: 850px) {
  div#home-page-container .explorer-section .left-side {
    padding-top: 10px;
    text-align: center;
  }
  div#home-page-container .explorer-section .left-side img {
    width: 100%;
    height: auto;
  }
}
div#home-page-container .explorer-section .left-side .map {
  position: relative;
  width: 618px;
  height: 314px;
  background: url("../images/region_selector.png") top left no-repeat;
  margin-top: 30px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  div#home-page-container .explorer-section .left-side .map {
    background-image: url("../images/region_selector@2x.png");
    background-size: 618px 314px;
  }
}
div#home-page-container .explorer-section .left-side .map .floating-entity {
  position: absolute;
  width: 100px;
  height: 20px;
  background-color: white;
  opacity: 0;
  transition: all 0.125s ease-in-out;
  color: white;
  border-radius: 25px;
}
div#home-page-container .explorer-section .left-side .map .floating-entity:hover {
  background-color: white;
  opacity: 0.1;
  transition: all 0.125s ease-in-out;
  background-color: #0281a4;
  opacity: 0.2;
}
div#home-page-container .explorer-section .left-side .map .floating-entity a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
div#home-page-container .explorer-section .left-side .map .floating-entity a:hover {
  text-decoration: none;
  color: transparent;
}
div#home-page-container .explorer-section .left-side .map .floating-entity.alaska {
  top: 0px;
  left: 40px;
  width: 88px;
  height: 80px;
}
div#home-page-container .explorer-section .left-side .map .floating-entity.northwest {
  top: 92px;
  left: 0px;
  width: 95px;
  height: 43px;
}
div#home-page-container .explorer-section .left-side .map .floating-entity.southwest {
  top: 172px;
  left: 0px;
  width: 106px;
  height: 43px;
}
div#home-page-container .explorer-section .left-side .map .floating-entity.hawaii {
  top: 235px;
  left: 105px;
  width: 76px;
  height: 50px;
}
div#home-page-container .explorer-section .left-side .map .floating-entity.lakes {
  top: 24px;
  left: 383px;
  width: 103px;
  height: 27px;
}
div#home-page-container .explorer-section .left-side .map .floating-entity.northeast {
  top: 117px;
  left: 516px;
  width: 102px;
  height: 27px;
}
div#home-page-container .explorer-section .left-side .map .floating-entity.southeast {
  top: 287px;
  left: 348px;
  width: 92px;
  height: 27px;
}
@media only screen and (max-width: 429px) {
  div#home-page-container .explorer-section .left-side .map {
    width: 100%;
    height: 200px;
    background-size: 340px 170px;
  }
  div#home-page-container .explorer-section .left-side .map .floating-entity.alaska {
    top: 0px;
    left: 22px;
    width: 48px;
    height: 44px;
  }
  div#home-page-container .explorer-section .left-side .map .floating-entity.northwest {
    top: 50px;
    left: 0px;
    width: 52px;
    height: 23px;
  }
  div#home-page-container .explorer-section .left-side .map .floating-entity.southwest {
    top: 93px;
    left: 0px;
    width: 59px;
    height: 23px;
  }
  div#home-page-container .explorer-section .left-side .map .floating-entity.hawaii {
    top: 129px;
    left: 57px;
    width: 41px;
    height: 27px;
  }
  div#home-page-container .explorer-section .left-side .map .floating-entity.lakes {
    top: 13px;
    left: 211px;
    width: 56px;
    height: 14px;
  }
  div#home-page-container .explorer-section .left-side .map .floating-entity.northeast {
    top: 64px;
    left: 284px;
    width: 56px;
    height: 14px;
  }
  div#home-page-container .explorer-section .left-side .map .floating-entity.southeast {
    top: 156px;
    left: 192px;
    width: 50px;
    height: 14px;
  }
}
@media screen and (min-width: 300px) and (max-width: 850px) {
  div#home-page-container .explorer-section .left-side .map {
    display: inline-block;
  }
}
div#home-page-container .explorer-section .right-side .text {
  font-family: "Roboto Slab", sans-serif;
  font-size: 18px;
  padding: 10px 10px 10px 10px;
  line-height: 1.2;
}
div#home-page-container .erddap-section {
  height: fit-content;
  background-image: linear-gradient(-180deg, #fff 0%, #fae8cc 100%);
}
div#home-page-container .erddap-section .container {
  display: grid;
  grid-template-columns: 50% 50%;
  padding: 10px;
}
@media screen and (min-width: 300px) and (max-width: 850px) {
  div#home-page-container .erddap-section .container {
    grid-template-columns: repeat(auto-fit, minmax(100%, 100%));
  }
}
div#home-page-container .erddap-section .left-side .text {
  font-family: "RobotoSlab", sans-serif;
  font-size: 18px;
  padding: 10px 10% 10px 10%;
  line-height: 1.2;
}
div#home-page-container .erddap-section .left-side .button-wrapper {
  display: grid;
  place-items: center;
}
div#home-page-container .erddap-section .left-side .button {
  border: 2px solid #e68a00;
  border-radius: 15px;
  background-color: #e68a00;
  color: white;
  font-family: "Roboto Slab", sans-serif;
  font-size: 18px;
  padding: 10px 25px 10px 25px;
  text-align: center;
  width: fit-content;
  font-weight: bold;
}
div#home-page-container .erddap-section .right-side {
  text-align: center;
}
@media screen and (min-width: 300px) and (max-width: 850px) {
  div#home-page-container .erddap-section .right-side {
    padding-top: 10px;
    text-align: center;
  }
  div#home-page-container .erddap-section .right-side img {
    width: 100%;
    height: auto;
    filter: drop-shadow(8px 8px 10px rgba(0, 0, 0, 0.5));
  }
}
div#home-page-container .erddap-section img {
  max-width: 450px;
  filter: drop-shadow(8px 8px 10px rgba(0, 0, 0, 0.5));
}
div#home-page-container .erma-section {
  height: fit-content;
}
div#home-page-container .erma-section .container {
  display: grid;
  grid-template-columns: 50% 50%;
  padding: 10px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
@media screen and (min-width: 300px) and (max-width: 850px) {
  div#home-page-container .erma-section .container {
    grid-template-columns: repeat(auto-fit, minmax(100%, 100%));
  }
}
@media screen and (min-width: 300px) and (max-width: 850px) {
  div#home-page-container .erma-section .left-side {
    padding-top: 10px;
    text-align: center;
  }
  div#home-page-container .erma-section .left-side img {
    width: 100%;
    height: auto;
  }
}
div#home-page-container .erma-section div.erma-select-a-region-wrapper {
  display: grid;
  place-items: center;
  text-align: center;
}
div#home-page-container .erma-section div.erma-select-a-region-wrapper div.erma-select-a-region {
  border: 2px solid #0281a4;
  border-radius: 55px;
  background-color: #0281a4;
  color: white;
  font-family: "RobotoSlab", sans-serif;
  font-size: 18px;
  font-weight: bold;
  padding: 8px;
  margin-bottom: 10px;
  width: 200px;
  margin-left: 40px;
}
div#home-page-container .erma-section .right-side .text {
  font-family: "RobotoSlab", sans-serif;
  font-size: 18px;
  padding: 10px 15% 10px 15%;
  line-height: 1.2;
}
@media screen and (min-width: 300px) and (max-width: 850px) {
  div#home-page-container .erma-section .right-side .text {
    padding: 10px 5% 10px 5%;
    font-size: 18px;
  }
}
div#home-page-container .section-header {
  color: #bf782c;
  font-family: "RobotoSlab", sans-serif;
  font-size: 27px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 3px;
  padding-top: 20px;
}
@media screen and (min-width: 300px) and (max-width: 850px) {
  div#home-page-container .section-header {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
  }
}
div#home-page-container .brown-divider {
  margin: 10px auto 10px auto;
  width: 80%;
  height: 110px;
  background: url(../images/brown_divider.png) bottom left no-repeat;
  background-size: 100%;
  margin-top: 30px;
}
@media only screen and (max-width: 990px) {
  div#home-page-container #footer .footer-links {
    flex-direction: column;
  }
  div#home-page-container #footer .footer-links > div.footer-column.footer-column-2 {
    padding-top: 0px;
  }
  div#home-page-container #footer .footer-links > div.footer-column.footer-column-3 {
    padding-top: 0px;
  }
}
div#home-page-container i.far.fa-arrow-alt-circle-right.goto {
  margin-bottom: 3px;
  font-size: 24px;
}

div.quick-links-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  width: fit-content;
  z-index: 1000;
  background-color: #fff;
  height: fit-content;
  border: 2px solid #bf782c;
  border-radius: 15px;
  padding: 12px;
  font-family: "RobotoSlab";
  font-size: 14px;
  line-height: 20px;
  margin-right: 20px;
  margin-top: 115px;
}
div.quick-links-wrapper .quick-links-header {
  color: #bf782c;
  padding-bottom: 10px;
  font-size: 19px;
  font-weight: 700;
}
div.quick-links-wrapper a {
  text-decoration: none;
  color: #0281a4;
  font-weight: 700;
}

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