/**
* Insights
* The main SCSS file for [projectName].
*/
/*------------------------------------*\
    #Helper Classes
    - Responsive
    -- Hide elements by breakpoint
    -- Show elements by breakpoint
    -- Show element only on desktop *recommended*
    -- Show element only on mobile *recommended*
    - Clearfix
    - Text alignment
    - No border classes
    - Basic grid system
\*------------------------------------*/
/*------------------------------------*\
    #Variables
    - Breakpoints
    - Pixel Values
    - Fonts
\*------------------------------------*/
/** Colors **/
/** Breakpoints **/
/** Pixel Values **/
/** Fonts **/
/*------------------------------------*\
    #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();
*/
/** Responsive **/
/* Hidden By Breakpoint*/
.hidden-mobile {
  display: none !important;
}
@media (min-width: 768px) {
  .hidden-tablet-portrait {
    display: none !important;
  }
}
@media (min-width: 960px) {
  .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 (min-width: 960px) {
  .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 only on desktop */
.show-desktop {
  display: none !important;
}
@media (min-width: 768px) {
  .show-desktop {
    display: block !important;
  }
}
.show-desktop-inline {
  display: none !important;
}
@media (min-width: 768px) {
  .show-desktop-inline {
    display: inline !important;
  }
}
.show-desktop-inline-block {
  display: none !important;
}
@media (min-width: 768px) {
  .show-desktop-inline-block {
    display: inline-block !important;
  }
}

/* Show only on mobile */
@media (min-width: 768px) {
  .show-mobile {
    display: none !important;
  }
}

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

/** Text Alignment **/
.text-left {
  text-align: left !important;
}

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

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

/** No Border classes **/
.no-border-top {
  border-top: 0 !important;
}

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

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

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

.no-spacing {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}

/** Basic Grid **/
.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 (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;
  }
}

/*------------------------------------*\
    #Variables
\*------------------------------------*/
/*------------------------------------*\
    #Variables
    - Breakpoints
    - Pixel Values
    - Fonts
\*------------------------------------*/
/** Colors **/
/** Breakpoints **/
/** Pixel Values **/
/** Fonts **/
/*------------------------------------*\
    #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();
*/
/*------------------------------------*\
    #Overrides
\*------------------------------------*/
html {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.view1280 section header {
  width: auto;
  margin: 0;
}

.full-width #content header {
  height: auto;
}
.full-width #content a,
.full-width #content a:hover,
.full-width #content a:focus,
.full-width #content a:active,
.full-width #content a:visited {
  text-decoration: none;
}
.full-width .owl-dots .owl-dot span {
  background: #d1d5d9;
}
.full-width .owl-dots .owl-dot.active span {
  background: #539be2;
}

.gs-v2 .marquee.hero-top {
  padding: 0;
}
.gs-v2 .marquee .btn {
  -ms-flex-item-align: center;
          -webkit-align-self: center;
          align-self: center;
}
@media (min-width: 960px) {
  .gs-v2 .marquee .btn {
    -ms-flex-item-align: start;
            -webkit-align-self: flex-start;
            align-self: flex-start;
  }
}
@media (min-width: 960px) {
  .gs-v2 .marquee .text {
    text-align: left;
  }
}
@media (min-width: 640px) {
  .gs-v2 .marquee .text p {
    margin-left: 0;
  }
}

.viewing-on-tablet #content .cards-dark-bg .progress-bar,
.mobile #content .cards-dark-bg .progress-bar {
  background: #fff;
}
.viewing-on-tablet #content .progress-bar,
.mobile #content .progress-bar {
  margin: 30px auto 0 auto;
  display: block;
  width: 87%;
  background: #e1e1e1;
  height: 5px;
  position: relative;
}
@media (min-width: 768px) {
  .viewing-on-tablet #content .progress-bar,
  .mobile #content .progress-bar {
    width: 100%;
    max-width: none;
    margin-top: 20px;
  }
}
.viewing-on-tablet #content .fill,
.mobile #content .fill {
  margin: 0;
  padding: 0;
  background: #007FC3;
  display: block;
  position: absolute;
  width: 0;
  top: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  border: 0;
}

.viewing-on-tablet #content .carousel-holder .arrow {
  /*display: none;*/
}
.viewing-on-tablet #content .speaker {
  margin-right: 100px;
}

/*------------------------------------*\
    #Typography
    All typography related styles go in this file: headings, paragraphy copy etc...
\*------------------------------------*/
/*------------------------------------*\
    #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();
*/
/**
* Icons
* Set of clases generated from Icomoon.
* Please use the JSON file located in ../fonts
*/
.breadcrumbs.grid3 {
  margin-bottom: 4px;
}
.breadcrumbs.grid3 a {
  color: #fff;
}

