/*------------------------------------*\
    #Mixins
    - Colors
    - File Paths
    - Pixel values, widths, etc...
    - Fonts
    - Arrays
\*------------------------------------*/
/**
* Colors
*/
/**
* File Paths
*/
/**
* Pixel Values
*/
/**
* Fonts
*/
/**
* Arrays
*/
/*------------------------------------*\
    #Mixins
    1. clearfix
    2. breakpoint
    3. overlay
    4. vendor prefix
    5. font size in rem with px fallback
    6. theme (light or dark)
    7. grid
\*------------------------------------*/
/**
* @mixin clearfix
* Used to clear elements that are floated. Usually used within a container.
*
* @example
*   @include clearfix();
*/
/**
* @mixin breakpoint
* To define different styles based on a different media breakpoint.
*
* @param $bp - the breakpoint you want to apply styles to. Can be in px, em.
* @example
*   @include breakpoint(500px) {
        color: #000;
    }
*/
/**
* @mixin overlay
* Styles applied to overlay the page
*/
/**
* @mixin font-size
* Font size in rem with px fallback
*
* @param $pxVal - font size in pixels.
* @example
*   @include font-size(18px);
*/
/**
    icon - circle border
*/
/*
    @mixin grid
    Create a grid system for list type content

    @param $cols - number of columns
    @param $gutter - px of margin between columns
    @param $children - class of children

*   @example
*   @include grid($cols: 4, $gutter: 0, $children: ".related-content-item");
*/
/* Hidden By Breakpoint*/
.hidden-mobile {
  display: none !important;
}
@media (min-width: 768px) {
  .hidden-tablet-portrait {
    display: none !important;
  }
}
@media (tablet-portrait: 0) {
  .hidden-tablet-portrait {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .hidden-tablet-landscape {
    display: none !important;
  }
}
@media (min-width: 1230px) {
  .hidden-desktop {
    display: none !important;
  }
}
@media (min-width: 1300px) {
  .hidden-large-screens {
    display: none !important;
  }
}

/* Visible by breakpoint */
.visible-mobile {
  display: block;
}
@media (min-width: 768px) {
  .visible-tablet-portrait {
    display: block !important;
  }
}
@media (tablet-portrait: 0) {
  .visible-tablet-portrait {
    display: block !important;
  }
}
@media (min-width: 1024px) {
  .visible-tablet-landscape {
    display: block !important;
  }
}
@media (min-width: 1230px) {
  .visible-desktop {
    display: block !important;
  }
}
@media (min-width: 1300px) {
  .visible-large-screens {
    display: block !important;
  }
}

.show-desktop {
  display: none !important;
}
@media (min-width: 1024px) {
  .show-desktop {
    display: block !important;
  }
}
.show-desktop-inline {
  display: none !important;
}
@media (min-width: 1024px) {
  .show-desktop-inline {
    display: inline !important;
  }
}
.show-desktop-inline-block {
  display: none !important;
}
@media (min-width: 1024px) {
  .show-desktop-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1024px) {
  .show-mobile {
    display: none !important;
  }
}

.icon-dash-close {
  width: 22px;
  border-radius: 60px;
  border: 2px solid #FFF;
  display: block;
}
@media (min-width: 768px) {
  .icon-dash-close {
    width: 26px;
  }
}
@media (tablet-portrait: 0) {
  .icon-dash-close {
    width: 26px;
  }
}
.icon-dash-close:after {
  content: "";
  width: 12px;
  height: 3px;
  background: #1edca1;
  display: block;
  margin: 9px auto;
}
@media (min-width: 768px) {
  .icon-dash-close:after {
    width: 13px;
    margin: 11px auto;
  }
}
@media (tablet-portrait: 0) {
  .icon-dash-close:after {
    width: 13px;
    margin: 11px auto;
  }
}

.button-close i {
  transition: background 0.2s linear;
  margin: 0 auto 10px auto;
}
.button-close:hover i {
  background: #1edca1;
}
.button-close:hover i:after {
  background: #FFF;
}

.clearfix {
  *zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.no-border-top {
  border-top: 0 !important;
}

.no-border-bottom {
  border-bottom: 0 !important;
}

.row {
  *zoom: 1;
}
.row:before, .row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}
@media (min-width: 768px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
  .row .col-1-2 {
    width: 50%;
  }
  .row .col-1-3 {
    width: 33.33333%;
  }
  .row .col-1-4 {
    width: 25%;
  }
  .row .col-1-5 {
    width: 20%;
  }
  .row .col-1-6 {
    width: 16.66667%;
  }
  .row .col-1-7 {
    width: 14.28571%;
  }
  .row .col-1-8 {
    width: 12.5%;
  }
  .row .col-2-3 {
    width: 66.66667%;
  }
  .row .col-2-4 {
    width: 50%;
  }
  .row .col-2-5 {
    width: 40%;
  }
  .row .col-2-6 {
    width: 33.33333%;
  }
  .row .col-2-7 {
    width: 28.57143%;
  }
  .row .col-2-8 {
    width: 25%;
  }
}
@media (tablet-portrait: 0) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
  .row .col-1-2 {
    width: 50%;
  }
  .row .col-1-3 {
    width: 33.33333%;
  }
  .row .col-1-4 {
    width: 25%;
  }
  .row .col-1-5 {
    width: 20%;
  }
  .row .col-1-6 {
    width: 16.66667%;
  }
  .row .col-1-7 {
    width: 14.28571%;
  }
  .row .col-1-8 {
    width: 12.5%;
  }
  .row .col-2-3 {
    width: 66.66667%;
  }
  .row .col-2-4 {
    width: 50%;
  }
  .row .col-2-5 {
    width: 40%;
  }
  .row .col-2-6 {
    width: 33.33333%;
  }
  .row .col-2-7 {
    width: 28.57143%;
  }
  .row .col-2-8 {
    width: 25%;
  }
}
@media (min-width: 1230px) {
  .row {
    margin-right: 0;
    margin-left: 0;
  }
}
@media (min-width: 1300px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media (min-width: 768px) {
  .row [class*='col-'] {
    float: left;
    padding: 0 15px;
  }
}
@media (tablet-portrait: 0) {
  .row [class*='col-'] {
    float: left;
    padding: 0 15px;
  }
}

/*------------------------------------*\
    #Overrides
\*------------------------------------*/
.view1280 section header {
  width: auto;
  margin: 0;
}

#content div.gs-share ul li {
  vertical-align: middle;
}

#content div.gs-share.gs-share-buttons .share-toggle {
  height: 39px;
  line-height: inherit;
  display: inline-block;
}

#content div.gs-share.gs-share-buttons .share-toggle i {
  vertical-align: inherit;
  line-height: 38px;
}

body.full-width #content header {
  height: auto;
  width: auto;
}
body.full-width #content a,
body.full-width #content a:hover,
body.full-width #content a:focus,
body.full-width #content a:active,
body.full-width #content a:visited {
  text-decoration: none;
}
body.full-width .container {
  padding-right: 25px;
  padding-left: 25px;
}
@media (min-width: 1024px) {
  body.full-width .container {
    padding-right: 0;
    padding-left: 0;
  }
}

/*------------------------------------*\
    #Typography
\*------------------------------------*/
/*------------------------------------*\
    #Mixins
    - Colors
    - File Paths
    - Pixel values, widths, etc...
    - Fonts
    - Arrays
\*------------------------------------*/
/**
* Colors
*/
/**
* File Paths
*/
/**
* Pixel Values
*/
/**
* Fonts
*/
/**
* Arrays
*/
/*------------------------------------*\
    #Mixins
    1. clearfix
    2. breakpoint
    3. overlay
    4. vendor prefix
    5. font size in rem with px fallback
    6. theme (light or dark)
    7. grid
\*------------------------------------*/
/**
* @mixin clearfix
* Used to clear elements that are floated. Usually used within a container.
*
* @example
*   @include clearfix();
*/
/**
* @mixin breakpoint
* To define different styles based on a different media breakpoint.
*
* @param $bp - the breakpoint you want to apply styles to. Can be in px, em.
* @example
*   @include breakpoint(500px) {
        color: #000;
    }
*/
/**
* @mixin overlay
* Styles applied to overlay the page
*/
/**
* @mixin font-size
* Font size in rem with px fallback
*
* @param $pxVal - font size in pixels.
* @example
*   @include font-size(18px);
*/
/**
    icon - circle border
*/
/*
    @mixin grid
    Create a grid system for list type content

    @param $cols - number of columns
    @param $gutter - px of margin between columns
    @param $children - class of children

*   @example
*   @include grid($cols: 4, $gutter: 0, $children: ".related-content-item");
*/
/* Headers */
h2 {
  font-family: "UniversLTW01-59UltraCn";
  color: #FFF;
  font-size: 65px;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 768px) {
  h2 {
    font-size: 100px;
  }
}
@media (tablet-portrait: 0) {
  h2 {
    font-size: 100px;
  }
}

