/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  box-sizing: border-box; }

html {
  family: Arial, "Helvetica Neue", Helvetica, sans-serif; }

body {
  font-size: 16px;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #252525;
  background-color: #fff; }
  body.noscroll {
    overflow: hidden; }

i {
  font-style: italic; }

.hand {
  font-family: 'Just Another Hand', cursive;
  font-size: 65px; }

img {
  max-width: 100%;
  display: block;
  height: auto; }
  img.left {
    float: left;
    padding: 20px; }

hr {
  border-style: none;
  border-bottom: 5px solid #aec3c8;
  margin: 40px 0; }

strong {
  font-weight: bold; }

@media only screen and (min-width: 992px) {
  .indent {
    margin-left: 30px !important; } }
@media only screen and (min-width: 1200px) {
  .indent {
    margin-left: 40px !important; } }

h1 {
  color: #8e2c48;
  font-size: 38px; }
  @media only screen and (min-width: 992px) {
    h1 {
      font-size: 40px; } }
  @media only screen and (min-width: 1200px) {
    h1 {
      font-size: 50px; } }

h3 {
  color: #8e2c48;
  font-size: 24px; }
  @media only screen and (min-width: 768px) {
    h3 {
      font-size: 30px; } }

h4 {
  color: #8e2c48;
  font-size: 22px;
  line-height: 34px;
  margin: 30px 0; }
  @media only screen and (min-width: 768px) {
    h4 {
      font-size: 30px; } }

a {
  color: #007396;
  text-decoration: none;
  cursor: pointer; }

.arrow-right {
  width: 25px;
  position: absolute;
  right: 1rem;
  top: 50%;
  bottom: 50%;
  margin: auto; }

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0; }
  .videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
  outline: none;
  font-size: 1.3rem;
  cursor: pointer; }
  button.cta {
    background-color: #007396;
    color: #fff;
    text-align: left;
    font-size: 24px;
    line-height: 30px;
    padding: 15px 70px 15px 30px;
    position: relative;
    margin: 20px 0; }
    button.cta span {
      font-size: 35px;
      display: inline-block;
      position: absolute;
      right: 30px;
      top: 15px; }
  button.no-margin-top {
    margin-top: 0; }