#content .carousel-holder {
  overflow: hidden;
  position: relative;
  margin-bottom: 5px;
  min-height: 65px;
  -webkit-transform: translate3d(0px, 0px, 0px);
          transform: translate3d(0px, 0px, 0px);
  transition: 0s;
}
#content .carousel-holder.desktop {
  height: 267px;
}
#content .carousel-holder .arrow {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: 0;
  z-index: 99;
  padding: 15px 20px;
  opacity: 0;
  transition: opacity .5s ease-in-out;
  cursor: pointer;
}
#content .carousel-holder .arrow:focus {
  outline: 0;
}
#content .carousel-holder .arrow.show {
  opacity: 1;
}
#content .carousel-holder .arrow.arrow-left {
  left: 0;
}
#content .carousel-holder .arrow.arrow-right {
  right: 0;
}
#content .desktop .insights-carousel li {
  min-height: 272px;
}
#content .desktop .insights-carousel .title {
  font-size: 18px;
  line-height: 22px;
  left: 20px;
  bottom: 15px;
}
#content .desktop .insights-carousel .large-title {
  font-size: 60px;
  text-align: left;
  bottom: 30px;
  left: 30px;
  max-width: 600px;
}
#content .desktop .insights-carousel .large-title img {
  width: 232px;
}
#content .desktop .insights-carousel .img-holder {
  width: 236px;
  height: 131px;
}
#content .desktop .insights-carousel .topics {
  height: auto;
  min-height: 131px;
}
#content .insights-carousel {
  position: relative;
  width: 100%;
  white-space: nowrap;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 0;
  opacity: 0;
  overflow: hidden;
}
#content .insights-carousel.visible {
  opacity: 1;
}
#content .insights-carousel.no-pointer a {
  cursor: default;
}
#content .insights-carousel li {
  margin: 0 5px 0 0;
  display: block;
  float: left;
  position: relative;
}
#content .insights-carousel li:first-child {
  margin: 0 5px 0 0;
}
@media (min-width: 960px) {
  #content .insights-carousel li:first-child {
    margin: 0 5px 0 -136.5px;
  }
}
#content .insights-carousel li:last-child {
  margin-right: 0;
}
#content .insights-carousel li span.hide {
  display: none;
}
#content .insights-carousel li .hover-overlay {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  z-index: 10;
  transition: all .5s ease-in-out;
}
#content .insights-carousel li .hover-overlay:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 5px;
  bottom: 0;
  background: #7399C6;
  opacity: 0;
  transition: opacity .5s ease-in-out;
}
#content .insights-carousel li .hover-overlay img {
  opacity: 0;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 12px;
  z-index: 99;
  transition: all .5s ease-in-out;
}
#content .insights-carousel li .title {
  font-family: "Univers LT W01 65 Bold";
  font-size: 10px;
  position: absolute;
  bottom: 10px;
  padding: 0 10px 0 0;
  white-space: normal;
  line-height: 11px;
  left: 10px;
  z-index: 50;
  color: #fff;
}
#content .insights-carousel li .large-title {
  font-size: 30px;
  line-height: 1;
  font-family: "sabonroman";
  text-align: center;
  width: 100%;
  opacity: 0;
  display: none;
  position: absolute;
  padding: 0 10px 0 0;
  white-space: normal;
  z-index: 10;
  color: #fff;
}
#content .insights-carousel li .large-title.show {
  display: block;
}
#content .insights-carousel li .large-title img {
  width: 120px;
}
@media (min-width: 960px) {
  #content .insights-carousel li .large-title {
    font-size: 60px;
    text-align: left;
    bottom: 30px;
    left: 30px;
    max-width: 600px;
  }
  #content .insights-carousel li .large-title img {
    width: 232px;
  }
}
#content .insights-carousel li .img-holder {
  width: 118px;
  height: 65px;
  display: block;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}
#content .insights-carousel li .img-holder:after {
  opacity: 1;
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.8) 100%);
  transition: opacity .5s ease-in-out;
}
#content .insights-carousel li .img-holder.fade-gradient:after {
  opacity: 0;
}
#content .insights-carousel li .small {
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1);
  transition: -webkit-transform .5s ease-in-out;
  transition: transform .5s ease-in-out;
}
#content .insights-carousel li .hover-effect .hover-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.5);
}
#content .insights-carousel li .hover-effect .hover-overlay:before {
  opacity: 1;
}
#content .insights-carousel li .hover-effect .hover-overlay img {
  width: 22px;
  opacity: 1;
}
#content .insights-carousel li .hover-effect .small {
  -webkit-transform: scale(1.1, 1.1);
      -ms-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}
#content .insights-carousel li .more-insights {
  display: none;
  line-height: 10px;
  opacity: 0;
  font-size: 12px;
  font-family: "Univers LT W01 65 Bold";
  text-transform: uppercase;
  color: #fff;
  position: absolute;
  top: 25px;
  right: 20px;
}
#content .insights-carousel li .more-insights.show {
  display: block;
}
#content .insights-carousel li .more-insights img {
  margin-left: 10px;
  position: relative;
  top: 4px;
}
#content .insights-carousel .topics {
  position: relative;
  width: 100%;
  min-height: 65px;
}
#content .insights-carousel .topics + div {
  margin-top: 5px;
}
#content .insights-carousel .topics.hide {
  display: none;
}
#content .insights-carousel .topics.clone {
  margin: 0;
  visibility: hidden;
  max-height: 260px;
}
#content .insights-carousel .topics.stick {
  position: absolute;
  margin: 0;
}
#content .insights-carousel .topics.fadeOut {
  position: absolute;
  opacity: 1;
}
#content .insights-carousel .topics.grown {
  margin: 0;
}
#content .insights-carousel .topics.grown a {
  overflow: visible;
}
#content .insights-carousel .topics.fade-in {
  opacity: 0;
  position: absolute;
}
#content .insights-carousel .topics a {
  display: block;
  overflow: hidden;
}
#content .insights-carousel .topics a:focus {
  outline: none;
}
#content .page-transitions {
  min-height: 300px;
  opacity: 0;
}
@media (min-width: 768px) {
  #content .page-transitions div[data-stagger="true"] {
    opacity: 0;
  }
}
#content .page-transitions .into-copy,
#content .into-copy {
  font-family: "UniversLTW01-47LightCn";
  font-size: 16px;
  line-height: 19px;
  color: #434343;
  background: #e9edf0;
  padding: 25px 15px;
}
@media (min-width: 768px) {
  #content .page-transitions .into-copy,
  #content .into-copy {
    font-size: 24px;
    line-height: 38px;
    padding: 45px 0;
  }
}
#content .page-transitions .into-copy p,
#content .into-copy p {
  max-width: 875px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}