h3 {
  font: 19px/36px "Univers LT W01 55 Roman";
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
h3 else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
@media (min-width: 768px) {
  h3 {
    font-size: 28px;
  }
}
@media (tablet-portrait: 0) {
  h3 {
    font-size: 28px;
  }
}

h5 {
  color: #12c68e;
  font-family: "UniversLTStdLight";
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 16px;
}
@media (min-width: 768px) {
  h5 {
    font-size: 15px;
  }
}
@media (tablet-portrait: 0) {
  h5 {
    font-size: 15px;
  }
}

/* Paragraph Copy */
p {
  line-height: 1.6em;
  margin-bottom: 1em;
}

.source {
  font: 14px/16px "Univers LT W01 55 Roman";
  color: #a4b3d5;
}

/**
* Icons
* Set of clases generated from Icomoon.
* Please use the JSON file located in /a/pgs/Fonts
*/
@font-face {
  font-family: 'clean-energy';
  src: url("/a/pgs/Fonts/clean-energy.eot?66wddz");
  src: url("/a/pgs/Fonts/clean-energy.eot?66wddz#iefix") format("embedded-opentype"), url("/a/pgs/Fonts/clean-energy.ttf?66wddz") format("truetype"), url("/a/pgs/Fonts/clean-energy.woff?66wddz") format("woff"), url("/a/pgs/Fonts/clean-energy.svg?66wddz#clean-energy") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"], [class*=" icon-"] {
  font-family: 'clean-energy';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-dropped:before {
  content: "\e902";
}

.icon-finance-arrow:before {
  content: "\e900";
}

.icon-longarrow:before {
  content: "\e901";
}

.icon-Lightbulb:before {
  content: "\e805";
}

.icon-EnergyEfficientLighting:before {
  content: "\e806";
}

.icon-EnergyStorage:before {
  content: "\e807";
}

.icon-SmartController:before {
  content: "\e808";
}

.icon-SolarPanels:before {
  content: "\e809";
}

.icon-arrow-down2:before {
  content: "\e800";
}

.icon-arrow-up2:before {
  content: "\e801";
}

.icon-dash:before {
  content: "\e802";
}

.icon-electric:before {
  content: "\e803";
}

.icon-geothermal:before {
  content: "\e804";
}

.icon-arrow-down:before {
  content: "\e61b";
}

.icon-arrow-up:before {
  content: "\e61c";
}

.icon-lineita:before {
  content: "\e61a";
}

.icon-arrow-left:before {
  content: "\e601";
}

.icon-arrow-right:before {
  content: "\e602";
}

.icon-plus:before {
  content: "\e607";
}
.close-experience:after {
    content: "\e604";
}

.icon-arrow-left-thick:before {
  content: "\e610";
}

.icon-arrow-right-thick:before {
  content: "\e611";
}

/*------------------------------------*\
    #Animations
\*------------------------------------*/
@-webkit-keyframes breathe {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-30px) scale(1.08);
            transform: translateY(-30px) scale(1.08);
    opacity: 0.3;
  }
}
@keyframes breathe {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-30px) scale(1.08);
            transform: translateY(-30px) scale(1.08);
    opacity: 0.3;
  }
}
@-webkit-keyframes neon1 {
  from {
    text-shadow: 0 0 10px #c0e0e2, 0 0 20px #c0e0e2, 0 0 30px #c0e0e2, 0 0 40px #fff, 0 0 70px #fff, 0 0 80px #fff, 0 0 100px #fff, 0 0 150px #fff;
  }
  to {
    text-shadow: 0 0 5px #c0e0e2, 0 0 10px #c0e0e2, 0 0 15px #c0e0e2, 0 0 20px #fff, 0 0 35px #fff, 0 0 40px #fff, 0 0 50px #fff, 0 0 75px #fff;
  }
}
@keyframes neon1 {
  from {
    text-shadow: 0 0 10px #c0e0e2, 0 0 20px #c0e0e2, 0 0 30px #c0e0e2, 0 0 40px #fff, 0 0 70px #fff, 0 0 80px #fff, 0 0 100px #fff, 0 0 150px #fff;
  }
  to {
    text-shadow: 0 0 5px #c0e0e2, 0 0 10px #c0e0e2, 0 0 15px #c0e0e2, 0 0 20px #fff, 0 0 35px #fff, 0 0 40px #fff, 0 0 50px #fff, 0 0 75px #fff;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0.0;
  }
  25% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0.5;
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 1.0;
  }
  75% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0.0;
  }
  100% {
    -webkit-transform: scale(2.5);
            transform: scale(2.5);
    opacity: 0.0;
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0.0;
  }
  25% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0.5;
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 1.0;
  }
  75% {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0.0;
  }
  100% {
    -webkit-transform: scale(2.5);
            transform: scale(2.5);
    opacity: 0.0;
  }
}
@-webkit-keyframes floating {
  from {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
  65% {
    -webkit-transform: translate(0, 15px);
            transform: translate(0, 15px);
  }
  to {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
}
@keyframes floating {
  from {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
  65% {
    -webkit-transform: translate(0, 15px);
            transform: translate(0, 15px);
  }
  to {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
#content {
  /*------------------------------------*\
      #Hero
  \*------------------------------------*/
  /*------------------------------------*\
      #Mixins
      - Colors
      - File Paths
      - Pixel values, widths, etc...
      - Fonts
      - Arrays
  \*------------------------------------*/
  /**
  * Colors
  */
  /**
  * File Paths
  */
  /**
  * Pixel Values
  */
  /**
  * Fonts
  */
  /**
  * Arrays
  */
  /*------------------------------------*\
      #Mixins
      1. clearfix
      2. breakpoint
      3. overlay
      4. vendor prefix
      5. font size in rem with px fallback
      6. theme (light or dark)
      7. grid
  \*------------------------------------*/
  /**
  * @mixin clearfix
  * Used to clear elements that are floated. Usually used within a container.
  *
  * @example
  *   @include clearfix();
  */
  /**
  * @mixin breakpoint
  * To define different styles based on a different media breakpoint.
  *
  * @param $bp - the breakpoint you want to apply styles to. Can be in px, em.
  * @example
  *   @include breakpoint(500px) {
          color: #000;
      }
  */
  /**
  * @mixin overlay
  * Styles applied to overlay the page
  */
  /**
  * @mixin font-size
  * Font size in rem with px fallback
  *
  * @param $pxVal - font size in pixels.
  * @example
  *   @include font-size(18px);
  */
  /**
      icon - circle border
  */
  /*
      @mixin grid
      Create a grid system for list type content
  
      @param $cols - number of columns
      @param $gutter - px of margin between columns
      @param $children - class of children
  
  *   @example
  *   @include grid($cols: 4, $gutter: 0, $children: ".related-content-item");
  */
  /*------------------------------------*\
      #Mixins
      - Colors
      - File Paths
      - Pixel values, widths, etc...
      - Fonts
      - Arrays
  \*------------------------------------*/
  /**
  * Colors
  */
  /**
  * File Paths
  */
  /**
  * Pixel Values
  */
  /**
  * Fonts
  */
  /**
  * Arrays
  */
  /*------------------------------------*\
      #Mixins
      1. clearfix
      2. breakpoint
      3. overlay
      4. vendor prefix
      5. font size in rem with px fallback
      6. theme (light or dark)
      7. grid
  \*------------------------------------*/
  /**
  * @mixin clearfix
  * Used to clear elements that are floated. Usually used within a container.
  *
  * @example
  *   @include clearfix();
  */
  /**
  * @mixin breakpoint
  * To define different styles based on a different media breakpoint.
  *
  * @param $bp - the breakpoint you want to apply styles to. Can be in px, em.
  * @example
  *   @include breakpoint(500px) {
          color: #000;
      }
  */
  /**
  * @mixin overlay
  * Styles applied to overlay the page
  */
  /**
  * @mixin font-size
  * Font size in rem with px fallback
  *
  * @param $pxVal - font size in pixels.
  * @example
  *   @include font-size(18px);
  */
  /**
      icon - circle border
  */
  /*
      @mixin grid
      Create a grid system for list type content
  
      @param $cols - number of columns
      @param $gutter - px of margin between columns
      @param $children - class of children
  
  *   @example
  *   @include grid($cols: 4, $gutter: 0, $children: ".related-content-item");
  */
  /*------------------------------------*\
      #Hero
  \*------------------------------------*/
  /*------------------------------------*\
      #Mixins
      - Colors
      - File Paths
      - Pixel values, widths, etc...
      - Fonts
      - Arrays
  \*------------------------------------*/
  /**
  * Colors
  */
  /**
  * File Paths
  */
  /**
  * Pixel Values
  */
  /**
  * Fonts
  */
  /**
  * Arrays
  */
  /*------------------------------------*\
      #Mixins
      1. clearfix
      2. breakpoint
      3. overlay
      4. vendor prefix
      5. font size in rem with px fallback
      6. theme (light or dark)
      7. grid
  \*------------------------------------*/
  /**
  * @mixin clearfix
  * Used to clear elements that are floated. Usually used within a container.
  *
  * @example
  *   @include clearfix();
  */
  /**
  * @mixin breakpoint
  * To define different styles based on a different media breakpoint.
  *
  * @param $bp - the breakpoint you want to apply styles to. Can be in px, em.
  * @example
  *   @include breakpoint(500px) {
          color: #000;
      }
  */
  /**
  * @mixin overlay
  * Styles applied to overlay the page
  */
  /**
  * @mixin font-size
  * Font size in rem with px fallback
  *
  * @param $pxVal - font size in pixels.
  * @example
  *   @include font-size(18px);
  */
  /**
      icon - circle border
  */
  /*
      @mixin grid
      Create a grid system for list type content
  
      @param $cols - number of columns
      @param $gutter - px of margin between columns
      @param $children - class of children
  
  *   @example
  *   @include grid($cols: 4, $gutter: 0, $children: ".related-content-item");
  */
  /*------------------------------------*\
      #The Solar Boom
  \*------------------------------------*/
  /*------------------------------------*\
      #Mixins
      - Colors
      - File Paths
      - Pixel values, widths, etc...
      - Fonts
      - Arrays
  \*------------------------------------*/
  /**
  * Colors
  */
  /**
  * File Paths
  */
  /**
  * Pixel Values
  */
  /**
  * Fonts
  */
  /**
  * Arrays
  */
  /*------------------------------------*\
      #Mixins
      1. clearfix
      2. breakpoint
      3. overlay
      4. vendor prefix
      5. font size in rem with px fallback
      6. theme (light or dark)
      7. grid
  \*------------------------------------*/
  /**
  * @mixin clearfix
  * Used to clear elements that are floated. Usually used within a container.
  *
  * @example
  *   @include clearfix();
  */
  /**
  * @mixin breakpoint
  * To define different styles based on a different media breakpoint.
  *
  * @param $bp - the breakpoint you want to apply styles to. Can be in px, em.
  * @example
  *   @include breakpoint(500px) {
          color: #000;
      }
  */
  /**
  * @mixin overlay
  * Styles applied to overlay the page
  */
  /**
  * @mixin font-size
  * Font size in rem with px fallback
  *
  * @param $pxVal - font size in pixels.
  * @example
  *   @include font-size(18px);
  */
  /**
      icon - circle border
  */
  /*
      @mixin grid
      Create a grid system for list type content
  
      @param $cols - number of columns
      @param $gutter - px of margin between columns
      @param $children - class of children
  
  *   @example
  *   @include grid($cols: 4, $gutter: 0, $children: ".related-content-item");
  */
  /*------------------------------------*\
      #Related Content
  \*------------------------------------*/
  /*------------------------------------*\
      #Mixins
      - Colors
      - File Paths
      - Pixel values, widths, etc...
      - Fonts
      - Arrays
  \*------------------------------------*/
  /**
  * Colors
  */
  /**
  * File Paths
  */
  /**
  * Pixel Values
  */
  /**
  * Fonts
  */
  /**
  * Arrays
  */
  /*------------------------------------*\
      #Mixins
      1. clearfix
      2. breakpoint
      3. overlay
      4. vendor prefix
      5. font size in rem with px fallback
      6. theme (light or dark)
      7. grid
  \*------------------------------------*/
  /**
  * @mixin clearfix
  * Used to clear elements that are floated. Usually used within a container.
  *
  * @example
  *   @include clearfix();
  */
  /**
  * @mixin breakpoint
  * To define different styles based on a different media breakpoint.
  *
  * @param $bp - the breakpoint you want to apply styles to. Can be in px, em.
  * @example
  *   @include breakpoint(500px) {
          color: #000;
      }
  */
  /**
  * @mixin overlay
  * Styles applied to overlay the page
  */
  /**
  * @mixin font-size
  * Font size in rem with px fallback
  *
  * @param $pxVal - font size in pixels.
  * @example
  *   @include font-size(18px);
  */
  /**
      icon - circle border
  */
  /*
      @mixin grid
      Create a grid system for list type content
  
      @param $cols - number of columns
      @param $gutter - px of margin between columns
      @param $children - class of children
  
  *   @example
  *   @include grid($cols: 4, $gutter: 0, $children: ".related-content-item");
  */
  /*------------------------------------*\
      #Mixins
      - Colors
      - File Paths
      - Pixel values, widths, etc...
      - Fonts
      - Arrays
  \*------------------------------------*/
  /**
  * Colors
  */
  /** 
  * File Paths
  */
  /**
  * Pixel Values
  */
  /**
  * Fonts
  */
  /**
  * Arrays 
  */
  /*------------------------------------*\
      #Mixins
      1. clearfix
      2. breakpoint
      3. overlay
      4. vendor prefix
      5. font size in rem with px fallback
      6. theme (light or dark)
      7. grid
  \*------------------------------------*/
  /**
  * @mixin clearfix
  * Used to clear elements that are floated. Usually used within a container.
  *
  * @example
  *   @include clearfix();
  */
  /**
  * @mixin breakpoint
  * To define different styles based on a different media breakpoint.
  *
  * @param $bp - the breakpoint you want to apply styles to. Can be in px, em.
  * @example
  *   @include breakpoint(500px) {
          color: #000;
      }
  */
  /**
  * @mixin overlay
  * Styles applied to overlay the page
  */
  /**
  * @mixin font-size
  * Font size in rem with px fallback
  *
  * @param $pxVal - font size in pixels.
  * @example
  *   @include font-size(18px);
  */
  /*
      @mixin grid
      Create a grid system for list type content
  
      @param $cols - number of columns
      @param $gutter - px of margin between columns
      @param $children - class of children
  
  *   @example
  *   @include grid($cols: 4, $gutter: 0, $children: ".related-content-item");
  */
  /*------------------------------------*\
      #Mixins
      - Colors
      - File Paths
      - Pixel values, widths, etc...
      - Fonts
      - Arrays
  \*------------------------------------*/
  /**
  * Colors
  */
  /** 
  * File Paths
  */
  /**
  * Pixel Values
  */
  /**
  * Fonts
  */
  /**
  * Arrays 
  */
  /*------------------------------------*\
      #Mixins
      1. clearfix
      2. breakpoint
      3. overlay
      4. vendor prefix
      5. font size in rem with px fallback
      6. theme (light or dark)
      7. grid
  \*------------------------------------*/
  /**
  * @mixin clearfix
  * Used to clear elements that are floated. Usually used within a container.
  *
  * @example
  *   @include clearfix();
  */
  /**
  * @mixin breakpoint
  * To define different styles based on a different media breakpoint.
  *
  * @param $bp - the breakpoint you want to apply styles to. Can be in px, em.
  * @example
  *   @include breakpoint(500px) {
          color: #000;
      }
  */
  /**
  * @mixin overlay
  * Styles applied to overlay the page
  */
  /**
  * @mixin font-size
  * Font size in rem with px fallback
  *
  * @param $pxVal - font size in pixels.
  * @example
  *   @include font-size(18px);
  */
  /*
      @mixin grid
      Create a grid system for list type content
  
      @param $cols - number of columns
      @param $gutter - px of margin between columns
      @param $children - class of children
  
  *   @example
  *   @include grid($cols: 4, $gutter: 0, $children: ".related-content-item");
  */
  /*------------------------------------*\
      #Inside the Home
  \*------------------------------------*/
  /*------------------------------------*\
      #Mixins
      - Colors
      - File Paths
      - Pixel values, widths, etc...
      - Fonts
      - Arrays
  \*------------------------------------*/
  /**
  * Colors
  */
  /**
  * File Paths
  */
  /**
  * Pixel Values
  */
  /**
  * Fonts
  */
  /**
  * Arrays
  */
  /*------------------------------------*\
      #Mixins
      1. clearfix
      2. breakpoint
      3. overlay
      4. vendor prefix
      5. font size in rem with px fallback
      6. theme (light or dark)
      7. grid
  \*------------------------------------*/
  /**
  * @mixin clearfix
  * Used to clear elements that are floated. Usually used within a container.
  *
  * @example
  *   @include clearfix();
  */
  /**
  * @mixin breakpoint
  * To define different styles based on a different media breakpoint.
  *
  * @param $bp - the breakpoint you want to apply styles to. Can be in px, em.
  * @example
  *   @include breakpoint(500px) {
          color: #000;
      }
  */
  /**
  * @mixin overlay
  * Styles applied to overlay the page
  */
  /**
  * @mixin font-size
  * Font size in rem with px fallback
  *
  * @param $pxVal - font size in pixels.
  * @example
  *   @include font-size(18px);
  */
  /**
      icon - circle border
  */
  /*
      @mixin grid
      Create a grid system for list type content
  
      @param $cols - number of columns
      @param $gutter - px of margin between columns
      @param $children - class of children
  
  *   @example
  *   @include grid($cols: 4, $gutter: 0, $children: ".related-content-item");
  */
  /*------------------------------------*\
      #Financing the Future
  \*------------------------------------*/
  /*------------------------------------*\
      #Mixins
      - Colors
      - File Paths
      - Pixel values, widths, etc...
      - Fonts
      - Arrays
  \*------------------------------------*/
  /**
  * Colors
  */
  /**
  * File Paths
  */
  /**
  * Pixel Values
  */
  /**
  * Fonts
  */
  /**
  * Arrays
  */
  /*------------------------------------*\
      #Mixins
      1. clearfix
      2. breakpoint
      3. overlay
      4. vendor prefix
      5. font size in rem with px fallback
      6. theme (light or dark)
      7. grid
  \*------------------------------------*/
  /**
  * @mixin clearfix
  * Used to clear elements that are floated. Usually used within a container.
  *
  * @example
  *   @include clearfix();
  */
  /**
  * @mixin breakpoint
  * To define different styles based on a different media breakpoint.
  *
  * @param $bp - the breakpoint you want to apply styles to. Can be in px, em.
  * @example
  *   @include breakpoint(500px) {
          color: #000;
      }
  */
  /**
  * @mixin overlay
  * Styles applied to overlay the page
  */
  /**
  * @mixin font-size
  * Font size in rem with px fallback
  *
  * @param $pxVal - font size in pixels.
  * @example
  *   @include font-size(18px);
  */
  /**
      icon - circle border
  */
  /*
      @mixin grid
      Create a grid system for list type content
  
      @param $cols - number of columns
      @param $gutter - px of margin between columns
      @param $children - class of children
  
  *   @example
  *   @include grid($cols: 4, $gutter: 0, $children: ".related-content-item");
  */
  /*------------------------------------*\
      #Quote
  \*------------------------------------*/
  /*------------------------------------*\
      #Mixins
      - Colors
      - File Paths
      - Pixel values, widths, etc...
      - Fonts
      - Arrays
  \*------------------------------------*/
  /**
  * Colors
  */
  /**
  * File Paths
  */
  /**
  * Pixel Values
  */
  /**
  * Fonts
  */
  /**
  * Arrays
  */
  /*------------------------------------*\
      #Mixins
      1. clearfix
      2. breakpoint
      3. overlay
      4. vendor prefix
      5. font size in rem with px fallback
      6. theme (light or dark)
      7. grid
  \*------------------------------------*/
  /**
  * @mixin clearfix
  * Used to clear elements that are floated. Usually used within a container.
  *
  * @example
  *   @include clearfix();
  */
  /**
  * @mixin breakpoint
  * To define different styles based on a different media breakpoint.
  *
  * @param $bp - the breakpoint you want to apply styles to. Can be in px, em.
  * @example
  *   @include breakpoint(500px) {
          color: #000;
      }
  */
  /**
  * @mixin overlay
  * Styles applied to overlay the page
  */
  /**
  * @mixin font-size
  * Font size in rem with px fallback
  *
  * @param $pxVal - font size in pixels.
  * @example
  *   @include font-size(18px);
  */
  /**
      icon - circle border
  */
  /*
      @mixin grid
      Create a grid system for list type content
  
      @param $cols - number of columns
      @param $gutter - px of margin between columns
      @param $children - class of children
  
  *   @example
  *   @include grid($cols: 4, $gutter: 0, $children: ".related-content-item");
  */
  /*------------------------------------*\
      #The Takeaway section
  \*------------------------------------*/
  /*------------------------------------*\
      #Mixins
      - Colors
      - File Paths
      - Pixel values, widths, etc...
      - Fonts
      - Arrays
  \*------------------------------------*/
  /**
  * Colors
  */
  /**
  * File Paths
  */
  /**
  * Pixel Values
  */
  /**
  * Fonts
  */
  /**
  * Arrays
  */
  /*------------------------------------*\
      #Mixins
      1. clearfix
      2. breakpoint
      3. overlay
      4. vendor prefix
      5. font size in rem with px fallback
      6. theme (light or dark)
      7. grid
  \*------------------------------------*/
  /**
  * @mixin clearfix
  * Used to clear elements that are floated. Usually used within a container.
  *
  * @example
  *   @include clearfix();
  */
  /**
  * @mixin breakpoint
  * To define different styles based on a different media breakpoint.
  *
  * @param $bp - the breakpoint you want to apply styles to. Can be in px, em.
  * @example
  *   @include breakpoint(500px) {
          color: #000;
      }
  */
  /**
  * @mixin overlay
  * Styles applied to overlay the page
  */
  /**
  * @mixin font-size
  * Font size in rem with px fallback
  *
  * @param $pxVal - font size in pixels.
  * @example
  *   @include font-size(18px);
  */
  /**
      icon - circle border
  */
  /*
      @mixin grid
      Create a grid system for list type content
  
      @param $cols - number of columns
      @param $gutter - px of margin between columns
      @param $children - class of children
  
  *   @example
  *   @include grid($cols: 4, $gutter: 0, $children: ".related-content-item");
  */
}
#content .hero-top {
  position: relative;
  height: 772px;
  background: #0aab5d;
}
@media (min-width: 768px) {
  #content .hero-top {
    height: 950px;
  }
}
@media (tablet-portrait: 0) {
  #content .hero-top {
    height: 950px;
  }
}
@media (min-width: 1230px) {
  #content .hero-top {
    height: 1133px;
  }
}
#content .hero-top:after {
  content: "";
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#294094+0,30aab2+50,bbd1b9+100 */
  background: #294094;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #294094 0%, #30aab2 50%, #bbd1b9 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#294094', endColorstr='#bbd1b9',GradientType=0 );
  /* IE6-9 */
  opacity: 0.9;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#content .hero-top:before {
  content: "";
  background: url(/a/pgs/images/clean-energy/assets/SolarFlare.png) top right no-repeat;
  z-index: 1;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 1230px) {
  #content .hero-top:before {
    background-size: inherit;
  }
}
#content .hero-top .gs-share.gs-social-share-bar {
  margin: 0 0 30px;
}
#content .hero-top .gs-share.gs-social-share-bar i {
  color: #fff;
}
#content .hero-top .gs-share.gs-social-share-bar a {
  color: #fff;
}
#content .hero-top img {
  display: block;
  width: 100%;
  position: absolute;
  z-index: 1;
  bottom: 0;
}
@media (min-width: 1024px) {
  #content .hero-top img {
    height: 40%;
  }
}
@media (min-width: 1230px) {
  #content .hero-top img {
    height: 52%;
  }
}
#content .hero-top .caption {
  text-align: center;
  width: 90%;
  top: 11%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  #content .hero-top .caption {
    width: 80%;
  }
}
@media (tablet-portrait: 0) {
  #content .hero-top .caption {
    width: 80%;
  }
}
@media (min-width: 1024px) {
  #content .hero-top .caption {
    width: 726px;
  }
}
#content .hero-top .caption h1 {
  font: 69px/1 "UniversLTW01-59UltraCn", sans-serif;
  color: #fff;
  text-transform: capitalize;
  padding: 0;
  margin: 0 0 0;
}
@media (min-width: 1024px) {
  #content .hero-top .caption h1 {
    font-size: 96px;
    margin: 0 0 20px;
  }
}
#content .hero-top .caption h2 {
  font: 19px/36px "Univers LT W01 55 Roman";
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1.2px;
  margin: 0 0 30px;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
