@charset "utf-8";
/* CSS Document */


/* 
   Anchor Navigation Responsive Adjustment
   ---------------------------------------
   At screen widths 1070px and below, this forces the anchor link menu 
   (.row.nav-anchor) to stack vertically instead of displaying horizontally.
   - Prevents layout wrapping caused by long anchor text
*/
@media (max-width: 1070px) {

 
  .row.nav-anchor ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding-left: 0 !important;
    margin: 0 !important;
  }

 
  .row.nav-anchor ul li {
    width: 100% !important;
    text-align: center !important;
    margin-bottom: 12px !important;
  }

  
  .row.nav-anchor ul li a {
    display: inline-block !important;
  }

}/* END Anchor Navigation Responsive Adjustment */


/* Resizes Its A Fact image for mobile */
@media (max-width: 767px) {

  .its-a-fact-column .column-25 .cmp-image__image {
    max-width: 220px !important;
    width: 100% !important;
    height: auto;
    margin: 0 auto;
    display: block;
  }

}
/* End Its A Fact image Resizing for mobile */


/* Removes whitespace between Adapative Hero Carousel and text banner */
.adaptive-carousel,
.adaptive-carousel .flex-viewport,
.adaptive-carousel .slides {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
}



/* =========================================
   HERO + BLUE BANNER + MOBILE TITLE FIX
   ========================================= */


.adaptive-hero-carousel {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
}

.adaptive-hero-carousel + * {
  margin-top: 0 !important;
}

/*  Hide "It's A Fact" on desktop --- */

.iaf-mobile-title {
  display: none;
}

/* Mobile displays at (<= 991px) --- */

@media (max-width: 991px) {

 
  .adaptive-hero-carousel .wrap-copy.hidden-md.hidden-lg.hide-desktop {
    display: none !important;
  }

  /* Show "It's A Fact" text box on mobile */
  .iaf-mobile-title {
    display: block;
    text-align: center;
    padding: 28px 20px 24px;
    background: #ffffff;
  }

  .iaf-mobile-title h1,
  .iaf-mobile-title h2 {
    margin: 0;
    font-family: jaf-bernina-sans, sans-serif;
    font-weight: 300;
    font-size: clamp(28px, 5vw, 40px);
    line-height: 1.2;
  }

}

/* Adjust Its A Fact font in mobile */
@media (max-width: 991px) {

  .iaf-mobile-title h2 {
    font-size: 54px !important;
    line-height: 1.15 !important;
  }

}
/* Pull Its A Fact text box up closer to custom bar */

@media (max-width: 991px) {

  .iaf-mobile-title {
    padding-top: 0 !important;
    margin-top: -12px !important;   
    padding-bottom: 0 !important;
  }

}

/* Natural Gas Fact */

.natural-gas-fact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    min-height: 300px;
    margin: 0 auto;
    padding: 25px 30px;
    box-sizing: border-box;
    text-align: center;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Natural Gas Fact */

.natural-gas-fact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: 600px;
    min-height: 300px;

    margin: 0 auto;
    padding: 25px 30px;

    box-sizing: border-box;
    text-align: center;

    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

    /* Move the entire group slightly left */
    transform: translateX(-5px);
}

/* Natural Gas is */

.natural-gas-fact__heading {
    display: block;

    width: 100%;
    margin: 0 0 22px;

    color: #529736;

    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 27px;
    font-weight: 700;
    font-style: normal;
    line-height: 1.1;
    letter-spacing: -0.5px;

    text-align: center;
}

/* 3.5 */

.natural-gas-fact__number {
    display: block;

    width: 100%;
    margin: 0 0 18px;

    color: #003a5d;

    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 185px;
    font-weight: 700;
    font-style: normal;
    line-height: 0.72;
    letter-spacing: -10px;

    text-align: center;
}

/* Supporting text */

.natural-gas-fact__description {
    display: block;

    width: 100%;
    max-width: 470px;
    margin: 0 auto;

    color: #003a5d;

    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: -0.25px;

    text-align: center;
}

/* Asterisks */

.natural-gas-fact__description sup {
    position: relative;
    top: -0.3em;

    margin-left: 2px;

    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 0;
}

/* Tablet */

@media (max-width: 990px) {
    .natural-gas-fact {
        max-width: 100%;
        min-height: 270px;
        padding: 25px 20px;
        transform: translateX(-5px);
    }

    .natural-gas-fact__heading {
        margin-bottom: 20px;
        font-size: 24px;
    }

    .natural-gas-fact__number {
        margin-bottom: 16px;
        font-size: 150px;
        line-height: 0.74;
        letter-spacing: -8px;
    }

    .natural-gas-fact__description {
        max-width: 420px;
        font-size: 15px;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .natural-gas-fact {
        min-height: auto;
        padding: 30px 15px;

        /* Keep it exactly centered on smaller screens */
        transform: none;
    }

    .natural-gas-fact__heading {
        margin-bottom: 18px;
        font-size: 22px;
    }

    .natural-gas-fact__number {
        margin-bottom: 16px;
        font-size: 120px;
        line-height: 0.76;
        letter-spacing: -6px;
    }

    .natural-gas-fact__description {
        max-width: 340px;
        font-size: 14px;
        line-height: 1.35;
    }

    .natural-gas-fact__description br {
        display: none;
    }
}

/* =========================================================
   We Inform Section. Remove extra whitespace between title and cards
   ========================================================= */

.we-inform-section {
    margin-top: -70px !important;
    padding-top: 0 !important;
}



.we-inform-section > section,
.we-inform-section > .desktop,
.we-inform-section .column-control,
.we-inform-section .bootstrap-container,
.we-inform-section .row {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Remove spacing above the images */

.we-inform-section .image,
.we-inform-section .cmp-image,
.we-inform-section picture,
.we-inform-section img {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Tablet */

@media (max-width: 990px) {
    .we-inform-section {
        margin-top: -35px !important;
    }
}

/* Smaller screens */

@media (max-width: 700px) {
    .we-inform-section {
        margin-top: 20px !important;
    }
}