/* ==========================================================================
   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
   ========================================================================== */
.js .top-nav {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.side-meganav {
  margin: 0;
  list-style: none;
  position: fixed;
  background-color: #001E42;
  right: 20px;
  top: 50%;
  margin-top: -40px;
  padding: 7px;
  border-radius: 30px;
  z-index: 1000;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.side-meganav li {
  padding: 0;
}

.side-meganav a {
  display: block;
  width: 13px;
  height: 13px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  margin: 8px 0;
  position: relative;
  cursor: pointer;
}

.side-meganav a:before {
  position: absolute;
  top: 0;
  content: '';
  left: 0;
  width: 11px;
  height: 11px;
  border: solid 1px #fff;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: background 250ms ease;
  transition: background 250ms ease;
  cursor: pointer;
}

.side-meganav a.active:before, .side-meganav a:hover:before {
  background-color: #fff;
}

.side-meganav a:hover span {
  display: block;
}

.side-meganav a span {
  display: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: absolute;
  padding: 1px 13px;
  background-color: rgba(0, 0, 0, 0.3);
  top: 50%;
  margin-top: -12px;
  right: 27px;
  color: #fff;
  font-size: 10px;
  white-space: nowrap;
}

.side-meganav a span:before {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: transparent;
  border-left-color: rgba(0, 0, 0, 0.3);
  border-width: 4px;
  margin-top: -4px;
}

@media (max-width: 600px) {
  .side-meganav {
    top: 216px;
    left: 0;
    border-radius: 0;
    background: #001E42;
    padding: 0;
    width: 100%;
    z-index: 100000;
  }
  .side-meganav.menu-open {
    height: calc(100% - 174px);
    overflow-y: auto;
  }
  .side-meganav.menu-open a {
    display: block;
  }
  .side-meganav.menu-open a.active {
    color: black;
  }
  .side-meganav.menu-open a.active span:after {
    display: none;
  }
  .side-meganav li {
    display: inline;
  }
  .side-meganav a {
    display: none;
    width: 100%;
    margin: auto;
    height: auto;
    color: white;
  }
  .side-meganav a:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 29px;
    width: 1px;
    background-color: white;
    height: 100%;
  }
  .side-meganav a:before {
    background-color: white;
    top: 20px;
    left: 24px;
    border: 0;
    z-index: 2;
  }
  .side-meganav a span {
    display: block;
    text-align: left;
    position: static;
    padding: 15px 30px 15px 60px;
    font-size: 15px;
    line-height: 1.3;
    margin: auto;
    color: currentColor;
    background: transparent;
    top: auto;
    right: auto;
    text-transform: capitalize;
    position: relative;
    width: 100%;
  }
  .side-meganav a span:before {
    display: none;
  }
  .side-meganav li:first-child {
    display: none;
  }
  .side-meganav a.active {
    display: block;
  }
  .side-meganav a.active span:after {
    content: '';
    display: inline-block;
    margin-left: 8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 5px 0 5px;
    border-color: currentColor transparent transparent transparent;
  }
}

/* ==========================================================================
   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 {
  
  flex-flow: row wrap;
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-flow: row wrap;
  /* IE10 uses display: flexbox */
  display: -ms-flexbox;
  -ms-flex-flow: row wrap;
  /* Prevents distributing space between rows */
  -ms-align-content: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.c-1-2 {
  display: inline-block;
  *display: inline;
  zoom: 1;

  
}

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

.section-heading {
  padding: 0 0 50px;
  position: relative;
  z-index: 10;
  margin-top: 0 !important;
}

.section-heading__title {
  padding: 30px;
  text-align: center;
  font-size: 24px;
  line-height: 1.3;
  margin: auto;

  background: white;
  position: relative;
}

.section-heading__title.large {
  font-size: 38px;
}

.section-heading__body {
  text-align: center;
  max-width: 600px;
  margin: auto;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  60% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  60% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}

.bounce {
  -webkit-animation: bounce 2s infinite;
          animation: bounce 2s infinite;
}

.timeline-hero__subhead {
  margin-bottom: 0;
}

.timeline-hero {
  height: calc(100vh - 248px);
  position: relative;
  overflow: hidden;
}

.timeline-hero:after {
  content: '';
  background-color: #001E42;
  width: 1px;
  height: 75px;
  margin-left: -1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
}


.timeline-hero button,
.timeline-hero a {
  position: absolute;
  bottom: 75px;
  left: 50%;
  margin-left: -30px;
}
.timeline-hero button svg,
.timeline-hero a svg {
  width: 60px;
  display: block;
  height: 60px;
  pointer-events: none;
}

.timeline-hero button svg path,
.timeline-hero a svg path {
  stroke:#001E42!important;
}

.timeline-hero button:after,
.timeline-hero a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.timeline-hero__headline {
  font-size: 34px;

  margin-top: 0;
}

.timeline-hero__block {
  max-width: 380px;
  margin: auto;
}

.timeline-hero__text {
  position: absolute;
  top: 50%;
  padding: 0 60px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: 0;
  width: 100%;
  text-align: center;
  padding-bottom: 90px;
}

@media (max-height: 625px) {
  .timeline-hero button,
  .timeline-hero a {
    bottom: 25px;
  }
  .timeline-hero:after {
    height: 25px;
  }
}

@media (max-width: 768px) {
  .timeline-hero {
    height: calc(100vh - 135px);
  }
}

.timeline {
  position: relative;
  margin-top: 0 !important;
  /* Slider */
}

.timeline:after {
  content: '';
  background-color: #001E42;
  width: 1px;
  height: 100%;
  margin-left: -1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
}

.timeline .slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.timeline .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.timeline .slick-list:focus {
  outline: none;
}

.timeline .slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.timeline .slick-slider .slick-track,
.timeline .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.timeline .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.timeline .slick-track:before,
.timeline .slick-track:after {
  display: table;
  content: '';
}

.timeline .slick-track:after {
  clear: both;
}

.timeline .slick-loading .slick-track {
  visibility: hidden;
}

.timeline .slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

.timeline [dir='rtl'] .slick-slide {
  float: right;
}

.timeline .slick-slide img {
  display: block;
}

.timeline .slick-slide.slick-loading img {
  display: none;
}

.timeline .slick-slide.dragging img {
  pointer-events: none;
}

.timeline .slick-initialized .slick-slide {
  display: block;
}

.timeline .slick-loading .slick-slide {
  visibility: hidden;
}

.timeline .slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.timeline .slick-arrow.slick-hidden {
  display: none;
}

.timeline .slick-slide {
  outline: 0;
}

.timeline .slick-dots {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  padding-top: 15px;
  padding-left: 17px;
}

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

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

.timeline .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;
}

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

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

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