#content .hero-top .caption h2 else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
@media (min-width: 1024px) {
  #content .hero-top .caption h2 {
    font-size: 28px;
    margin: 0 0 38px;
  }
}
#content .hero-top .caption p {
  font: 15px/24px "UniversLTStdLight";
  color: #fff;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  margin: 0 0 60px;
}
#content .hero-top .caption p else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
@media (min-width: 1024px) {
  #content .hero-top .caption p {
    font-size: 22px;
    line-height: 29px;
  }
}
#content .fixed-header {
  color: #fff;
  background: #0c0c0c;
  position: relative;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  transition: opacity 0.2s linear;
  z-index: 99;
}
#content .fixed-header .container {
  position: relative;
}
#content .fixed-header *:before, #content .fixed-header *:after {
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  #content .fixed-header {
    background: #0c0c0c;
    height: 105px;
    padding: 0;
    left: 0;
    right: 0;
  }
}
#content .fixed-header.fixed {
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
#content .fixed-header.fixed + .sticky-spacer {
  display: block;
}
#content .fixed-header .title {
  font: 14px/50px "UniversLTW01-57Condense 723821";
  text-transform: uppercase;
  text-align: center;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  margin-left: 45px;
}
#content .fixed-header .title else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
#content .fixed-header .actions {
  position: absolute;
  width: 102px;
}
@media (min-width: 768px) {
  #content .fixed-header .actions {
    width: 142px;
  }
}
@media (tablet-portrait: 0) {
  #content .fixed-header .actions {
    width: 142px;
  }
}
#content .fixed-header .actions a {
  display: inline-block;
  width: 25px;
  height: 50px;
  font-size: 47px;
  color: #fff;
}
@media (min-width: 768px) {
  #content .fixed-header .actions a {
    width: 25px;
    height: 20px;
    font-size: 47px;
  }
}
@media (tablet-portrait: 0) {
  #content .fixed-header .actions a {
    width: 25px;
    height: 20px;
    font-size: 47px;
  }
}
#content .fixed-header .logo {
  height: 75px;
  display: inline-block;
  padding: 15px 22px;
  vertical-align: middle;
  background: #1a1a1a;
  margin: 0;
}
#content .fixed-header .logo img, #content .fixed-header .logo div {
  display: inline-block;
  vertical-align: middle;
}
#content .fixed-header .logo .data-title {
  text-transform: uppercase;
  font: 16px/1 "UniversLTW01-47LightCn";
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 3px;
  display: block;
}
#content .fixed-header .logo .info-title {
  text-transform: uppercase;
  font: 20px/1 "UniversLTW01-67BoldCn";
  color: #fff;
  display: block;
}
#content .fixed-header div.gs-share.gs-share-buttons {
  top: 6px;
}
#content .fixed-header div.gs-share.gs-social-share-bar {
  top: 29px;
}
#content .fixed-header div.gs-share.gs-share-buttons, #content .fixed-header div.gs-share.gs-social-share-bar {
  position: absolute;
  right: 4px;
}
@media (min-width: 1024px) {
  #content .fixed-header div.gs-share.gs-share-buttons, #content .fixed-header div.gs-share.gs-social-share-bar {
    vertical-align: middle;
    margin: 0;
    border: 0 none;
    padding: 0;
    right: 35px;
    top: 44px;
  }
}
@media (min-width: 1230px) {
  #content .fixed-header div.gs-share.gs-share-buttons, #content .fixed-header div.gs-share.gs-social-share-bar {
    right: 0;
  }
}
#content .fixed-header div.gs-share.gs-share-buttons li, #content .fixed-header div.gs-share.gs-social-share-bar li {
  border-left: 0;
}
#content .fixed-header div.gs-share.gs-share-buttons > div, #content .fixed-header div.gs-share.gs-social-share-bar > div {
  border: 0 none;
}
#content .fixed-header div.gs-share.gs-share-buttons a, #content .fixed-header div.gs-share.gs-social-share-bar a {
  padding: 0 7px !important;
  border: 0;
  margin: 0;
  color: white;
}
#content .fixed-header div.gs-share.gs-share-buttons a > div, #content .fixed-header div.gs-share.gs-social-share-bar a > div {
  display: none;
}
#content .fixed-header div.gs-share.gs-share-buttons a i, #content .fixed-header div.gs-share.gs-social-share-bar a i {
  color: white;
}
@media (min-width: 1024px) {
  #content .fixed-header div.gs-share.gs-share-buttons a i, #content .fixed-header div.gs-share.gs-social-share-bar a i {
    color: white;
  }
}
#content .fixed-header div.gs-share.gs-share-buttons a:visited, #content .fixed-header div.gs-share.gs-social-share-bar a:visited {
  color: white;
}
#content .fixed-header #scroll-nav {
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #content .fixed-header #scroll-nav {
    margin: 0 auto 0 -43px;
  }
}
@media (tablet-portrait: 0) {
  #content .fixed-header #scroll-nav {
    margin: 0 auto 0 -43px;
  }
}
@media (min-width: 1024px) {
  #content .fixed-header #scroll-nav {
    margin: 0 auto;
  }
}
@media (min-width: 1230px) {
  #content .fixed-header #scroll-nav {
    margin: 0 150px 0 50px;
  }
}
#content .fixed-header #scroll-nav li {
  display: inline-block;
  padding: 0 0 0 50px;
  position: relative;
  height: 14px;
  vertical-align: middle;
}
#content .fixed-header #scroll-nav li:after {
  content: "";
  background: #187256;
  height: 4px;
  width: 50px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: background .2s linear;
}
#content .fixed-header #scroll-nav li a {
  transition: background .5s linear;
  background: #12c68e;
  height: 14px;
  width: 14px;
  display: block;
  margin-top: 4px;
  color: #002a5f;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
#content .fixed-header #scroll-nav li a h3 {
  background: #fff;
  width: 168px;
  text-align: center;
  position: absolute;
  left: 91%;
  z-index: 1;
  border-radius: 5px;
  -webkit-transform: translate(-50%, -99em);
      -ms-transform: translate(-50%, -99em);
          transform: translate(-50%, -99em);
  padding: 12px 5px 6px;
  margin: 0;
  color: #2ea289;
  font-family: "UniversLTW01-59UltraCn";
  font-size: 16px;
  opacity: 0;
  top: 24px;
  transition-property: top, opacity;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
}
#content .fixed-header #scroll-nav li a h3:after {
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  background: transparent;
  border-width: 0 7px 7px 7px;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  margin: 0 0 0 -8px;
  top: -6px;
  left: 50%;
}
#content .fixed-header #scroll-nav li a:hover h3 {
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  top: 33px;
  opacity: 1;
}
#content .fixed-header #scroll-nav li:first-child:after {
  display: none;
  width: 0;
}
#content .fixed-header #scroll-nav li.active ~ li {
  vertical-align: bottom;
}
#content .fixed-header #scroll-nav li.active ~ li:after {
  background: #1c1c1c;
}
#content .fixed-header #scroll-nav li.active ~ li a {
  background: #fff;
  height: 14px;
  width: 14px;
  margin-top: 5px;
  border: 2px solid #0c0c0c;
}
#content .fixed-header #scroll-nav li.active ~ li a:hover {
  background: #12c68e;
  border: 2px solid #fff;
}
#content .fixed-header #scroll-nav li.active ~ li a .tooltip:after {
  margin: 0 0 0 -10px;
}
#content .fixed-header #scroll-nav li.active a {
  background: #12c68e;
  width: 14px;
  height: 14px;
  margin-top: 4px;
}
#content .fixed-header #scroll-nav li.active:after {
  background: #187256;
}
#content .fixed-header .disabled {
  opacity: 0.3;
  cursor: default;
}
#content .sticky-spacer {
  display: none;
}
#content .section-1 {
  background: #263041;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #263041 0%, #2c384d 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#263041', endColorstr='#2c384d',GradientType=0 );
  /* IE6-9 */
  position: relative;
  overflow: hidden;
  padding: 53px 0 60px 0;
  transition: all 0.5s ease-in-out;
  /* & > .container {
       padding-top: 90px;
       padding-bottom: 90px;
  } */
  /* .container {
      padding-top: 10%;
      @include breakpoint("tablet-landscape"){
          padding-top: 16%;
      }
      @include breakpoint("tablet-landscape"){
          padding-top: 45px;
      }
  } */
}
@media (min-width: 1024px) {
  #content .section-1 {
    padding: 91px 0 107px 0;
  }
}
#content .section-1 .col-header h5 {
  margin: 0;
  line-height: .5;
}
#content .section-1 .col-header h2 {
  margin: 0 0 20px;
}
#content .section-1 .col-header p {
  color: #fff;
  font: 22px/24px "UniversLTStdLight";
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
#content .section-1 .col-header p else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
@media (min-width: 1024px) {
  #content .section-1 .col-header {
    height: 414px;
    width: 45%;
    margin: 40px 0 0 0px;
    display: inline-block;
    vertical-align: middle;
  }
}
@media (min-width: 1230px) {
  #content .section-1 .col-header {
    width: 394px;
    margin: 40px 0 0 40px;
  }
}
@media (min-width: 1024px) {
  #content .section-1 .col-content {
    width: 50%;
    height: 500px;
    display: inline-block;
    vertical-align: top;
  }
}
@media (min-width: 1230px) {
  #content .section-1 .col-content {
    width: 600px;
    margin: 0 0 0 100px;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }
}
#content .section-1 .types {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 375px;
  vertical-align: middle;
  z-index: 0;
}
@media only screen and (min-width: 565px) {
  #content .section-1 .types {
    min-height: 500px;
  }
}
@media (min-width: 768px) {
  #content .section-1 .types {
    width: 75%;
    margin: 0 auto;
  }
}
@media (tablet-portrait: 0) {
  #content .section-1 .types {
    width: 75%;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  #content .section-1 .types {
    width: 100%;
  }
}
#content .section-1 .types li {
  display: inline-block;
  position: absolute;
  width: 43%;
}
@media (min-width: 768px) {
  #content .section-1 .types li {
    width: 34%;
  }
}
@media (tablet-portrait: 0) {
  #content .section-1 .types li {
    width: 34%;
  }
}
@media (min-width: 1024px) {
  #content .section-1 .types li {
    width: 40%;
  }
}
@media (min-width: 1230px) {
  #content .section-1 .types li {
    width: auto;
  }
}
#content .section-1 .types li a {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
#content .section-1 .types li a img {
  max-width: 100%;
  margin: -30px 0 0;
  transition: opacity .2s linear;
  opacity: .35;
}
@media (min-width: 1230px) {
  #content .section-1 .types li a img {
    width: auto;
  }
}
#content .section-1 .types li a h4 {
  position: relative;
  z-index: 2;
  text-align: center;
  font: 15px/1 "Univers LT W01 55 Roman";
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  color: #fff;
}
@media (min-width: 768px) {
  #content .section-1 .types li a h4 {
    font-size: 20px;
  }
}
@media (tablet-portrait: 0) {
  #content .section-1 .types li a h4 {
    font-size: 20px;
  }
}
#content .section-1 .types li a h4 else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
#content .section-1 .types li a h4 i {
  background-color: transparent;
  font-size: 10px;
  color: #00ae4a;
  border: 2px solid #fff;
  padding: 5px;
  border-radius: 100%;
  font-weight: bold;
  text-shadow: 0px 1px 0px #00ae4a;
  transition: all 0.2s linear;
  position: relative;
  top: -2px;
}
@media (min-width: 768px) {
  #content .section-1 .types li a h4 i {
    font-size: 12px;
    padding: 7px;
  }
}
@media (tablet-portrait: 0) {
  #content .section-1 .types li a h4 i {
    font-size: 12px;
    padding: 7px;
  }
}
#content .section-1 .types li a:hover h4 i {
  background-color: #00ae4a;
  color: #fff;
  text-shadow: 0px 1px 0px #FFF;
}
#content .section-1 .types li a:hover img {
  opacity: 1;
}
#content .section-1 .types .solar {
  top: 0;
  left: 0;
}
#content .section-1 .types .hydro {
  top: 0;
  right: 0;
}
#content .section-1 .types .wind {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (min-width: 1230px) {
  #content .section-1 .types .wind {
    position: static;
    margin: 26% 0 0 32%;
    top: inherit;
    left: inherit;
    -webkit-transform: inherit;
        -ms-transform: inherit;
            transform: inherit;
  }
}
#content .section-1 .types .geo {
  bottom: 0;
  left: 0;
}
#content .section-1 .types .biomass {
  bottom: 0;
  right: 0;
}
#content .section-1 .gif {
  margin-bottom: 30px;
  position: relative;
}
@media only screen and (min-width: 500px) {
  #content .section-1 .gif {
    max-width: 50%;
    margin: 0 auto;
    display: block;
  }
}
@media (min-width: 1024px) {
  #content .section-1 .gif {
    margin: 0;
    width: 50%;
    float: left;
  }
}
#content .section-1 .gif img {
  width: 100%;
}
@media (min-width: 1024px) {
  #content .section-1 .gif img {
    max-width: 100%;
    width: auto;
    margin: 0 auto;
  }
}
@media (min-width: 1300px) {
  #content .section-1 .gif img {
    width: auto;
    max-width: none;
  }
}
#content .section-1 .gif img.blades {
  position: absolute;
  -webkit-animation-name: spin;
          animation-name: spin;
  -webkit-animation-duration: 4000ms;
          animation-duration: 4000ms;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  z-index: 1;
  left: 4px;
}
@media only screen and (min-width: 1500px) {
  #content .section-1 .gif img.blades {
    left: 50%;
    margin-left: -296px;
  }
}
#content .section-1 .info {
  color: #fff;
}
@media (min-width: 1024px) {
  #content .section-1 .info {
    width: 50%;
    float: left;
    font-size: 16px;
    vertical-align: top;
    padding-left: 70px;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }
}
#content .section-1 .info h3 {
  font: 60px/1 "UniversLTW01-59UltraCn";
  margin: 0;
  text-align: center;
}
@media (min-width: 1024px) {
  #content .section-1 .info h3 {
    margin: 0 0 30px;
    font-size: 86px;
    text-align: left;
  }
}
#content .section-1 .info p {
  font: 16px/24px "UniversLTStdLight";
  text-align: center;
  margin-bottom: 20px;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