#content .page-transitions .into-copy h2,
#content .into-copy h2 {
  margin: 0 auto 1.125rem auto;
  color: #171717;
  font-family: 'sabonroman', serif;
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 100;
  letter-spacing: -.03rem;
  max-width: 875px;
  text-align: center;
  width: 100%;
}
@media all and (min-width: 768px) {
  #content .page-transitions .into-copy h2,
  #content .into-copy h2 {
    font-size: 3.75rem;
    line-height: 4.375rem;
    letter-spacing: -.08rem;
  }
}
#content .page-transitions .into-copy img,
#content .into-copy img {
  max-width: 100%;
}
#content .hero-top {
  padding: 40px 0;
  display: block;
}
@media (min-width: 768px) {
  #content .hero-top {
    padding: 0;
    max-height: 485px;
    min-height: 485px;
  }
}
@media (min-width: 1024px) {
  #content .hero-top {
    max-height: 550px;
    min-height: 550px;
  }
}
@media (min-width: 768px) {
  #content .hero-top.marquee .btn {
    -ms-flex-item-align: center;
            -webkit-align-self: center;
            align-self: center;
  }
}
@media (min-width: 1024px) {
  #content .hero-top.marquee .btn {
    -ms-flex-item-align: start;
            -webkit-align-self: flex-start;
            align-self: flex-start;
  }
}
#content .hero-top.marquee .text {
  text-align: center;
}
@media (min-width: 1024px) {
  #content .hero-top.marquee .text {
    text-align: left;
  }
}
#content .hero-top.marquee .text .eyebrow a {
  color: #fff;
}
@media (min-width: 768px) {
  #content .hero-top.marquee .text p {
    width: 70%;
    margin: 0 auto;
    font-size: 18px;
    line-height: 26px;
  }
}
@media (min-width: 1024px) {
  #content .hero-top.marquee .text p {
    margin-left: 0;
    width: 100%;
  }
}
#content .hero-top.marquee .text h2 {
  font-family: "sabonroman";
}
#content .hero-top,
#content .hero-cta {
  min-height: 347px;
  background-size: cover;
  background-position: center;
}
@media (min-width: 640px) {
  #content .hero-top,
  #content .hero-cta {
    display: block;
    min-height: 550px;
  }
}
#content .hero-cta .text {
  text-align: center;
}
#content .hero-cta .text p,
#content .hero-cta .text .button,
#content .hero-cta .text .btn {
  margin-right: auto;
  margin-left: auto;
}
#content .features-container {
  background: #f1f1f1 none;
  padding: 30px 0.625rem;
}
#content .features-container .section-title{
  margin-top: -10px;
  padding-bottom: 15px;
}
@media (min-width: 768px) {
  #content .features-container {
    padding: 50px 3.75rem;
  }
  #content .features-container .section-title{
    margin-top: -20px;
    padding-bottom: 25px;
  }
}
@media (min-width: 1200px) {
  #content .features-container {
    padding-left: 0px;
    padding-right: 0px;
  }
}
#content .additional-cta-container {
  background: #dddddd none;
  padding: 40px 0 0 0;
}
@media (min-width: 768px) {
  #content .additional-cta-container {
    padding: 80px 0;
  }
}
#content .features,
#content .additional-cta {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
#content .features.desktop-display,
#content .additional-cta.desktop-display {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#content .features .story,
#content .additional-cta .story {
  width: 48%;
  cursor: pointer;
}
#content .features .story:nth-child(odd),
#content .additional-cta .story:nth-child(odd) {
  margin-left: 0px;
  margin-right: 1%;
}
#content .features .story:nth-child(even),
#content .additional-cta .story:nth-child(even) {
  margin-left: 1%;
  margin-right: 0px;
}
@media (max-width: 767px) {
  #content .features .story,
  #content .additional-cta .story,
  #content .features .story:nth-child(odd),
  #content .additional-cta .story:nth-child(odd),
  #content .features .story:nth-child(even),
  #content .additional-cta .story:nth-child(even){
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
  }
}
#content .features.owl-carousel .owl-stage,
#content .additional-cta.owl-carousel .owl-stage {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
#content .features.owl-carousel .owl-stage .owl-item,
#content .additional-cta.owl-carousel .owl-stage .owl-item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
#content .features.owl-carousel .story,
#content .additional-cta.owl-carousel .story {
  width: 100%;
  margin: 0;
}
#content .features .owl-dots,
#content .additional-cta .owl-dots {
  display: block;
  text-align: center;
}
#content .features .owl-dots .owl-dot,
#content .additional-cta .owl-dots .owl-dot {
  display: inline-block;
  background: #ccc none repeat scroll 0 0;
  border-radius: 20px;
  height: 12px;
  margin: 24px 7px 0 7px;
  width: 12px;
}
#content .features .owl-dots .owl-dot.active,
#content .additional-cta .owl-dots .owl-dot.active {
  background: #2F6EB6;
}
#content .features .box,
#content .additional-cta .box {
  text-align: center;
  padding: 0 30px 110px 30px;
  margin: 0;
  display: block;
  position: relative;
}
@media (min-width: 768px) {
  #content .features .box,
  #content .additional-cta .box {
    padding: 0 62px 110px 62px;
  }
}
#content .features .box h2,
#content .additional-cta .box h2 {
  font-family: "sabonroman";
  font-size: 30px;
  text-transform: none;
  margin: 0;
  padding: 30px 0 15px 0;
  line-height: 30px;
}
@media (min-width: 768px) {
  #content .features .box h2,
  #content .additional-cta .box h2 {
    font-size: 40px;
    line-height: 50px;
    padding: 20px 42px;
  }
}
#content .features .box p,
#content .additional-cta .box p {
  font-family: "Univers LT W01 55 Roman";
  font-size: 13px;
  color: #434343;
  line-height: 19px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  #content .features .box p,
  #content .additional-cta .box p {
    font-size: 18px;
    line-height: 22px;
  }
}
#content .features .box .btn,
#content .additional-cta .box .btn {
  border: 2px solid #b5b5b5;
  color: #2F6EB6;
  font-size: 11px;
  background: transparent;
  z-index: 1;
  margin: 12px auto 40px auto;
  width: 160px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (min-width: 768px) {
  #content .features .box .btn,
  #content .additional-cta .box .btn {
    margin: 28px auto;
    font-size: 12px;
  }
}
#content .features .box .btn:before,
#content .additional-cta .box .btn:before {
  background: #b5b5b5;
}
#content .features .box .btn:hover, #content .features .box .btn:active,
#content .additional-cta .box .btn:hover,
#content .additional-cta .box .btn:active {
  color: #fff;
}
#content .features .talksbox,
#content .additional-cta .talksbox {
  border-right: none;
  border-bottom: 1px solid #d7d7d7;
}
#content .features .talksbox h2,
#content .additional-cta .talksbox h2 {
  background-position: center 10px;
  background-repeat: no-repeat;
  padding-top: 71px;
}
#content .features.desktop-display .talksbox,
#content .additional-cta.desktop-display .talksbox {
  border-right: 1px solid #c7c7c7;
  border-bottom: none;
}
#content .features.desktop-display .box,
#content .additional-cta.desktop-display .box {
  width: 50%;
}
#content .topic-cards {
  padding: 30px 0;
}
@media (min-width: 768px) {
  #content .topic-cards {
    padding: 60px 30px;
  }
}
@media (min-width: 1230px) {
  #content .topic-cards {
    padding-left: 0;
    padding-right: 0;
  }
}
#content .flex-box-grid {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 25px;
}
#content .flex-box-grid .story {
  margin: 0 0 30px 0;
  -webkit-flex: 0 0 32%;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
  cursor: pointer;
}
#content .flex-box-grid .story:nth-child(3n+2) {
  margin-left: 2%;
  margin-right: 2%;
}
#content .flex-box-grid .story:nth-child(3n+1):nth-last-child(-n+3), #content .flex-box-grid .story:nth-child(3n+1):nth-last-child(-n+3) ~ div {
  margin-bottom: 0;
}
#content .story {
  background: #fff;
}
#content .story > a {
  display: block;
  margin-bottom: 20px;
}
#content .story > a img {
  margin-bottom: 0;
  display: block;
}
#content .story img {
  margin-bottom: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  #content .story img {
    margin-bottom: 25px;
  }
}
#content .progress-bar {
  display: none;
}
#content .card-content {
  padding: 0 20px 20px 20px;
}
@media (min-width: 768px) {
  #content .card-content {
    padding: 0 30px 30px 30px;
  }
}
#content .card-content > a {
  font-family: "sabonitalic";
  font-size: 16px;
  margin: 13px 0 15px 0;
  display: block;
  padding: 0;
  border: 0;
}
#content .card-content .date {
  font-family: "Univers LT W01 55 Roman";
  font-size: 12px;
  color: #434343;
  display: block;
}
#content .card-content .date + h4 {
  margin-top: 10px;
}
@media (min-width: 768px) {
  #content .card-content .date + h4 {
    margin-top: 5px;
  }
}
#content .card-content h4 {
  font-family: "Univers LT W01 65 Bold";
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 18px 0;
  color: #000;
  letter-spacing: -1px;
}
@media (min-width: 768px) {
  #content .card-content h4 {
    font-size: 23px;
  }
}
@media (min-width: 1024px) {
  #content .card-content h4 {
    font-size: 26px;
  }
}
#content .card-content h4 a {
  margin: 0;
  padding: 0;
}
#content .card-content p {
  font-family: "Univers LT W01 55 Roman";
  font-size: 14px;
  color: #434343;
  line-height: 20px;
}
@media (min-width: 768px) {
  #content .card-content p {
    font-size: 16px;
    line-height: 22px;
  }
}
#content .owl-carousel-cards {
  margin-top: 15px;
}
@media (min-width: 768px) {
  #content .owl-carousel-cards {
    margin-top: 30px;
  }
}
#content .owl-carousel-cards .story,
#content .owl-carousel-cards .featured-talks-card,
#content .owl-carousel-cards .featured-speaker-card {
  width: 100%;
  margin: 0;
}
#content .owl-carousel-cards .white-cards .item,
#content .owl-carousel-cards .featured-talks-card .item,
#content .owl-carousel-cards .featured-speaker-card .item {
  margin-bottom: 0;
}
#content .owl-carousel-cards .white-cards .speaker,
#content .owl-carousel-cards .white-cards .talks,
#content .owl-carousel-cards .featured-talks-card .speaker,
#content .owl-carousel-cards .featured-talks-card .talks,
#content .owl-carousel-cards .featured-speaker-card .speaker,
#content .owl-carousel-cards .featured-speaker-card .talks {
  margin-right: 0;
}
#content .owl-carousel-cards .owl-stage {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
#content .owl-carousel-cards .white-cards {
  background: #fff;
}
#content .owl-carousel-cards .owl-dots {
  display: block;
  text-align: center;
}
#content .owl-carousel-cards .owl-dots .owl-dot {
  display: inline-block;
  background: #ccc no-repeat;
  border-radius: 20px;
  height: 12px;
  margin: 20px 7px 0 7px;
  width: 12px;
}
#content .owl-carousel-cards .owl-dots .owl-dot.active {
  background: #2F6EB6;
}
#content .related-topics {
  margin: 0 auto;
  padding: 30px 15px;
  overflow: hidden;
  font-size: 0;
}
@media (min-width: 960px) {
  #content .related-topics {
    padding: 60px 30px;
    max-width: 1200px;
    width: 100%;
  }
}
#content .related-topics h5 {
  font-size: 16px;
  color: #58575a;
  font-family: "sabonitalic";
  line-height: 32px;
  margin-bottom: 20px;
}
#content .related-topics h6 {
  font-size: 16px;
  line-height: 11px;
  margin-bottom: 15px;
  color: #000;
  font-family: "Univers LT W01 65 Bold";
}
@media (min-width: 960px) {
  #content .related-topics h6 {
    font-size: 20px;
    line-height: 22px;
  }
}
#content .related-topics h6 a {
  margin: 0;
  padding: 0;
}
#content .related-topics p {
  font-size: 12px;
  line-height: 16px;
  color: #434343;
  font-family: "Univers LT W01 55 Roman";
  margin-bottom: 0;
  padding: 0 20px 0 0;
  width: 95%;
}
@media (min-width: 960px) {
  #content .related-topics p {
    font-size: 14px;
    padding: 0;
    width: 70%;
  }
}
@media (min-width: 960px) {
  #content .related-topics p {
    width: 85%;
  }
}
#content .related-topics > a {
  font-family: "Univers LT W01 55 Roman";
}
#content .related-topics .divider {
  display: none;
}
@media (min-width: 960px) {
  #content .related-topics .divider {
    position: relative;
    left: -30px;
    width: 100%;
    display: block;
    border: 0;
    border-top: 1px solid #dfdfdf;
    margin: 0 0 40px 0;
  }
}
@media (min-width: 1024px) {
  #content .related-topics .divider {
    display: none;
  }
}
#content .related-topics > div {
  width: 100%;
  padding: 0 0 30px 0;
  margin: 0 0 30px 0;
  position: relative;
}
#content .related-topics > div:after {
  content: '';
  left: -15px;
  right: -15px;
  height: 1px;
  background: #dfdfdf;
  bottom: 0;
  display: block;
  position: absolute;
}
#content .related-topics > div:last-child {
  padding: 0;
  margin: 0;
}
#content .related-topics > div:last-child:after {
  display: none;
}
@media (min-width: 768px) {
  #content .related-topics > div {
    display: inline-block;
    max-width: 50%;
    margin-bottom: 60px;
    padding: 0;
  }
  #content .related-topics > div:after {
    display: none;
  }
}
@media (min-width: 1024px) {
  #content .related-topics > div {
    margin: 0;
    max-width: 25%;
  }
}
#content .related-topics > div:last-child {
  margin-right: 0;
}
#content .featured-talks,
#content .latest-talks {
  position: relative;
  padding: 30px 0;
}
@media (min-width: 768px) {
  #content .featured-talks,
  #content .latest-talks {
    padding: 40px 30px;
  }
}
@media (min-width: 1024px) {
  #content .featured-talks,
  #content .latest-talks {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
#content .latest-talks {
  text-align: center;
  border-bottom: 1px solid #dfdfdf;
}
#content .latest-talks .talks-holder {
  padding: 0 20px;
}
@media (min-width: 768px) {
  #content .latest-talks .talks-holder {
    padding: 0;
  }
}
#content .latest-talks .btn:before {
  background: #b9b9b9;
}
#content .latest-talks .btn:hover {
  color: #fff;
}
#content .latest-talks .btn:hover:before {
  background: #b9b9b9;
}
#content .featured-talks .talks:nth-child(2n+1):nth-last-child(-n+2), #content .featured-talks .talks:nth-child(2n+1):nth-last-child(-n+2) ~ div {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  #content .featured-talks .talks:nth-child(2n+0) {
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  #content .featured-talks .talks:nth-child(2n+0), #content .featured-talks .talks:nth-child(3n+3) {
    margin-right: 5.3%;
  }
  #content .featured-talks .talks:nth-child(4n+4) {
    margin-right: 0;
  }
  #content .featured-talks .talks:nth-child(4n+1):nth-last-child(-n+4), #content .featured-talks .talks:nth-child(4n+1):nth-last-child(-n+4) ~ div {
    margin-bottom: 0;
  }
}
#content .talks-holder {
  max-width: 1200px;
  margin: 30px auto 0 auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
