/*------------------------------------*\
    #Infographic
\*------------------------------------*/
/*------------------------------------*\
    #Variables
\*------------------------------------*/
/*------------------------------------*\
    #Variables
    - Breakpoints
    - Pixel Values
    - Fonts
\*------------------------------------*/
/** Colors **/
/** Breakpoints **/
/** Pixel Values **/
/** Fonts **/
/**
* Colors
*/
/**
* File Paths
*/
/*------------------------------------*\
    #Mixins
\*------------------------------------*/
/*------------------------------------*\
    #Mixins
    - Clearfix
    - Breakpoint
    - Overlay
    - Box Sizing
    - Text rendering
    - Create columns
    - Grid system
\*------------------------------------*/
/**
* @mixin clearfix
* Used to clear elements that are floated. Usually used within a container.
*
* @example
*   @include clearfix;
*/
/**
* @mixin breakpoint
* Used to define different styles per breakpoint.
*
* @param $minbp - the min-width for the breakpoint
* @param $maxbp (optional) - if you choose to do a range.
*
* @example
*   @include breakpoint(320px, $tablet-landscape) {
*       color: red;
*   }
*/
/**
* @mixin overlay
* Used to create an overlay.
*
* @example
*   @include overlay;
*/
/**
* @mixin boxSizing
* Used to add box sizing border-box to an element(s)
*
* @example
*   @include boxSizing;
*/
/**
* @mixin text-rendering
* Used to adjust the rendering of a font.
* Note: Not all browsers support this.
*
* @param $style - the type of rendering "smooth" makes type antialiased.
*
* @example
*   @include text-rendering("smooth");
*/
/**
* @mixin create-columns
* Can be used to create a column system.
*
* @param $state - the number to start your column system at, i.e 1
*
* @example
*   @include create-columns(1);
*/
/*
* @mixin grid
* Create a grid system.
*
* @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");
*/
/*
* @mixin horizontal-center
* Center element Horizontally
* @param $position- Element position type.  Defaults to relative;
* @example
*   @include horizontal-center();
*/
/*
* @mixin vertical-center
* Center element Vertically
* @param $position- Element position type.  Defaults to relative;
* @example
*   @include horizontal-center();
*/
/*
* @mixin box-middle
* Center element vertically and horizontally
* @example
*   @include horizontal-center();
*/
.infographic {
    background: #252525;
    padding-top: 66px;
    position: relative;
    margin-bottom: 75px;
}
@media (min-width: 768px) {
    .infographic {
        margin-bottom: 30px;
    }
}
.infographic h2 + p {
    max-width: 1107px;
}
.infographic .container {
    position: relative;
}
.infographic .gs-share.gs-share-buttons {
    position: absolute;
    top: 0;
    right: 3%;
    color: #818587;
}
@media (min-width: 960px) {
    .infographic .gs-share.gs-share-buttons {
        right: 0;
    }
}
.infographic p {
    color: #FFFFFF;
    margin-bottom: 0;
}
.infographic .img-container {
    padding: 0;
}
.infographic img {
    max-width: 100%;
    display: block;
}
.infographic .show-more-container {
    overflow: hidden;
    height: 190px;
    padding-top: 42px;
    transition: height 0.5s ease-in-out;
}
@media (min-width: 1024px) {
    .infographic .show-more-container {
        height: 18em;
        position: relative;
    }
    .infographic .show-more-container:after {
        content: "";
        box-shadow: inset -1px -50px 50px -2px rgba(0, 2, 0, 0.4);
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
}
@media (min-width: 1024px) {
    .infographic .show-more-container {
        height: 20em;
    }
}
.infographic .expanded:after {
    display: none;
}
.infographic .expanded + .show-more span {
    display: none;
}
.infographic .expanded + .show-more span:last-of-type {
    display: inline;
}
.infographic .expanded + .show-more i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
@media (min-width: 1024px) {
    .infographic .expanded {
        margin-bottom: 42px;
    }
}
.infographic .show-more {
    position: absolute;
    bottom: -40px;
    left: 50%;
    width: 42px;
    padding: 16px 10px 13px 10px;
    background: #000000;
    display: block;
    color: #FFFFFF;
    font-family: "UniversLTW01-67BoldCn";
    font-size: 10px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    line-height: 1;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
.infographic .show-more span:last-of-type {
    display: none;
}
@media (min-width: 1024px) {
    .infographic .show-more {
        font-size: 12px;
        bottom: -30px;
        width: 54px;
    }
}
.infographic .show-more i {
    clear: both;
    display: block;
    color: #5d9ac9;
    font-size: 20px;
    line-height: 15px;
    margin-top: 3px;
    transition: all 0.3s ease-in-out;
}
@media (min-width: 1024px) {
    .infographic .show-more i {
        margin-top: 8px;
        font-size: 24px;
    }
}

/*------------------------------------*\
    #Typography
\*------------------------------------*/
/*------------------------------------*\
    #Mixins
\*------------------------------------*/
/*------------------------------------*\
    #Mixins
    - Clearfix
    - Breakpoint
    - Overlay
    - Box Sizing
    - Text rendering
    - Create columns
    - Grid system
\*------------------------------------*/
/**
* @mixin clearfix
* Used to clear elements that are floated. Usually used within a container.
*
* @example
*   @include clearfix;
*/
/**
* @mixin breakpoint
* Used to define different styles per breakpoint.
*
* @param $minbp - the min-width for the breakpoint
* @param $maxbp (optional) - if you choose to do a range.
*
* @example
*   @include breakpoint(320px, $tablet-landscape) {
*       color: red;
*   }
*/
/**
* @mixin overlay
* Used to create an overlay.
*
* @example
*   @include overlay;
*/
/**
* @mixin boxSizing
* Used to add box sizing border-box to an element(s)
*
* @example
*   @include boxSizing;
*/
/**
* @mixin text-rendering
* Used to adjust the rendering of a font.
* Note: Not all browsers support this.
*
* @param $style - the type of rendering "smooth" makes type antialiased.
*
* @example
*   @include text-rendering("smooth");
*/
/**
* @mixin create-columns
* Can be used to create a column system.
*
* @param $state - the number to start your column system at, i.e 1
*
* @example
*   @include create-columns(1);
*/
/*
* @mixin grid
* Create a grid system.
*
* @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");
*/
/*
* @mixin horizontal-center
* Center element Horizontally
* @param $position- Element position type.  Defaults to relative;
* @example
*   @include horizontal-center();
*/
/*
* @mixin vertical-center
* Center element Vertically
* @param $position- Element position type.  Defaults to relative;
* @example
*   @include horizontal-center();
*/
/*
* @mixin box-middle
* Center element vertically and horizontally
* @example
*   @include horizontal-center();
*/
/* Headings */
h2 {
    font: 30px/1.1 "UniversLTW01-47LightCn", sans-serif;
    text-transform: none;
    margin: 0;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}
h2 else {
    -webkit-font-smoothing: subpixel-antialiased;
    font-smoothing: subpixel-antialiased;
}
@media (min-width: 1024px) {
    h2 {
        font-size: 36px;
    }
}

h2 + p {
    margin: 12px 0 45px 0;
    line-height: inherit;
    color: #1c1c1c;
}

.disclaimer {
    font-size: 11px;
    color: #1c1c1c;
    font-family: "UniversLTW01-55Oblique", sans-serif;
    line-height: 14px;
}
@media (min-width: 1024px) {
    .disclaimer {
        font-size: 12px;
    }
}

#content time {
    font: 12px/1.1 "Univers LT W01 55 Roman";
    color: #58575a;
    text-transform: uppercase;
    display: block;
    margin: 0 0 17px;
    float: none;
}

/**
* Icons
* Set of clases generated from Icomoon.
* Please use the JSON file located in ../fonts
*/
@font-face {
    font-family: 'content-pages';
    src: url("/a/pgs/our-thinking/fonts/icomoon.eot?dnbn5c");
    src: url("/a/pgs/our-thinking/fonts/icomoon.eot?#iefixdnbn5c") format("embedded-opentype"), url("/a/pgs/our-thinking/fonts/icomoon.ttf?dnbn5c") format("truetype"), url("/a/pgs/our-thinking/fonts/icomoon.woff?dnbn5c") format("woff"), url("/a/pgs/our-thinking/fonts/icomoon.svg?dnbn5c#icomoon") format("svg");
    font-weight: normal;
    font-style: normal;
}
[class^="icon-"], [class*=" icon-"] {
    font-family: 'content-pages';
    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-play-without-ring:before {
    content: "\e800";
}

.icon-download-btn:before {
    content: "\e801";
}

.icon-print:before {
    content: "\e603";
}

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

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

.icon-download:before {
    content: "\e600";
}

.icon-share:before {
    content: "\21";
}

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

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

.icon-facebook:before {
    content: "\24";
}

.icon-linkedin:before {
    content: "\25";
}

.icon-mail:before {
    content: "\26";
}

.icon-plusone:before {
    content: "\27";
}

.icon-twitter:before {
    content: "\28";
}

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

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

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

.icon-close:before {
    content: "\2c";
}

#content.citizenship-redesign #about-the-program .main-paragraph {
    font-size: 1.375rem;
    color: #7f7d7d;
}
#content.citizenship-redesign .learn-more .learn-more-button {
    background-color: #007fc3;
}
#content.citizenship-redesign .progress-report .main-link {
    font-size: .875rem;
    color: #023e6e;
    display: block;
}
#content.citizenship-redesign .section-title {
    padding-top: 5.625rem;
}