#content .section-1 .info p else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
@media (min-width: 1024px) {
  #content .section-1 .info p {
    font-size: 22px;
    line-height: 29px;
    max-width: 390px;
    text-align: left;
  }
}
#content .section-1 .info .item-icon {
  background: url(/a/pgs/images/clean-energy/assets/5types-icons.png) no-repeat;
  height: 42px;
  width: 100%;
  display: block;
}
#content .section-1 .info h6 {
  font: 14px/1.1 "Univers LT W01 55 Roman";
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 -9px 19px;
}
@media (min-width: 1024px) {
  #content .section-1 .info h6 {
    font-size: 18px;
    margin: 0 0 10px;
    letter-spacing: 2px;
  }
}
#content .section-1 .info .source {
  margin: 10px auto 25px;
  text-align: center;
  display: block;
}
@media (min-width: 1024px) {
  #content .section-1 .info .source {
    text-align: left;
  }
}
#content .section-1 .info .item-numbers {
  text-align: center;
  *zoom: 1;
}
#content .section-1 .info .item-numbers:before, #content .section-1 .info .item-numbers:after {
  content: " ";
  display: table;
}
#content .section-1 .info .item-numbers:after {
  clear: both;
}
@media (min-width: 1024px) {
  #content .section-1 .info .item-numbers {
    text-align: inherit;
    max-width: 280px;
  }
}
#content .section-1 .info .item-numbers .number {
  font: 48px/1 "UniversLTW01-59UltraCn";
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
@media (min-width: 1024px) {
  #content .section-1 .info .item-numbers .number {
    font-size: 86px;
    display: block;
  }
}
#content .section-1 .info .item-numbers .number small {
  font-family: "UniversLTStdLight";
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-size: 18px;
  line-height: 22px;
  color: #a4b3d5;
  display: block;
  margin: 0 0 15px;
}
#content .section-1 .info .item-numbers .number small else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
@media (min-width: 1024px) {
  #content .section-1 .info .item-numbers .number small {
    text-align: left;
    font-size: 19px;
    line-height: 24px;
    margin: 0;
  }
}
#content .section-1 .info .item-numbers .number sup {
  color: #1edca1;
  font: 24px/1 "UniversLTW01-59UltraCn";
  display: inline-block;
}
#content .section-1 .info .item-numbers .number sup.triangle-down {
  width: 0px;
  height: 0px;
  border-style: solid;
  background: transparent;
  border-width: 10px 10px 0 10px;
  border-color: #1edca1 transparent transparent transparent;
}
@media (min-width: 1024px) {
  #content .section-1 .info .item-numbers .number sup {
    font-size: 42px;
  }
}
@media (min-width: 1024px) {
  #content .section-1 .info .item-numbers .number label {
    float: left;
  }
}
#content .section-1 .info .item-numbers .number.green {
  color: #1edca1;
}
#content .section-1 .info .item-numbers .icon-dropped {
  color: #1edca1;
  font-size: 42px;
  display: inline-block;
  margin-right: -19px;
}
@media (min-width: 1024px) {
  #content .section-1 .info .item-numbers .icon-dropped {
    float: left;
    font-size: 70px;
    margin-left: -27px;
    margin-top: 6px;
  }
}
#content .section-1 .solar .item-icon {
  background-position: 17% 0;
}
@media (min-width: 1024px) {
  #content .section-1 .solar .item-icon {
    background-position: 9% 0;
  }
}
@media (min-width: 1024px) {
  #content .section-1 .solar .container {
    margin: 0 9em !important;
  }
}
#content .section-1 .hydro .item-icon {
  background-position: 41% -98px;
}
@media (min-width: 1024px) {
  #content .section-1 .hydro .item-icon {
    background-position: 13% -98px;
  }
}
#content .section-1 .wind .item-icon {
  background-position: 40% -43px;
}
@media (min-width: 1024px) {
  #content .section-1 .wind .item-icon {
    background-position: 2% -43px;
  }
}
#content .section-1 .geothermal .item-icon {
  background-position: 40% bottom;
}
@media (min-width: 1024px) {
  #content .section-1 .geothermal .item-icon {
    background-position: -1% bottom;
  }
}
#content .section-1 .biomass .item-icon {
  background-position: 25% -150px;
}
@media (min-width: 1024px) {
  #content .section-1 .biomass .item-icon {
    background-position: -85px -150px;
  }
}
#content .section-1 .wind .number small {
  max-width: none;
  text-transform: none;
}
#content .section-1 .hidden-stage {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  background: #22243c url(/a/pgs/images/clean-energy/assets/bg-5types.jpg) repeat-x top left;
  transition: opacity 0.5s ease-in-out;
}
#content .section-1 .hidden-stage ul {
  position: static;
  outline: none;
}
#content .section-1 .hidden-stage li {
  width: 100%;
  margin: 52px 0 0 0;
}
@media (min-width: 1024px) {
  #content .section-1 .hidden-stage li {
    margin: 50px 0;
  }
}
#content .section-1 .hidden-stage .container {
  -webkit-transform: translatez(0);
      -ms-transform: translatez(0);
          transform: translatez(0);
}
#content .section-1 .button-close {
  position: absolute;
  right: 9px;
  top: 45px;
  color: #fff;
  font: 12px/1 "UniversLTStdLight";
  text-transform: uppercase;
  z-index: 10;
  letter-spacing: 1px;
  text-align: center;
}
@media (min-width: 1024px) {
  #content .section-1 .button-close {
    right: 20px;
  }
}
@media (min-width: 1300px) {
  #content .section-1 .button-close {
    right: 100px;
  }
}
#content .section-1 .owl-item .container {
  width: auto;
}
@media (min-width: 768px) {
  #content .section-1 .owl-item .container {
    margin: 0 12em;
  }
}
@media (tablet-portrait: 0) {
  #content .section-1 .owl-item .container {
    margin: 0 12em;
  }
}
#content .section-1 .owl-dots {
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
  top: -9999em;
  left: -9999em;
}
#content .section-1 .owl-nav {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
}
@media (min-width: 1024px) {
  #content .section-1 .owl-nav {
    position: static;
  }
}
#content .section-1 .owl-prev,
#content .section-1 .owl-next {
  padding: 18px 0;
  margin: 0;
  border-radius: 0;
  width: 50%;
  text-align: center;
  letter-spacing: 1px;
  font: 14px/1 "UniversLTStdLight";
  color: #fff;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  #content .section-1 .owl-prev,
  #content .section-1 .owl-next {
    position: absolute;
    top: 50%;
    padding: 12px 10px;
    cursor: pointer;
    z-index: 90;
    text-align: center;
    background: none !important;
    width: auto;
  }
}
#content .section-1 .owl-prev i,
#content .section-1 .owl-next i {
  display: inline-block;
  width: 16px;
}
@media (min-width: 1024px) {
  #content .section-1 .owl-prev i,
  #content .section-1 .owl-next i {
    display: block;
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 50px;
    margin-left: -25px;
  }
}
@media (min-width: 1024px) {
  #content .section-1 .owl-prev span,
  #content .section-1 .owl-next span {
    display: block;
  }
}
#content .section-1 .owl-next {
  right: 0;
  background: #1eca97;
  float: right;
}
@media (min-width: 1024px) {
  #content .section-1 .owl-next {
    right: 10px;
  }
}
@media (min-width: 1300px) {
  #content .section-1 .owl-next {
    right: 10%;
  }
}
#content .section-1 .owl-next i {
  text-align: right;
  position: relative;
}
#content .section-1 .owl-next i:before {
  content: "\e602" !important;
  color: #FFF;
  font-weight: bold;
  text-shadow: 0px 1px 0px #FFF;
  font-size: 16px;
}
#content .section-1 .owl-next i:after {
  content: "";
  width: 14px;
  height: 2px;
  float: left;
  background-color: #FFF;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  left: 0;
}
@media (min-width: 1024px) {
  #content .section-1 .owl-next i {
    text-align: right;
    position: relative;
  }
  #content .section-1 .owl-next i:before {
    content: "\e602" !important;
    color: #1edca1;
    font-weight: bold;
    text-shadow: 0px 1px 0px #1edca1;
    font-size: 20px;
  }
  #content .section-1 .owl-next i:after {
    content: "";
    width: 40px;
    height: 2px;
    float: left;
    background-color: #1edca1;
    margin-top: -1px;
    position: absolute;
    top: 50%;
    left: 0;
  }
}
#content .section-1 .owl-prev {
  left: 0;
  background: #6facf3;
  float: left;
}
@media (min-width: 1024px) {
  #content .section-1 .owl-prev {
    margin-top: -20px;
    left: 10px;
  }
}
@media (min-width: 1300px) {
  #content .section-1 .owl-prev {
    left: 10%;
  }
}
#content .section-1 .owl-prev i {
  text-align: left;
  position: relative;
}
#content .section-1 .owl-prev i:before {
  content: "\e601" !important;
  color: #FFF;
  font-weight: bold;
  text-shadow: 0px 1px 0px #FFF;
  font-size: 16px;
}
#content .section-1 .owl-prev i:after {
  content: "";
  width: 14px;
  height: 2px;
  float: right;
  background-color: #FFF;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  right: 0;
}
@media (min-width: 1024px) {
  #content .section-1 .owl-prev i {
    text-align: left;
    position: relative;
    bottom: -35px;
  }
  #content .section-1 .owl-prev i:before {
    content: "\e601" !important;
    color: #1edca1;
    font-weight: bold;
    text-shadow: 0px 1px 0px #1edca1;
    font-size: 20px;
  }
  #content .section-1 .owl-prev i:after {
    content: "";
    width: 40px;
    height: 2px;
    float: right;
    background-color: #1edca1;
    margin-top: -1px;
    position: absolute;
    top: 50%;
    right: 0;
  }
}
#content .section-1.experience-opened {
  height: 842px;
}
@media (min-width: 1024px) {
  #content .section-1.experience-opened {
    height: auto;
  }
}
#content .section-1.experience-opened .hidden-stage {
  height: 100%;
  -webkit-transform: translatez(0);
      -ms-transform: translatez(0);
          transform: translatez(0);
}
#content .section-1.active .hidden-stage {
  opacity: 1;
}
#content .solar-boom {
  transition: height 0.2s ease-in-out;
  position: relative;
}
@media (min-width: 1024px) {
  #content .solar-boom {
    background: url(/a/pgs/images/clean-energy/assets/solar-bg.jpg) top left repeat-x;
    overflow: hidden;
    height: 500px;
    transition-delay: 0.1s;
  }
}
@media (min-width: 1230px) {
  #content .solar-boom {
    height: 615px;
  }
}
#content .solar-boom h2 {
  margin: 0;
}
#content .solar-boom h3 {
  font-family: "UniversLTW01-59UltraCn";
  font-size: 48px;
  margin: 0 0 16px 0;
}
#content .solar-boom h3 sup {
  font-size: 32px;
  position: relative;
  top: 4px;
}
#content .solar-boom h3 span {
  display: block;
  font-size: 25px;
  padding-top: 5px;
}
@media (min-width: 1230px) {
  #content .solar-boom h3 {
    margin-bottom: 30px;
  }
}
#content .solar-boom p {
  color: #323d50;
  margin: 0;
}
@media (min-width: 1024px) {
  #content .solar-boom p {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (min-width: 1230px) {
  #content .solar-boom p {
    font-size: 18px;
    line-height: 26px;
  }
}
#content .solar-boom p sup {
  font-size: 10px;
}
#content .solar-boom p.source {
  margin: 40px 0 0 0;
}
@media (min-width: 1024px) {
  #content .solar-boom p.source {
    width: 75%;
    margin-right: auto;
    margin-left: auto;
    line-height: 18px !important;
    font-size: 12px;
  }
}
#content .solar-boom p.blurb {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#3b465c+0,464660+44,444b5e+71,464f60+100 */
  background: #3b465c;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #3b465c 0%, #464660 44%, #444b5e 71%, #464f60 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3b465c', endColorstr='#464f60',GradientType=0 );
  /* IE6-9 */
  color: #FFF;
  text-align: center;
  padding: 22px;
  line-height: 22px;
  margin: 0 -15px;
}
@media (min-width: 1024px) {
  #content .solar-boom p.blurb {
    padding: 16px 10%;
    font-size: 13px;
    text-align: left;
    line-height: 18px;
    margin: 0;
  }
}
@media (min-width: 1230px) {
  #content .solar-boom p.blurb {
    font-size: 16px;
    line-height: 24px;
    padding-top: 26px;
    padding-bottom: 26px;
  }
}
#content .solar-boom .bg {
  display: block;
  height: 142px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  margin: 0 -15px;
}
@media (min-width: 1024px) {
  #content .solar-boom .bg {
    margin: 0;
  }
}
@media (min-width: 1230px) {
  #content .solar-boom .bg {
    width: auto;
    height: 220px;
  }
}
#content .solar-boom .btn {
  color: #323d50;
  border: 2px solid #323d50;
  font-size: 14px;
  font-family: "Univers LT W01 65 Bold";
  display: inline-block;
  text-align: center;
  padding: 20px 30px 18px;
  border-radius: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (min-width: 1024px) {
  #content .solar-boom ul {
    position: relative;
  }
  #content .solar-boom .blurb,
  #content .solar-boom .bg {
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
  }
  #content .solar-boom .solar-accordion-content div:not(.bg) {
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(300%);
        -ms-transform: translateY(300%);
            transform: translateY(300%);
  }
  #content .solar-boom .source {
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(400%);
        -ms-transform: translateY(400%);
            transform: translateY(400%);
  }
}
#content .solar-boom ul:first-child > li {
  text-align: center;
  height: 51px;
  overflow: hidden;
  transition: height 0.5s ease-in-out;
}
#content .solar-boom ul:first-child > li:nth-child(1) .solar-accordion-item {
  background: #45c596;
}
#content .solar-boom ul:first-child > li:nth-child(2) .solar-accordion-item {
  background: #34ba9e;
}
#content .solar-boom ul:first-child > li:nth-child(3) .solar-accordion-item {
  background: #1bae94;
}
#content .solar-boom ul:first-child > li:nth-child(4) .solar-accordion-item {
  background: #219a99;
}
#content .solar-boom ul:first-child > li:nth-child(5) .solar-accordion-item {
  background: #338d91;
}
#content .solar-boom ul:first-child > li:nth-child(2) .bg {
  background-image: url(/a/pgs/images/clean-energy/content/solar-available-everywhere.jpg);
}
#content .solar-boom ul:first-child > li:nth-child(3) .bg {
  background-image: url(/a/pgs/images/clean-energy/content/solar-energy-savings.jpg);
}
#content .solar-boom ul:first-child > li:nth-child(4) .bg {
  background-image: url(/a/pgs/images/clean-energy/content/solar-eliminate-carbon.jpg);
}
#content .solar-boom ul:first-child > li:nth-child(5) .bg {
  background-image: url(/a/pgs/images/clean-energy/content/solar-creating-jobs.jpg);
}
@media (min-width: 1024px) {
  #content .solar-boom ul:first-child > li {
    height: auto !important;
    text-align: left;
  }
}
#content .solar-boom .solar-accordion-item {
  color: #FFF;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  padding: 22px 15px 18px 15px;
  text-align: left;
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  transition: color 0.2s ease-in-out;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 1024px) {
  #content .solar-boom .solar-accordion-item {
    float: left;
    width: 50%;
    font-size: 18px;
    padding: 46px 0 36px 0;
    text-indent: 4%;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
  }
  #content .solar-boom .solar-accordion-item else {
    -webkit-font-smoothing: subpixel-antialiased;
    font-smoothing: subpixel-antialiased;
  }
}
@media (min-width: 1230px) {
  #content .solar-boom .solar-accordion-item {
    padding: 58px 0 45px 0;
  }
}
#content .solar-boom .solar-accordion-item [class*="icon-"] {
  float: right;
  position: relative;
  top: -6px;
  transition: all 0.2s ease-in-out;
  text-align: right;
  font-weight: bold;
}
#content .solar-boom .solar-accordion-item [class*="icon-"]:before {
  content: "\e800";
  font-size: 16px;
}
@media (min-width: 1024px) {
  #content .solar-boom .solar-accordion-item [class*="icon-"] {
    transition: none;
    margin-right: 15px;
    width: 50px;
    text-align: right;
    position: relative;
  }
  #content .solar-boom .solar-accordion-item [class*="icon-"]:before {
    content: "\e602" !important;
    color: #FFF;
    font-weight: bold;
    text-shadow: 0px 1px 0px #FFF;
    font-size: 16px;
  }
  #content .solar-boom .solar-accordion-item [class*="icon-"]:after {
    content: "";
    width: 30px;
    height: 2px;
    float: left;
    background-color: #FFF;
    margin-top: -1px;
    position: absolute;
    top: 50%;
    left: 0;
  }
  #content .solar-boom .solar-accordion-item [class*="icon-"]:after {
    margin-top: 0;
  }
}
@media (min-width: 1230px) {
  #content .solar-boom .solar-accordion-item [class*="icon-"] {
    margin-right: 50px;
    text-align: right;
    position: relative;
  }
  #content .solar-boom .solar-accordion-item [class*="icon-"]:before {
    content: "\e602" !important;
    color: #FFF;
    font-weight: bold;
    text-shadow: 0px 1px 0px #FFF;
    font-size: 20px;
  }
  #content .solar-boom .solar-accordion-item [class*="icon-"]:after {
    content: "";
    width: 30px;
    height: 2px;
    float: left;
    background-color: #FFF;
    margin-top: -1px;
    position: absolute;
    top: 50%;
    left: 0;
  }
  #content .solar-boom .solar-accordion-item [class*="icon-"]:after {
    margin-top: 0;
  }
}
#content .solar-boom .solar-accordion-content {
  background: url(/a/pgs/images/clean-energy/assets/solar-bg.jpg) bottom left repeat-x;
  padding: 0 15px 40px 15px;
}
@media (min-width: 1024px) {
  #content .solar-boom .solar-accordion-content {
    position: absolute;
    width: 50%;
    top: 0;
    right: 0;
    padding: 0;
    z-index: 0;
    height: 500px;
    background: none;
    visibility: hidden;
  }
}
#content .solar-boom .solar-accordion-content div:not(.bg) {
  margin: 42px 0 0 0;
}
@media (min-width: 1024px) {
  #content .solar-boom .solar-accordion-content div:not(.bg) {
    width: 75%;
    position: relative;
    padding: 0 10px;
    margin: 36px auto 0 auto;
  }
  #content .solar-boom .solar-accordion-content div:not(.bg):before {
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    content: "";
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#262a6c+0,5ad2f2+100 */
    background: #262a6c;
    /* Old browsers */
    /* FF3.6+ */
    /* Chrome,Safari4+ */
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background: linear-gradient(to bottom, #262a6c 0%, #5ad2f2 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#262a6c', endColorstr='#5ad2f2',GradientType=0 );
    /* IE6-9 */
  }
}
@media (min-width: 1230px) {
  #content .solar-boom .solar-accordion-content div:not(.bg) {
    padding: 0 20px;
  }
}
#content .solar-boom .solar-accordion-content ul {
  list-style-type: initial;
}
#content .solar-boom .solar-accordion-content ul li {
  text-align: left;
  list-style-position: inside;
  margin-top: 16px;
}
@media (min-width: 1024px) {
  #content .solar-boom .solar-accordion-content ul li {
    margin-top: 12px;
    font-size: 14px;
  }
}
@media (min-width: 1230px) {
  #content .solar-boom .solar-accordion-content ul li {
    font-size: 18px;
  }
}
#content .solar-boom ul:first-child > li.active .solar-accordion-item {
  background: #dfed33;
  box-shadow: none;
  color: #717c00;
}
#content .solar-boom ul:first-child > li.active .solar-accordion-item [class*="icon-"] {
  position: relative;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  left: -2px;
}
@media (min-width: 1024px) {
  #content .solar-boom ul:first-child > li.active .solar-accordion-item [class*="icon-"] {
    text-align: right;
    position: relative;
    left: 0;
  }
  #content .solar-boom ul:first-child > li.active .solar-accordion-item [class*="icon-"]:before {
    content: "\e602" !important;
    color: #717c00;
    font-weight: bold;
    text-shadow: 0px 1px 0px #717c00;
    font-size: none;
  }
  #content .solar-boom ul:first-child > li.active .solar-accordion-item [class*="icon-"]:after {
    content: "";
    width: 30px;
    height: 2px;
    float: left;
    background-color: #717c00;
    margin-top: -1px;
    position: absolute;
    top: 50%;
    left: 0;
  }
  #content .solar-boom ul:first-child > li.active .solar-accordion-item [class*="icon-"]:after {
    margin-top: 0;
  }
}
#content .solar-boom ul:first-child > li.active .solar-accordion-content {
  visibility: visible;
}
@media (min-width: 1024px) {
  #content .solar-boom ul:first-child > li.active .bg,
  #content .solar-boom ul:first-child > li.active .blurb {
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
            transform: translateX(0%);
  }
  #content .solar-boom ul:first-child > li.active .solar-accordion-content div:not(.bg),
  #content .solar-boom ul:first-child > li.active .source {
    -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@media (min-width: 1024px) {
  #content .solar-boom .solar-0 h5 {
    margin-bottom: 0;
  }
}
#content .solar-boom .solar-0 .solar-accordion-content {
  padding-top: 40px;
}
#content .solar-boom .solar-0 .solar-accordion-content div {
  margin-top: 0;
}
#content .solar-boom .solar-0 .solar-accordion-content div:before {
  display: none;
}
@media (min-width: 1024px) {
  #content .solar-boom .solar-0 .solar-accordion-content {
    height: 460px;
  }
}
@media (min-width: 1230px) {
  #content .solar-boom .solar-0 .solar-accordion-content {
    padding-top: 70px;
  }
}
#content .solar-boom .solar-0 h2 {
  color: #323d50;
}
@media (min-width: 1024px) {
  #content .solar-boom .solar-0 h2 {
    line-height: 90px;
  }
}
#content .solar-boom .solar-0 p {
  margin: 30px 0;
}
@media (min-width: 1024px) {
  #content .solar-boom .solar-0 p {
    font-size: 16px;
  }
}
#content .solar-boom .solar-2 h3 {
  margin: 0;
}
#content .solar-boom .solar-2 .icon-longarrow {
  font-size: 16px;
  position: relative;
  top: -10px;
}
#content .solar-boom .solar-2 h3 + p {
  font-size: 11px;
}
@media (min-width: 1024px) {
  #content .solar-boom .solar-2 h3 + p {
    line-height: normal;
    margin-top: 10px;
  }
}
@media (min-width: 1024px) {
  #content .solar-boom .solar-2 p:first-child {
    line-height: normal;
  }
}
@media (min-width: 1024px) {
  #content .solar-boom .solar-3 h3 {
    margin-bottom: 5px;
  }
}
@media (min-width: 1230px) {
  #content .solar-boom .solar-3 h3 + p {
    margin: 10px 0 25px 0;
  }
}
#content .solar-boom.chart-opened {
  overflow: hidden;
}
@media (min-width: 1024px) {
  #content .solar-boom.chart-opened {
    height: 733px;
  }
}
#content .solar-boom.chart-opened .solar-chart-container {
  height: 100%;
}
#content .solar-chart-container {
  background: #262e3f;
  height: 0;
  overflow: hidden;
  transition: height 0.2s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