#content .talks-holder .hide {
  display: none;
}
#content .talks {
  text-align: left;
  margin: 0 0 50px 0;
  cursor: pointer;
}
@media (min-width: 768px) {
  #content .talks {
    margin-right: 25px;
    -webkit-flex: 0 0 48.5%;
        -ms-flex: 0 0 48.5%;
            flex: 0 0 48.5%;
  }
  #content .talks.item-last {
    margin-right: 0;
  }
  #content .talks.last-row {
    margin-bottom: 30px;
  }
  #content .talks:nth-child(2n+1):nth-last-child(-n+2), #content .talks:nth-child(2n+1):nth-last-child(-n+2) ~ div {
    margin-bottom: 30px;
  }
}
@media (min-width: 1024px) {
  #content .talks {
    margin-right: 5.3%;
    -webkit-flex: 0 0 21%;
        -ms-flex: 0 0 21%;
            flex: 0 0 21%;
  }
  #content .talks:nth-child(4n+1):nth-last-child(-n+4), #content .talks:nth-child(4n+1):nth-last-child(-n+4) ~ div {
    margin-bottom: 30px;
  }
  #content .talks.item-last {
    margin-right: 0;
  }
}
#content .talks > a {
  display: block;
  margin-bottom: 15px;
}
#content .talks > a img {
  margin-bottom: 0;
}
#content .talks img {
  width: 100%;
  display: block;
  margin-bottom: 15px;
}
#content .talks .date {
  display: block;
  font-size: 12px;
  color: #434343;
  line-height: 22px;
  font-family: "Univers LT W01 55 Roman";
  margin-bottom: 5px;
  padding: 0 0 0 5px;
}
#content .talks h4 {
  font-size: 20px;
  font-family: "Univers LT W01 65 Bold";
  line-height: 22px;
  color: #000;
  margin: 0 0 10px 0;
  padding: 0 15px 0 5px;
}
#content .talks h4 a {
  margin: 0;
  padding: 0;
}
#content .talks p {
  font-family: "Univers LT W01 55 Roman";
  font-size: 14px;
  line-height: 18px;
  color: #434343;
  margin: 0;
  padding: 0 15px 0 5px;
}
@media (min-width: 768px) {
  #content .talks p {
    line-height: 20px;
  }
}
@media (min-width: 1024px) {
  #content .talks p {
    font-size: 14px;
    line-height: 18px;
  }
}
#content .featured-speaker-cards {
  padding: 30px 0;
  text-align: center;
}
@media (min-width: 768px) {
  #content .featured-speaker-cards {
    padding: 40px 30px;
  }
}
@media (min-width: 1024px) {
  #content .featured-speaker-cards {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
#content .speaker-cards {
  text-align: center;
  padding: 30px 70px;
  border-bottom: 1px solid #dfdfdf;
}
@media (min-width: 768px) {
  #content .speaker-cards {
    padding: 40px 30px;
  }
}
@media (min-width: 1024px) {
  #content .speaker-cards {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
#content .speaker-cards .btn:before {
  background: #b9b9b9;
}
#content .speaker-cards .btn:hover {
  color: #fff;
}
#content .speaker-cards .btn:hover:before {
  background: #b9b9b9;
}
#content .speakers-holder {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 1200px;
  margin: 30px auto 0 auto;
}
#content .featured-speaker-cards .speaker:nth-child(3n+1):nth-last-child(-n+3), #content .featured-speaker-cards .speaker:nth-child(3n+1):nth-last-child(-n+3) ~ div {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  #content .featured-speaker-cards .speaker:nth-child(6n+1):nth-last-child(-n+6), #content .featured-speaker-cards .speaker:nth-child(6n+1):nth-last-child(-n+6) ~ div {
    margin-bottom: 0;
  }
}
#content .speaker {
  text-align: left;
  box-sizing: border-box;
  margin-bottom: 50px;
}
#content .speaker.hide {
  display: none;
}
#content .speaker.last-row {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  #content .speaker {
    width: 100%;
  }
}
@media (min-width: 768px) {
  #content .speaker {
    -webkit-flex: 0 0 26%;
    -ms-flex: 0 0 26%;
    flex: 0 0 26%;
    margin: 0 10% 80px 0;
  }
  #content .speaker:nth-child(3n+3) {
    margin-right: 0;
  }
  #content .speaker:nth-child(3n+1):nth-last-child(-n+3), #content .speaker:nth-child(3n+1):nth-last-child(-n+3) ~ div {
    margin-bottom: 40px;
  }
}
@media (min-width: 1024px) {
  #content .speaker {
    -webkit-flex: 0 0 15%;
        -ms-flex: 0 0 15%;
            flex: 0 0 15%;
    margin: 0 2% 60px 0;
  }
  #content .speaker:nth-child(3n+3) {
    margin-right: 2%;
  }
  #content .speaker:nth-child(6n+6) {
    margin-right: 0;
  }
  #content .speaker:nth-child(6n+1):nth-last-child(-n+6), #content .speaker:nth-child(6n+1):nth-last-child(-n+6) ~ div {
    margin-bottom: 40px;
  }
}
#content .speaker h4 {
  font-size: 20px;
  font-family: "Univers LT W01 65 Bold";
  line-height: 13px;
  margin: 14px 0;
  padding-left: 5px;
  text-align: center;
  color: #000;
}
#content .speaker h4 a {
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  #content .speaker h4 {
    font-size: 23px;
    text-align: left;
    line-height: 22px;
    margin-top: 5px;
    margin-bottom: 15px;
  }
}
@media (min-width: 1024px) {
  #content .speaker h4 {
    font-size: 20px;
  }
}
#content .speaker p {
  font-size: 14px;
  font-family: "Univers LT W01 55 Roman";
  line-height: 16px;
  margin: 0 auto;
  max-width: 90%;
  padding: 0 0 0 5px;
  text-align: center;
  color: #434343;
}
@media (min-width: 768px) {
  #content .speaker p {
    text-align: left;
    margin: 0;
    max-width: 85%;
  }
}
#content .speaker > a {
  display: block;
}
#content .speaker img {
  width: 100%;
  display: block;
}
#content .tabs-header {
  background: #00355f;
  text-align: center;
  font-size: 0;
}
#content .tabs-header button {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  font-family: "UniversLTW01-59UltraCn";
  line-height: 40px;
  background: none;
  border: 0;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  margin-right: 10%;
  position: relative;
}
@media (min-width: 768px) {
  #content .tabs-header button {
    font-size: 24px;
    margin-right: 5%;
    line-height: 80px;
  }
}
#content .tabs-header button:hover {
  cursor: pointer;
}
#content .tabs-header button:last-child {
  margin-right: 0;
}
#content .tabs-header button:focus {
  outline: 0;
}
#content .tabs-header button:disabled {
  color: #5b98c7;
  cursor: default;
}
#content .tabs-header button:disabled:after {
  content: "";
  position: absolute;
  height: 5px;
  background: #5b98c7;
  top: 0;
  left: 0;
  right: 0;
}
#content .view-all,
#content .show-less {
  background: transparent;
  color: #2F6EB6;
  z-index: 1;
  display: none;
  border-color: #b9b9b9;
}
#content .show-less {
  margin-top: 30px;
}
#content .link-button,
#content .view-all,
#content .show-less {
  padding: 10px 30px;
  border: 1px solid #22A2FF;
  color: #22A2FF;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: .125rem;
  font-size: .6875rem;
  font-family: 'UniversLTW01-65Bold', sans-serif;
  text-align: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-transition: color .5s, background .5s, border-color .5s;
  transition: color .5s, background .5s, border-color .5s;
  background-color: transparent;
}
#content .link-button:hover,
#content .view-all:hover,
#content .show-less:hover {
  background-color: #22A2FF;
  color: #FFFFFF;
}
#content .view-all.hide,
#content .show-less.hide {
  display: none;
}
#content .view-all.show,
#content .show-less.show {
  display: inline-block;
}
#content .link-button:focus,
#content .view-all:focus,
#content .show-less:focus {
  outline: 0;
}
#content .view-all:hover,
#content .show-less:hover {
  color: #00355F;
}
#content .ajax-content {
  opacity: 0;
}
#content .select-holder {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  height: 52px;
  position: relative;
  padding: 0;
}
@media (min-width: 1024px) {
  #content .select-holder {
    height: 32px;
  }
}
#content .select-holder .gs-share.gs-share-buttons {
  top: 1px;
}
#content .customSelect li:not(.selected) {
  display: none;
}
#content div.customSelect {
  margin: 0;
  display: block;
  position: absolute;
  top: 0;
  left: 10px;
  right: 10px;
  height: 50px;
  cursor: pointer;
}
@media (min-width: 768px) {
  #content div.customSelect {
    width: 500px;
    left: 0;
    right: auto;
  }
}
@media (min-width: 1024px) {
  #content div.customSelect {
    width: 295px;
    height: 30px;
  }
}
#content div.customSelect.open ul {
  box-shadow: 0 7px 10px 0px rgba(0, 0, 0, 0.15);
  border: 1px solid #ccc;
  border-radius: 5px;
}
#content div.customSelect.open ul li.selected a:after {
  opacity: 0;
}
#content div.customSelect.closed {
  border: 1px solid #ccc;
  border-radius: 5px;
}
#content div.customSelect.closed li.selected a {
  border: 0;
}
#content div.customSelect:not(.closed) ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: #fff;
}
#content div.customSelect:not(.closed) ul li a {
  border: 0;
}
#content div.customSelect:not(.closed) ul li:first-child a {
  border: 0;
}
#content div.customSelect ul {
  box-shadow: 0 7px 10px 0px transparent;
}
#content div.customSelect ul a {
  background-color: transparent;
}
#content div.customSelect ul a:hover {
  color: #2F3338;
}
#content div.customSelect ul a,
#content div.customSelect ul span {
  font-size: 14px;
  font-family: "Univers LT W01 65 Bold";
  text-align: left;
  line-height: 50px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 14px;
  height: auto;
}
@media (min-width: 768px) {
  #content div.customSelect ul a,
  #content div.customSelect ul span {
    font-size: 16px;
    padding-left: 25px;
  }
}
@media (min-width: 1024px) {
  #content div.customSelect ul a,
  #content div.customSelect ul span {
    line-height: 30px;
    font-size: 14px;
    padding-left: 10px;
  }
}
#content div.customSelect ul li {
  box-sizing: border-box;
  height: 50px;
}
#content div.customSelect ul li a {
  color: #666;
}
#content div.customSelect ul li.selected {
  border: 0;
}
#content div.customSelect ul li.selected a {
  color: #2F3338;
  position: relative;
  background: none;
}
#content div.customSelect ul li.selected a:after {
  display: inline-block;
  opacity: 1;
  content: "";
  width: 13px;
  height: 9px;
  background: url(../images/insights/select-box/arrow-down.png) no-repeat;
  position: absolute;
  transition: opacity .3s ease-in-out;
  top: 30px;
  right: 15px;
}
@media (min-width: 768px) {
  #content div.customSelect ul li.selected a:after {
    top: 20px;
  }
}
@media (min-width: 1024px) {
  #content div.customSelect ul li.selected a:after {
    top: 10px;
  }
}
@media (min-width: 1024px) {
  #content div.customSelect ul li {
    height: 30px;
  }
}
#content div.customSelect .customSelect li:first-child.selected a:after,
#content .customSelect.closed li.selected a:after {
  border: 0;
}
#content .related-footer {
  margin: 0 auto;
  padding: 30px 15px;
}
@media (min-width: 768px) {
  #content .related-footer {
    padding: 50px 30px;
    max-width: 1200px;
    font-size: 0;
  }
}
#content .related-footer > div {
  box-sizing: border-box;
  width: 100%;
  position: relative;
  padding: 0 0 30px 0;
  margin-bottom: 30px;
  vertical-align: top;
}
#content .related-footer > div:last-child {
  margin: 0;
  padding: 0;
}
#content .related-footer > div:last-child:after {
  display: none;
}
#content .related-footer > div:after {
  content: "";
  height: 1px;
  background: #dfdfdf;
  position: absolute;
  left: -15px;
  right: -15px;
  bottom: 0;
}
@media (min-width: 768px) {
  #content .related-footer > div {
    width: 50%;
    display: inline-block;
  }
  #content .related-footer > div:after {
    display: none;
  }
}
#content .related-footer > div a {
  font-size: 13px;
}
#content .related-footer h6 {
  font-size: 17px;
  font-family: "Univers LT W01 65 Bold";
  line-height: 21px;
  margin-bottom: 20px;
  color: #241d1d;
}
#content .related-footer p {
  font-size: 13px;
  font-family: "Univers LT W01 55 Roman";
  line-height: 17px;
  width: 100%;
  margin-bottom: 20px;
  color: #434343;
}
@media (min-width: 768px) {
  #content .related-footer p {
    max-width: 420px;
  }
}
#content .related-footer a {
  font-family: "Univers LT W01 55 Roman";
}
#content .cards-dark-bg {
  background: #dddddd;
}
#content .cards-light-bg {
  background: #f1f1f1;
}
#content.insights .gs-share.gs-share-buttons {
  top: -8px;
  float: right;
  right: 10px;
}
@media (min-width: 768px) {
  #content.insights .gs-share.gs-share-buttons {
    top: 1px;
  }
}
#content.insights div.gs-share .icon-close:before {
  top: -3px;
  position: relative;
}
#content.insights .gs-share.gs-share-buttons ul li {
  line-height: 14px;
}
@media (min-width: 768px) {
  #content.insights .gs-share.gs-share-buttons ul li {
    line-height: 38px;
  }
}
#content.insights .gs-share.gs-share-buttons .share-toggle {
  line-height: 33px;
}
@media (min-width: 768px) {
  #content.insights .gs-share.gs-share-buttons .share-toggle {
    line-height: 38px;
  }
}
#content.insights .gs-share.gs-share-buttons div {
  height: 35px;
}
@media (min-width: 768px) {
  #content.insights .gs-share.gs-share-buttons div {
    height: auto;
  }
}
#content .share-holder {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  height: 48px;
}
#content .section-title {
  text-align: left;
  font-size: 21px;
  line-height: 20px;
  margin: 0 auto;
  font-family: "UniversLTW01-47LightCn";
  color: #6e9bc7;
  text-transform: none;
  padding-left: 15px;
}
#content .section-title a {
  border: 0;
}
@media (min-width: 768px) {
  #content .section-title {
    padding: 0;
    font-size: 36px;
    line-height: 40px;
    max-width: 1200px;
    width: 100%;
    position:relative;
  }
}
#content .title-link-hover {
  color: #000;
  transition: color 0.3s ease;
}
#content .title-link-hover:hover {
  color: #444;
}
@media (any-hover: none) {
  #content .title-link-hover:hover {
    color: #000;
  }
}
#content .img-hover-effect {
  position: relative;
}
#content .img-hover-effect:after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0);
  transition: background 0.5s ease;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#content .img-hover-effect:hover:after {
  background: rgba(255, 255, 255, 0.25);
}
@media (any-hover: none) {
  #content .img-hover-effect:hover:after {
    background: rgba(255, 255, 255, 0);
  }
}