#content.citizenship-redesign .hero-top .caption blockquote {
    font-size: 22px;
    line-height: 1.6;
}

#about-the-program {
    background-color: #fff;
}
#about-the-program .section-title {
    color: #03477d;
}
#about-the-program .learn-more {
    margin-bottom: 2.25rem !important;
}
#about-the-program .program-stats {
    font-size: 0;
    width: 83%;
    margin: 3.75rem auto 0 auto;
}
#about-the-program .program-stats .program-stat {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 5.4375rem;
}
#about-the-program .program-stats .program-stat p {
    font: 25px/1 'UniversLTW01-59UltraCn', sans-serif;
    color: #228ee1;
    margin-top: .3125rem;
}
#about-the-program .program-stats .program-stat-info {
    display: inline-block;
    vertical-align: middle;
    margin-right: 1.25rem;
}
#about-the-program .program-stats .program-stat-info span {
    font: 89px/1 'UniversLTW01-59UltraCn', sans-serif;
    color: #228ee1;
}
#about-the-program .program-stats .program-stat-info span sup, #about-the-program .program-stats .program-stat-info span sub {
    font: 60px/1.3 'UniversLTW01-47LightCn', sans-serif;
    vertical-align: top;
    margin-left: .5rem;
}
#about-the-program .program-stats .program-stat-image {
    display: inline-block;
    vertical-align: middle;
}