@media (min-width: 1024px) {
  #content .solar-chart-container {
    transition: all 0.4s ease-in-out;
  }
}
#content .solar-chart-container .container {
  padding: 40px 10px;
  position: relative;
}
@media (min-width: 1024px) {
  #content .solar-chart-container .container {
    padding: 65px 25px;
    text-align: center;
  }
}
@media (min-width: 1230px) {
  #content .solar-chart-container .container {
    padding-right: 0;
    padding-left: 0;
  }
}
#content .solar-chart-container h3 {
  text-transform: inherit;
  color: #FFF;
  font-family: "Univers LT W01 65 Bold";
  font-size: 21px;
  line-height: 23px;
  position: relative;
}
@media (min-width: 1024px) {
  #content .solar-chart-container h3 {
    font-size: 34px;
    line-height: 36px;
    margin-bottom: 50px;
    display: inline-block;
  }
}
#content .solar-chart-container h3:after {
  content: "";
  width: 22px;
  height: 3px;
  background: #1edca1;
  position: absolute;
  bottom: -10px;
  left: 0;
}
@media (min-width: 1024px) {
  #content .solar-chart-container h3:after {
    width: 45px;
    height: 5px;
    bottom: -12px;
  }
}
#content .solar-chart-extra {
  text-align: center;
  margin-top: 23px;
  font-family: "Univers LT W01 55 Roman";
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
#content .solar-chart-extra else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
@media (min-width: 1024px) {
  #content .solar-chart-extra {
    padding: 0 15px 0 20px;
    max-width: 815px;
    margin-right: auto;
    margin-left: auto;
    font-size: 14px;
    margin-top: 45px;
    overflow: auto;
  }
}
#content .solar-chart-extra p.source {
  color: rgba(254, 255, 255, 0.3);
  padding: 0 25px;
  transition: none;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  width: auto;
  margin: 23px 0 0 0;
}
@media (min-width: 1024px) {
  #content .solar-chart-extra p.source {
    float: right;
    margin: 0;
    padding: 0;
    font-size: inherit;
  }
}
#content .solar-chart-extra .note {
  color: #FFF;
  font-size: 12px;
}
@media (min-width: 1024px) {
  #content .solar-chart-extra .note {
    float: left;
    font-size: inherit;
  }
}
#content .solar-chart {
  height: 450px;
  min-width: 262px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  #content .solar-chart {
    max-width: 815px;
    height: 450px;
    width: 100%;
  }
}
#content .close-chart {
  position: absolute;
  top: 15px;
  color: #FFF;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 2px;
  right: 10px;
  z-index: 1;
}
@media (min-width: 1024px) {
  #content .close-chart {
    text-align: center;
  }
}
#content .highcharts-tooltip > span {
  background: #FFF;
  border-radius: 3px;
  padding: 8px 0;
  width: 85px;
  color: #FFF !important;
  text-align: center;
}
@media (min-width: 1024px) {
  #content .highcharts-tooltip > span {
    width: 105px;
  }
}
#content .highcharts-tooltip > span:after {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-right-color: #ffffff;
  border-width: 5px;
  margin-top: -5px;
}
@media (min-width: 1024px) {
  #content .highcharts-tooltip > span:after {
    top: 100%;
    left: 50%;
    right: auto;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #ffffff;
    border-width: 10px;
    margin-left: -10px;
  }
}
#content .highcharts-tooltip > span br {
  display: none;
}
#content .highcharts-tooltip > span span:first-child {
  font-family: "Univers LT W01 65 Bold";
  color: #333;
  display: block;
  font-size: 13px !important;
}
@media (min-width: 1024px) {
  #content .highcharts-tooltip > span span:first-child {
    font-size: 16px !important;
  }
}
#content .highcharts-tooltip > span b {
  font-family: "UniversLTW01-57Condense 723821";
  color: #333;
  font-size: 13px;
  display: block;
}
@media (min-width: 1024px) {
  #content .highcharts-tooltip > span b {
    font-size: 16px;
  }
}
#content .highcharts-tooltip > span b:after {
  content: " GW";
}
#content .highcharts-axis-labels span,
#content .highcharts-axis span {
  color: #FFF !important;
  font-size: 13px !important;
  font-family: "Univers LT W01 65 Bold" !important;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
#content .highcharts-axis-labels span else,
#content .highcharts-axis span else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
@media (min-width: 1024px) {
  #content .highcharts-axis-labels span,
  #content .highcharts-axis span {
    font-size: 16px !important;
  }
}
#content .highcharts-yaxis-labels span {
  line-height: 13px;
}
@media (min-width: 1024px) {
  #content .highcharts-yaxis-labels span {
    line-height: 23px;
    padding-right: 5px;
  }
}
#content .highcharts-yaxis-labels span:after {
  content: "";
  position: absolute;
  border: 1px solid #2fb9ec;
  top: -10px;
  left: 50%;
  width: 3px;
  height: 3px;
  margin-left: -2.5px;
}
@media (min-width: 1024px) {
  #content .highcharts-yaxis-labels span:after {
    width: 4px;
    height: 4px;
    top: 50%;
    right: -12px;
    left: auto;
    margin-top: -3px;
    margin-left: 0;
  }
}
#content ul.related-content-list {
  padding-left: 0 !important;
  text-indent: 0 !important;
  margin-bottom: 50px;
}
#content ul.related-content-list .related-content-item figure img {
    max-width: 246px;
}
@media (min-width: 768px) {
  #content ul.related-content-list {
    font-size: 0;
    *zoom: 1;
    width: auto;
    margin-left: -30px;
    list-style-type: none;
  }
  #content ul.related-content-list:before, #content ul.related-content-list:after {
    content: " ";
    display: table;
  }
  #content ul.related-content-list:after {
    clear: both;
  }
  #content ul.related-content-list .related-content-item {
    display: inline-block;
    width: 25%;
    padding-left: 30px;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    background-clip: content-box;
  }
}
@media (tablet-portrait: 0) {
  #content ul.related-content-list {
    font-size: 0;
    *zoom: 1;
    width: auto;
    margin-left: -30px;
    list-style-type: none;
  }
  #content ul.related-content-list:before, #content ul.related-content-list:after {
    content: " ";
    display: table;
  }
  #content ul.related-content-list:after {
    clear: both;
  }
  #content ul.related-content-list .related-content-item {
    display: inline-block;
    width: 25%;
    padding-left: 30px;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    background-clip: content-box;
  }
}
@media (min-width: 1230px) {
  #content ul.related-content-list {
    *zoom: 1;
    width: auto;
    margin-left: -52px;
    list-style-type: none;
  }
  #content ul.related-content-list:before, #content ul.related-content-list:after {
    content: " ";
    display: table;
  }
  #content ul.related-content-list:after {
    clear: both;
  }
  #content ul.related-content-list .related-content-item {
    display: inline-block;
    width: 25%;
    padding-left: 52px;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    background-clip: content-box;
  }
}
#content ul.related-content-list > *:last-child {
  padding-right: 0;
}
#content .related-content-item {
  vertical-align: top;
  position: relative;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  #content .related-content-item {
    font-size: 16px;
  }
}
@media (tablet-portrait: 0) {
  #content .related-content-item {
    font-size: 16px;
  }
}
@media (min-width: 1230px) {
  #content .related-content-item {
    margin-bottom: 90px;
  }
  #content .related-content-item:last-child {
    margin-bottom: 108px;
  }
}
#content .related-content-item .related-content-heading {
  margin: 0 0 18px;
  height: 96px;
  overflow: hidden;
}
@media (min-width: 768px) {
  #content .related-content-item .related-content-heading {
    height: 142px;
  }
}
@media (tablet-portrait: 0) {
  #content .related-content-item .related-content-heading {
    height: 142px;
  }
}
@media (min-width: 1230px) {
  #content .related-content-item .related-content-heading {
    height: 118px;
    margin: 0;
  }
}
#content .related-content-item h6,
#content .related-content-item h6 a {
  font: italic 16px/1.1 "sabonroman";
  color: #58575a;
  display: block;
  margin: 0 0 5px;
}
#content .related-content-item h5,
#content .related-content-item h5 a {
  font: 20px/1.2 "Univers LT W01 65 Bold";
  letter-spacing: -1px;
  color: #000000;
}
#content .related-content-item p {
  font-family: "Univers LT W01 55 Roman";
  background: none;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  margin: 0 0 32px;
  font-size: 14px;
  line-height: 16px;
  color: #1c1c1c;
}
#content .related-content-item p else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
#content .related-content-item p em {
  font-family: "UniversLTW01-55Oblique";
}
#content .related-content-item p strong {
  font-family: "Univers LT W01 65 Bold";
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
#content .related-content-item p strong else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
#content .related-content-item img {
  width: 100%;
  display: block;
}
@media (min-width: 1230px) {
  #content .related-content-item img {
    width: auto;
  }
}
#content .related-content-item .figure + .btn {
  margin-top: 20px;
}
#content .related-content-item time + .figure {
  display: none;
}
#content .related-content-item.video figure:before {
  content: "\e601";
  font-family: "content-pages";
  font-size: 30px;
  color: #6f9bc7;
  display: block;
  width: 45px;
  line-height: 47px;
  text-align: center;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