#content .story .audio-icon,
#content .talks .audio-icon,
#content .story .video-icon,
#content .talks .video-icon {
  width: 2.25rem;
  height: 2.25rem;
  margin-top: -2.25rem;
  position: absolute;
  display: block;
}
#content .story .video-icon,
#content .talks .video-icon {
  background: transparent url('https://www.goldmansachs.comhttps://www.goldmansachs.com/a/pgs/images/post-image-icon-video.png') no-repeat;
}
#content .story .audio-icon,
#content .talks .audio-icon {
  background: transparent url('https://www.goldmansachs.comhttps://www.goldmansachs.com/a/pgs/images/post-image-icon-audio.png') no-repeat;
}

#content .carousel-holder.insights-carousel-expanded-container div.topics:not(.grown) a{
  cursor: default;
}
#content .carousel-holder.insights-carousel-expanded-container button.arrow{
  display: none;
}

#content .carousel-holder:not(.desktop) button.arrow,
#content .carousel-holder:not(.desktop) span.hover-overlay{
  display: none;
}

#content .carousel-holder:not(.desktop) span.more-insights{
  top: 0.75rem;
  right: 0.75rem;
}

#content .related-footer h6{
  display: inline-block;
}

#content .section-title .share-services {
  top: 0;
  margin-top: 0px;
}

