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

Primary style

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

html, body {
  height: 100%; }

html {
  font-size: 62.5%;
  overflow: hidden; }
  html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

body {
  font-size: 1.6rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  color: #f7f7f9;
  background: linear-gradient(270deg, #941717, #4454af) no-repeat 0% 50%/400% 400% transparent;
  overflow-x: hidden;
  overflow-y: auto; }

@media only screen and (min-width: 1170px) {
  body, html {
    overflow-x: hidden;
    overflow-y: hidden; } }
.root {
  position: relative; }

a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none; }

img {
  max-width: 100%; }

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

Modules - reusable parts of our design

-------------------------------- */
h1 {
  white-space: nowrap;
  display: none;
  margin-bottom: 10px;
  font-size: 2.5rem;
  font-weight: 600;
  font-family: "Josefin Sans", sans-serif;
  color: #ffffff;
  position: relative;
  right: 8px; }
  h1 img {
    height: 60px;
    vertical-align: middle;
    position: relative;
    top: -3px;
    margin-right: 10px; }
  @media only screen and (min-width: 1170px) {
    h1 {
      display: inline-block;
      position: absolute;
      left: 2.5em;
      top: 2em; }
      h1 img {
        height: 64px;
        top: -3px;
        margin-right: 10px; } }

.cd-img-replace {
  /* replace text with background images */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap; }

.cd-btn {
  display: inline-block;
  height: 40px;
  border: 2px solid #f7f7f9;
  color: #f7f7f9;
  border-radius: 6px;
  line-height: 40px;
  margin-right: 8px;
  padding: 0 16px;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.2rem;
  font-family: "Josefin Sans", sans-serif;
  /*color: $color-3;
  background-color: lighten($color-1, 15%);
  box-shadow: 0 1px 6px rgba(#000, .1), inset 0 1px 0 rgba(#FFF, .2);
  */ }
  .no-touch .cd-btn:hover {
    background-color: rgba(255, 255, 255, 0.1); }
  .cd-btn.store {
    padding-left: 39px;
    background: url("../img/apple.svg") 12px 45% no-repeat;
    background-size: 16px 20px; }
  .cd-btn.tour {
    display: none; }
  @media only screen and (min-width: 1170px) {
    .cd-btn {
      height: 50px;
      margin-bottom: 0px;
      line-height: 50px;
      margin-right: 15px;
      font-size: 1.4rem;
      letter-spacing: 2px; }
      .cd-btn.store {
        padding-left: 54px;
        background: url("../img/apple.svg") 18px 45% no-repeat;
        background-size: 20px 25px; }
      .cd-btn.tour {
        display: inline-block; } }

.old-ie .cd-btn.store {
  background: url("../img/apple.png") 18px 45% no-repeat;
  background-size: 20px 25px; }

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

Main components

-------------------------------- */
.cd-product {
  position: relative;
  width: 90%;
  max-width: 1170px;
  margin: 0 auto; }
  @media only screen and (min-width: 1170px) {
    .cd-product {
      padding-top: 100px;
      height: 100vh;
      box-sizing: border-box; }
      .cd-product.is-product-tour {
        height: auto; } }

.cd-product-intro {
  padding: 50px 0;
  text-align: center; }
  .cd-product-intro h1 {
    display: inline-block;
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.5rem;
    font-weight: 600;
    font-family: "Josefin Sans", sans-serif;
    color: #ffffff; }
    @media only screen and (min-width: 1170px) {
      .cd-product-intro h1 {
        display: none; } }
  .cd-product-intro h2 {
    text-align: center; }
    @media only screen and (min-width: 1170px) {
      .cd-product-intro h2 {
        text-align: left; } }
  .cd-product-intro p {
    max-width: 560px;
    margin: 0 auto;
    padding: 0 0 20px;
    font-size: 1.6rem;
    line-height: 1.3;
    font-style: normal; }
    .cd-product-intro p b {
      font-weight: 600; }
    @media only screen and (min-width: 1170px) {
      .cd-product-intro p {
        /*br {
          display: none;
        }*/ } }
  .cd-product-intro::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'mobile';
    display: none; }
  @media only screen and (min-width: 1170px) {
    .cd-product-intro {
      /* Force Hardware Acceleration in WebKit */
      -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;
      position: absolute;
      top: 100px;
      left: 0;
      width: 50%;
      padding: 0;
      text-align: left;
      -webkit-transition: -webkit-transform 0.6s, opacity 0.6s;
      -moz-transition: -moz-transform 0.6s, opacity 0.6s;
      transition: transform 0.6s, opacity 0.6s; }
      .is-product-tour .cd-product-intro {
        opacity: 0;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%); }
      .cd-product-intro h1 {
        font-size: 4rem; }
      .cd-product-intro p {
        font-size: 2.0rem;
        padding: 10px 0 44px;
        margin: 0;
        font-style: normal; }
      .cd-product-intro::before {
        /* never visible - this is used in jQuery to check the current MQ */
        content: 'desktop'; } }