#content .related-content-item.video figure:before else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
#content .related-content-item.reverse-img {
  padding-bottom: 0;
  padding-top: 56%;
}
#content .related-content-item.reverse-img .related-content-heading {
  margin-top: 35px;
}
@media (min-width: 768px) {
  #content .related-content-item.reverse-img .related-content-heading {
    margin-top: 39px;
  }
}
@media (tablet-portrait: 0) {
  #content .related-content-item.reverse-img .related-content-heading {
    margin-top: 39px;
  }
}
#content .related-content-item.reverse-img p {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  #content .related-content-item.reverse-img {
    padding-top: 12.4%;
  }
}
@media (tablet-portrait: 0) {
  #content .related-content-item.reverse-img {
    padding-top: 12.4%;
  }
}
@media (min-width: 1230px) {
  #content .related-content-item.reverse-img {
    padding-top: 11%;
  }
}
#content .related-content-item.reverse-img .figure {
  bottom: auto !important;
  top: 0;
  width: 100%;
  position: absolute;
}
@media (min-width: 768px) {
  #content .related-content-item.reverse-img .figure {
    width: auto;
  }
}
@media (tablet-portrait: 0) {
  #content .related-content-item.reverse-img .figure {
    width: auto;
  }
}
#content .related-content-item.reverse-img .figure:before {
  bottom: auto;
  top: 80%;
}
@media (min-width: 768px) {
  #content .related-content-item.reverse-img .figure:before {
    top: 65%;
  }
}
@media (tablet-portrait: 0) {
  #content .related-content-item.reverse-img .figure:before {
    top: 65%;
  }
}
@media (min-width: 1024px) {
  #content .related-content-item.reverse-img .figure:before {
    top: 66%;
  }
}
#content .related-content-item.external-link h6 a:after {
  content: "\e602";
  font-family: "content-pages";
  font-style: normal;
  float: right;
  color: #cccccc;
}
#content .related-content-item.no-spacing {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}
#content [data-equalizer] .related-content-item .figure {
  bottom: 0;
  position: absolute;
}
#content .related-content {
  margin: 50px 0 19px 0;
}
@media (min-width: 768px) {
  #content .related-content {
    margin: 70px 0 45px 0;
  }
}
@media (tablet-portrait: 0) {
  #content .related-content {
    margin: 70px 0 45px 0;
  }
}
@media (min-width: 1024px) {
  #content .related-content {
    margin: 80px 0 60px 0;
  }
}
@media (min-width: 1230px) {
  #content .related-content {
    margin: 100px 0 90px 0;
  }
}
#content .related-content h5 {
  text-transform: none;
  margin-bottom: 0;
}
#content .related-content .related-content-item {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  #content .related-content .related-content-item {
    margin-bottom: 0;
  }
}
@media (tablet-portrait: 0) {
  #content .related-content .related-content-item {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  #content .related-content .container {
    border: 1px solid #d8d8d8;
    border-width: 1px 0;
    padding: 30px 0;
    margin: 0 25px;
  }
}
@media (tablet-portrait: 0) {
  #content .related-content .container {
    border: 1px solid #d8d8d8;
    border-width: 1px 0;
    padding: 30px 0;
    margin: 0 25px;
  }
}
@media (min-width: 1024px) {
  #content .related-content .container {
    padding: 40px 0;
  }
}
@media (min-width: 1230px) {
  #content .related-content .container {
    margin: 0 auto;
  }
}
#content .related-content .related-content-heading {
  height: 100px;
}
@media (tablet-portrait: 0) {
  #content .related-content .related-content-heading {
    height: 100px;
  }
}
@media (min-width: 1230px) {
  #content .related-content .related-content-heading {
    height: 100px;
  }
}
#content .related-content ul {
  margin-bottom: 0;
}
#content .related-content .related-content-title {
  font: 14px/1.1 "UniversLTW01-67BoldCn";
  color: #999999;
  text-transform: uppercase;
  margin: 0 0 25px;
}
#content .related-content .related-content-title:after {
  content: '';
  display: block;
  margin-top: 0.625rem;
  width: 34px;
  height: 3px;
  background-color: #6f9bc7;
}
#content .related-content .owl-stage-outer {
  margin: 0 0 10px;
}
#content .related-content .owl-nav {
  display: none;
}
#content .related-content .owl-dots .owl-dot span {
  background: #d1d5d9;
}
#content .related-content .owl-dots .owl-dot.active span {
  background: #539be2;
}
#content .inside-the-home {
  background: #364158;
  padding: 58px 0;
  color: #FFF;
  text-align: center;
}
@media (min-width: 1024px) {
  #content .inside-the-home {
    position: relative;
  }
}
@media (min-width: 1230px) {
  #content .inside-the-home {
    padding: 64px 0;
  }
}
#content .inside-the-home h2 {
  margin-bottom: 33px;
}
#content .inside-the-home img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
#content .inside-the-home .text-content {
  font-size: 16px;
}
@media (min-width: 1024px) {
  #content .inside-the-home .text-content {
    float: left;
    text-align: left;
    width: 54%;
    font-size: 18px;
  }
}
@media (min-width: 1230px) {
  #content .inside-the-home .text-content {
    width: 512px;
  }
  #content .inside-the-home .text-content p {
    max-width: 465px;
  }
}
#content .inside-the-home .text-content h2, #content .inside-the-home .text-content p {
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
#content .inside-the-home .text-content h2 else, #content .inside-the-home .text-content p else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
#content .inside-the-home .icon-SolarPanels {
  position: relative;
}
#content .inside-the-home .icon-SolarPanels:before {
  opacity: 0.5;
}
#content .inside-the-home .icon-SolarPanels:after {
  content: "";
  display: block;
  border-radius: 20px;
  background: #5dabdd;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -5px;
  margin-top: -5px;
}
#content .house-diagram {
  margin: 0 -15px;
  padding: 15px 0 0 0;
  max-width: 47em;
}
@media (min-width: 768px) {
  #content .house-diagram {
    margin: 0 auto;
  }
}
@media (tablet-portrait: 0) {
  #content .house-diagram {
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  #content .house-diagram {
    position: absolute;
    bottom: 7%;
    right: 1%;
    margin: 0;
    -webkit-animation-name: floating;
            animation-name: floating;
    -webkit-animation-duration: 3s;
            animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
}
@media (min-width: 1230px) {
  #content .house-diagram {
    max-width: none;
    position: static;
    float: left;
    margin-left: -36px;
    padding: 12% 0 0 0;
  }
}
#content .house-diagram > div {
  display: none;
  position: relative;
}
#content .house-diagram .map-link {
  position: absolute;
  text-indent: -9999em;
  width: 5%;
  height: 5%;
  padding: 6px;
  background: rgba(255, 255, 255, 0);
  color: transparent;
  z-index: 1;
}
#content .house-diagram .map-link:nth-child(2) {
  top: 10%;
  left: 50%;
  margin-left: 4%;
}
#content .house-diagram .map-link:nth-child(3) {
  bottom: 10%;
  left: 25%;
  margin-left: -8%;
  margin-bottom: 10%;
}
#content .house-diagram .map-link:nth-child(4) {
  top: 50%;
  margin-top: -12%;
  left: 25%;
  margin-left: 12%;
}
#content .house-diagram .map-link:nth-child(5) {
  bottom: 50%;
  left: 50%;
  margin-left: -7%;
  margin-bottom: -13%;
}
#content .house-diagram .map-link:nth-child(6) {
  bottom: 50%;
  margin-bottom: -7%;
  right: 15%;
}
#content .house-diagram .map-link:nth-child(7) {
  bottom: 50%;
  margin-bottom: -6%;
  right: 5%;
}
#content .house-diagram .map-link.inactive {
  display: none;
}
#content .house-diagram .active {
  display: block;
}
#content .house-diagram .active .feature-indicator {
  display: block;
}
#content .inside-the-home-features {
  text-align: left;
  margin-top: 20px;
  font-family: "Univers LT W01 55 Roman";
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
#content .inside-the-home-features else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
@media (min-width: 768px) {
  #content .inside-the-home-features {
    font-size: 18px;
    padding-top: 40px;
    margin-top: 40px;
  }
}
@media (tablet-portrait: 0) {
  #content .inside-the-home-features {
    font-size: 18px;
    padding-top: 40px;
    margin-top: 40px;
  }
}
@media (min-width: 1024px) {
  #content .inside-the-home-features {
    float: none;
    width: 20em;
  }
}
@media (min-width: 1230px) {
  #content .inside-the-home-features {
    padding-top: 0;
  }
}
#content .inside-the-home-features a {
  color: #FFF;
  display: block;
}
#content .inside-the-home-features li {
  margin-bottom: 20px;
  position: relative;
}
#content .inside-the-home-features li:last-child {
  margin-bottom: 0;
}
#content .inside-the-home-features i {
  border-radius: 40px;
  border: 1px solid #FFF;
  box-shadow: 0 0 0 1px transparent;
  font-size: 20px;
  width: 20px;
  display: table-cell;
  padding: 8px;
  text-align: center;
  color: #5dabdd;
}
#content .inside-the-home-features i + div {
  display: table-cell;
  vertical-align: middle;
  padding: 0 0 0 14px;
}
#content .inside-the-home-features .active i {
  border-color: #47d1bb;
  box-shadow: 0 0 0 1px #47d1bb;
  color: #47d1bb;
}
#content .inside-the-home-features .active i:after {
  background: #47d1bb;
}
#content .inside-the-home-features .active .feature-tooltip {
  display: block;
  z-index: 1;
}
#content .inside-the-home-features li:last-child .feature-tooltip,
#content .inside-the-home-features li:nth-child(5) .feature-tooltip {
  bottom: 0;
  top: auto;
}
#content .feature-indicator {
  position: absolute;
  display: none;
}
#content .feature-indicator div:not(.pulse) {
  border: 2px solid #47d1bb;
  color: #47d1bb;
  border-radius: 40px;
  font-size: 20px;
  padding: 6px 0;
  text-align: center;
  line-height: 0;
  width: 34px;
  position: relative;
}
#content .feature-indicator .pulse {
  border: 2px solid rgba(71, 209, 187, 0.4);
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 40px;
  top: 50%;
  left: 50%;
  margin-left: -12px;
  margin-top: -12px;
  -webkit-animation: pulse 2s ease-in-out;
          animation: pulse 2s ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
#content .feature-indicator i {
  border-radius: 40px;
  border: 1px solid transparent;
  width: 20px;
  height: 20px;
  display: inline-block;
}
#content .feature-indicator i:before {
  z-index: 1;
  position: relative;
}
#content .feature-indicator i:after {
  content: "";
  border-radius: 40px;
  position: absolute;
  background: rgba(70, 78, 94, 0.4);
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0.75);
      -ms-transform: scale(0.75);
          transform: scale(0.75);
}
#content .feature-indicator i.icon-SolarPanels:after {
  background: #47d1bb;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  margin-top: -6px;
}
#content .feature-indicator i.icon-electric:after, #content .feature-indicator i.icon-EnergyStorage:after {
  background: rgba(255, 255, 255, 0.4);
}
#content .feature-indicator:after {
  content: "";
  width: 72%;
  height: 1px;
  position: absolute;
  border: 0px dashed #4286c3;
  border-top-width: 1px;
  top: 50%;
  margin-top: -2px;
  right: 41px;
}
#content .solar-panels .feature-indicator {
  top: 38px;
  right: 0;
  width: 38%;
}
@media (min-width: 768px) {
  #content .solar-panels .feature-indicator {
    top: 90px;
  }
}
@media (tablet-portrait: 0) {
  #content .solar-panels .feature-indicator {
    top: 90px;
  }
}
@media (min-width: 1230px) {
  #content .solar-panels .feature-indicator {
    width: auto;
    height: 30%;
    top: -40px;
    right: auto;
    left: 50%;
  }
  #content .solar-panels .feature-indicator:after {
    height: 72%;
    width: 1px;
    border-top-width: 0;
    border-left-width: 1px;
    left: 50%;
    right: auto;
    top: 41px;
  }
}
#content .solar-panels .feature-indicator div {
  float: right;
}
#content .geothermal-heating .feature-indicator {
  bottom: -20px;
  right: 0;
  width: 38%;
}
@media (min-width: 768px) {
  #content .geothermal-heating .feature-indicator {
    bottom: -10px;
  }
}
@media (tablet-portrait: 0) {
  #content .geothermal-heating .feature-indicator {
    bottom: -10px;
  }
}
@media (min-width: 1230px) {
  #content .geothermal-heating .feature-indicator {
    bottom: -105px;
    right: auto;
    left: 50%;
    width: 38px;
    height: 24%;
  }
  #content .geothermal-heating .feature-indicator:after {
    height: 45%;
    width: 1px;
    border-top-width: 0;
    border-left-width: 1px;
    left: 50%;
    right: auto;
    top: 41px;
  }
  #content .geothermal-heating .feature-indicator .pulse {
    left: 50%;
  }
}
#content .geothermal-heating .feature-indicator div {
  float: right;
}
@media (min-width: 1230px) {
  #content .geothermal-heating .feature-indicator div {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
#content .smart-controllers .feature-indicator {
  top: -15px;
  left: 50%;
  margin-left: -47px;
  height: 46%;
}
@media (min-width: 768px) {
  #content .smart-controllers .feature-indicator {
    margin-left: -60px;
  }
}
@media (tablet-portrait: 0) {
  #content .smart-controllers .feature-indicator {
    margin-left: -60px;
  }
}
@media (min-width: 1024px) {
  #content .smart-controllers .feature-indicator {
    top: 10px;
  }
}
@media (min-width: 1230px) {
  #content .smart-controllers .feature-indicator {
    top: -20px;
    height: 53%;
  }
}
#content .smart-controllers .feature-indicator:after {
  height: 72%;
  width: 1px;
  border-top-width: 0;
  border-left-width: 1px;
  left: 50%;
  right: auto;
  top: 41px;
}
#content .energy-efficient .feature-indicator {
  top: 0px;
  left: 50%;
  margin-left: -50px;
  height: 65%;
}
@media (min-width: 768px) {
  #content .energy-efficient .feature-indicator {
    margin-left: -65px;
  }
}
@media (tablet-portrait: 0) {
  #content .energy-efficient .feature-indicator {
    margin-left: -65px;
  }
}
@media (min-width: 1024px) {
  #content .energy-efficient .feature-indicator {
    top: 10px;
  }
}
@media (min-width: 1230px) {
  #content .energy-efficient .feature-indicator {
    margin-left: -72px;
  }
}
#content .energy-efficient .feature-indicator:after {
  height: 72%;
  width: 1px;
  border-top-width: 0;
  border-left-width: 1px;
  left: 50%;
  right: auto;
  top: 41px;
}
#content .electric-vehicle .feature-indicator {
  top: 50%;
  right: 25%;
  margin-right: -40px;
  height: 25%;
  margin-top: -20px;
}
@media (min-width: 768px) {
  #content .electric-vehicle .feature-indicator {
    margin-top: -10px;
  }
}
@media (tablet-portrait: 0) {
  #content .electric-vehicle .feature-indicator {
    margin-top: -10px;
  }
}
@media (min-width: 1230px) {
  #content .electric-vehicle .feature-indicator {
    margin-right: -50px;
  }
}
#content .electric-vehicle .feature-indicator:after {
  height: 72%;
  width: 1px;
  border-top-width: 0;
  border-left-width: 1px;
  left: 50%;
  right: auto;
  top: 41px;
}
#content .energy-storage .feature-indicator {
  top: 50%;
  right: 25%;
  margin-right: -78px;
  height: 25%;
  margin-top: -20px;
}
@media (min-width: 768px) {
  #content .energy-storage .feature-indicator {
    margin-right: -95px;
  }
}
@media (tablet-portrait: 0) {
  #content .energy-storage .feature-indicator {
    margin-right: -95px;
  }
}
@media (min-width: 1024px) {
  #content .energy-storage .feature-indicator {
    margin-right: -100px;
    margin-top: -10px;
  }
}
@media (min-width: 1230px) {
  #content .energy-storage .feature-indicator {
    margin-right: -110px;
  }
}
#content .energy-storage .feature-indicator:after {
  height: 72%;
  width: 1px;
  border-top-width: 0;
  border-left-width: 1px;
  left: 50%;
  right: auto;
  top: 41px;
}
#content .feature-tooltip {
  position: absolute;
  top: 0;
  bottom: auto;
  left: 52px;
  background: #34ba9e;
  padding: 14px;
  border-radius: 10px;
  display: none;
}
#content .feature-tooltip h4 {
  color: #3d4b69;
  font-family: "Univers LT W01 65 Bold";
}
@media (min-width: 1230px) {
  #content .feature-tooltip h4 {
    font-size: 16px;
  }
}
#content .feature-tooltip p {
  margin: 5px 0 0 0;
  line-height: 20px;
}
@media (min-width: 1024px) {
  #content .feature-tooltip p {
    font-size: 16px;
  }
}
#content .financing-future {
  background: url(/a/pgs/images/clean-energy/assets/finance-bg.jpg) top left no-repeat;
  background-size: cover;
  color: #FFF;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  font-size: 16px;
}
@media (min-width: 1024px) {
  #content .financing-future {
    padding: 120px 0;
  }
}
#content .financing-future .overlay {
  background: #000;
  opacity: 0;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  transition: opacity 0.5s ease-in-out;
}
#content .financing-future h4 {
  font-size: inherit;
  font-family: "Univers LT W01 65 Bold";
  margin: 41px 0 12px 0;
}
#content .financing-future div:first-child > header {
  text-align: center;
  margin: 0;
  /*
          @include breakpoint("desktop") {
              width: 90%;
              margin: 0 auto;
          } */
}
#content .financing-future div:first-child > header p {
  margin: 30px 0 0 0;
}
@media (min-width: 768px) {
  #content .financing-future div:first-child > header p {
    font-size: 22px;
  }
}
@media (tablet-portrait: 0) {
  #content .financing-future div:first-child > header p {
    font-size: 22px;
  }
}
#content .financing-future.active-yieldcos .finance-pagination a {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#9b4872+0,904773+13,724374+36,684277+49,68447f+64,754a8f+88,794c95+100 */
  background: #9b4872;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #9b4872 0%, #904773 13%, #724374 36%, #684277 49%, #68447f 64%, #754a8f 88%, #794c95 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9b4872', endColorstr='#794c95',GradientType=0 );
  /* IE6-9 */
}
#content .financing-future.active-yieldcos .finance-pagination a:after {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-left: 5px;
}
#content .financing-future.active-yieldcos .finance-pagination a:before {
  display: none;
}
#content .financing-future.active-securitization .finance-pagination a {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#4285dd+0,4385dd+7,4c8ace+27,4e8dcd+36,4d8ed2+42,4490e9+59,4391eb+68,4593e6+74,4d95cf+92,4e96cd+100 */
  background: #4285dd;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #4285dd 0%, #4385dd 7%, #4c8ace 27%, #4e8dcd 36%, #4d8ed2 42%, #4490e9 59%, #4391eb 68%, #4593e6 74%, #4d95cf 92%, #4e96cd 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4285dd', endColorstr='#4e96cd',GradientType=0 );
  /* IE6-9 */
}
#content .financing-future.active-securitization .finance-pagination a:before {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  margin-right: 5px;
}
#content .financing-future.active-securitization .finance-pagination a:after {
  display: none;
}
#content .landing-section {
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
#content .landing-section else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
@media (min-width: 1024px) {
  #content .landing-section {
    width: 930px;
  }
}
#content .landing-section .col {
  font-size: 14px;
}
@media (min-width: 1024px) {
  #content .landing-section .col {
    float: left;
    text-align: left;
    font-size: 18px;
    width: 47%;
  }
}
@media (min-width: 1230px) {
  #content .landing-section .col {
    max-width: 428px;
  }
}
@media (min-width: 1024px) {
  #content .landing-section .col:last-child {
    float: right;
    padding: 26px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 52px;
    width: 46%;
  }
}
@media (min-width: 1230px) {
  #content .landing-section .col:last-child {
    margin-left: 40px;
    float: left;
  }
}
#content .landing-section .col > div {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 18px;
  margin: 33px -10px 0 -10px;
  position: relative;
}
@media (min-width: 1024px) {
  #content .landing-section .col > div {
    margin: 0;
    padding: 0;
    border: 0;
  }
}
#content .landing-section .col > div:after {
  content: "";
  height: 14px;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  bottom: -14px;
  left: 50%;
}
@media (min-width: 1024px) {
  #content .landing-section .col > div:after {
    display: none;
  }
}
#content .landing-section .col > div p {
  margin: 0;
}
#content .landing-section .col > div h4 {
  margin-top: 0;
}
#content .landing-section .finance-nav {
  margin: 14px -25px 0 -25px;
  text-align: center;
  padding: 0 8px;
}
@media (min-width: 1024px) {
  #content .landing-section .finance-nav {
    padding: 0;
    margin: 30px 0 0 0;
    transition: all 0.2s ease-in-out;
  }
}
#content .landing-section .finance-nav:before {
  content: "";
  height: 1px;
  width: 160px;
  background: rgba(255, 255, 255, 0.2);
  margin-left: 50%;
  display: block;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  #content .landing-section .finance-nav:before {
    display: none;
  }
}
#content .landing-section .finance-nav a {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  display: block;
  width: 144px;
  height: 123px;
  color: #FFF;
  clear: both;
}
@media (min-width: 1024px) {
  #content .landing-section .finance-nav a {
    width: 194px;
    height: 164px;
  }
}
#content .landing-section .finance-nav h3 {
  padding: 80px 13px 13px 13px;
  font-family: "UniversLTW01-59UltraCn";
  text-align: left;
  font-size: 22px;
  line-height: 13px;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