.timeline .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;
}

.timeline-end {
  background-image: url(../images/end-desktop.jpg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.timeline-end .section-heading__title {
  background: transparent;
}

.timeline-section {
  margin-top: 0 !important;
}

.timeline-column {
  padding: 0 100px;
  overflow: hidden;
}

.timeline:before {
  width: 9px;
  height: 9px;
  background-color: #001E42;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  margin-left: -5px;
}

.timeline-quote {
  font-size: 22px;
  -webkit-transform: translate3d(0, 75px, 0);
          transform: translate3d(0, 75px, 0);
  opacity: 0;
  -webkit-transition: opacity 0.8s linear 0.1s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: opacity 0.8s linear 0.1s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.8s linear 0.1s, transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.8s linear 0.1s, transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

.timeline-quote cite {
  display: block;
  margin-top: 20px;
}

.timeline-quote.show {
  opacity: 1;
  -webkit-transform: translate3d(0, 0px, 0);
          transform: translate3d(0, 0px, 0);
}

.timline-content {
  max-width: 390px;
  display: inline-block;
}

.pullout-text {
  background-size: cover;
  background-position: center;
  padding: 6px;
  margin-top: 90px;
  margin-bottom: 125px;
  position: relative;
  -webkit-transform: translate3d(0, 75px, 0);
          transform: translate3d(0, 75px, 0);
  opacity: 0;
  -webkit-transition: opacity 0.8s linear 0.1s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: opacity 0.8s linear 0.1s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.8s linear 0.1s, transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.8s linear 0.1s, transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: calc(100% - 1px);
  /*.close-text {
		position:absolute;
		top: 20px;
		right: 20px;
		border:0;
		background:transparent;
		background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAACuElEQVR4AWJwL/AhGv///5/5/XtANWYNfEUMhHHcXWucvsWt75EW7Rukwd3pcXenw50Gd5f2Lq+f4fvB3sybFG82+fvNfHORze53ye7mktrMsizXlWW4URThnfBW5U+8qdNOv+RmIZ+i3yVUq9VGyMAGGfoggwdVXlAUxdjYGHXa6UcOecYxvqlkUN5DSlf+/+rasl+/fvVJ+VLkGWeztgp9WWT0ReP1ZU+YcinpTVsuGC89a03fhCQyIYRpRVG+0XsK9eYC+kzvNBcZHFQDXmjtR1NvbqBX+l9ipyEZplBr+x4npN5SQD/OHS9Z/br2lMDT9KXJXzLZe4bdiAxswwqclXJrAXtEaz0Z8shIHKsK3VaChX54h33qFcP1alxKubWBXRIjZXylG07rmBVkFwkHyRsO2THCKcY0kvvz509fnBkeFsrhoDN5HRF4jgs9GsgNFu6Z7BHH7BxQhM3550TCfCeZAcJpM3LS9qZYZohw12R2MMbhyPPls5tUCNfFakxCau8unMOSvbtFM/LA+rZ7dWIfHkzR+9StHnnzB57T1jZIeGptO1P1EVWQeZu5+fUQjpnxS8IdK2/LjKq3LNM3KrkwItWzNz8Bhq/ZM2NE+gq36sgcETpnz4zHZxqEbxU1+4QTVj6FviyfSYmmKHwfxlETRVn31GhKyjNmcKTwJI6auig7WUUZmdpJZh55psrAB5xExtXlkW2OKDvDGHcGJmmxNzj3prOe8GWJjAjPWffeZOl4A7tna26U8a4d/c+Et+3if8YYruQ40aZ/etE/8LMQwuTWIIId7GG30engbWucDlge7HnOTa9a+Nz0Cjsd50QZDZzImuLUzXTWXmPnsom5txA9uT0Q3uXcQkAiuoXo2Rz3MyPtfuaT835mPnLIq7yR8R47OTdXs6Kbq3dG8l1Tb67+AiY/yLylE/QvAAAAAElFTkSuQmCC');
		width: 35px;
		height: 35px;
		outline: 0;
		transition:all 0.3s ease-out;
		&:hover {
			transform:scale(0.9);
		}


	}*/
}

.pullout-text:after {
  display: block;
  content: '';
  width: 1px;
  padding-bottom: 100%;
}

.pullout-text.show {
  opacity: 1;
  -webkit-transform: translate3d(0, 0px, 0);
          transform: translate3d(0, 0px, 0);
}

.pullout-text p:last-child {
  margin-bottom: 0;
}

.pullout-text .open-text {
  position: absolute;
  top: 20px;
  right: 20px;
  border: 0;
  padding: 0;
  background: transparent;
  z-index: 10;
  /*
		background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAADH0lEQVR4AcSYA3BcURSGu0ZsrGrbtm23Y9Uc1h51UGNY2x5PjGH6srW9jvn635kT30zepruvZ+aPk/PtOeee+7+0mbJppmQhFJAK0kA6SA8ZSHr6moZ+RkG/J1lSAZRbt24NcTgcC4qLi09VVFRkVVZW/q6qqipjwud/SktLczwez7l3794tnzlzZix+xwhpIaVUsJZAlKmpqfFFRUWHkNwhSgzAuX79+nV0//79HfA3QmugpMNw2uH1elezCoitDEA5BEFYh78VDRlaah8XZP369TqU/ZwYoECVLpvNZhNVSd0cEBekvLz8nhjgcLlcL5KSkqzIEcYB4sKoUJHTYpDi27dvV5GjpkIqPgwNK2ZklRjkSEtL245ciTRDyiYwCAU7NRjWP8GGwQi4Fi9ePIiGWgspGsMo2fEVZYr8/PxzyGmjdikbwBw/fjyU9ohfceLEiVbBlJWVeTp16tQXILGQtgaGhYJtVhEhCwzFvXv3tiK3hTa1ogZGhRV/Wm6YN2/e3EbuzlAEpKqB0aBsmXLDuN3ul8jdi1qlqYHR0bzIB0Nzg9wD6JjramAMuHnL5YZBASqQewgtQYNkGCT1V1JhhkHmBjD/r00cmJKSkmy5YXBxCrw26eDQzssNY7fb7/MGWMOsotwwly5d2sU72qpFixbFwZW55YKBTfHGx8dP5C09BWRknlUumNzc3Es0Lw2vAyLSMvOM6jjFYAZVZfjw4XOQs0eTi5JglFBoXl7e2mDD3L59+whVhW8hqFVaKBrtuhhEH/MIOUZDXZozV/WrY2AunpnnQIN8+vQpXafTTaATxLGdHEMOhTIXD/N8LYAVeUwgfSQZ8nrtUtPjhImZZ+ZZ/2FYPTQjo6kippYfVThARJ/IzDNe2XlAef24d3w5OTmX6dQMoRlJlP4Qx/9vg4EGzWYymfowqwiHdgvGSEBCN277ikoEqwDmzC4Iwn1s1p200IbQ8bX5+XjLFw21ll5RLC2pzlTyAZRwOGkIfa0X/YyFfqf1D/7cKhEUbcsISpJIM2AmmehrsdDf8ZMzJELpYBEnMqbhYBH9MQCWSEG2Q05PugAAAABJRU5ErkJggg==');
		*/
  width: 30px;
  height: 30px;
  outline: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.pullout-text .open-text svg {
  width: 30px;
  height: 30px;
  display: block;
  pointer-events: none;
}

.pullout-text .open-text:hover {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}

.pullout-text .pullout-text__box {
  opacity: 0;
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  padding: 45px;
  background-color: rgba(121, 134, 140, 0.9);
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.pullout-text .pullout-text__box.light-color {
  color: #79868c;
  background-color: rgba(255, 255, 255, 0.9);
}

.pullout-text .pullout-text__box.light-color .close-text {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAC3UlEQVR4AWJwL/AhGoeuWsVcDqjGHNbsCoI4Htvcx+8Q6yWCZWyPPXNVJ+Yutp1d7Gxi40lu6je35zvnG9bp4V3UYeHf1YXuTmQWFNRlagtr5UFhbeZbQZ181fsv7rzz3f1fCH8c/SambZnMBDWQUGM/1MhJfV5eUBdMaWyMd77zHz74kUO+3WDKy8sHqMKS3Khlnb4PiTNS+JFDXqkUfV5gVHiajuoNLt8SBIP55kvI66Bq0FdSlZoeC0xhbTBXBb8U1qZm895RhD70ot8EJheg8qEgsXsS7x1N6FUvfcROq2BwoQL5ThDy3lmEfoIbe82C2bBv30ANtrc+U+M/ZfIOu43BELDFBCvPXUXYI1sjYEC5dyKBFaZu1xD2KJTYj4CROgWzlueuJuwqJXgGXT+C1uAVUn4VldVSd4qr05NV7yVk2qjuQwlmcNSnMgZso5AzhXWSVeHzrVXTgkRitI72GbzIGLxzQjEsdkEULLPN8b4RCuSyA3SxUW9yPMEYBfA0xyN7kDF4fJniSAHmPi61zvHKY8f6q8w1jHHHvY088sJ5ZLdVJ/bBgeu/x2318BMPzkOXcx7ZM4o65UDujauPrALMV8+0HKCy5xygW0pP3HPgow8cpPU/XnwJIIBwHjnon+Ly19szYVrKoxCMnOmVzfb29oxHzITBGmbNIX2+4ABdQp9nzNizKZq+CuBl46yJZhlZ55FN9joT6WNvGmdNZIQXG7KMSm2coqX1dcat9k8YhFjvTKWOhFnTepbp/Qoy5gpM0aI32HqTXLWkL1MEEHiRMfcmhyxB9+z6Rtmoa4dxIF97xHoGYsWlVNPNK71wDcyadFdSZnUFEOxgD7ut7Q6+dtHu4Bv2LPumT525b0I/dvJrRxkKygzmlKDuiL226qpmvYNer1MIF9SlzK/PKQQgoqcQ6GuNP04/SnAoZDmfodfB5/iTyPuczxhavSyMnlw5+sW9vSdX/wGkpRk/WmUxtwAAAABJRU5ErkJggg==");
}

.pullout-text .pullout-text__box.mid-color {
  color: #79868c;
  background-color: rgba(236, 226, 215, 0.9);
}

.pullout-text .pullout-text__box.mid-color .close-text {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAjCAYAAAAe2bNZAAAC3UlEQVR4AWJwL/AhGoeuWsVcDqjGHNbsCoI4Htvcx+8Q6yWCZWyPPXNVJ+Yutp1d7Gxi40lu6je35zvnG9bp4V3UYeHf1YXuTmQWFNRlagtr5UFhbeZbQZ181fsv7rzz3f1fCH8c/SambZnMBDWQUGM/1MhJfV5eUBdMaWyMd77zHz74kUO+3WDKy8sHqMKS3Khlnb4PiTNS+JFDXqkUfV5gVHiajuoNLt8SBIP55kvI66Bq0FdSlZoeC0xhbTBXBb8U1qZm895RhD70ot8EJheg8qEgsXsS7x1N6FUvfcROq2BwoQL5ThDy3lmEfoIbe82C2bBv30ANtrc+U+M/ZfIOu43BELDFBCvPXUXYI1sjYEC5dyKBFaZu1xD2KJTYj4CROgWzlueuJuwqJXgGXT+C1uAVUn4VldVSd4qr05NV7yVk2qjuQwlmcNSnMgZso5AzhXWSVeHzrVXTgkRitI72GbzIGLxzQjEsdkEULLPN8b4RCuSyA3SxUW9yPMEYBfA0xyN7kDF4fJniSAHmPi61zvHKY8f6q8w1jHHHvY088sJ5ZLdVJ/bBgeu/x2318BMPzkOXcx7ZM4o65UDujauPrALMV8+0HKCy5xygW0pP3HPgow8cpPU/XnwJIIBwHjnon+Ly19szYVrKoxCMnOmVzfb29oxHzITBGmbNIX2+4ABdQp9nzNizKZq+CuBl46yJZhlZ55FN9joT6WNvGmdNZIQXG7KMSm2coqX1dcat9k8YhFjvTKWOhFnTepbp/Qoy5gpM0aI32HqTXLWkL1MEEHiRMfcmhyxB9+z6Rtmoa4dxIF97xHoGYsWlVNPNK71wDcyadFdSZnUFEOxgD7ut7Q6+dtHu4Bv2LPumT525b0I/dvJrRxkKygzmlKDuiL226qpmvYNer1MIF9SlzK/PKQQgoqcQ6GuNP04/SnAoZDmfodfB5/iTyPuczxhavSyMnlw5+sW9vSdX/wGkpRk/WmUxtwAAAABJRU5ErkJggg==");
}

.pullout-text .pullout-text__body {
  max-width: 430px;
  margin: auto;
}

.pullout-text .pullout-text__heading {
  font-size: 30px;
  color: #fff;
  line-height: normal;
  max-width: 265px;
  margin: 0 auto 1em;
}

.pullout-text.open .pullout-text__box {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  z-index: 2;
}

.pullout-text.open .open-text {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.section-heading .reaveal {
  -webkit-transform: translate3d(0, 75px, 0);
          transform: translate3d(0, 75px, 0);
  opacity: 0;
  -webkit-transition: opacity 0.8s linear 0.1s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: opacity 0.8s linear 0.1s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.8s linear 0.1s, transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.8s linear 0.1s, transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

.section-heading .reaveal.show {
  opacity: 1;
  -webkit-transform: translate3d(0, 0px, 0);
          transform: translate3d(0, 0px, 0);
}

.full-image {
  margin-bottom: 125px;
  overflow: hidden;
  -webkit-transform: translate3d(0, 75px, 0);
          transform: translate3d(0, 75px, 0);
  opacity: 0;
  -webkit-transition: opacity 0.8s linear 0.1s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: opacity 0.8s linear 0.1s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.8s linear 0.1s, transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.8s linear 0.1s, transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

.full-image img {
  max-width: 100%;
  display: block;
}

.full-image img.half {
  max-width: 50%;
}

.full-image img.pull-right {
  float: right;
}

.full-image.show {
  opacity: 1;
  -webkit-transform: translate3d(0, 0px, 0);
          transform: translate3d(0, 0px, 0);
}

.small-images {
  margin-top: 40px;
  margin-bottom: 40px;
  overflow: hidden;
  margin-left: -17px;
  -webkit-transform: translate3d(0, 75px, 0);
          transform: translate3d(0, 75px, 0);
  opacity: 0;
  -webkit-transition: opacity 0.8s linear 0.1s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: opacity 0.8s linear 0.1s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.8s linear 0.1s, transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.8s linear 0.1s, transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

.small-images .image {
  float: left;
  max-width: 140px;
  padding: 0 17px;
}

.small-images .image img {
  width: 100%;
}

.small-images.show {
  opacity: 1;
  -webkit-transform: translate3d(0, 0px, 0);
          transform: translate3d(0, 0px, 0);
}

.timline-marker {
  position: relative;
  margin: 0px 0 125px;
}

.timline-marker:after {
  width: 0px;
  height: 1px;
  background-color: #001E42;
  content: '';
  position: absolute;
  top: 14px;
  left: -100px;
  -webkit-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}

.timline-marker:before {
  width: 9px;
  height: 9px;
  background-color: #001E42;
  -webkit-transform: rotate(0deg) scale(0);
      -ms-transform: rotate(0deg) scale(0);
          transform: rotate(0deg) scale(0);
  content: '';
  position: absolute;
  top: 10px;
  left: -60px;
  -webkit-transition: all 0.45s ease-out;
  transition: all 0.45s ease-out;
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.timline-marker p:last-child {
  margin-bottom: 0;
}

.timline-marker .timline-content {
  -webkit-transform: translate3d(0, 75px, 0);
          transform: translate3d(0, 75px, 0);
  opacity: 0;
  -webkit-transition: opacity 0.8s linear 0.1s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: opacity 0.8s linear 0.1s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.8s linear 0.1s, transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, opacity 0.8s linear 0.1s, transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

.timline-marker.show:after {
  width: 40px;
}

.timline-marker.show:before {
  -webkit-transform: rotate(45deg) scale(1);
      -ms-transform: rotate(45deg) scale(1);
          transform: rotate(45deg) scale(1);
}

.timline-marker.show .timline-content {
  opacity: 1;
  -webkit-transform: translate3d(0, 0px, 0);
          transform: translate3d(0, 0px, 0);
}

.column-left .timline-marker {
  text-align: right;
}

.column-left .timline-marker:after {
  left: auto;
  right: -100px;
}

.column-left .timline-marker:before {
  left: auto;
  right: -60px;
}

@media (max-width: 1200px) {
  .pullout-text .pullout-text__box {
    padding: 12px;
  }
  .timeline-column {
    padding: 0 60px;
  }
  .timline-marker:after {
    left: -70px;
  }
  .timline-marker:before {
    left: -30px;
  }
  .column-left .timline-marker:after {
    left: auto;
    right: -70px;
  }
  .column-left .timline-marker:before {
    left: auto;
    right: -30px;
  }
}

@media (max-width: 900px) {
  .pullout-text .pullout-text__box {
    padding: 30px;
  }
  .timeline-end {
    background: transparent;
  }
  .timeline-end .section-heading {
    padding-bottom: 0;
  }
  .timeline-end:after {
    content: '';
    display: block;
    padding-bottom: 25%;
    background-image: url(../images/end-desktop.jpg);
    background-size: 110% auto;
    background-position: center;
    background-repeat: no-repeat;
  }
  .timeline-hero:after {
    left: 85px;
  }
  .timeline-hero button,
  .timeline-hero a {
    left: 85px;
  }
  .c-1-2 {
    width: 100%;
  }
  .timeline-column {
    padding-left: 160px;
    padding-right: 30px;
    overflow: visible;
  }
  .section-heading__body {
    text-align: left;
    margin: 0;
    max-width: 450px;
    padding-left: 35px;
  }
  .section-heading__title {
    text-align: left;
    padding-left: 35px;
  }
  .timline-marker:after {
    left: -75px;
    right: auto;
  }
  .timline-marker:before {
    left: -35px;
    right: auto;
  }
  .column-left .timline-marker {
    text-align: left;
  }
  .column-left .timline-marker:after {
    left: -75px;
    right: auto;
  }
  .column-left .timline-marker:before {
    left: -35px;
    right: auto;
  }
  .timeline:before {
    left: 85px;
  }
  .timeline:after {
    left: 85px;
  }
}

@media screen and (max-width: 768px) {
  #main-content .content-blocks-container > div:first-of-type > div:not(.feature-block):not(.video-block):not(.collection-feature-block):not(.slider-block) {
    margin-top: 00px;
  }
}

@media (min-width: 601px) {
  .timeline .slick-dots {
    display: none;
  }
}

@media (max-width: 600px) {
  .timline-marker,
  .full-image {
    margin-bottom: 50px;
  }
  .timeline-hero__text {
    padding: 0 10px;
  }
  .timeline-hero {
    height: calc(100vh - 175px);
  }
  .timeline-hero__headline {
    font-size: 26px;
  }
  .pullout-text .pullout-text__box {
    padding-top: 60px;
  }
  .small-images .image {
    max-width: 50%;
  }
  .timeline:after {
    left: 30px;
  }
  .timeline-column {
    padding-left: 60px;
  }
  .section-heading__body {
    padding-left: 20px;
  }
  .section-heading__title {
    padding-left: 28px;
  }
  .full-image img.pull-right {
    float: none;
  }
  .timline-marker.show:after {
    width: 30px;
  }
  .timline-marker:after {
    left: -30px;
    width: 30px;
    right: auto;
  }
  .timline-marker:before {
    left: -5px;
    right: auto;
  }
  .column-left .timline-marker {
    text-align: left;
  }
  .column-left .timline-marker:after {
    left: -30px;
    right: auto;
  }
  .column-left .timline-marker:before {
    left: -5px;
    right: auto;
  }
  .full-image img.half {
    max-width: 100%;
  }
  .timline-marker:after {
    top: -20px;
  }
  .timline-marker:before {
    top: -24px;
    left: -5px;
    right: auto;
  }
  .timeline-hero button svg,
  .timeline-hero a svg {
    width: 40px;
    height: 40px;
  }
  .content-block-quote {
    padding-left: 0;
  }
  .pullout-text {
    margin-left: -60px;
    position: relative;
    z-index: 100;
    width: calc(100% + 90px);
    margin-top: 60px;
    margin-bottom: 40px;
  }
  .timeline:before {
    left: 30px;
  }
  .section-heading {
    padding-bottom: 40px;
  }

  .timeline-hero button,
  .timeline-hero a,
  .timeline-hero:after {
    left: 30px;
  }
  .timeline-hero button,
  .timeline-hero a {
    margin-left: -20px;
  }
}