.no-csstransforms3d #cd-start {
  /* remove start button if CSS 3D Transforms are not supported */
  display: none; }

.cd-product-mockup {
  width: 90%;
  /* set here the max-width for the mockup */
  max-width: 450px;
  margin: 0 auto 50px;
  position: relative; }
  .cd-product-mockup img {
    display: block;
    position: relative;
    /* Firefox bug - 3D CSS transform, jagged edges */
    outline: 1px solid transparent; }
  @media only screen and (min-width: 1170px) {
    .cd-product-mockup {
      margin-bottom: 0;
      /* Force Hardware Acceleration in WebKit */
      -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;
      -webkit-transform-style: preserve-3d;
      -moz-transform-style: preserve-3d;
      -ms-transform-style: preserve-3d;
      -o-transform-style: preserve-3d;
      transform-style: preserve-3d;
      -webkit-transform-origin: center top;
      -moz-transform-origin: center top;
      -ms-transform-origin: center top;
      -o-transform-origin: center top;
      transform-origin: center top;
      -webkit-transform: rotateX(-60deg) rotateZ(-40deg) translateX(30px) translateY(300px);
      -moz-transform: rotateX(-60deg) rotateZ(-40deg) translateX(30px) translateY(300px);
      -ms-transform: rotateX(-60deg) rotateZ(-40deg) translateX(30px) translateY(300px);
      -o-transform: rotateX(-60deg) rotateZ(-40deg) translateX(30px) translateY(300px);
      transform: rotateX(-60deg) rotateZ(-40deg) translateX(30px) translateY(300px);
      -webkit-transition: -webkit-transform 0.6s;
      -moz-transition: -moz-transform 0.6s;
      transition: transform 0.6s; }
      .cd-product-mockup::before {
        /* mockup shadow */
        display: block;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        /* play with these values to create a realistic shadow */
        height: 45%;
        box-shadow: 0px 0px 30px 225px rgba(0, 0, 0, 0.1);
        -webkit-transform: translateZ(-100px) translateY(480px);
        -moz-transform: translateZ(-100px) translateY(480px);
        -ms-transform: translateZ(-100px) translateY(480px);
        -o-transform: translateZ(-100px) translateY(480px);
        transform: translateZ(-100px) translateY(480px);
        -webkit-transition: -webkit-transform 0.6s;
        -moz-transition: -moz-transform 0.6s;
        transition: transform 0.6s; }
      .is-product-tour .cd-product-mockup {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0); }
        .is-product-tour .cd-product-mockup::before {
          -webkit-transform: translateZ(-100px) translateX(226px) translateY(216px);
          -moz-transform: translateZ(-100px) translateX(226px) translateY(216px);
          -ms-transform: translateZ(-100px) translateX(226px) translateY(216px);
          -o-transform: translateZ(-100px) translateX(226px) translateY(216px);
          transform: translateZ(-100px) translateX(226px) translateY(216px); } }

.no-csstransforms3d .cd-product::after {
  clear: both;
  content: "";
  display: table; }
.no-csstransforms3d .cd-product-mockup {
  float: right; }
  .no-csstransforms3d .cd-product-mockup::before {
    display: none; }

.cd-3d-right-side, .cd-3d-bottom-side {
  display: none; }
  @media only screen and (min-width: 1170px) {
    .cd-3d-right-side, .cd-3d-bottom-side {
      display: block;
      position: absolute;
      left: 0;
      background-image: url(../img/cd-app-image-bg.png);
      /* Firefox bug - 3D CSS transform, jagged edges */
      outline: 1px solid transparent; }
      .cd-3d-right-side::after, .cd-3d-bottom-side::after {
        /* darken the right/bottom sides */
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.2); } }