#content .landing-section .finance-nav h3 else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
@media (min-width: 1024px) {
  #content .landing-section .finance-nav h3 {
    font-size: 30px;
    line-height: 18px;
    padding: 105px 20px 20px 20px;
  }
}
#content .landing-section .finance-nav span {
  font-size: 14px;
  clear: both;
  display: block;
  padding-bottom: 4px;
}
@media (min-width: 1024px) {
  #content .landing-section .finance-nav span {
    font-size: 18px;
  }
}
#content .landing-section .finance-nav li {
  display: inline-block;
  position: relative;
}
#content .landing-section .finance-nav li:nth-of-type(2) {
    left: -5px;
}
#content .landing-section .finance-nav li:before {
  content: "";
  height: 14px;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  float: left;
  margin-left: 50%;
}
@media (min-width: 1024px) {
  #content .landing-section .finance-nav li:before {
    display: none;
  }
}
#content .landing-section .finance-nav li:first-child {
  margin-right: 10px;
}
@media (min-width: 1024px) {
  #content .landing-section .finance-nav li:first-child {
    margin-right: 26px;
  }
}
#content .landing-section .finance-nav li:first-child a {
  background-image: url(/a/pgs/images/clean-energy/assets/yieldco-thumb.jpg);
}
#content .landing-section .finance-nav li:last-child a {
  background-image: url(/a/pgs/images/clean-energy/assets/securitization-thumb.jpg);
}
#content .finance-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #364158;
  width: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
}
#content .finance-pagination a {
  padding: 15px 0;
  margin: 8px 32px;
  display: block;
  background: green;
  font-size: 14px;
  color: #FFF;
  font-family: "UniversLTW01-47LightCn";
  letter-spacing: 2px;
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
#content .finance-pagination a else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
#content .finance-pagination a:before, #content .finance-pagination a:after {
  content: "\e900";
  font-family: 'clean-energy';
  display: inline-block;
  font-size: 12px;
}
#content .finance-holder {
  position: relative;
  height: 0;
  overflow: hidden;
}
@media (min-width: 1024px) {
  #content .finance-holder {
    position: static;
    height: auto;
  }
}
#content .finance-holder > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@media (min-width: 1024px) {
  #content .finance-holder > div {
    height: 0;
    overflow: hidden;
  }
}
#content .finance-holder .close-experience {
  font-size: 18px;
  color: #FFF;
  position: absolute;
  top: 15px;
  right: 15px;
}
@media (min-width: 1024px) {
  #content .finance-holder .close-experience {
    top: -36px;
    padding: 20px 20px 0 0;
    font-size: 22px;
  }
}
#content .finance-holder .icon-close span {
  visibility: hidden;
}
#content .finance-holder .panel {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
@media (min-width: 1024px) {
  #content .finance-holder .panel {
    width: 50%;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
#content .finance-holder .left-content {
  padding-top: 33px;
}
@media (min-width: 1024px) {
  #content .finance-holder .left-content {
    float: left;
    width: 50%;
    position: relative;
    z-index: 3;
    transition-delay: 3s;
    opacity: 0;
    -webkit-transform: translateX(-105%);
        -ms-transform: translateX(-105%);
            transform: translateX(-105%);
    transition: all 0.5s ease-in-out;
  }
}
@media (min-width: 1024px) {
  #content .finance-holder .left-content .inner-content {
    padding-right: 25px;
  }
}
@media (min-width: 1024px) {
  #content .finance-holder .left-content .inner-content {
    padding-right: 0;
  }
}
@media (min-width: 1024px) {
  #content .finance-holder .right-content {
    float: right;
    width: 50%;
    font-size: 15px;
    text-align: left;
    opacity: 0;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    transition: all 0.5s ease-in-out;
  }
}
@media (min-width: 1024px) {
  #content .finance-holder .right-content .inner-content {
    padding-left: 25px;
  }
}
@media (min-width: 1024px) {
  #content .finance-holder .right-content .inner-content {
    padding-left: 0;
  }
}
#content .finance-holder .container {
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  position: relative;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  #content .finance-holder .container {
    padding-top: 50px;
    padding-bottom: 50px;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}
@media (min-width: 1024px) {
  #content .finance-holder .container {
    width: auto;
  }
}
#content .finance-holder hr {
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  margin: 28px 0 0 0;
  display: none;
}
@media (min-width: 1024px) {
  #content .finance-holder hr {
    display: block;
  }
}
#content .finance-holder img {
  max-width: 100%;
  display: block;
}
#content .finance-holder h5 {
  color: #2b3649;
  font-size: 11px;
  font-family: "Univers LT W01 55 Roman";
}
@media (min-width: 1024px) {
  #content .finance-holder h5 {
    font-size: 15px;
    margin-bottom: 18px;
  }
}
#content .finance-holder h3 {
  font-family: "UniversLTW01-59UltraCn";
  font-size: 45px;
}
@media (min-width: 1024px) {
  #content .finance-holder h3 {
    font-size: 60px;
    line-height: 45px;
  }
}
#content .finance-holder h4 {
  font-family: "Univers LT W01 65 Bold";
  font-size: 16px;
  line-height: 20px;
}
#content .finance-holder h4 span {
  font-size: 14px;
  font-family: "UniversLTStdXBlack";
  clear: both;
  display: block;
  color: #1c2636;
}
#content .explore-securitization .panel {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#9b4872+0,904773+13,724374+36,684277+49,68447f+64,754a8f+88,794c95+100 */
  background: #9b4872;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #9b4872 0%, #904773 13%, #724374 36%, #684277 49%, #68447f 64%, #754a8f 88%, #794c95 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9b4872', endColorstr='#794c95',GradientType=0 );
  /* IE6-9 */
}
@media (min-width: 1024px) {
  #content .explore-securitization h4 span {
    color: #9f4b7e;
  }
}
#content .explore-securitization .owl-carousel {
  margin-top: 35px;
}
@media (min-width: 1024px) {
  #content .explore-securitization .owl-carousel {
    margin-top: 140px;
  }
}
#content .explore-securitization .owl-carousel li {
  width: 100%;
}
@media (min-width: 1024px) {
  #content .explore-securitization .owl-carousel li {
    max-width: 390px;
  }
}
@media (min-width: 1230px) {
  #content .explore-securitization .owl-carousel li {
    max-width: 520px;
  }
}
#content .explore-securitization .owl-carousel h4 {
  font-size: 15px;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  border: 1px solid #FFF;
  border-width: 1px 0;
  padding: 4px 0;
  display: inline-block;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
#content .explore-securitization .owl-carousel p {
  font-family: "Univers LT W01 55 Roman";
  font-size: 15px;
  margin: 22px 0 0 0;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  max-width: 100%;
}
#content .explore-securitization .owl-carousel p else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
#content .explore-securitization .owl-carousel img + h4 {
  border: 0;
  margin: 19px 0 0 0;
}
#content .explore-securitization .owl-carousel img {
  -webkit-backface-visibility: hidden;
  width: auto;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  #content .explore-securitization .owl-carousel img {
    max-width: none;
  }
}
#content .explore-securitization .owl-nav [class*="owl-"] {
  background: none;
  position: absolute;
  top: 25%;
}
#content .explore-securitization .owl-nav [class*="owl-"] i {
  width: 30px;
  float: right;
}
#content .explore-securitization .owl-nav .owl-next {
  right: 0;
}
@media (max-width :568px) {
    #content .explore-securitization .owl-carousel .owl-nav .owl-prev {
        left: -10px;
    }
    #content .explore-securitization .owl-carousel .owl-nav .owl-next {
        right: -10px;
    }
}
#content .explore-securitization .owl-nav .owl-next i {
  text-align: right;
  position: relative;
}
#content .explore-securitization .owl-nav .owl-next i:before {
  content: "\e602" !important;
  color: #11dda7;
  font-weight: bold;
  text-shadow: 0px 1px 0px #11dda7;
  font-size: 16px;
}
#content .explore-securitization .owl-nav .owl-next i:after {
  content: "";
  width: 22px;
  height: 2px;
  float: left;
  background-color: #11dda7;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  left: 0;
}
#content .explore-securitization .owl-nav .owl-prev {
  left: 0;
}
#content .explore-securitization .owl-nav .owl-prev i {
  text-align: left;
  position: relative;
}
#content .explore-securitization .owl-nav .owl-prev i:before {
  content: "\e601" !important;
  color: #11dda7;
  font-weight: bold;
  text-shadow: 0px 1px 0px #11dda7;
  font-size: 16px;
}
#content .explore-securitization .owl-nav .owl-prev i:after {
  content: "";
  width: 22px;
  height: 2px;
  float: right;
  background-color: #11dda7;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  right: 0;
}
#content .explore-securitization .owl-dot span {
  background: rgba(255, 255, 255, 0.5);
}
#content .explore-securitization .owl-dot.active span {
  padding: 0;
  background: #FFF;
}
#content .explore-yieldcos .panel {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#4285dd+0,4385dd+7,4c8ace+27,4e8dcd+36,4d8ed2+42,4490e9+59,4391eb+68,4593e6+74,4d95cf+92,4e96cd+100 */
  background: #4285dd;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #4285dd 0%, #4385dd 7%, #4c8ace 27%, #4e8dcd 36%, #4d8ed2 42%, #4490e9 59%, #4391eb 68%, #4593e6 74%, #4d95cf 92%, #4e96cd 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4285dd', endColorstr='#4e96cd',GradientType=0 );
  /* IE6-9 */
}
#content .explore-yieldcos img {
  margin: 22px auto;
}
@media (min-width: 1024px) {
  #content .explore-yieldcos img {
    margin: 0 auto;
    max-width: none;
  }
}
@media (min-width: 1024px) {
  #content .explore-yieldcos header {
    margin-bottom: 15em;
  }
}
#content .explore-yieldcos header a {
  color: #303d51;
  font-size: 12px;
  text-decoration: underline;
  font-family: "Univers LT W01 55 Roman";
  margin-top: 16px;
  display: block;
}
@media (min-width: 1024px) {
  #content .explore-yieldcos h4 span {
    color: #4486da;
  }
}
#content .explore-yieldcos .source {
  color: #303d51;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  #content .explore-yieldcos .source {
    color: #bfbdbd;
    margin-top: 40px;
  }
}
#content .yieldco-box {
  position: absolute;
  left: 0;
  top: -33px;
  background: rgba(0, 0, 0, 0.95);
  height: 0;
  opacity: 0;
  padding: 105px 60px 0 60px;
  text-align: left;
  font-size: 14px;
  z-index: -1;
  font-family: "Univers LT W01 55 Roman";
  transition: all 0.5s ease-in-out;
}
@media (min-width: 1024px) {
  #content .yieldco-box {
    opacity: 1;
    position: static;
    background: none;
    height: auto;
    font-size: 15px;
    padding: 20px;
    border: 1px solid #FFF;
    margin: 60px 0 0 0;
  }
}
#content .yieldco-box p {
  line-height: 20px;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
#content .yieldco-box p else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
#content .yieldco-box p:last-child {
  margin: 0;
}
#content .yieldco-box a {
  position: absolute;
  top: 75px;
  font-size: 18px;
  color: #FFF;
  right: 15px;
}
#content .yieldco-box .title {
  font-family: "Univers LT W01 65 Bold";
  text-transform: uppercase;
}
#content .yieldco-box.active {
  opacity: 1;
  height: 100%;
  z-index: 1;
}
#content .experience-opened {
  overflow: hidden;
}
#content .experience-opened .landing-section {
  position: absolute;
  top: 4em;
}
@media (min-width: 1024px) {
  #content .experience-opened .landing-section {
    position: static;
  }
}
#content .experience-opened .landing-section .finance-nav {
  position: absolute;
  top: -4.2em;
  z-index: 1;
  width: 0;
  margin-right: 0;
  margin-left: 0;
  width: 100%;
  left: 0;
  padding: 0;
}
#content .experience-opened .landing-section .finance-nav:before,
#content .experience-opened .landing-section .finance-nav li:before {
  display: none;
}
#content .experience-opened .landing-section .finance-nav a:before {
  content: "";
  margin: 0;
  background: #000;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#content .experience-opened .landing-section .finance-nav .active a:before {
  opacity: 0;
}

@media (min-width: 1230px) {
    #content .experience-opened .landing-section .finance-nav {
        position: relative;
        top: 0;
        z-index: 3;
        -webkit-transform: translateY(60%) translateX(3%);
        -ms-transform: translateY(60%) translateX(3%);
        transform: translateY(60%) translateX(3%);
    }
}

@media (min-width: 1024px) and (max-width: 1229px) {
  #content .experience-opened .landing-section .finance-nav {
    position: relative;
    top: 50px;
    left: 5%;
    z-index: 3;
    -webkit-transform: translateY(60%) translateX(3%);
        -ms-transform: translateY(60%) translateX(3%);
            transform: translateY(60%) translateX(3%);
  }
}
@media (min-width: 1024px) {
  #content .experience-opened .landing-section .finance-nav {
    -webkit-transform: translateY(60%) translateX(9%);
        -ms-transform: translateY(60%) translateX(9%);
            transform: translateY(60%) translateX(9%);
  }
}
@media (min-width: 1230px) {
  #content .experience-opened .landing-section .finance-nav {
    -webkit-transform: translateY(60%) translateX(20%);
        -ms-transform: translateY(60%) translateX(20%);
            transform: translateY(60%) translateX(20%);
  }
}
@media screen and (min-width: 1550px) {
  #content .experience-opened .landing-section .finance-nav {
    -webkit-transform: translateY(60%) translateX(46%);
        -ms-transform: translateY(60%) translateX(46%);
            transform: translateY(60%) translateX(46%);
  }
}
#content .experience-opened .finance-holder {
  margin-top: 100px;
}
@media (min-width: 1024px) {
  #content .experience-opened .finance-holder {
    margin: 0;
  }
}
#content .experience-opened .overlay {
  height: 100%;
  width: 100%;
  opacity: 0.95;
}
@media (min-width: 1024px) {
  #content .experience-opened .finance-holder > div {
    width: 100%;
    height: 100%;
  }
}
#content .experience-opened .active .panel {
  opacity: 1;
}
@media (min-width: 1024px) {
  #content .experience-opened .active .panel {
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
            transform: translateX(0%);
  }
}
#content .experience-opened .active .container {
  z-index: 2;
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
}
@media (min-width: 1024px) {
  #content .experience-opened .active {
    opacity: 1;
  }
  #content .experience-opened .active .left-content,
  #content .experience-opened .active .right-content {
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1;
  }
}
#content .experience-opened .finance-pagination {
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
}
@media (min-width: 1024px) {
  #content .experience-opened .centered {
    width: 390px;
    margin: 0 auto;
  }
}
@media (min-width: 1230px) {
  #content .experience-opened .centered {
    width: 520px;
  }
}
#content .quote-section {
  background: #f1eaf1;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #f1eaf1 0%, #e8f3ea 50%, #efe8e8 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f1eaf1', endColorstr='#efe8e8',GradientType=0 );
  /* IE6-9 */
}
@media (min-width: 768px) {
  #content .quote-section {
    background: url(/a/pgs/images/clean-energy/assets/Quote_Module_Background.jpg) no-repeat center 0;
    background-size: cover;
  }
}
@media (tablet-portrait: 0) {
  #content .quote-section {
    background: url(/a/pgs/images/clean-energy/assets/Quote_Module_Background.jpg) no-repeat center 0;
    background-size: cover;
  }
}
#content .quote-section .container {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  #content .quote-section .container {
    padding-top: 90px;
    padding-bottom: 80px;
  }
}
@media (tablet-portrait: 0) {
  #content .quote-section .container {
    padding-top: 90px;
    padding-bottom: 80px;
  }
}
#content .quote-section blockquote {
  color: #455067;
  padding: 0;
  margin: 0 auto;
  font-size: inherit;
  border: 0;
  text-align: center;
  max-width: 878px;
}
#content .quote-section blockquote h6 {
  color: #2e394f;
  font: 38px/1 "UniversLTW01-59UltraCn";
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  width: 91%;
  margin: 0;
}
@media (min-width: 768px) {
  #content .quote-section blockquote h6 {
    font-size: 48px;
    width: auto;
  }
}
@media (tablet-portrait: 0) {
  #content .quote-section blockquote h6 {
    font-size: 48px;
    width: auto;
  }
}
#content .quote-section blockquote h6 span {
  position: relative;
  left: -24px;
}
#content .quote-section blockquote p {
  font: 14px/1.5625 "UniversLTStdLight";
  letter-spacing: 1px;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  padding: 0 10px;
  margin: 15px 0 0;
}
#content .quote-section blockquote p else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
@media (min-width: 768px) {
  #content .quote-section blockquote p {
    font-size: 20px;
    padding: 0 55px;
  }
}
@media (tablet-portrait: 0) {
  #content .quote-section blockquote p {
    font-size: 20px;
    padding: 0 55px;
  }
}
#content .quote-section blockquote p span {
  position: relative;
  top: 12px;
}
@media (min-width: 768px) {
  #content .quote-section blockquote p span {
    top: 16px;
  }
}
@media (tablet-portrait: 0) {
  #content .quote-section blockquote p span {
    top: 16px;
  }
}
#content .quote-section blockquote span {
  color: #2bc794;
  font: 30px/1 "UniversLTW01-55Oblique";
  display: inline-block;
  height: 14px;
  overflow: hidden;
  vertical-align: top;
}
@media (min-width: 768px) {
  #content .quote-section blockquote span {
    font-size: 50px;
    height: 20px;
  }
}
@media (tablet-portrait: 0) {
  #content .quote-section blockquote span {
    font-size: 50px;
    height: 20px;
  }
}
#content .quote-section .author {
  color: #2e394f;
  font: 24px/1 "UniversLTW01-59UltraCn";
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 10px auto 50px;
  text-align: center;
  display: block;
}
@media (min-width: 768px) {
  #content .quote-section .author {
    font-size: 38px;
    margin: 30px auto 50px;
  }
}
@media (tablet-portrait: 0) {
  #content .quote-section .author {
    font-size: 38px;
    margin: 30px auto 50px;
  }
}
#content .quote-section .source {
  color: #676d7e;
  font: 14px/1.1 "Univers LT W01 55 Roman";
  max-width: 370px;
  margin: 0 auto;
  text-align: center;
  display: block;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
