/* ==========================================================================
   Mixins
   ========================================================================== */
/*
 * Mixin for opacity
 * @include opacity(0.5);
*/
/*
 * Mixin for easy media queries
 * @include bp(small) { SCSS here }
*/
/*
 * Mixin for clearfix
 * @include clearfix;
*/
/*
 * Mixin for basic CSS triangles
 * @include triangle(up, #000, 50px)
*/
/*
 * @font-face mixin
 * Bulletproof font-face via Font Squirrel
 * @include fontface('family', 'assets/fonts/', 'myfontname');
 */
/*
$generalHeading : 2.5;
$mainHeading : 3.5;
$largeHeading: 5.8;
*/
/* ==========================================================================
   Variables
   ========================================================================== */
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px !important;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden;
}

.fill {
  width: 100%;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.center .item, .right .item {
  display: inline-block;
}

.fluid {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}

.fluid-map {
  width: 100%;
  padding-top: 75%;
}

.fluid .fluid-element,
.fluid iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fluid .fluid-element {
  background-size: cover;
  background-position: center;
}

.vertical-center-block {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.vertical-center {
  display: table;
  height: 100%;
  width: 100%;
}

.vertical-center-cell {
  vertical-align: middle;
  display: table-cell;
}

.flex-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  /* Prevents distributing space between rows */
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

.flex-c-1,
.flex-c-1-1,
.flex-c-1-2,
.flex-c-1-3,
.flex-c-2-3,
.flex-c-1-4,
.flex-c-3-4,
.flex-c-1-5,
.flex-c-2-5,
.flex-c-3-5,
.flex-c-4-5,
.flex-c-1-6,
.flex-c-5-6 {
  display: inline-block;
}

.flex-c-1-6 {
  width: 16.6667%;
}

.flex-c-1-5 {
  width: 20%;
}

.flex-c-1-4 {
  width: 25%;
}

.flex-c-1-3 {
  width: 33.3333%;
}

.flex-c-2-5 {
  width: 40%;
}

.flex-c-1-2 {
  width: 50%;
}

.flex-c-3-5 {
  width: 60%;
}

.flex-c-2-3 {
  width: 66.6667%;
}

.flex-c-3-4 {
  width: 75%;
}

.flex-c-4-5 {
  width: 80%;
}

.flex-c-5-6 {
  width: 83.3333%;
}

.flex-c-1,
.flex-c-1-1 {
  width: 100%;
}

@media screen and (max-width: 820px) {
  [class*="flex-c-"] {
    width: 50%;
  }
}

@media (max-width: 767px) {
  [class*="flex-c-"] {
    width: 50%;
  }
}

@media (max-width: 480px) {
  [class*="flex-c-"] {
    width: 100%;
  }
}

.feature-landing {
  position: relative;
  margin-bottom: 60px;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
}

.feature-landing .grid {
  margin: auto;
}

.feature-landing__hero-holder {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.feature-landing__carousel {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.feature-landing__carousel .feature-landing__side {
  height: 100%;
}

.feature-landing__carousel .slick-list,
.feature-landing__carousel .slick-track {
  height: 100%;
}

.feature-landing__carousel img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  overflow: hidden;
  font-family: "object-fit: cover; object-position: center;";
}

.feature-landing__film {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  z-index: 2;
  height: 100%;
}

.feature-landing__film:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.15;
}

.feature-landing__film .vjs-big-play-button {
  display: none;
}

.feature-landing__film .video-js,
.feature-landing__film .vjs-poster {
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
}

.feature-landing__film .vjs-poster {
  display: none;
}

.feature-landing__film .vjs-control-bar {
  display: none;
}

.feature-landing__fluid {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.feature-landing__fluid > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-aspect-ratio: 16 / 9) {
  .feature-landing__fluid > iframe {
    height: 300%;
    top: -100%;
  }
}

@media (max-aspect-ratio: 16 / 9) {
  .feature-landing__fluid > iframe {
    width: 300%;
    left: -100%;
  }
}

/* 2. If supporting object-fit, overriding (1): */
@supports (object-fit: cover) {
  .feature-landing__fluid > iframe {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.feature-landing__top {
  height: calc(100vh - 246px);
  display: block;
  position: relative;
}

.feature-landing .col-push-6 {
  left: 50%;
}

.feature-landing__scroll-for-more {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  
  font-weight: 700;
  z-index: 10;
}

.feature-landing__scroll-for-more:hover {
  text-decoration: none;
}

.feature-landing__scroll-for-more:before {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -5px;
  content: '';
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 100%;
}

.feature-landing__scroll-for-more:after {
  content: '';
  width: 2px;
  height: 36px;
  background: #fff;
  display: block;
  margin: 16px auto 0;
}

.feature-landing__scroll-for-more .icon-mouse {
  padding-top: 38px;
  font-size: 52px;
  display: block;
  text-align: center;
}

.feature-landing__scroll-for-more .icon-mouse:after {
  content: '';
  width: 2px;
  height: 44px;
  background: #fff;
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -1px;
}

.feature-landing__scroll-for-more .text {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  margin-bottom: 23px;
}

.feature-landing__overlay {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 11;
}

.feature-landing__header {
  color: #fff;
  font-size: 88px;
  line-height: 1;
  letter-spacing: -1px;
  margin: 0;
}

.feature-landing__quick-heading {
  display: none;
}

.feature-landing__quick-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-landing__quick-list li {
  display: inline-block;
  padding: 0 10px;
  margin: 10px 0;
  border-right: solid 1px #fff;
}

.feature-landing__quick-list li:last-child {
  border: 0;
}

.feature-landing__quick-list .button {
  color: #fff;
}

.feature-landing__quick-list .button:hover {
  color: #fff !important;
}

.feature-landing__quick-list .button:hover span:last-child::after,
.feature-landing__quick-list .button:hover span:last-child::before,
.feature-landing__quick-list .button:hover span:first-child::after,
.feature-landing__quick-list .button:hover span:first-child::before, .feature-landing__quick-list .button::after,
.feature-landing__quick-list .button span::after,
.feature-landing__quick-list .button span::before {
  background: #fff;
}

.feature-landing__body {
  max-width: 480px;
  margin-top: -5px;
}

.feature-landing__headline-intro-area {
  background: #fff;
  padding: 60px 65px 35px;
  margin-left: -65px;
  width: 100%;
}

.feature-landing__intro-headline {
  margin: 0;

  max-width: 395px;
}

.feature-landing__hero-intro {
  left: 0;
  width: 100%;
  position: relative;
  z-index: 3;
}

@media screen and (min-width: 769px) and (max-height: 800px) {
  .feature-landing__scroll-for-more:after {
    height: 12px;
    margin: 6px auto 0;
  }
  .feature-landing__scroll-for-more .text {
    margin-top: 0;
    margin-bottom: 13px;
  }
  .feature-landing__scroll-for-more .icon-mouse {
    padding-top: 18px;
  }
  .feature-landing__scroll-for-more .icon-mouse:after {
    height: 24px;
  }
}

@media screen and (min-width: 769px) and (max-height: 625px) {
  .feature-landing__scroll-for-more .icon-mouse:after,
  .feature-landing__scroll-for-more:before,
  .feature-landing__scroll-for-more:after {
    display: none;
  }
  .feature-landing__scroll-for-more .text {
    display: none;
  }
  .feature-landing__scroll-for-more .icon-mouse {
    padding-top: 0;
    padding-bottom: 6px;
  }
}

@media screen and (min-width: 769px) and (max-height: 500px) {
  .feature-landing__scroll-for-more {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .feature-landing__scroll-for-more .icon-mouse:after {
    width: 1px;
  }
  .feature-landing__scroll-for-more:before {
    width: 9px;
    height: 9px;
  }
  .feature-landing__scroll-for-more:after {
    width: 1px;
  }
  .feature-landing .icon-mouse {
    font-size: 26px;
    padding-top: 29px;
  }
  .feature-landing .icon-mouse:after {
    height: 26px;
  }
  .feature-landing .icon-mouse:before {
    content: "\e916";
  }
  .feature-landing__scroll-for-more:after {
    margin-top: 6px;
  }
  .feature-landing__quick {
    position: relative;
  }
  .feature-landing__quick-heading {
    padding: 14px 20px;
    border: solid 1px #fff;
    display: block;
    color: #fff;
    text-align: left;
    line-height: 1;
    font-weight: 700;
    position: relative;
  }
  .feature-landing__quick-heading:before {
    width: 15px;
    height: 1px;
    -webkit-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
            transform: rotate(30deg);
    content: '';
    position: absolute;
    top: 24px;
    right: 27px;
    background: #fff;
    pointer-events: none;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .feature-landing__quick-heading:after {
    width: 15px;
    height: 1px;
    -webkit-transform: rotate(-30deg);
        -ms-transform: rotate(-30deg);
            transform: rotate(-30deg);
    content: '';
    position: absolute;
    top: 24px;
    right: 14px;
    background: #fff;
    pointer-events: none;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .feature-landing__quick-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    border: solid 1px #fff;
    border-bottom: 0;
    border-top: 0;
    -webkit-transition: max-height 0.45s ease-out;
    transition: max-height 0.45s ease-out;
    max-height: 0px;
    overflow: hidden;
  }
  .feature-landing__quick-list li {
    padding: 5px 20px;
    display: block;
    border: 0;
  }
  .feature-landing__quick.show .feature-landing__quick-list {
    max-height: 300px;
    border-bottom: solid 1px #fff;
  }
  .feature-landing__quick.show .feature-landing__quick-heading:before {
    -webkit-transform: rotate(-30deg);
        -ms-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
  .feature-landing__quick.show .feature-landing__quick-heading:after {
    -webkit-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  .feature-landing__header {
    font-size: 38px;
    margin-bottom: 0.4em;
  }
  .feature-landing__overlay {
    padding: 0 30px;
  }
  .feature-landing__top {
    height: calc(100vh - 175px);
  }
  .feature-landing .col-push-6 {
    left: 0%;
  }
  .feature-landing__hero-text,
  .feature-landing__hero-intro {
    /*transform:translate(0,50px);*/
  }
  .feature-landing__headline-intro-area {
    padding: 35px 35px 20px;
    margin-left: 0;
  }
  .feature-landing__headline-row-intro {
    padding: 0 25px;
  }
  .feature-landing__headline-row-body {
    padding: 0 60px;
  }
  .feature-landing__scroll-for-more .icon-mouse {
    padding-top: 25px;
  }
  .feature-landing__scroll-for-more:after {
    height: 26px;
  }
  .feature-landing__scroll-for-more .text {
    margin-top: 5px;
    margin-bottom: 9px;
  }
}

.scroll-menu {
  position: fixed;
  top: 350px;
  right: 0;
  z-index: 1000;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: translate(100%, 0);
      -ms-transform: translate(100%, 0);
          transform: translate(100%, 0);
}

.scroll-menu.open {
  -webkit-transform: translate(0%, 0);
      -ms-transform: translate(0%, 0);
          transform: translate(0%, 0);
}

.scroll-menu.open .scroll-menu__toggle span:nth-child(1) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-bottom: -9px;
}

.scroll-menu.open .scroll-menu__toggle span:nth-child(2) {
  visibility: hidden;
}

.scroll-menu.open .scroll-menu__toggle span:nth-child(3) {
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
  margin-top: 3px;
}

.scroll-menu__toggle {
  background: #001E42;
  border: 0;
  border-radius: 0;
  position: absolute;
  top: 0;
  height: 50px;
  right: 100%;
  padding: 17px 12px 12px;
}

.scroll-menu__toggle span {
  height: 2px;
  width: 26px;
  margin-bottom: 5px;
  background-color: #fff;
  display: inline-block;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  display: block;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.scroll-menu__list {
  width: 135px;
  background: #001E42;
  padding: 0px 20px;
}

.scroll-menu__list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.scroll-menu__list li {
  margin: 0;
  padding: 0;
  border-bottom: solid 1px #67767d;
}

.scroll-menu__list li:last-child {
  border: 0;
}

.scroll-menu__list a {
  color: #fff;
  display: block;
  padding: 10px 0;
  font-size: 12px;
  line-height: 18px;
}

@media (max-width: 800px) {
  .scroll-menu {
    display: none;
  }
}

.column-blocks {
  max-width: 1100px;
  margin: auto;
}

.column-blocks .slick-arrow {
  text-indent: -9999px;
  overflow: hidden;
  width: 30px;
  height: 45px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  border: 0;
  background: transparent;
  z-index: 10;
  display: none;
}

.column-blocks .slick-next {
  right: -25px;
}

.column-blocks .slick-next:before {
  content: '';
  width: 1px;
  height: 25px;
  -webkit-transform: rotate(-30deg);
      -ms-transform: rotate(-30deg);
          transform: rotate(-30deg);
  position: absolute;
  background: #000;
  top: 0;
  right: 5px;
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
}

.column-blocks .slick-next:after {
  content: '';
  width: 1px;
  height: 25px;
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg);
  position: absolute;
  background: #000;
  top: 22px;
  right: 17px;
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
}

.column-blocks .slick-prev {
  left: -5px;
}

.column-blocks .slick-prev:before {
  content: '';
  width: 1px;
  height: 25px;
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg);
  position: absolute;
  background: #000;
  top: 0;
  left: 5px;
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
}

.column-blocks .slick-prev:after {
  content: '';
  width: 1px;
  height: 25px;
  -webkit-transform: rotate(-30deg);
      -ms-transform: rotate(-30deg);
          transform: rotate(-30deg);
  position: absolute;
  background: #000;
  top: 22px;
  left: 17px;
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
}

.column-blocks .slick-dots {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.column-blocks .slick-dots li {
  display: inline-block;
  position: relative;
  color: #001E42;
  font-size: 14px;
  cursor: pointer;
  vertical-align: middle;
}

.column-blocks .slick-dots li.slick-active button:after {
  width: 30px;
}

.column-blocks .slick-dots li:last-child button:before {
  content: "";
  background-color: #CCC;
  height: 1px;
  width: 0;
  -webkit-transition: width 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: width 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
}

.column-blocks .slick-dots li:last-child.slick-active button:before {
  width: 30px;
}

.column-blocks .slick-dots li:last-child.slick-active button:after {
  width: 0px;
}

.column-blocks .slick-dots button {
  border: 0;
  padding: 0;
  background: transparent;
}

.column-blocks .slick-dots button:after {
  content: "";
  background-color: #CCC;
  height: 1px;
  width: 0;
  -webkit-transition: width 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: width 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
}

.column-blocks {
  margin-bottom: 60px;
}

.column-blocks .col-3_of_12 {
  width: 25%;
  margin: 0;
}

.column-blocks__intro {
  padding: 0 50px;
  max-width: 665px;
  margin: auto;
  text-align: center;
}

.column-blocks__item {
  padding: 0 20px;
  margin: 0;
}

.column-blocks__holder {
  margin-top: 60px !important;
}

.column-blocks__intro-headline {
  font-size: 34px;
  line-height: 1.3;
  font-weight: 400;
 
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
}

.column-blocks__intro-body {
  margin: auto;
}

.column-blocks__item-content {
  padding: 30px 0px 0;
}

.column-blocks__item-headline {
  font-size: 20px;

  font-weight: 400;
  line-height: 1.2;
  margin-top: 0;
}

.column-blocks__item-image {
  display: block;
}

.column-blocks__item-image {
  width: 100%;
}

.sticky-blocks {
  /*.column-blocks__items  {
		position:absolute;
		top: 0;
		left:0;
		width: 100%;
		max-width:1100px;
		height: calc(100vh - 137px);
		.row {
			position:absolute;
			top: 50%;
			left: 0;
			width: 100%;
			transform:translate(0,-50%);
		}
	}*/
}

.sticky-blocks .proxy-item {
  display: none;
}

.sticky-blocks .column-blocks__item {
  opacity: 0;
  -webkit-transition: opacity 1.8s ease-out, -webkit-transform 1.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 1.8s ease-out, -webkit-transform 1.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 1.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 1.8s ease-out;
  transition: transform 1.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 1.8s ease-out, -webkit-transform 1.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: translate(0, 90px);
      -ms-transform: translate(0, 90px);
          transform: translate(0, 90px);
}

.sticky-blocks .column-blocks__item.item1 {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.sticky-blocks .column-blocks__item.item2 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.sticky-blocks .column-blocks__item.item3 {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.sticky-blocks .column-blocks__item.item4 {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.sticky-blocks .show .column-blocks__item {
  opacity: 1;
  -webkit-transform: translate(0, 0px);
      -ms-transform: translate(0, 0px);
          transform: translate(0, 0px);
}

.slick-slider .col-3_of_12 {
  width: 275px;
}

.column-blocks__more-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  font-size: 30px;
  
  -webkit-transition: top 2.5s ease-out;
  transition: top 2.5s ease-out;
  display: none;
}

.column-blocks__items.inView .column-blocks__more-icon {
  top: calc(100% - 30px);
}

@media (max-height: 680px) {
  .column-blocks__more-icon {
    display: none;
  }
  .sticky-blocks .column-blocks__holder {
    height: auto;
  }
  .sticky-blocks .column-blocks__item {
    opacity: 1;
    -webkit-transform: translate(0, 0px);
        -ms-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
  .sticky-blocks .proxy-item {
    display: none;
  }
  .column-blocks__items.sticky-middle {
    position: relative;
    height: auto;
  }
  .sticky-blocks .column-blocks__items .row {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    position: relative;
    top: auto;
  }
}

@media screen and (max-width: 768px) {
  .column-blocks__intro-headline {
    margin-top: 0;
  }
  .column-blocks__more-icon {
    display: none;
  }
  .column-blocks {
    padding: 0 15px;
  }
  .column-blocks__item-content {
    padding: 30px 20px 0;
  }
  .sticky-blocks .column-blocks__holder {
    position: static;
    height: auto;
  }
  .sticky-blocks .proxy-item {
    display: none;
  }
  .sticky-blocks .column-blocks__item {
    opacity: 1;
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .sticky-blocks .column-blocks__item.show {
    opacity: 1;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .sticky-blocks .column-blocks__items {
    position: static !important;
    max-width: none;
    height: auto;
  }
  .sticky-blocks .column-blocks__items .row {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}

.quote-image {
  position: relative;
  margin-bottom: 60px;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  padding: 30px;
}

.quote-image .quote-image__content {
  margin: 0;
}

.quote-image .button {
  margin-top: 37px;
}

.quote-image-quote__cite {
  display: block;
  padding-top: 17px;
  font-size: 14px;
}

.quote-image-quote__cite:before {
  display: block;
  height: 1px;
  width: 35px;
  margin: auto;
  content: '';
  margin-bottom: 17px;
  background: #001E42;
}

.quote-image__holder {
  position: relative;
  padding: 65px 0;
  overflow: hidden;
}

.quote-image__media {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.quote-image__content {
  position: relative;
  padding: 82px  60px 70px;
  background: #fff;
  margin: 0;
  max-width: 550px;
}

.quote-right .quote-image__content {
  float: right;
}

.quote-image__quote {
  display: table;
  min-height: 300px;
  width: 100%;
}

.quote-image__quote-row {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.quote-image__quote-content {
  font-size: 28px;
  margin: 0;
  font-style: italic;
  line-height: 1.3;
  
}

@media screen and (max-width: 768px) {
  .quote-image__quote {
    display: block;
  }
  .quote-image__quote-row {
    display: block;
  }
  .quote-image {
    padding: 0;
  }
  .quote-image .quote-image__content {
    width: 100% !important;
    margin-top: -40px !important;
    padding: 30px;
  }
  .quote-image__holder {
    padding: 25px;
  }
  .quote-image__quote {
    min-height: auto;
  }
  .quote-image__media {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
  }
  .quote-image__media:after {
    content: '';
    display: block;
    padding-bottom: 55%;
  }
  .quote-right .quote-image__content {
    float: none;
  }
  .quote-image .button {
    margin-top: 10px;
  }
}

#main-content .content-blocks-container .content-listing > .grid {
  margin-top: 0px !important;
}

.content-listing_hidden-articles {
  display: none;
}

.content-listing__float-columns {
  overflow: visible;
}

.content-listing__float-columns:after {
  content: "";
  display: table;
  clear: both;
}

.content-listing__float-column {
  float: left;
  width: 50%;
}

.content-listing {
  position: relative;
  margin-bottom: 60px;
}

.content-listing__close-article {
  display: none;
}

.content-listing .content-listing__more-button-row {
  text-align: center;
}

.content-listing .content-listing_articles {
  /*padding-left:50%;*/
  position: relative;
}

.content-listing .content-listing__media {
  background: rgba(0, 0, 0, 0.05);
  padding-bottom: 111%;
  position: relative;
}

.content-listing .content-listing__media img {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.content-listing .content-listing__media .lazyfade {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-out;
  transition: opacity 0.4s ease-out;
}

.content-listing .content-listing__media .lazyloaded {
  opacity: 1;
}

.content-listing .content-listing__item {
  cursor: pointer;
  padding-left: 15px;
  padding-right: 15px;
}

.content-listing .content-listing__item .hidden {
  display: none;
}

.content-listing__text-heading {
  font-size: 34px;
  line-height: 1.3;
  font-weight: 400;

  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.content-listing__text-content {
  max-width: 500px;
  margin: auto;
}

.content-listing__text {
  padding: 0 15px;
  margin-bottom: 60px;
}

.content-listing__item-content {
  padding: 10px 0 45px;
}

.content-listings__item-headline {

  font-weight: 400;
  font-size: 20px;
  margin-bottom: 10px;
}

.content-listings__item-subheadline {
 
  font-size: 14px;
  margin-top: 0;
}

.content-listing__filters {
  text-align: center;
  margin-bottom: 38px;
}

.content-listing__filters a {
  display: inline-block;
  padding: 14px 5px;
  font-size: 14px;
  min-width: 240px;
  border-right: solid 1px #001E42;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
}
.content-listing__filters a{
  color: #001E42;
  transition:all 0.3s ease-out;
}
.content-listing__filters a:hover,
.content-listing__filters a.active {
  background: #001E42;
  color:white;
}

.content-listing__filters a:last-child {
  border-right: 0;
}

.content-listing_more-articles {
  margin-top: 30px;
}

.content-listing_more-articles:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  margin: 0 auto 40px;
  opacity: 0.3;
  background: #001E42;
}

@media screen and (min-width: 821px) {
  .content-listing .content-listing__sticky {
    position: absolute;
    left: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 137px;
  }
  .content-listing .sticky-middle,
  .content-listing .sticky-bottom,
  .content-listing .sticky-top {
    width: calc(50% - 20px);
  }
  .content-listing .content-listing__sticky .content-listing__item {
    width: 100%;
    overflow: hidden;
    position: relative;
    text-align: center;
    height: calc(100vh - 137px);
    overflow: hidden;
    right: auto !important;
  }
  .content-listing .content-listing__sticky .content-listing__item .content-listings__item-headline {
    font-size: 24px;
    line-height: 1.3;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }
  .content-listing .content-listing__sticky .content-listing__item .content-listing__media {
    position: absolute;
    top: 0;
    left: 15px;
    position: absolute;
    width: calc(100% - 30px);
    height: calc(100% - 150px);
  }
  .content-listing .content-listing__sticky .content-listing__item .content-listing__media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-position: 50% 15%;
       object-position: 50% 15%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .content-listing .content-listing__sticky .content-listing__item .content-listing__item-body {
    max-width: 420px;
    margin: auto;
  }
  .content-listing .content-listing__sticky .content-listing__item .content-listing__item-content {
    position: absolute;
    bottom: 0;
    left: 15px;
    width: calc(100% - 30px);
    background: #fff;
  }
  .content-listing .content-listing__sticky .content-listing__item.sticky-middle {
    width: calc(50% - 20px);
    max-width: 700px;
  }
}

@media screen and (max-width: 820px) {
  .content-listing__filters a {
    border: 0;
  }
  .content-listing .content-listing_articles {
    padding-left: 0;
  }
  .content-listing .sticky-proxy {
    display: none !important;
  }
  .content-listing .content-listing__sticky {
    position: static !important;
    top: 0 !important;
    width: 100% !important;
  }
  .content-listing .content-listing__float-column {
    width: 100%;
  }
  .content-listing .content-listing__item.sticky-hero {
    position: static !important;
  }
}

figcaption {
  font-size: 12px;
}