@media only screen and (min-width: 1170px) {
  .cd-3d-right-side {
    top: -1px;
    width: 10px;
    height: 100%;
    background-size: auto 100%;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: translateZ(-1px) translateY(1px) rotateY(-90deg);
    -moz-transform: translateZ(-1px) translateY(1px) rotateY(-90deg);
    -ms-transform: translateZ(-1px) translateY(1px) rotateY(-90deg);
    -o-transform: translateZ(-1px) translateY(1px) rotateY(-90deg);
    transform: translateZ(-1px) translateY(1px) rotateY(-90deg); }

  .cd-3d-bottom-side {
    bottom: 0;
    width: 100%;
    height: 10px;
    background-position: bottom center;
    background-size: 100% auto;
    -webkit-transform-origin: center bottom;
    -moz-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    -o-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: translateZ(-1px) rotateX(-90deg);
    -moz-transform: translateZ(-1px) rotateX(-90deg);
    -ms-transform: translateZ(-1px) rotateX(-90deg);
    -o-transform: translateZ(-1px) rotateX(-90deg);
    transform: translateZ(-1px) rotateX(-90deg); }
    .cd-3d-bottom-side::after {
      background-color: rgba(0, 0, 0, 0.4); } }
.no-csstransforms3d .cd-3d-right-side, .no-csstransforms3d .cd-3d-bottom-side {
  display: none; }

.cd-close-product-tour {
  /* close icon - product tour */
  display: none; }
  @media only screen and (min-width: 1170px) {
    .cd-close-product-tour {
      display: block;
      position: absolute;
      top: 40px;
      right: 0;
      height: 40px;
      width: 40px;
      opacity: 0;
      visibility: hidden; }
      .no-touch .cd-close-product-tour:hover {
        opacity: .8; }
      .cd-close-product-tour::after, .cd-close-product-tour::before {
        /* these are used to create the 'X' icon */
        content: '';
        height: 40px;
        width: 2px;
        position: absolute;
        left: 50%;
        top: 50%;
        background-color: #ffffff; }
      .cd-close-product-tour::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-close-product-tour::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-close-product-tour.is-visible {
        visibility: visible;
        opacity: 1; } }

.cd-single-point {
  position: absolute;
  border-radius: 50%; }
  .cd-single-point > a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 2;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    transition: background-color 0.3s; }
    .cd-single-point > a::after, .cd-single-point > a:before {
      /* rotating plus icon */
      content: '';
      position: absolute;
      left: 50%;
      top: 50%;
      bottom: auto;
      right: auto;
      -webkit-transform: translateX(-50%) translateY(-50%);
      -moz-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
      -o-transform: translateX(-50%) translateY(-50%);
      transform: translateX(-50%) translateY(-50%);
      background-color: #ffffff;
      -webkit-transition: -webkit-transform 0.3s;
      -moz-transition: -moz-transform 0.3s;
      transition: transform 0.3s; }
    .cd-single-point > a::after {
      height: 2px;
      width: 12px; }
    .cd-single-point > a::before {
      height: 12px;
      width: 2px; }
  .cd-single-point::after {
    /* this is used to create the pulse animation */
    content: '';
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: inherit;
    background-color: transparent;
    -webkit-animation: cd-pulse 2s infinite;
    -moz-animation: cd-pulse 2s infinite;
    animation: cd-pulse 2s infinite; }
  .cd-single-point:nth-of-type(1) {
    top: 4%;
    left: 8%; }
  .cd-single-point:nth-of-type(2) {
    top: 4%;
    right: 8%; }
  .cd-single-point:nth-of-type(3) {
    top: 12%;
    right: 33%; }
  .cd-single-point:nth-of-type(4) {
    top: 20%;
    left: 13%; }
  .cd-single-point:nth-of-type(5) {
    bottom: 55%;
    right: 44%; }
  .cd-single-point:nth-of-type(6) {
    bottom: 36%;
    right: 15%; }
  .cd-single-point.is-open > a {
    background-color: #827ba9; }
    .cd-single-point.is-open > a::after, .cd-single-point.is-open > a::before {
      -webkit-transform: translateX(-50%) translateY(-50%) rotate(135deg);
      -moz-transform: translateX(-50%) translateY(-50%) rotate(135deg);
      -ms-transform: translateX(-50%) translateY(-50%) rotate(135deg);
      -o-transform: translateX(-50%) translateY(-50%) rotate(135deg);
      transform: translateX(-50%) translateY(-50%) rotate(135deg); }
  .cd-single-point.is-open::after {
    /* remove pulse effect */
    display: none; }
  .cd-single-point.is-open .cd-more-info {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s, -webkit-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s, -moz-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s, transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s; }
  .cd-single-point.visited > a {
    background-color: #827ba9; }
  .cd-single-point.visited::after {
    /* pulse effect no more active on visited elements */
    display: none; }
  @media only screen and (min-width: 480px) {
    .cd-single-point.is-open .cd-more-info.cd-left {
      right: 140%; }
    .cd-single-point.is-open .cd-more-info.cd-right {
      left: 140%; }
    .cd-single-point.is-open .cd-more-info.cd-top {
      bottom: 140%; }
    .cd-single-point.is-open .cd-more-info.cd-bottom {
      top: 140%; } }
  @media only screen and (min-width: 1170px) {
    .cd-single-point {
      -webkit-transform: scale(0);
      -moz-transform: scale(0);
      -ms-transform: scale(0);
      -o-transform: scale(0);
      transform: scale(0); }
      .cd-single-point::after {
        -webkit-animation: none;
        -moz-animation: none;
        animation: none; }
      .points-enlarged .cd-single-point {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        -webkit-animation: cd-bounce 0.4s;
        -moz-animation: cd-bounce 0.4s;
        animation: cd-bounce 0.4s; }
      .points-pulsing .cd-single-point::after {
        -webkit-animation: cd-pulse 2s infinite;
        -moz-animation: cd-pulse 2s infinite;
        animation: cd-pulse 2s infinite; } }

.no-csstransforms3d .cd-single-point {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); }

@-webkit-keyframes cd-bounce {
  0% {
    -webkit-transform: scale(0); }
  60% {
    -webkit-transform: scale(1.2); }
  100% {
    -webkit-transform: scale(1); } }
@-moz-keyframes cd-bounce {
  0% {
    -moz-transform: scale(0); }
  60% {
    -moz-transform: scale(1.2); }
  100% {
    -moz-transform: scale(1); } }
@keyframes cd-bounce {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0); }
  60% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2); }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }
@-webkit-keyframes cd-pulse {
  0% {
    -webkit-transform: scale(1);
    box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.2); }
  50% {
    box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.2); }
  100% {
    -webkit-transform: scale(1.6);
    box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0); } }
@-moz-keyframes cd-pulse {
  0% {
    -moz-transform: scale(1);
    box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.2); }
  50% {
    box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.2); }
  100% {
    -moz-transform: scale(1.6);
    box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0); } }
@keyframes cd-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.2); }
  50% {
    box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.2); }
  100% {
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    -o-transform: scale(1.6);
    transform: scale(1.6);
    box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0); } }
.cd-single-point .cd-more-info {
  position: fixed;
  top: 10%;
  left: 10%;
  z-index: 3;
  width: 80%;
  height: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  text-align: center;
  line-height: 1.5;
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  font-size: 1.7rem;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 3em 2em;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s, -webkit-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s, -moz-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s; }
  .cd-single-point .cd-more-info::before {
    /* triangle next to the interest point description - hidden on mobile */
    content: '';
    position: absolute;
    height: 0;
    width: 0;
    display: none;
    border: 8px solid transparent; }
  .cd-single-point .cd-more-info h2 {
    font-size: 2.2rem;
    font-family: "Josefin Sans", sans-serif;
    font-weight: bold;
    margin-bottom: .6em; }
  .cd-single-point .cd-more-info p {
    color: #514b73; }
  @media only screen and (min-width: 480px) {
    .cd-single-point .cd-more-info {
      position: absolute;
      width: 225px;
      height: 80px;
      padding: 1em;
      overflow-y: visible;
      line-height: 1.4;
      border-radius: .25em;
      box-shadow: 0 0 20px rgba(81, 75, 115, 0.3); }
      .cd-single-point .cd-more-info::before {
        display: block; }
      .cd-single-point .cd-more-info.cd-left, .cd-single-point .cd-more-info.cd-right {
        top: 50%;
        bottom: auto;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%); }
        .cd-single-point .cd-more-info.cd-left::before, .cd-single-point .cd-more-info.cd-right::before {
          top: 50%;
          bottom: auto;
          -webkit-transform: translateY(-50%);
          -moz-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          -o-transform: translateY(-50%);
          transform: translateY(-50%); }
      .cd-single-point .cd-more-info.cd-left {
        right: 160%;
        left: auto; }
        .cd-single-point .cd-more-info.cd-left::before {
          border-left-color: rgba(255, 255, 255, 0.95);
          left: 100%; }
      .cd-single-point .cd-more-info.cd-right {
        left: 160%; }
        .cd-single-point .cd-more-info.cd-right::before {
          border-right-color: rgba(255, 255, 255, 0.95);
          right: 100%; }
      .cd-single-point .cd-more-info.cd-top, .cd-single-point .cd-more-info.cd-bottom {
        left: 50%;
        right: auto;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%); }
        .cd-single-point .cd-more-info.cd-top::before, .cd-single-point .cd-more-info.cd-bottom::before {
          left: 50%;
          right: auto;
          -webkit-transform: translateX(-50%);
          -moz-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
          -o-transform: translateX(-50%);
          transform: translateX(-50%); }
      .cd-single-point .cd-more-info.cd-top {
        bottom: 160%;
        top: auto; }
        .cd-single-point .cd-more-info.cd-top::before {
          border-top-color: rgba(255, 255, 255, 0.95);
          top: 100%; }
      .cd-single-point .cd-more-info.cd-bottom {
        top: 160%; }
        .cd-single-point .cd-more-info.cd-bottom::before {
          border-bottom-color: rgba(255, 255, 255, 0.95);
          bottom: 100%; }
      .cd-single-point .cd-more-info h2 {
        margin-bottom: 0; }
      .cd-single-point .cd-more-info p {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        text-align: center;
        font-weight: 600;
        font-size: 1.5rem; } }

