@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700;800&family=Roboto:wght@400;500;700;900&display=swap");
.light-bg {
  background: #f2f2f2; }

.blue-bg {
  background: #003959; }

.medblue-bg {
  background: #0b4f6d; }

.lightblue-bg {
  background: #1e70a8; }

.babyblue-bg {
  background: #7abdd7; }

.powder-bg {
  background: #e4eed1; }

.green-text {
  color: #195e27; }

body {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  color: #4d4d4d; }
  body h1 {
    font-family: "Roboto", sans-serif;
    font-size: 2.25em; }
  body h2 {
    font-family: "Roboto", sans-serif;
    font-weight: 700; }
  @media screen and (max-width: 1199px) {
    body {
      font-size: 16px; } }
  @media screen and (max-width: 991px) {
    body h1 {
      font-size: 2em; }
    body h2 {
      font-size: 1.75em; } }
  @media screen and (max-width: 767px) {
    body {
      font-size: 16px; } }

a {
  color: #003959; }

hr {
  border-top: 2px solid #282a31; }

img {
  max-width: 100%; }

.large-text {
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  font-size: 1.1em;
  color: #003959; }

.footnote {
  font-size: .9em; }

.white-popup {
  background: white;
  border-radius: 2px;
  padding: 20px;
  max-width: 540px;
  margin: 0 auto; }

@-webkit-keyframes left-to-right {
  to {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1; } }
@keyframes left-to-right {
  to {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1; } }
.fadeIn {
  opacity: 0;
  transform: translateX(-20px);
  transition: all .6s ease; }
  .fadeIn.animate {
    -webkit-transform: translate(-90px, 0px);
    -ms-transform: translate(-90px, 0px);
    transform: translate(-90px, 0px);
    -webkit-animation: left-to-right 1.5s ease forwards;
    animation: left-to-right 1.5s ease forwards; }

.yellow-gradient {
  background-size: cover;
  color: #003959;
  background-color: #e2ae40; }

.red-gradient {
  background-size: cover;
  color: white;
  background-color: #c83b32; }

.navigation {
  position: relative;
  z-index: 9;
  background: white;
  border-bottom: 1px solid #ececec; }
  .navigation .hamburger {
    float: right;
    width: 35px;
    height: 25px;
    position: relative;
    margin: 1.2em 10px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer; }
  .navigation .hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #284541;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out; }
    .navigation .hamburger span:nth-child(1) {
      top: 0px;
      -webkit-transform-origin: left center;
      -moz-transform-origin: left center;
      -o-transform-origin: left center;
      transform-origin: left center; }
    .navigation .hamburger span:nth-child(2) {
      top: 10px;
      -webkit-transform-origin: left center;
      -moz-transform-origin: left center;
      -o-transform-origin: left center;
      transform-origin: left center; }
    .navigation .hamburger span:nth-child(3) {
      top: 20px;
      -webkit-transform-origin: left center;
      -moz-transform-origin: left center;
      -o-transform-origin: left center;
      transform-origin: left center; }
  .navigation .hamburger.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -3px;
    left: 8px; }
  .navigation .hamburger.open span:nth-child(2) {
    width: 0%;
    opacity: 0; }
  .navigation .hamburger.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 23px;
    left: 8px; }

/* The side navigation menu */
.offcanvas {
  height: 100%;
  width: 250px;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  text-align: right;
  background-color: #284541;
  overflow-x: hidden;
  padding-top: 30px;
  transition: 0.5s;
  opacity: 0; }
  .offcanvas.open {
    opacity: 1; }
  .offcanvas a {
    padding: 8px 20px 8px 8px;
    text-decoration: none;
    font-size: 1.1em;
    color: white;
    display: block;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    letter-spacing: .1em; }
    .offcanvas a:hover {
      color: #e2ae40; }
    @media screen and (max-width: 575px) {
      .offcanvas a {
        font-size: 1em; } }
  .offcanvas .logo {
    padding: 20px;
    margin-top: 10px; }
  .offcanvas .social-links {
    text-align: center;
    white-space: nowrap;
    padding: 0px 20px;
    margin: 10px auto; }
    .offcanvas .social-links a {
      display: inline-block;
      margin-right: 10px;
      padding: 0px; }
    .offcanvas .social-links .fab {
      color: #003959; }

.main-wrapper {
  transition: transform .5s;
  transform: translateX(0px);
  position: relative;
  z-index: 9;
  background: white;
  min-height: 100vh; }
  .main-wrapper .menu-overlay {
    content: "";
    opacity: 0; }
  .main-wrapper.menu-open {
    transform: translateX(-250px);
    position: relative; }
    .main-wrapper.menu-open .menu-overlay {
      position: absolute;
      width: 100%;
      height: 100%;
      background: black;
      opacity: .4;
      z-index: 99;
      cursor: pointer;
      transition: all .4s ease; }

.prefooter {
  background: #e4eed1;
  margin-bottom: .5em; }
  .prefooter .col-md-4:last-child a {
    border-right: 0px; }
  .prefooter a {
    color: #195e27;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .05em;
    font-size: 1.4em;
    padding: .7em 0;
    display: block;
    margin: 1.2em 0;
    border-right: 2px solid #282a31; }
    .prefooter a:hover {
      text-decoration: none;
      color: #1e70a8; }
      .prefooter a:hover .svg {
        transform: translateX(3px); }
        .prefooter a:hover .svg polyline,
        .prefooter a:hover .svg circle {
          stroke: #1e70a8 !important; }
    .prefooter a span {
      display: inline-block;
      vertical-align: middle; }
    .prefooter a .svg {
      display: inline-block;
      width: 1.45em;
      height: 1.45em;
      vertical-align: middle;
      margin-left: 10px;
      transition: all .2s ease; }
  @media screen and (max-width: 767px) {
    .prefooter a {
      margin-bottom: 0px;
      margin-top: .4em;
      border-bottom: 2px solid #282a31;
      border-right: 0px; }
    .prefooter .col-md-4:first-child a {
      margin-top: 1.2em; }
    .prefooter .col-md-4:last-child a {
      margin-bottom: 1.2em;
      border-bottom: 0px; } }

.footer {
  background: #284541;
  padding: 3.5em 15px;
  color: white;
  font-size: 16px; }
  .footer .footer-nav ul {
    list-style-type: none;
    padding: 0px 0px;
    text-transform: uppercase; }
    .footer .footer-nav ul a {
      letter-spacing: .1em;
      line-height: 1.4em;
      display: block;
      margin-bottom: .75em;
      font-size: 16px; }
  .footer a {
    color: white;
    font-weight: 600; }
    .footer a:hover {
      text-decoration: none; }
  .footer .social-links {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .05em; }
    .footer .social-links p {
      margin-bottom: 10px; }
      .footer .social-links p span {
        display: block;
        padding: 10px 0; }
    .footer .social-links .fab {
      color: #284541; }
    .footer .social-links .fa-stack {
      margin-right: 4px;
      font-size: 20px; }
    .footer .social-links .app-link {
      display: block;
      margin-top: 20px; }
  .footer .app-links {
    margin-top: 20px; }
    .footer .app-links img {
      display: inline-block;
      width: 100%;
      max-width: 140px; }
  .footer .logo {
    max-width: 200px;
    margin-bottom: 24px; }
  @media screen and (max-width: 575px) {
    .footer .footer-nav ul {
      max-width: 260px;
      margin: 0 auto;
      text-align: center; } }

.home-hero {
  background-color: #003959;
  background-size: cover; }
  .home-hero .hero-content {
    position: relative; }
    .home-hero .hero-content .hero-text {
      position: absolute;
      top: 50%;
      left: 15px;
      transform: translateY(-50%);
      color: white;
      opacity: 0;
      transition: all 1s ease; }
      .home-hero .hero-content .hero-text h1 {
        font-family: "Roboto", sans-serif;
        text-transform: uppercase;
        font-size: 3.5em;
        line-height: 1em;
        margin-bottom: .25em;
        font-weight: 600; }
        .home-hero .hero-content .hero-text h1 span {
          font-family: "Open Sans", sans-serif;
          font-size: 1.8rem;
          display: block;
          font-weight: 500;
          letter-spacing: .1em;
          line-height: 1.5em;
          opacity: 0;
          transform: translateY(-5px);
          transition: all 1.3s ease; }
      .home-hero .hero-content .hero-text p {
        font-size: 1.5em;
        font-family: "Roboto", sans-serif; }
  .home-hero .hero-content .hero-text.animate {
    opacity: 1; }
    .home-hero .hero-content .hero-text.animate h1, .home-hero .hero-content .hero-text.animate span {
      transform: translateY(0px);
      opacity: 1; }
  .home-hero #home-pager {
    border-left: 2px solid white;
    padding-left: 16px;
    font-size: 1.1em; }
    .home-hero #home-pager .pager-item {
      position: relative; }
      .home-hero #home-pager .pager-item:last-child a {
        margin-bottom: 0px; }
      .home-hero #home-pager .pager-item:after {
        position: absolute;
        width: 19px;
        height: 19px;
        border-radius: 50%;
        content: "";
        border: 2px solid white;
        background: #577500;
        left: -27px;
        top: 50%;
        transform: translateY(-50%);
        transition: right .3s ease; }
    .home-hero #home-pager a {
      display: block;
      text-align: left;
      color: white;
      margin-bottom: 1.5em;
      text-transform: uppercase;
      transition: transform .3s ease-in-out;
      transform-origin: left;
      transform: scale(1); }
      .home-hero #home-pager a:hover {
        text-decoration: none;
        font-weight: 600;
        transform: scale(1.1); }
    .home-hero #home-pager .pager-item:hover:after {
      background: #e2ae40; }
    @media screen and (max-width: 992px) {
      .home-hero #home-pager {
        font-size: 1em; }
        .home-hero #home-pager a {
          margin-bottom: 1em; } }
  @media screen and (max-width: 575px) {
    .home-hero .hero-content .hero-text {
      font-size: .8em;
      position: static;
      transform: none; }
      .home-hero .hero-content .hero-text h1 span {
        font-size: 1.2rem; } }

.app-cta {
  background: #ececec; }
  .app-cta.dark-bg {
    background: #195e27; }
    .app-cta.dark-bg *, .app-cta.dark-bg .subhead {
      color: white; }
  .app-cta h1 {
    font-weight: 700;
    color: #195e27; }
  .app-cta ul {
    padding-left: 20px; }
  .app-cta .app-links a:hover {
    text-decoration: none; }
  .app-cta .app-links img {
    max-width: 148px;
    display: inline-block; }
  .app-cta .phone-img {
    display: block;
    width: 100%;
    max-width: 445px;
    margin: 0 auto; }
  .app-cta .subhead {
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
    font-size: 1.3em;
    font-weight: 900;
    letter-spacing: .05em;
    color: #1e70a8;
    margin-top: 20px; }
  @media screen and (max-width: 1199px) {
    .app-cta .app-links img {
      max-width: 124px; } }
  @media screen and (max-width: 991px) {
    .app-cta .phone-img {
      max-width: 260px; } }
  @media screen and (max-width: 767px) {
    .app-cta ul {
      margin-bottom: 0px; } }

.agency-listing {
  font-size: 1.1em;
  max-width: 1048px;
  margin: 0 auto; }
  @media screen and (max-width: 1199px) {
    .agency-listing {
      font-size: 1em; } }
  @media screen and (max-width: 575px) {
    .agency-listing {
      font-size: 15px; } }

.page-title {
  font-size: 3em;
  margin-bottom: .25em;
  color: #195e27; }
  @media screen and (max-width: 992px) {
    .page-title {
      font-size: 2.2em; } }

.section-subhead, .small-title {
  text-transform: uppercase;
  color: #1e70a8;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 1.3em;
  letter-spacing: .05em; }

.page-intro img {
  width: 100%;
  display: block;
  margin: 20px auto; }

.intro-subhead {
  color: #195e27;
  font-weight: 600;
  font-size: 1.2em;
  margin-bottom: 10px;
  margin-top: 20px;
  font-family: "Roboto", sans-serif; }

.intro-warning {
  padding-left: 80px;
  position: relative;
  margin-top: 40px; }
  .intro-warning .warning-icon {
    width: 72px;
    float: left;
    padding-right: 10px;
    position: absolute;
    top: 0;
    left: 0; }
    .intro-warning .warning-icon img {
      margin: 0; }

.watches-warnings {
  margin: 3em auto 4em; }
  .watches-warnings h2 {
    margin-bottom: 30px;
    padding: 15px 0px; }
  .watches-warnings .grey-label {
    background: #ececec;
    padding: 6px 24px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    color: #003959;
    font-size: 1.2em;
    margin: 0px 0 30px; }
  .watches-warnings .large-statistic {
    padding-bottom: 26px;
    padding-top: 26px; }
    .watches-warnings .large-statistic .col-sm-4 {
      font-size: 1.9em;
      font-weight: 700;
      line-height: 1.5em;
      color: #003959;
      color: #003959; }
      .watches-warnings .large-statistic .col-sm-4 span {
        font-size: 2.5em;
        display: block; }
    .watches-warnings .large-statistic p {
      font-size: 1.2em; }
  @media screen and (min-width: 768px) {
    .watches-warnings .col-md-6:first-child .warning-details {
      position: relative; }
      .watches-warnings .col-md-6:first-child .warning-details:after {
        content: "";
        position: absolute;
        width: 2px;
        height: 100%;
        right: -15px;
        top: 0;
        background: #282a31; }
    .watches-warnings .large-statistic {
      padding-bottom: 46px;
      padding-top: 36px; }
      .watches-warnings .large-statistic p {
        font-size: 1.3em; } }
  @media screen and (max-width: 767px) {
    .watches-warnings {
      margin-top: 2em; } }

.accordions .accordion {
  margin-bottom: 0px;
  border-top: 2px solid #4d4d4d; }
  .accordions .accordion:last-child {
    border-bottom: 2px solid #4d4d4d; }
  .accordions .accordion .accordion-title, .accordions .accordion .accordion-content {
    position: relative;
    padding-left: 140px; }
    .accordions .accordion .accordion-title .label, .accordions .accordion .accordion-content .label {
      position: absolute;
      left: 10px;
      top: 50%;
      transform: translateY(-50%);
      text-transform: uppercase;
      font-size: 1.2em;
      font-weight: 500;
      background: #e2ae40;
      color: white;
      min-width: 100px;
      padding: 10px 0px;
      text-align: center; }
    .accordions .accordion .accordion-title.accordion-content .label, .accordions .accordion .accordion-content.accordion-content .label {
      background: #6c9e17; }
  .accordions .accordion .accordion-title {
    position: relative;
    cursor: pointer;
    padding-right: 60px; }
    .accordions .accordion .accordion-title img {
      position: absolute;
      width: 30px;
      height: 30px;
      right: 20px;
      top: 50%;
      transform: translateY(-50%) rotate(0deg); }
    .accordions .accordion .accordion-title h2 {
      margin-bottom: 0px; }
    .accordions .accordion .accordion-title p {
      margin: 2rem 0;
      font-size: 1.2em;
      color: #195e27;
      font-weight: 600;
      font-family: "Roboto", sans-serif; }
    @media screen and (min-width: 1199px) {
      .accordions .accordion .accordion-title svg {
        right: 75px; } }
    @media screen and (max-width: 575px) {
      .accordions .accordion .accordion-title {
        text-align: left; }
        .accordions .accordion .accordion-title h2 {
          font-size: 1.45em; } }
  .accordions .accordion.active .accordion-content {
    max-height: 1600px;
    margin-bottom: 30px;
    border-top: 1px solid #4d4d4d; }
  .accordions .accordion.active .accordion-title img {
    transform: translateY(-50%) rotate(180deg); }
  .accordions .accordion .accordion-content {
    max-height: 0px;
    overflow: hidden;
    background: #e4eed1;
    transition: all .5s ease; }
    .accordions .accordion .accordion-content p {
      margin: 1rem 0; }
    .accordions .accordion .accordion-content .accordion-icon {
      position: relative;
      max-width: 540px;
      margin: 30px auto 45px;
      padding-left: 170px; }
      .accordions .accordion .accordion-content .accordion-icon img, .accordions .accordion .accordion-content .accordion-icon .svg {
        position: absolute;
        left: 0px;
        top: 50%;
        transform: translateY(-50%);
        width: 120px; }
      .accordions .accordion .accordion-content .accordion-icon p {
        font-size: 1.25em;
        margin: 2rem 0; }
      @media screen and (max-width: 575px) {
        .accordions .accordion .accordion-content .accordion-icon {
          padding-left: 72px;
          padding-right: 20px; }
          .accordions .accordion .accordion-content .accordion-icon p {
            font-size: 1em; }
          .accordions .accordion .accordion-content .accordion-icon .svg {
            left: 10px;
            width: 45px; } }
    .accordions .accordion .accordion-content .watch-warning h3 {
      margin-bottom: 20px;
      font-size: 1.25em;
      font-family: "Roboto", sans-serif;
      text-transform: uppercase;
      padding: 12px 15px;
      border-bottom: 8px solid white; }
    .accordions .accordion .accordion-content .watch-warning .h-100 {
      background: #ececec;
      text-align: center;
      padding-bottom: 20px; }
    .accordions .accordion .accordion-content .watch-warning .large-text {
      font-size: 1.4em;
      font-weight: 400; }
    .accordions .accordion .accordion-content .watch-warning .actions {
      padding: 0px 40px; }
      .accordions .accordion .accordion-content .watch-warning .actions hr {
        border-top: 1px solid #282a31; }
      .accordions .accordion .accordion-content .watch-warning .actions p {
        color: #9b2226;
        font-family: "Roboto", sans-serif;
        text-transform: uppercase;
        font-size: 1.1em;
        font-weight: 600;
        letter-spacing: .05em; }
      .accordions .accordion .accordion-content .watch-warning .actions ul {
        display: inline-block; }
        .accordions .accordion .accordion-content .watch-warning .actions ul li {
          text-align: left;
          font-size: 1rem;
          margin-bottom: 10px; }

.tab-section .tab-selection {
  max-width: 650px;
  margin: 30px auto; }
  .tab-section .tab-selection .tab-select {
    background: #b2cc79;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 500;
    font-size: 1.1em;
    margin-bottom: 10px;
    cursor: pointer; }
    .tab-section .tab-selection .tab-select.active {
      background: #6c9e17;
      color: white; }
.tab-section .tab-content {
  display: none;
  padding: 15px; }
  .tab-section .tab-content h3 {
    color: #195e27;
    font-size: 2.75em;
    font-weight: 500; }
  .tab-section .tab-content.active {
    display: block; }
  .tab-section .tab-content .large-text {
    color: #1e70a8;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.2em;
    letter-spacing: .01em;
    margin-bottom: 0px; }

.icon-triptych img, .large-icons img {
  max-width: 230px;
  width: 100%;
  margin-bottom: 15px; }
.icon-triptych .triptych-item, .large-icons .triptych-item {
  max-width: 310px;
  margin: 0 auto;
  font-size: .9em; }
  .icon-triptych .triptych-item h3, .large-icons .triptych-item h3 {
    color: #195e27;
    font-weight: 600;
    font-size: 1.3em;
    margin-bottom: 15px; }
.icon-triptych.large-icons img, .large-icons.large-icons img {
  max-width: 280px; }
.icon-triptych.large-icons .triptych-item, .large-icons.large-icons .triptych-item {
  max-width: 630px; }
  .icon-triptych.large-icons .triptych-item h3, .large-icons.large-icons .triptych-item h3 {
    margin-bottom: 5px; }

.category-select .category-label {
  background: #195e27;
  color: white;
  max-width: 160px;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.2em;
  padding: 10px;
  letter-spacing: .05em;
  margin: 30px auto; }
.category-select .category-select {
  overflow: visible;
  max-width: 900px;
  margin: 10px auto 2em; }
.category-select .circle-select {
  cursor: pointer; }
.category-select .circle-select.active circle {
  stroke-width: 4px !important;
  -webkit-filter: drop-shadow(0px 0px 4px #000);
  filter: drop-shadow(0px 0px 4px #000); }
.category-select .circle-select.active#category-1 circle {
  stroke: #eed570 !important; }
.category-select .circle-select.active#category-2 circle {
  stroke: #e2ae40 !important; }
.category-select .circle-select.active#category-3 circle {
  stroke: #dd9922 !important; }
.category-select .circle-select.active#category-4 circle {
  stroke: #de6e12 !important; }
.category-select .circle-select.active#category-5 circle {
  stroke: #ad4018 !important; }
.category-select .earthquake-category {
  height: 0px;
  opacity: 0; }
  .category-select .earthquake-category .col-lg-8 img {
    opacity: 0;
    transition: all 2s ease; }
    @media screen and (max-width: 991px) {
      .category-select .earthquake-category .col-lg-8 img {
        max-width: 440px;
        display: block;
        margin: 20px auto;
        width: 100%; } }
  .category-select .earthquake-category.active {
    height: auto;
    opacity: 1; }
    .category-select .earthquake-category.active .col-lg-8 img {
      opacity: 1;
      transition: all 1s ease;
      margin-top: 40px; }
.category-select .category-detail {
  border-top: 2px solid #0b4f6d;
  padding-top: 20px;
  margin-top: 30px; }
  .category-select .category-detail .detail-title {
    display: inline-block;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 600;
    color: #195e27; }
  .category-select .category-detail .experience-list {
    padding-left: 34px;
    position: relative;
    line-height: 1.2em;
    font-size: 16px; }
    .category-select .category-detail .experience-list span {
      font-weight: 600;
      color: #195e27;
      position: absolute;
      width: 25px;
      text-align: right;
      display: block;
      top: 0px;
      left: 0; }
  .category-select .category-detail .damage-meter {
    width: 236px;
    float: right;
    margin-top: 6px;
    margin-bottom: 1em; }
    @media screen and (max-width: 1199px) {
      .category-select .category-detail .damage-meter {
        float: none;
        margin: 10px auto;
        display: block; } }
  .category-select .category-detail .damage-label {
    font-family: "Roboto", sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    letter-spacing: .05em;
    color: #003959; }
  .category-select .category-detail .large-number {
    font-size: 1em;
    margin-bottom: 0px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #195e27; }
    .category-select .category-detail .large-number span {
      font-size: 2em;
      display: block;
      line-height: 1em; }
  .category-select .category-detail .detail-icon {
    width: 100%;
    margin-top: 15px;
    margin: 0; }
    .category-select .category-detail .detail-icon img {
      width: 100%;
      max-width: 90px;
      display: block;
      margin: 4px auto; }
    .category-select .category-detail .detail-icon ul {
      padding-left: 20px;
      font-size: .9em;
      text-align: left; }
    @media screen and (max-width: 575px) {
      .category-select .category-detail .detail-icon {
        text-align: center; }
        .category-select .category-detail .detail-icon img {
          margin-bottom: 20px; }
        .category-select .category-detail .detail-icon ul {
          display: inline-block; }
          .category-select .category-detail .detail-icon ul li {
            text-align: left; } }
  .category-select .category-detail .outages-text {
    font-size: 1em;
    margin-bottom: 0px; }

.water-height ul {
  display: inline-block;
  font-size: .9em;
  margin-bottom: 0px; }
  .water-height ul li {
    text-align: left; }
.water-height .level-image {
  transition: background-image .3s ease; }
.water-height .level-info {
  opacity: 0;
  height: 0;
  overflow: hidden; }
  .water-height .level-info.active {
    opacity: 1;
    height: auto; }
.water-height .surge {
  margin-bottom: 0px;
  padding: 0px 10px; }
.water-height .surge span {
  width: 50%;
  display: inline-block;
  font-size: 1.1em;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  padding: 10px 0px;
  color: #003959;
  line-height: 1.2em; }
.water-height .height {
  color: #003959;
  font-size: 1.3em;
  margin-bottom: 0px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  padding: 1rem 0px; }
  .water-height .height span {
    display: inline-block;
    vertical-align: middle; }
  .water-height .height .number {
    font-size: 2em; }
@media screen and (min-width: 992px) {
  .water-height .border-column {
    border-right: 2px solid #282a31; }
  .water-height .border-column {
    border-left: 2px solid #282a31; } }

#water-pager {
  border-right: 2px solid #282a31;
  padding-right: 16px;
  font-size: 1.1em; }
  #water-pager .pager-item {
    position: relative; }
    #water-pager .pager-item:last-child a {
      margin-bottom: 0px; }
    #water-pager .pager-item:after {
      position: absolute;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      content: "";
      border: 2px solid #282a31;
      background: #ececec;
      right: -25px;
      top: 50%;
      transform: translateY(-50%);
      transition: right .3s ease; }
    #water-pager .pager-item.active:after {
      border: 2px solid #c83b32; }
    #water-pager .pager-item.active span {
      font-weight: 600; }
  #water-pager span {
    display: block;
    text-align: right;
    color: #003959;
    margin-bottom: 1.5em;
    cursor: pointer; }
    #water-pager span:hover {
      text-decoration: none;
      font-weight: 600; }
  @media screen and (max-width: 992px) {
    #water-pager {
      font-size: 1em; }
      #water-pager span {
        margin-bottom: 1em; } }
  @media screen and (max-width: 767px) {
    #water-pager {
      border-right: 0px;
      border-top: 2px solid #003959;
      padding: 0px; }
      #water-pager .level-item {
        display: inline-block;
        width: 23.5%;
        text-align: center;
        vertical-align: top;
        padding: 4px 6px; }
        #water-pager .level-item:after {
          top: -10px;
          left: 50%;
          transform: translateX(-50%); }
        #water-pager .level-item.active:after {
          background: #c83b32; }
        #water-pager .level-item.active span {
          font-weight: 400; }
        #water-pager .level-item span {
          text-align: center;
          font-weight: 400; } }

.level-image {
  background-size: cover;
  background-position: center; }
  .level-image img {
    opacity: 0; }

.directions-accordion {
  padding-top: 20px; }
  .directions-accordion h3 {
    font-size: 1.3em;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    color: #003959;
    text-transform: uppercase; }
  .directions-accordion ul {
    padding-left: 20px; }

.evacuation-actions h3 {
  font-family: "Roboto", sans-serif;
  font-size: 1.2em;
  font-weight: 600;
  letter-spacing: .05em;
  color: #195e27; }
.evacuation-actions .tabs {
  display: table;
  width: 100%;
  border-collapse: collapse;
  margin: 0px 0px 30px; }
.evacuation-actions .tab-select {
  display: table-cell;
  text-transform: uppercase;
  width: 119px;
  padding: 12px 4px;
  vertical-align: middle;
  text-align: center;
  font-weight: 600;
  background: #b2cc79;
  color: #4d4d4d;
  line-height: 1em;
  cursor: pointer;
  margin-bottom: 30px;
  border: 3px solid #f2f2f2; }
  .evacuation-actions .tab-select.active {
    color: white;
    background: #6c9e17; }
.evacuation-actions .action-tab {
  height: 0px;
  overflow: hidden; }
  .evacuation-actions .action-tab.active {
    height: auto; }
  .evacuation-actions .action-tab ul {
    padding-left: 20px;
    margin-top: 20px; }
    .evacuation-actions .action-tab ul li {
      padding-bottom: 15px; }
.evacuation-actions .evacuation-icon {
  padding-left: 95px;
  position: relative;
  margin-top: 50px;
  margin-bottom: 50px;
  color: #282a31;
  font-size: 1em; }
  .evacuation-actions .evacuation-icon img {
    position: absolute;
    width: 70px;
    left: 10px;
    top: 50%;
    transform: translateY(-50%); }
  .evacuation-actions .evacuation-icon p {
    margin-bottom: 0px; }
  @media screen and (max-width: 991px) {
    .evacuation-actions .evacuation-icon {
      margin-top: 20px; } }

.link-banner {
  color: white;
  background: #003959;
  padding: 90px 0px; }
  .link-banner h2 {
    font-size: 2.75em; }
  .link-banner .button {
    font-family: "Roboto", sans-serif;
    color: white;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .05em;
    border: 4px solid white;
    border-radius: 40px;
    padding: 20px 30px;
    margin-top: 30px;
    font-size: 1.3em; }
    .link-banner .button:hover {
      background: white;
      color: #003959;
      text-decoration: none; }
  @media screen and (max-width: 991px) {
    .link-banner {
      padding: 50px 0px; }
      .link-banner h2 {
        font-size: 2em; } }
  @media screen and (max-width: 767px) {
    .link-banner .button {
      padding: 8px 27px;
      font-size: 17px; } }

.bx-wrapper {
  background: transparent;
  border: 0px;
  box-shadow: 0px 0px; }

.image-slider .slide {
  padding: 10px 40px; }
.image-slider .slide-title {
  color: #003959;
  font-size: 1.2em;
  font-family: "Roboto", sans-serif;
  font-weight: 600; }
.image-slider ul {
  padding-left: 20px; }

.slider-wrapper {
  position: relative; }
  .slider-wrapper .bx-prev, .slider-wrapper .bx-next {
    font-size: 3em;
    position: absolute; }
  .slider-wrapper .bx-prev {
    left: -15px;
    top: 50%;
    transform: translateY(-50%); }
  .slider-wrapper .bx-next {
    right: -15px;
    top: 50%;
    transform: translateY(-50%); }

.bx-pager {
  padding-top: 0px; }

.image-banner img {
  object-fit: cover;
  object-position: center;
  max-height: 458px;
  min-height: 320px;
  width: 100%; }

.earthquake-effects .effect-banner {
  max-width: 1280px;
  margin: 20px auto;
  font-size: 2em;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: white;
  padding: 15px; }
  .earthquake-effects .effect-banner.primary {
    background: #e2ae40; }
  .earthquake-effects .effect-banner.secondary {
    background: #6c9e17; }
.earthquake-effects .large-text {
  font-size: 1.2em;
  font-weight: 500;
  color: #4d4d4d;
  font-family: "Open Sans", sans-serif; }
.earthquake-effects strong {
  color: #195e27;
  font-size: 1.15em; }
.earthquake-effects img {
  width: 100%;
  max-width: 220px; }

.aftershock-checklist h2 {
  min-height: 80px; }
.aftershock-checklist .col-lg-6:first-child {
  border-right: 1px solid #666666; }
@media screen and (max-width: 991px) {
  .aftershock-checklist .col-lg-6:first-child {
    border-right: 0px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #666666; } }

.checkmark-list {
  padding-left: 0px;
  list-style-type: none;
  max-width: 415px;
  margin: 0 auto; }
  .checkmark-list li {
    position: relative;
    padding-left: 48px;
    min-height: 42px;
    padding-top: 4px;
    margin-bottom: 18px; }
    .checkmark-list li img {
      position: absolute;
      left: 0px;
      width: 38px; }

.pet-header ul {
  padding-left: 20px; }
.pet-header li {
  margin-bottom: 16px; }
.pet-header img {
  max-width: 440px;
  margin: 0 auto 20px; }

.resource-listing h2, .kids-info h2 {
  margin-bottom: 20px; }
.resource-listing a, .kids-info a {
  display: block; }
.resource-listing .resource, .resource-listing .info, .kids-info .resource, .kids-info .info {
  margin-bottom: 30px; }
.resource-listing .resource-title, .kids-info .resource-title {
  margin-bottom: 0px;
  color: #195e27;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 1.1em; }
@media screen and (min-width: 767px) {
  .resource-listing .col-md-6:last-child, .kids-info .col-md-6:last-child {
    border-left: 2px solid #282a31;
    padding-left: 50px; } }

.kids-info .info {
  margin-bottom: 38px; }
.kids-info .info p {
  font-size: 16px; }
.kids-info .info .resource-title {
  font-size: 22px;
  margin-bottom: 5px;
  margin-top: 8px; }

.scetv-section {
  color: white; }
  .scetv-section img {
    width: 100%;
    max-width: 450px;
    display: block; }
  .scetv-section h2 {
    font-size: 2.5em; }
  .scetv-section hr {
    border-top: 2px solid #4dbaed;
    margin: 30px auto; }
  .scetv-section a {
    color: white;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 600; }
    .scetv-section a:hover {
      color: #e2ae40;
      text-decoration: none; }
  .scetv-section .social-media {
    font-weight: 600;
    font-size: 1.1em; }
    .scetv-section .social-media a, .scetv-section .social-media span {
      vertical-align: top; }
    .scetv-section .social-media .fa-circle {
      color: #282a31; }

.insurance-info ul {
  max-width: 440px;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0px; }
.insurance-info li {
  text-align: left;
  margin-bottom: 22px;
  margin-top: 22px; }
.insurance-info .large-text {
  color: #195e27;
  font-size: 1.3em; }
@media screen and (min-width: 768px) {
  .insurance-info .col-md-6:first-child {
    border-right: 2px solid #282a31; } }
@media screen and (max-width: 767px) {
  .insurance-info .col-md-6:first-child li:last-child {
    margin-bottom: 0px; } }

.supply-listing img, .supply-listing svg {
  max-width: 100%;
  height: auto; }
.supply-listing line {
  pointer-events: none; }

.tooltipster-box {
  max-width: 260px;
  text-align: center;
  line-height: 1.3em; }
  .tooltipster-box strong {
    display: block;
    margin-bottom: 15px;
    margin-top: 15px; }
  .tooltipster-box .tooltipster-content {
    line-height: 1.3em; }

.tooltipster-sidetip .tooltipster-box {
  background: #284541;
  border: 2px solid #284541; }

.checklist-button {
  background: #003959;
  color: white;
  display: inline-block;
  padding: 7px 12px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .05em; }
  .checklist-button:hover {
    color: #e2ae40;
    text-decoration: none; }

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
  border-top-color: #284541; }

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
  border-top-color: #284541; }

.zone-selector h2 {
  color: #003959; }
.zone-selector .dropdown-menu li {
  display: block;
  width: 100%;
  padding: .25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0; }
  .zone-selector .dropdown-menu li:hover {
    background-color: #dcdcdc; }
.zone-selector .dropdown-toggle {
  padding: 7px 12px;
  width: 100%;
  max-width: 220px;
  font-size: 1.1em;
  text-align: left;
  position: relative;
  background: #003959; }
  .zone-selector .dropdown-toggle:after {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%); }
.zone-selector .zone-svg {
  max-width: 100%; }
.zone-selector .zone-svg .zone-item path {
  fill: grey;
  stroke: darkgrey;
  cursor: pointer; }
.zone-selector .zone-svg .zone-item#central-zone.active path {
  fill: #eaae21; }
.zone-selector .zone-svg .zone-item#southern-zone.active path {
  fill: #dd5926; }
.zone-selector .zone-svg .zone-item#northern-zone.active path {
  fill: #f2d65c; }

.major-quakes .stat-heading {
  border-top: 1px solid #4d4d4d;
  border-bottom: 1px solid #4d4d4d;
  padding: 8px 0;
  margin-top: 15px;
  margin-bottom: 5px; }
  .major-quakes .stat-heading h4 {
    font-size: 1.3em;
    font-weight: 800;
    letter-spacing: .01em;
    margin-bottom: 0px;
    font-family: "Roboto", sans-serif;
    color: #195e27;
    text-transform: uppercase; }
.major-quakes .stat-description > p {
  margin-top: 15px; }
  .major-quakes .stat-description > p span {
    font-weight: 600;
    color: #195e27; }
.major-quakes .stat-description .icon-text {
  position: relative;
  padding-left: 70px; }
  .major-quakes .stat-description .icon-text .icon {
    position: absolute;
    left: 0px;
    top: 4px;
    width: 60px;
    margin-top: 0; }
  .major-quakes .stat-description .icon-text img {
    margin: 20px auto;
    width: 100%; }
  .major-quakes .stat-description .icon-text .large-text {
    padding-top: 15px;
    font-size: 1.5em; }

.term-name {
  color: #195e27;
  font-weight: 600;
  font-size: 1.1em;
  margin-bottom: 0px; }

.stats p {
  font-size: 16px;
  max-width: 275px;
  margin: 10px auto 23px; }

.pdf-resource a {
  font-size: 14px; }
  .pdf-resource a p {
    word-wrap: break-word; }
  .pdf-resource a .resource-title {
    font-size: 20px;
    line-height: 1.2em;
    margin-bottom: 6px; }

.history-container .mfp-content {
  max-width: 1000px;
  margin: 0 auto; }

.history-popup {
  background: white;
  padding: 15px;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 12px;
  position: relative; }
  .history-popup .bx-prev, .history-popup .bx-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 45px;
    padding: 14px;
    color: #195e27; }
  .history-popup .bx-prev {
    left: 0px;
    padding-left: 5px; }
  .history-popup .bx-next {
    right: 0px;
    padding-right: 5px; }
  .history-popup .bx-wrapper {
    margin-bottom: 0px; }
  .history-popup h3 {
    color: #195e27;
    font-size: 1.3rem;
    font-weight: 700; }
  .history-popup p {
    font-size: 16px; }
  .history-popup .mfp-close {
    font-size: 45px; }
  .history-popup .row {
    padding: 0px 30px; }
  .history-popup .tour-image {
    background: #e4eed1; }

@media screen and (min-width: 1300px) {
  .container-wide {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto; } }

/*# sourceMappingURL=main.css.map */