#partnership {
    background-color: #228ee1;
    color: #fff;
}
#partnership .opportunity-module {
    background-color: #03477d;
    padding-top: 5.375rem;
    position: relative;
}
#partnership .opportunity-module .small-paragraph.wide {
    width: 74%;
    margin-top: 15px;
}
#partnership .opportunity-module .learn-more .learn-more-button {
    width: 16.375rem;
    background-color: #3aa8fd;
    font: 18px 'UniversLTStdCn', sans-serif;
    padding: 0.9rem 1.2rem 0.5rem 1.2rem;
}
#partnership .opportunity-module .caret {
    border-top-color: #fff;
    top: 0;
}
#partnership .opportunity-infography {
    display: table;
    margin: 4.1875rem auto;
}
#partnership .opportunity-infography.dark li:before {
    border-top-color: #007fc3;
}
#partnership .opportunity-infography.dark li:first-child {
    background-color: #007fc3;
}
#partnership .opportunity-infography.dark li:last-child:before {
    width: 35%;
}
@media (min-width: 1230px) {
    #partnership .opportunity-infography.dark li:last-child:before {
        width: 50%;
    }
}
#partnership .opportunity-infography li {
    display: inline-block;
    vertical-align: top;
    width: 20%;
    max-width: 10.9375rem;
    height: 9.375rem;
    margin-left: 1.8125rem;
    position: relative;
}
@media (min-width: 1230px) {
    #partnership .opportunity-infography li {
        margin-left: 3.625rem;
    }
}
#partnership .opportunity-infography li:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 100%;
    width: 58%;
    margin-right: .625rem;
    border-top: 2px dashed #007fc3;
}
@media (min-width: 1230px) {
    #partnership .opportunity-infography li:before {
        width: 70%;
    }
}
#partnership .opportunity-infography li:first-child {
    background-color: #007fc3;
    font: 18px/1.3 'UniversLTW01-57Condense 723821', sans-serif;
    width: 12.8125rem;
    max-width: none;
    padding: 2rem 1.79rem;
    margin: 1rem 4rem 0 0;
}
#partnership .opportunity-infography li:first-child:before {
    content: none;
    display: none;
}
@media (min-width: 1230px) {
    #partnership .opportunity-infography li:first-child {
        font: 22px/1.5 'UniversLTW01-57Condense 723821', sans-serif;
        width: 15.4375rem;
        padding: 1.5rem 1.25rem;
        margin-right: 2rem;
    }
}
#partnership .opportunity-infography li:first-child.vertical-line:before {
    content: '';
    display: block;
    position: absolute;
    top: 90%;
    right: 50%;
    width: 3px;
    margin: 0;
    height: 70%;
    background-color: #007fc3;
}
#partnership .opportunity-infography li span {
    font: 110px/1 'UniversLTW01-59UltraCn', sans-serif;
}
#partnership .opportunity-infography li span sup {
    font-size: 4rem;
    position: relative;
    top: .25rem;
}
#partnership .opportunity-infography li p {
    font: 13px/1.4 Arial, Helvetica, sans-serif;
}
#partnership .year-one-progress-container {
    background-color: #f0f4f7;
    padding-top: 5.375rem;
    padding-bottom: 6.875rem;
    position: relative;
}
#partnership .year-one-progress-container h3.small-title {
    color: #03477d;
    margin-bottom: 20px;
}
#partnership .year-one-progress-container .small-paragraph {
    width: 62%;
}
#partnership .year-one-progress-container .caret {
    border-top-color: #43acfe;
    top: 0;
}
#partnership .year-one-progress-container .learn-more .learn-more-button {
    width: 14rem;
    background-color: #007fc3;
}
#partnership .year-one-progress {
    position: relative;
    font-size: 0;
    max-width: 51.5625rem;
    margin: 0 auto;
}
#partnership .year-one-progress .progress-item {
    display: inline-block;
    vertical-align: top;
    width: 33.33%;
    text-align: center;
    padding-top: 2.125rem;
    position: relative;
}
#partnership .year-one-progress .progress-item h2 {
    font: 100px/1 'UniversLTStdLightUltraCn', sans-serif;
    margin-top: 1.875rem;
    letter-spacing: -1.1px;
    color: #03477d;
    height: 5.625rem;
}
#partnership .year-one-progress .progress-item h2 span {
    font: 100px/1 'UniversLTStdThinUltraCn', sans-serif;
}
#partnership .year-one-progress .progress-item p {
    font: 22px/1 'UniversLTW01-57Condense 723821', sans-serif;
    color: #36a3f7;
    margin-top: 0;
}
#partnership .year-one-progress .progress-item img {
    width: 100%;
    max-width: 11.375rem;
}
#partnership .financing-fund-container {
    background-color: #43acfe;
    padding-top: 5.375rem;
    padding-bottom: 2.375rem;
    margin-top: 6.250rem;
    position: relative;
}
#partnership .financing-fund-container h3.small-title {
    margin-bottom: 20px;
}
#partnership .financing-fund-container ul {
    display: table;
    margin: 4.1875rem auto;
}
#partnership .financing-fund-container ul li {
    display: inline-block;
    height: 20.875rem;
    position: relative;
    vertical-align: top;
    width: 17.625rem;
    background-color: #03477d;
    text-align: center;
    padding: 4.000rem 2.625rem 0 2.625rem;
    margin-bottom: 1.500rem;
}
#partnership .financing-fund-container ul li:first-child, #partnership .financing-fund-container ul li:nth-child(2) {
    margin-right: 1.5rem;
}
#partnership .financing-fund-container ul li span {
    font: 50px/1 'UniversLTW01-59UltraCn', sans-serif;
    color: #43acfe;
    text-transform: uppercase;
}
#partnership .financing-fund-container ul li p {
    font: 27px/1.3 'UniversLTW01-47LightCn', sans-serif;
    line-height: 1.2;
    margin-top: 5px;
}
#partnership .financing-fund-container .caret {
    border-top-color: #03477d;
    top: 0;
}