.cd-close-info {
  /* close the interest point description - only on mobile */
  position: fixed;
  top: 0;
  right: 0;
  height: 44px;
  width: 44px; }
  .cd-close-info::after, .cd-close-info:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    background-color: #514b73;
    -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);
    -webkit-transition-property: transform 0.2s;
    -moz-transition-property: transform 0.2s;
    transition-property: transform 0.2s; }
  .cd-close-info::after {
    height: 2px;
    width: 16px; }
  .cd-close-info::before {
    height: 16px;
    width: 2px; }
  @media only screen and (min-width: 480px) {
    .cd-close-info {
      display: none; } }

/* Effects */
.cd-title {
  position: relative;
  height: 160px;
  line-height: 160px;
  text-align: center; }
  .cd-title h1 {
    font-size: 2.4rem;
    font-weight: 700; }
  @media only screen and (min-width: 1170px) {
    .cd-title {
      height: 200px;
      line-height: 200px; }
      .cd-title h1 {
        font-size: 3rem; } }

.cd-intro {
  display: inline-block;
  margin: 1em 0 2em;
  max-width: 768px;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    .cd-intro {
      margin: 5em 0 2em; } }
  @media only screen and (min-width: 1170px) {
    .cd-intro {
      width: 90%;
      margin: 7.5em 0 1em;
      text-align: left; } }

.footer {
  text-align: center;
  padding-bottom: 2em;
  font-size: 1.25rem; }
  .footer a {
    font-weight: 600;
    color: #f7f7f9; }
    .footer a img {
      height: 15px;
      width: auto;
      vertical-align: middle;
      position: relative;
      top: -1px; }
  .footer a.esmes {
    display: inline-block;
    margin-bottom: 10px; }
  @media only screen and (min-width: 1170px) {
    .footer {
      padding-top: 3em;
      text-align: left; }
      .footer a.esmes {
        display: inline;
        margin-right: 10px;
        margin-bottom: 0; }
      .footer br {
        display: none; } }

.footer {
  display: block; }

.cd-product-intro .footer {
  display: none; }

@media only screen and (min-width: 1170px) {
  .footer {
    display: none; }

  .cd-product-intro .footer {
    display: block; } }
.cd-headline {
  font-size: 2rem;
  line-height: 1.1; }
  @media only screen and (min-width: 768px) {
    .cd-headline {
      font-size: 3.4rem;
      font-weight: 300; } }
  @media only screen and (min-width: 1170px) {
    .cd-headline {
      font-size: 5rem; } }

.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left; }
  .cd-words-wrapper b {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0; }
    .cd-words-wrapper b.is-visible {
      position: relative; }
  .no-js .cd-words-wrapper b {
    opacity: 0; }
    .no-js .cd-words-wrapper b.is-visible {
      opacity: 1; }

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

xnugget info

-------------------------------- */
.cd-nugget-info {
  text-align: center;
  width: 100%;
  height: 50px;
  line-height: 50px; }
  .cd-nugget-info a {
    position: relative;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s; }
    .no-touch .cd-nugget-info a:hover {
      opacity: .8; }
  .cd-nugget-info span {
    vertical-align: middle;
    display: inline-block; }
    .cd-nugget-info span svg {
      display: block; }
  .cd-nugget-info .cd-nugget-info-arrow {
    fill: rgba(255, 255, 255, 0.6); }

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