#content .load-more-container {
  text-align: center;
}

#content .insights-share-positioner {
  position: absolute;
  width: 100%;
  max-width: 1200px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

#content .insights-share-positioner > .share-services {
  position: unset;
}

#content .insights-share-positioner > .share-services > .share-options {
  float: right;
}

#content .insights-share-positioner > .share-services:not(.expanded) > .share-options > a {
  display: none;
}

@media (min-width: 768px){
  #content .insights-share-positioner > .share-services {
    position: unset;
  }
}

#content .card-content b,
#content .card-content strong,
#content .talks b,
#content .talks strong {
  font-weight: normal;
  font-family: "Univers LT W01 65 Bold", sans-serif;
}

#content .link-button {
  margin-top: 60px;
  display: inline-block;
}

#content .features .story {
  background-color: #f1f1f1;
  margin-bottom: 2%;
}
#content .features .story .card-content {
  background-color: #FFFFFF;
  padding-top: 5px;
}
#content .features .story > a {
  margin-bottom: 0px;
}
#content .features .series-holder {
  text-align: center;
  height: 7rem;
  vertical-align: middle;
}
#content .features .series-holder.no-image {
  height: 5rem;
}
#content .features .series-holder a {
  display: block;
}
#content .features .series-holder img {
  height: 4.25rem;
  width: auto;
  margin: 1rem 1rem 2rem;
}
#content .features .series-holder h1 {
  color: #7399c6;
  font-family: 'sabonroman', serif;
  font-weight: 100;
  margin: 0;
  font-size: 3rem;
  line-height: 4rem;
  text-transform: none;
  padding-top: 0;
}

@media (min-width: 768px) {
  #content .features .series-holder h1 {
    font-size: 3.75rem;
    line-height: 9rem;
  }

  #content .features .cta-block .cta {
    margin: 0px;
  }

  #content .features .series-holder,
  #content .features .series-holder.no-image {
    height: 9rem;
  }

  #content .features .series-holder img {
    height: 6rem;
  }
}

body.interim-footer:not(#insights) {
  overflow: hidden !important;
}
.content-card__topics {
  color: #7f7d7d;
  letter-spacing: .03rem;
  font-family: 'UniversLTW01-65Bold', sans-serif;
  text-transform: uppercase;
  font-size: .625rem;
  margin-top: 1.25rem;
  line-height: 1rem;
}
.content-card__topics a {
  color: #2f6eb6;
  text-decoration: none;
  -webkit-transition: color .5s, background .5s;
  transition: color .5s, background .5s;
}
.content-card__topics a:hover {
  color: #00355f;
}
@media all and (min-width: 768px) {
  .content-card__topics {
    font-size: .6875rem;
  }
}
.content-card__topics .content-card__topics-separator {
  vertical-align: text-bottom;
}