@media (min-width: 1230px) {
    #partnership .financing-fund-container ul li {
        width: 21.625rem;
        height: 16.875rem;
    }

    #partnership .opportunity-infography li {
        margin-left: 2.8125rem;
    }
    #partnership .opportunity-infography li:first-child {
        width: 15.438rem;
    }
}
#infographic {
    color: #fff;
}
#infographic .container h2 {
    font-family: "UniversLTStdLightUltraCn";
    font-size: 40px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}
#infographic .show-more-container .img-container img {
    margin: 0 auto;
}
#infographic .show-more-container:after {
    content: "";
    box-shadow: inset -1px -50px 50px -2px rgba(0, 2, 0, 0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
#infographic .show-more {
    font-size: 12px;
    bottom: -30px;
    width: 68px;
    height: 68px;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
#infographic .show-more i.icon-arrow-down {
    font-size: 24px;
    background: url(/a/pgs/images/citizenship-redesign/arrow-down.png) no-repeat 100%;
    width: 100%;
    height: 100%;
    background-position: center;
    margin: 0;
}
#infographic .show-more i.icon-arrow-down:before {
    content: '';
}

#content .infographic .gs-share.gs-share-buttons {
    position: absolute;
    top: -20px;
    right: 3%;
    color: #818587;
}
#content #infographic div.gs-share.gs-share-buttons div {
    width: 42px;
    height: 42px;
    padding-right: 0;
}
#content #infographic .share-toggle {
    padding: 1px 14px;
}
#content #infographic ul li:last-child {
    margin-left: -6px;
    margin-top: 2px;
}
#content time {
    text-transform: none;
    display: inline;
}

#content.citizenship-redesign .more-news-container .more-news-button {
    font: 18px 'UniversLTStdCn', sans-serif;
    padding: 0.9rem 1.45rem 0.6rem 1.45rem;
}

#endFrame {
    top: 0px;
    left: 0px;
    width: 960px;
    height: 530px;
    z-index: 9;
}

#endFrame div.moreVideos {
    margin-left: 180px;
}

#endFrame span.replay {
    left: 420px;
}

#content.citizenship-redesign .hero-top .close-video {
    z-index: 1000;
}

#endFrame span.replay.lower {
    height: 35px;
}

@media only screen and (min-width: 1230px) {
    #endFrame {
        width: 1200px;
        height: 42rem;
    }

    #endFrame div.moreVideos {
        margin-left: 310px;
    }

    #endFrame span.replay {
        left: 550px;
    }
}

#news {
    padding-bottom: 50px;
}