.squarebrackets {
  font-size: 20px;
  position: relative;
  padding: 10px 30px;
  margin: 0 auto;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s; }
  .squarebrackets.homepage {
    top: 50px; }
    .squarebrackets.homepage:before {
      display: none; }
    .squarebrackets.homepage:after {
      display: none; }
  .squarebrackets.home {
    width: 300px;
    top: 70px; }
    .squarebrackets.home:before {
      padding: 10px;
      top: -10px;
      bottom: -10px;
      left: -5px; }
    .squarebrackets.home:after {
      padding: 10px;
      top: -10px;
      bottom: -10px;
      right: -5px; }
  .squarebrackets p {
    text-align: center;
    color: #fff; }
  .squarebrackets:before {
    content: " ";
    position: absolute;
    border-left: 4px solid #fff;
    border-top: 4px solid #fff;
    border-bottom: 4px solid #fff;
    padding: 10px;
    top: 15px;
    bottom: 0px;
    left: -5px; }
  .squarebrackets:after {
    content: " ";
    position: absolute;
    border-right: 4px solid #fff;
    border-top: 4px solid #fff;
    border-bottom: 4px solid #fff;
    padding: 10px;
    top: 15px;
    bottom: 0px;
    right: -5px; }
  @media only screen and (min-width: 768px) {
    .squarebrackets.homepage {
      top: 250px; }
    .squarebrackets.home {
      width: auto;
      max-width: 90%;
      top: 300px;
      transform: translateY(-50%); } }

.chevron::before {
  border-style: solid;
  border-width: 0.15em 0.15em 0 0;
  content: '';
  display: inline-block;
  height: 0.7em;
  left: 0.15em;
  position: relative;
  top: 0.25em;
  transform: rotate(-45deg);
  vertical-align: top;
  width: 0.7em; }
.chevron.right::before {
  top: 0.1em;
  left: 0;
  transform: rotate(45deg); }
.chevron.left::before {
  top: 0.1em;
  left: 0.15em;
  transform: rotate(-135deg); }

/* -------------------------------- 

Images block

-------------------------------- */
.cd-image-block {
  position: relative; }
  .cd-image-block::before {
    /* this is the layer used to cover the .cd-image-block when the content block becomes visible - mobile only */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(37, 37, 37, 0.6);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s; }
  .cd-image-block.content-block-is-visible::before {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s; }
  .cd-image-block .logo {
    display: none;
    width: 200px; }
    .cd-image-block .logo.first {
      display: block;
      margin: 0 auto; }
  @media only screen and (min-width: 768px) {
    .cd-image-block .logo {
      display: block;
      margin: 0 auto;
      position: relative; }
    .cd-image-block::before {
      display: none; } }

.cd-images-list::before {
  /* never visible - this is used in jQuery to check the current MQ */
  content: 'mobile';
  display: none; }
.cd-images-list > li {
  height: 250px;
  position: relative;
  background: #979c9c url(../img/home.jpg) no-repeat center center;
  background-size: cover; }
  .cd-images-list > li:nth-of-type(2) {
    background: #252525 url(../img/introduction.jpg) no-repeat center center;
    background-size: cover; }
  .cd-images-list > li:nth-of-type(3) {
    background: #252525 url(../img/chuck-hollis.jpg) no-repeat center center;
    background-size: cover; }
  .cd-images-list > li:nth-of-type(4) {
    background: #982b3c url(../img/pat-sullivan.jpg) no-repeat center center;
    background-size: cover; }
  .cd-images-list > li:nth-of-type(5) {
    background: #338899 url(../img/aeg.jpg) no-repeat center center;
    background-size: cover; }
  .cd-images-list > li:nth-of-type(6) {
    background: #338899 url(../img/oracle-video.jpg) no-repeat center center;
    background-size: cover; }
  .cd-images-list > li:nth-of-type(7) {
    background: #338899 url(../img/mosa.jpg) no-repeat center center;
    background-size: cover; }
  .cd-images-list > li:nth-of-type(8) {
    background: #338899 url(../img/bamf.jpg) no-repeat center center;
    background-size: cover; }
  .cd-images-list > li:nth-of-type(9) {
    background: #338899 url(../img/on-the-horizon.jpg) no-repeat center center;
    background-size: cover; }
  .cd-images-list > li .overlay {
    background: rgba(0, 0, 0, 0.7);
    background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.7) 0%, rgba(136, 136, 136, 0) 100%);
    background: -webkit-gradient(left bottom, left top, color-stop(0%, rgba(0, 0, 0, 0.7)), color-stop(100%, rgba(136, 136, 136, 0)));
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.7) 0%, rgba(136, 136, 136, 0) 100%);
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.7) 0%, rgba(136, 136, 136, 0) 100%);
    background: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0.7) 0%, rgba(136, 136, 136, 0) 100%);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(136, 136, 136, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4b585e', endColorstr='#888888', GradientType=0 );
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
.cd-images-list > li > a {
  /* used to vertically align the h2 child -  mobile version only */
  display: table;
  height: 100%;
  width: 100%; }
.cd-images-list h2 {
  /* used to vertically align h2 -  mobile version only */
  vertical-align: middle;
  text-align: center;
  font-size: 1.5em;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
@media only screen and (min-width: 768px) {
  .cd-images-list::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'desktop'; }
  .cd-images-list > li > a {
    display: block;
    cursor: default;
    pointer-events: none; }
  .cd-images-list h2 {
    font-size: 45px; }
  .cd-images-list p {
    font-size: 22px;
    color: #fff; } }

.overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.8); }
  .overlay .overlay-content {
    height: 100%;
    overflow: scroll; }

/* -------------------------------- 

Content block

-------------------------------- */
.cd-content-block {
  /* move the block outside the viewport (to the right) - mobile only */
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s; }
  .cd-content-block.is-visible {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0); }
  .cd-content-block > ul {
    height: 100%; }
  .cd-content-block > ul > li {
    position: absolute;
    height: 100%;
    padding: 0;
    overflow-y: scroll;
    background-color: #fff;
    opacity: 0;
    visibility: hidden; }
    .cd-content-block > ul > li .container {
      padding: 2em; }
    .cd-content-block > ul > li.is-selected {
      /* this is the selected content */
      position: relative;
      opacity: 1;
      visibility: visible;
      -webkit-overflow-scrolling: touch; }
    .cd-content-block > ul > li .intro {
      background: #979c9c url(../img/intro.jpg) no-repeat center center;
      background-size: cover; }
    .cd-content-block > ul > li .back {
      display: none; }
    .cd-content-block > ul > li .contents {
      width: 100%; }
      .cd-content-block > ul > li .contents .content {
        float: left;
        width: 50%;
        background: #252525 url(../img/introduction.jpg) no-repeat center center;
        background-size: cover;
        min-height: 350px;
        padding: 20px 40px;
        position: relative; }
        .cd-content-block > ul > li .contents .content .overlay {
          background: rgba(0, 0, 0, 0.7);
          background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.7) 0%, rgba(136, 136, 136, 0) 100%);
          background: -webkit-gradient(left top, left top, color-stop(0%, rgba(0, 0, 0, 0.7)), color-stop(100%, rgba(136, 136, 136, 0)));
          background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.7) 0%, rgba(136, 136, 136, 0) 100%);
          background: -o-linear-gradient(top, rgba(0, 0, 0, 0.7) 0%, rgba(136, 136, 136, 0) 100%);
          background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.7) 0%, rgba(136, 136, 136, 0) 100%);
          background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(136, 136, 136, 0) 100%);
          filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4b585e', endColorstr='#888888', GradientType=0 );
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0; }
        .cd-content-block > ul > li .contents .content .overlay-hover {
          background-color: #000;
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          opacity: 0;
          transition: opacity 1s ease; }
        .cd-content-block > ul > li .contents .content:nth-of-type(2) {
          background: #252525 url(../img/chuck-hollis.jpg) no-repeat center center;
          background-size: cover; }
        .cd-content-block > ul > li .contents .content:nth-of-type(3) {
          background: #252525 url(../img/pat-sullivan.jpg) no-repeat center center;
          background-size: cover; }
        .cd-content-block > ul > li .contents .content:nth-of-type(4) {
          background: #982b3c url(../img/aeg.jpg) no-repeat center center;
          background-size: cover; }
        .cd-content-block > ul > li .contents .content:nth-of-type(5) {
          background: #338899 url(../img/oracle-video.jpg) no-repeat center center;
          background-size: cover; }
        .cd-content-block > ul > li .contents .content:nth-of-type(6) {
          background: #338899 url(../img/mosa.jpg) no-repeat center center;
          background-size: cover; }
        .cd-content-block > ul > li .contents .content:nth-of-type(7) {
          background: #338899 url(../img/bamf.jpg) no-repeat center center;
          background-size: cover; }
        .cd-content-block > ul > li .contents .content:nth-of-type(8) {
          background: #338899 url(../img/on-the-horizon.jpg) no-repeat center center;
          background-size: cover; }
        .cd-content-block > ul > li .contents .content p {
          font-size: 19px;
          margin: 0; }
        .cd-content-block > ul > li .contents .content h2 {
          font-size: 22px;
          line-height: 1.1em;
          margin: 0;
          text-align: center; }
        .cd-content-block > ul > li .contents .content .chevron {
          position: absolute;
          bottom: 0;
          right: 0;
          background-color: #007396;
          padding: 15px 25px 15px 15px;
          font-size: 25px;
          color: #fff; }
        .cd-content-block > ul > li .contents .content:hover .overlay-hover {
          opacity: 0.6; }
        .cd-content-block > ul > li .contents .content:hover .squarebrackets {
          margin-top: 50px; }
        .cd-content-block > ul > li .contents .content:hover .chevron {
          background-color: #019ac8; }
    .cd-content-block > ul > li .twitter {
      display: inline-block;
      background: #252525 url(../img/twitter-bg.jpg) no-repeat center center;
      background-size: cover;
      text-align: center;
      width: 100%; }
      .cd-content-block > ul > li .twitter p {
        font-size: 19px;
        margin: 30px; }
        .cd-content-block > ul > li .twitter p a {
          color: #ed8b00; }
        .cd-content-block > ul > li .twitter p span {
          display: block;
          color: #8aa6b1;
          font-size: 16px; }
      .cd-content-block > ul > li .twitter h2 {
        font-size: 35px;
        line-height: 1.1em;
        margin: 0;
        text-align: center; }
      .cd-content-block > ul > li .twitter img {
        display: block;
        margin: 30px auto; }
    .cd-content-block > ul > li .footer {
      background-color: #c0070a;
      color: #fff;
      padding: 30px 50px 40px 50px; }
      .cd-content-block > ul > li .footer .left {
        float: left; }
      .cd-content-block > ul > li .footer .right {
        float: right; }
      .cd-content-block > ul > li .footer a {
        color: #fff; }
  .cd-content-block h2 {
    line-height: 2;
    font-size: 50px;
    color: #252525; }
  .cd-content-block p {
    margin: 1.2em 0;
    line-height: 24px;
    font-size: 18px;
    color: #252525; }
    .cd-content-block p.large {
      font-size: 22px;
      line-height: 26px; }
    .cd-content-block p.icon {
      padding-left: 130px; }
  .cd-content-block .time {
    color: #8aa6b1;
    font-size: 16px;
    padding-bottom: 10px;
    border-bottom: 5px solid #aec3c8; }
    .cd-content-block .time::before {
      content: url("../img/hour-glass-sm.png");
      margin-right: 10px;
      vertical-align: middle; }
  .cd-content-block .cd-close {
    /* 'X' icon to close the content block -  mobile only */
    position: fixed;
    top: 0;
    right: 0;
    height: 44px;
    width: 44px;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    color: transparent;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.2s;
    -moz-transition: -moz-transform 0.2s;
    transition: transform 0.2s; }
    .cd-content-block .cd-close::after, .cd-content-block .cd-close::before {
      /* these are the 2 lines of the 'X' icon */
      content: '';
      position: absolute;
      left: 50%;
      top: 50%;
      width: 2px;
      height: 24px;
      background-color: #252525;
      /* Force Hardware Acceleration */
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      -webkit-transform: translateZ(0);
      -moz-transform: translateZ(0);
      -ms-transform: translateZ(0);
      -o-transform: translateZ(0);
      transform: translateZ(0); }
    .cd-content-block .cd-close::after {
      -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
      -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
      -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
      -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
      transform: translateX(-50%) translateY(-50%) rotate(45deg); }
    .cd-content-block .cd-close::before {
      -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
      -moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
      -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
      -o-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
      transform: translateX(-50%) translateY(-50%) rotate(-45deg); }
    .cd-content-block .cd-close.is-scaled-up {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
      transform: scale(1); }
      .no-touch .cd-content-block .cd-close.is-scaled-up:hover {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2); }
  .cd-content-block .predictions h4 span {
    background: #eaf0f1;
    color: #f29111;
    padding: 20px 30px;
    float: left;
    margin-right: 20px; }
  .cd-content-block .predictions:nth-child(even) {
    background: #eaf0f1; }
    .cd-content-block .predictions:nth-child(even) h4 span {
      background: #f29111;
      color: #fff; }
  @media only screen and (min-width: 768px) {
    .cd-content-block {
      /* reset style */
      position: static;
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
      transform: translateX(0); }
      .cd-content-block > ul > li {
        /* reset style */
        opacity: 1;
        visibility: visible;
        padding: 0; }
        .cd-content-block > ul > li .container.home {
          padding: 40px 50px; }
        .cd-content-block > ul > li.overflow-hidden {
          /* this class is used during the animation (slider change) to hide the scrolling bar */
          overflow: hidden; }
        .cd-content-block > ul > li .back {
          display: block;
          background-color: #eaf0f1;
          color: #007396;
          font-size: 20px;
          line-height: 20px;
          width: 100%;
          text-align: left; }
          .cd-content-block > ul > li .back span {
            margin-right: 10px;
            color: #4b575d; }
      .cd-content-block .time {
        color: #8aa6b1;
        font-size: 16px;
        padding-bottom: 10px;
        border-bottom: 5px solid #aec3c8; }
        .cd-content-block .time::before {
          content: url("../img/hour-glass.png");
          margin-right: 10px;
          vertical-align: middle; } }
  .cd-content-block #home-right p {
    font-size: 18px;
    color: #fff; }
  .cd-content-block #home-right h2 {
    color: #fff;
    font-size: 20px; }
  .cd-content-block .quote p {
    padding: 20px;
    font-size: 28px;
    line-height: 1.1;
    color: #fff;
    border: 5px solid #d07a00;
    margin: 1em 0; }
    .cd-content-block .quote p span {
      font-size: 18px;
      display: block;
      margin-top: 35px; }
  .cd-content-block .video {
    background: #338899 url(../img/video-image.jpg) no-repeat center center;
    background-size: cover;
    margin: 0 auto;
    text-align: center;
    min-height: 540px;
    position: relative; }
    .cd-content-block .video .container {
      position: absolute;
      top: 35%;
      left: 50%;
      transform: translateY(-50%);
      transform: translateX(-50%); }
      .cd-content-block .video .container .play {
        color: #fff;
        padding: 20px 30px;
        border: 5px solid #e60000;
        background-color: rgba(1, 1, 1, 0.2);
        font-size: 40px; }
      .cd-content-block .video .container .duration {
        color: #fff;
        background-color: rgba(238, 0, 0, 0.4);
        font-size: 24px;
        padding: 5px; }
  .cd-content-block .image .container {
    margin-top: -30px;
    margin-bottom: -75px; }
    .cd-content-block .image .container p {
      font-size: 14px;
      color: #8aa6b1;
      line-height: 20px; }
  .cd-content-block .square {
    list-style-type: square;
    color: #ff0000; }
    .cd-content-block .square li {
      font-size: 24px;
      margin-left: 20px; }
      .cd-content-block .square li p {
        color: #252525;
        margin: 0; }
    .cd-content-block .square.icon {
      margin-left: 135px;
      color: #3a913f; }
  .cd-content-block .award {
    margin-left: 50px; }
    .cd-content-block .award li {
      font-size: 24px;
      margin: 20px 0;
      background-image: url(../img/award.png);
      background-repeat: no-repeat;
      line-height: 50px;
      padding-left: 50px;
      min-height: 50px; }
      .cd-content-block .award li p {
        color: #252525;
        margin: 0;
        font-weight: bold;
        line-height: 24px; }
  @media only screen and (min-width: 1200px) {
    .cd-content-block .cd-content-block > ul > li .contents .content h2 {
      font-size: 32px; }
    .cd-content-block .quote p {
      padding: 50px;
      font-size: 40px;
      line-height: 1.1;
      color: #fff;
      border: 5px solid #d07a00; }
      .cd-content-block .quote p span {
        font-size: 24px;
        display: block;
        margin-top: 35px; } }

/* ---------------------------------------------- 

Desktop slider - both image and content blocks

---------------------------------------------- */
@media only screen and (min-width: 768px) {
  .cd-image-block,
  .cd-content-block {
    /* slider style - desktop version only */
    width: 50%;
    float: left;
    height: 100vh;
    overflow: hidden; }
    .cd-image-block > ul,
    .cd-content-block > ul {
      position: relative;
      height: 100%; }
    .cd-image-block > ul > li,
    .cd-content-block > ul > li {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      /* Force Hardware Acceleration */
      -webkit-transform: translateZ(0);
      -moz-transform: translateZ(0);
      -ms-transform: translateZ(0);
      -o-transform: translateZ(0);
      transform: translateZ(0);
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      will-change: transform;
      /* by default, the items are moved to the right - relative to their parent elements */
      -webkit-transform: translateX(100%);
      -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
      -o-transform: translateX(100%);
      transform: translateX(100%);
      -webkit-transition: -webkit-transform 0.5s;
      -moz-transition: -moz-transform 0.5s;
      transition: transform 0.5s; }
      .cd-image-block > ul > li.is-selected,
      .cd-content-block > ul > li.is-selected {
        /* this is the visible item */
        position: absolute;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0); }
      .cd-image-block > ul > li.move-left,
      .cd-content-block > ul > li.move-left {
        /* this is the item hidden on the left */
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%); } }
/* -------------------------------- 

Slider navigation

-------------------------------- */
.block-navigation {
  /* this is the slider navigation - desktop version only */
  display: none;
  z-index: 4;
  overflow: hidden; }
  @media only screen and (min-width: 768px) {
    .block-navigation {
      display: block;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 50%; }
      .block-navigation::after {
        clear: both;
        content: "";
        display: table; }
      .block-navigation .page-nav li {
        width: 50%;
        height: 60px;
        line-height: 60px;
        text-align: center;
        background-color: #eaf0f1;
        -webkit-transition: background 0.2s;
        -moz-transition: background 0.2s;
        transition: background 0.2s; }
        .block-navigation .page-nav li:hover {
          background-color: #dfe6e7; }
      .block-navigation .page-nav li:first-of-type {
        float: left; }
      .block-navigation .page-nav li:last-of-type {
        float: right; }
      .block-navigation .page-nav button {
        display: block;
        height: 100%;
        width: 100%;
        color: #007396;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
        .block-navigation .page-nav button.cd-prev {
          border-right: 4px solid #525e64; }
        .block-navigation .page-nav button.cd-next {
          border-left: 4px solid #525e64; }
        .block-navigation .page-nav button .chevron {
          position: relative;
          top: 4px; }
        .block-navigation .page-nav button.inactive {
          opacity: .3;
          cursor: not-allowed; } }

.pop-up-cta {
  opacity: 0;
  position: relative;
  color: #324b5c;
  background-color: #eaf0f1;
  margin-bottom: 3px;
  width: 100%;
  font-size: 1.3rem;
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
  padding: .5rem 3rem .5rem 1rem;
  text-align: center;
  line-height: 1.2; }
  .pop-up-cta.in-focus {
    opacity: 1; }

.pop-up-cta .close-btn {
  position: absolute;
  right: 1rem;
  top: 1.2rem;
  cursor: pointer;
  background-image: url("../img/close.svg");
  background-repeat: no-repeat;
  background-size: 23px 23px;
  width: 23px;
  height: 23px; }

@media only screen and (max-width: 1365px) {
  .pop-up-cta .cta-text {
    margin-bottom: 1rem; }

  .pop-up-cta .close-btn {
    top: 1rem; } }
.pop-up-cta .cta-text {
  margin-right: 1rem; }

.pop-up-cta li {
  display: inline-block; }

.pop-up-cta button {
  font-size: 1.1rem;
  background-color: #8e2c48;
  margin-bottom: 0;
  line-height: 1.2;
  padding: .75rem 3rem .75rem 1rem; }

.pop-up-cta .chevron::before {
  margin-right: -0.75rem; }

.pop-up-cta button span {
  font-size: 1.5rem; }

/* -------------------------------- 

Javascript disabled

-------------------------------- */
@media only screen and (min-width: 768px) {
  .no-js .cd-content-block {
    display: none; }

  .no-js .cd-image-block {
    width: 100%;
    overflow: visible; }

  .no-js .cd-images-list::after {
    clear: both;
    content: "";
    display: table; }

  .no-js .cd-images-list > li {
    position: static;
    width: 50%;
    float: left;
    height: 400px;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0); }
    .no-js .cd-images-list > li.is-selected {
      position: static; }

  .no-js .cd-images-list > li > a {
    cursor: pointer;
    pointer-events: auto; }

  .no-js .block-navigation {
    display: none; }

  .pop-up-cta {
    display: block; } }
@media only screen and (min-width: 768px) {
  .cd-content-block #home-right h2 {
    font-size: 15px; }

  .squarebrackets {
    padding: 10px; }

  .cd-content-block > ul > li .container {
    padding: 30px 50px; } }
@media only screen and (min-width: 992px) {
  .cd-content-block #home-right h2 {
    font-size: 18px; } }
@media only screen and (min-width: 1200px) {
  .cd-content-block #home-right h2 {
    font-size: 24px; }

  .cd-content-block > ul > li .container {
    padding: 30px 100px; } }