xrotate-2

-------------------------------- */
.cd-headline.rotate-2 .cd-words-wrapper {
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px; }
.cd-headline.rotate-2 i, .cd-headline.rotate-2 em {
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }
.cd-headline.rotate-2 i {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: translateZ(-20px) rotateX(90deg);
  -moz-transform: translateZ(-20px) rotateX(90deg);
  -ms-transform: translateZ(-20px) rotateX(90deg);
  -o-transform: translateZ(-20px) rotateX(90deg);
  transform: translateZ(-20px) rotateX(90deg);
  opacity: 0; }
  .is-visible .cd-headline.rotate-2 i {
    opacity: 1; }
  .cd-headline.rotate-2 i.in {
    -webkit-animation: cd-rotate-2-in 0.4s forwards;
    -moz-animation: cd-rotate-2-in 0.4s forwards;
    animation: cd-rotate-2-in 0.4s forwards; }
  .cd-headline.rotate-2 i.out {
    -webkit-animation: cd-rotate-2-out 0.4s forwards;
    -moz-animation: cd-rotate-2-out 0.4s forwards;
    animation: cd-rotate-2-out 0.4s forwards; }
.cd-headline.rotate-2 em {
  -webkit-transform: translateZ(20px);
  -moz-transform: translateZ(20px);
  -ms-transform: translateZ(20px);
  -o-transform: translateZ(20px);
  transform: translateZ(20px); }

.no-csstransitions .cd-headline.rotate-2 i {
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
  opacity: 0; }
  .no-csstransitions .cd-headline.rotate-2 i em {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }

.no-csstransitions .cd-headline.rotate-2 .is-visible i {
  opacity: 1; }

@-webkit-keyframes cd-rotate-2-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(90deg); }
  60% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(-10deg); }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0deg); } }
@-moz-keyframes cd-rotate-2-in {
  0% {
    opacity: 0;
    -moz-transform: translateZ(-20px) rotateX(90deg); }
  60% {
    opacity: 1;
    -moz-transform: translateZ(-20px) rotateX(-10deg); }
  100% {
    opacity: 1;
    -moz-transform: translateZ(-20px) rotateX(0deg); } }
@keyframes cd-rotate-2-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(90deg);
    -moz-transform: translateZ(-20px) rotateX(90deg);
    -ms-transform: translateZ(-20px) rotateX(90deg);
    -o-transform: translateZ(-20px) rotateX(90deg);
    transform: translateZ(-20px) rotateX(90deg); }
  60% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(-10deg);
    -moz-transform: translateZ(-20px) rotateX(-10deg);
    -ms-transform: translateZ(-20px) rotateX(-10deg);
    -o-transform: translateZ(-20px) rotateX(-10deg);
    transform: translateZ(-20px) rotateX(-10deg); }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0deg);
    -moz-transform: translateZ(-20px) rotateX(0deg);
    -ms-transform: translateZ(-20px) rotateX(0deg);
    -o-transform: translateZ(-20px) rotateX(0deg);
    transform: translateZ(-20px) rotateX(0deg); } }
@-webkit-keyframes cd-rotate-2-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0); }
  60% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-100deg); }
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-90deg); } }
@-moz-keyframes cd-rotate-2-out {
  0% {
    opacity: 1;
    -moz-transform: translateZ(-20px) rotateX(0); }
  60% {
    opacity: 0;
    -moz-transform: translateZ(-20px) rotateX(-100deg); }
  100% {
    opacity: 0;
    -moz-transform: translateZ(-20px) rotateX(-90deg); } }
@keyframes cd-rotate-2-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0);
    -moz-transform: translateZ(-20px) rotateX(0);
    -ms-transform: translateZ(-20px) rotateX(0);
    -o-transform: translateZ(-20px) rotateX(0);
    transform: translateZ(-20px) rotateX(0); }
  60% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-100deg);
    -moz-transform: translateZ(-20px) rotateX(-100deg);
    -ms-transform: translateZ(-20px) rotateX(-100deg);
    -o-transform: translateZ(-20px) rotateX(-100deg);
    transform: translateZ(-20px) rotateX(-100deg); }
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-90deg);
    -moz-transform: translateZ(-20px) rotateX(-90deg);
    -ms-transform: translateZ(-20px) rotateX(-90deg);
    -o-transform: translateZ(-20px) rotateX(-90deg);
    transform: translateZ(-20px) rotateX(-90deg); } }

/*# sourceMappingURL=style.css.map */