#content .quote-section .source else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
#content .quote-section .source em {
  font-family: "UniversLTW01-55Oblique";
}
#content .last-section {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0c3169+0,278093+100 */
  background: #0c3169;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #0c3169 0%, #278093 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0c3169', endColorstr='#278093',GradientType=0 );
  /* IE6-9 */
  position: relative;
}
#content .last-section .bg-helper {
  position: absolute;
  top: 0;
  background-image: url(/a/pgs/images/clean-energy/assets/Takeaway.png);
  width: 100%;
  background-size: contain;
  padding-bottom: 69%;
  opacity: 0.3;
  background-repeat: no-repeat;
}
#content .last-section .graph-section {
  background: #e7e8ed;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 41px 45px 1px;
}
@media (min-width: 1024px) {
  #content .last-section .graph-section {
    margin-top: 70px;
    padding: 63px 70px 1px;
  }
}
@media (min-width: 1300px) {
  #content .last-section .graph-section {
    max-width: 1200px;
  }
}
#content .last-section .container {
  z-index: 2;
  position: relative;
  padding-top: 85px;
  padding-bottom: 85px;
}
#content .last-section .gs-share.gs-social-share-bar {
  margin: 0 0 30px;
}
#content .last-section .gs-share.gs-social-share-bar i {
  color: #fff;
}
#content .last-section header {
  color: #fff;
  position: relative;
  text-align: center;
  max-width: 800px;
}
#content .last-section header h2 {
  margin-bottom: 32px;
}
#content .last-section header h3 {
  margin-bottom: 30px;
}
#content .last-section header p {
  margin-bottom: 35px;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
@media (min-width: 768px) {
  #content .last-section header p {
    font-size: 22px;
  }
}
@media (tablet-portrait: 0) {
  #content .last-section header p {
    font-size: 22px;
  }
}
#content .last-section header p else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
#content .last-section .cta {
  color: #000;
  text-align: center;
  width: 150px;
  display: block;
  margin: 85px auto 45px;
  cursor: pointer;
}
@media (min-width: 768px) {
  #content .last-section .cta {
    margin: 85px auto 75px;
  }
}
@media (tablet-portrait: 0) {
  #content .last-section .cta {
    margin: 85px auto 75px;
  }
}
#content .last-section .graph-header h4, #content .last-section .graph-header p {
  color: #556a8b;
  font: 21px/23px "Univers LT W01 65 Bold";
}
#content .last-section .graph-header span {
  clear: both;
  display: block;
}
#content .last-section .graph-header h4 {
  max-width: 90%;
}
@media (min-width: 1024px) {
  #content .last-section .graph-header h4 {
    max-width: none;
    font-size: 34px;
    line-height: 42px;
  }
}
#content .last-section .graph-header p {
  margin: 14px 0 5px;
  font-family: "UniversLTStdLight";
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
#content .last-section .graph-header p else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
@media (min-width: 1024px) {
  #content .last-section .graph-header p {
    font-size: 29px;
    line-height: 33px;
  }
}
#content .last-section .graph-header:after {
  content: '';
  display: block;
  width: 34px;
  height: 3px;
  background-color: #1edca1;
}
#content .last-section .graph-circled {
  margin-top: 65px;
  margin-bottom: 65px;
}
@media (min-width: 768px) {
  #content .last-section .graph-circled {
    max-width: 500px;
  }
}
@media (tablet-portrait: 0) {
  #content .last-section .graph-circled {
    max-width: 500px;
  }
}
@media (min-width: 1024px) {
  #content .last-section .graph-circled {
    max-width: none;
  }
}
#content .last-section .graph-circled .info {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: #556a8b;
  font: 18px/1 "Univers LT W01 55 Roman";
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
#content .last-section .graph-circled .info else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
@media (min-width: 1024px) {
  #content .last-section .graph-circled .info {
    font-size: 22px;
    top: 57%;
  }
}
#content .last-section .graph-circled .info span:not(.date) {
  font: 32px/1 "UniversLTStdXBlack";
  display: block;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
#content .last-section .graph-circled .info span:not(.date) else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
@media (min-width: 1024px) {
  #content .last-section .graph-circled .info span:not(.date) {
    font-size: 40px;
  }
}
#content .last-section .graph-circled .date {
  color: #34a0b1;
  font: 16px/1 "UniversLTStdLight";
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  margin-bottom: 6px;
}
#content .last-section .graph-circled .date else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
@media (min-width: 1024px) {
  #content .last-section .graph-circled .date {
    position: absolute;
    left: 50%;
    font-size: 24px;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    margin-bottom: 44px;
    display: block;
    text-align: center;
    top: 0;
  }
}
#content .last-section .graph-circled img {
  max-width: 170px;
}
@media (min-width: 1024px) {
  #content .last-section .graph-circled img {
    max-width: 270px;
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 1023px) {
    #content .last-section .graph-circled .graph:nth-of-type(1) {
        left: 10px;
    }
    #content .last-section .graph-circled .graph:nth-of-type(2) {
        left: -15px;
    }
}

#content .last-section .graph-circled .graph, #content .last-section .graph-circled .labels {
  position: relative;
  display: inline-block;
}
@media (min-width: 1024px) {
  #content .last-section .graph-circled .graph, #content .last-section .graph-circled .labels {
    width: 36.5%;
    text-align: center;
    vertical-align: middle;
  }
}
@media (min-width: 1024px) {
  #content .last-section .graph-circled .graph {
    padding-top: 45px;
  }
  #content .last-section .graph-circled .graph:first-child {
    vertical-align: top;
  }
}
@media (min-width:550px) {
    #content .last-section .graph-circled .graph + .graph {
        float: right;
    }
}

@media (min-width: 1024px) {
  #content .last-section .graph-circled .graph + .graph {
    float: none;
    padding-top: 15px;
    margin-left: 0px;
  }
}
@media (min-width: 1024px) and (max-width: 1229px){
    #content .last-section .graph-circled .graph + .graph .info {
        left: 55%;
        top: 50%;
    }
    #content .last-section .graph-circled .graph + .graph .date {
        top: -40px;
        left: 60%;
    }
}
@media (min-width: 1230px) {
    #content .last-section .graph-circled .graph + .graph .date {
        top: -40px;
        left: 55%;
    }
}

#content .last-section .graph-circled .graph + .graph img {
  max-width: 213px;
  /* @include breakpoint("tablet-portrait") {
      max-width: 100%;
  } */
}
@media (min-width: 1024px) {
  #content .last-section .graph-circled .graph + .graph img {
    max-width: 377px;
  }
}
@media (min-width: 1230px){
  #content .last-section .graph-circled .graph + .graph .info {
    top: 52%;
  }
}
@media (min-width: 1024px) {
  #content .last-section .graph-circled .labels {
    width: 25%;
    text-align: left;
  }
  #content .last-section .graph-circled .labels .label-list {
    margin-left: 55px;
  }
  #content .last-section .graph-circled .labels .label-list li {
    width: 100%;
  }
}
#content .last-section .label-list {
  font-size: 0;
}
#content .last-section .label-list li {
  color: #556a8b;
  font: 10px/1 "UniversLTStdLight";
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  display: inline-block;
  width: 50%;
  padding-left: 28px;
    padding-top: 4px;
  position: relative;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
#content .last-section .label-list li else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
#content .last-section .label-list li + li {
  margin-top: 25px;
}
@media (min-width: 1024px) {
  #content .last-section .label-list li {
    padding-left: 51px;
  }
}
#content .last-section .label-list .label-1:before {
  background-color: #abecd7;
  content: "";
  width: 21px;
  height: 21px;
  position: absolute;
  top: -5px;
  left: 0;
}
@media (min-width: 1024px) {
  #content .last-section .label-list .label-1:before {
    width: 40px;
    height: 23px;
  }
}
#content .last-section .label-list .label-2:before {
  background-color: #60dedf;
  content: "";
  width: 21px;
  height: 21px;
  position: absolute;
  top: -5px;
  left: 0;
}
@media (min-width: 1024px) {
  #content .last-section .label-list .label-2:before {
    width: 40px;
    height: 23px;
  }
}
#content .last-section .label-list .label-3:before {
  background-color: #52a4c3;
  content: "";
  width: 21px;
  height: 21px;
  position: absolute;
  top: -5px;
  left: 0;
}
@media (min-width: 1024px) {
  #content .last-section .label-list .label-3:before {
    width: 40px;
    height: 23px;
  }
}
#content .last-section .label-list .label-4:before {
  background-color: #5b5985;
  content: "";
  width: 21px;
  height: 21px;
  position: absolute;
  top: -5px;
  left: 0;
}
@media (min-width: 1024px) {
  #content .last-section .label-list .label-4:before {
    width: 40px;
    height: 23px;
  }
}
#content .last-section .label-list .label-5:before {
  background-color: #626866;
  content: "";
  width: 21px;
  height: 21px;
  position: absolute;
  top: -5px;
  left: 0;
}
@media (min-width: 1024px) {
  #content .last-section .label-list .label-5:before {
    width: 40px;
    height: 23px;
  }
}
#content .last-section .label-list li.label-3:before {
  top: 2px;
}
#content .last-section .graph-waves img {
  max-width: 850px;
}
#content .last-section .graph-waves small {
  color: #a3a8a8;
  font: 10px/1 "Univers LT W01 55 Roman";
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-transform: uppercase;
  text-align: center;
  margin: 15px auto;
}
#content .last-section .graph-waves small else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
#content .last-section .graph-waves .graph-container {
  overflow-x: scroll;
  width: 100%;
  padding-bottom: 30px;
}
#content .last-section .graph-waves .graph-container::-webkit-scrollbar {
  height: 4px;
}
#content .last-section .graph-waves .graph-container::-webkit-scrollbar-thumb:horizontal {
  background-color: #a1a6a6;
  -webkit-border-radius: 4px;
}
#content .last-section .graph-waves .graph-container::-webkit-scrollbar-track:horizontal {
  background-color: white;
  -webkit-border-radius: 4px;
}
@media (min-width: 1024px) {
  #content .last-section .graph-waves .graph-container {
    overflow-x: hidden;
  }
}
@media (min-width: 1024px) {
  #content .last-section .graph-waves img {
    max-width: 100%;
  }
}
@media (min-width: 1024px) {
  #content .last-section .graph-waves .label-list {
    width: 530px;
    margin: 55px auto 0;
  }
  #content .last-section .graph-waves .label-list li {
    width: auto;
    margin-left: 80px;
  }
  #content .last-section .graph-waves .label-list li:first-child {
    margin-left: 0;
  }
  #content .last-section .graph-waves .label-list li.label-3:before {
    top: -4px !important;
  }
}
#content .last-section .source {
  color: #556a8b;
  font: 14px/1 "UniversLTStdLight";
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  margin: 55px auto 84px;
  text-align: center;
}
#content .last-section .source else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
#content .breadcrumb-container {
  *zoom: 1;
  background: #8a9fb7;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to right, #8a9fb7 0%, #8a9fb7 50%, #526277 50%, #526277 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8a9fb7', endColorstr='#526277',GradientType=1 );
  /* IE6-9 */
}
#content .breadcrumb-container:before, #content .breadcrumb-container:after {
  content: " ";
  display: table;
}
#content .breadcrumb-container:after {
  clear: both;
}
#content .breadcrumb-container > div {
  margin: 0 auto;
}
@media (min-width: 1230px) {
  #content .breadcrumb-container > div {
    width: 1200px;
  }
}
#content .page-links .link-1 {
  background-color: #384f82;
}
#content .page-links .link-2 {
  background-color: #314c81;
}
#content .page-links .link-3 {
  background-color: #274070;
}
#content .page-links .link-4 {
  background-color: #1f3560;
}
#content .page-links .link-5 {
  background-color: #0f2a53;
}
#content .page-links .link-6 {
  background-color: #042146;
}
#content .page-links a {
  color: #fff;
  font: 17px/1 "UniversLTW01-57Condense 723821";
  padding: 1em 0.938em;
  display: block;
  text-transform: uppercase;
  cursor: pointer;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
}
#content .page-links a else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
#content .cta {
  font: 18px/30px "Univers LT W01 55 Roman";
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 0px 1px 11px rgba(35, 77, 82, 0.5), 0px 1px 11px rgba(253, 250, 209, 0.5);
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
#content .cta else {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}
#content .cta .icon-arrow-down2, #content .cta .icon-arrow-up2 {
  font-weight: bold;
  font-size: 24px;
}
#content .cta span {
  display: block;
  text-align: center;
  text-shadow: 0px 1px 11px rgba(35, 77, 82, 0.5), 0px 1px 11px rgba(253, 250, 209, 0.5);
}
#content .lightbulb {
  font-size: 75px;
  -webkit-animation-name: breathe;
          animation-name: breathe;
  -webkit-animation-timing-function: cubic-bezier(0.81, 0.08, 0.43, 0.88);
          animation-timing-function: cubic-bezier(0.81, 0.08, 0.43, 0.88);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 3.0s;
          animation-duration: 3.0s;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; }
.owl-carousel .owl-animated-in {
    z-index: 0; }
.owl-carousel .owl-animated-out {
    z-index: 1; }
.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut; }

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1; }

    100% {
        opacity: 0; } }

@keyframes fadeOut {
    0% {
        opacity: 1; }

    100% {
        opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out; }

/*
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1; }
.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y; }
.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d; }
.owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled {
    display: none; }
.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
.owl-carousel.owl-loaded {
    display: block; }
.owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
.owl-carousel.owl-hidden {
    opacity: 0; }
.owl-carousel.owl-refresh .owl-item {
    display: none; }
.owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
.owl-carousel.owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab; }
.owl-carousel.owl-rtl {
    direction: rtl; }
.owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
    display: block; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease; }
.owl-carousel .owl-item img {
    transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000; }
.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: scale 100ms ease;
    -moz-transition: scale 100ms ease;
    -ms-transition: scale 100ms ease;
    -o-transition: scale 100ms ease;
    transition: scale 100ms ease; }
.owl-carousel .owl-video-play-icon:hover {
    -webkit-transition: scale(1.3, 1.3);
    -moz-transition: scale(1.3, 1.3);
    -ms-transition: scale(1.3, 1.3);
    -o-transition: scale(1.3, 1.3);
    transition: scale(1.3, 1.3); }
.owl-carousel .owl-video-playing .owl-video-tn, .owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none; }
.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}
#share-more-menu .header h3 {
    font-size: 1.167em;
    line-height: 1.5;
    text-transform: uppercase;
}