@import url(http://fonts.googleapis.com/css?family=Open+Sans);
/* --------------------------------

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

body {
  font-size: 100%;
  font-family: 'Open Sans', 'Hiragino Sans GB', '微軟正黑體', sans-serif;
  line-height: 26px;
}

body, html {
  height: 100%;
}

a {
  color: #3e3947;
  text-decoration: none;
}

img {
  max-width: 100%;
}

#cd-vertical-nav ul {
  list-style: none;
}

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

Modules - reusable parts of our design

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

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

Main components

-------------------------------- */
.cd-section {
  min-height: 100%;
  position: relative;
  padding: 2em 0;
}
.cd-section:nth-of-type(odd) {
  background-color: #3e3947;
}
.cd-section:nth-of-type(even) {
  background-color: #745360;
}

.cd-section h1 {
  color: #009ee0;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 20px;
  font-size: 1.25rem;
}
.cd-section p {
  line-height: 1.6;
  color: #aebdc5;
}
@media only screen and (min-width: 768px) {
  .cd-section h1 {
    font-size: 30px;
    font-size: 3rem;
    line-height: 3em;
  }
  .cd-section p {
    font-size: 20px;
    font-size: 1.5rem;
    line-height: 2;
  }
}

.cd-scroll-down {
  position: absolute;
  left: 45%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 20px;
  width: 80px;
  height: 80px;
  background: url("../img/cd-arrow-bottom.svg") no-repeat center center;
}

/* No Touch devices */
.cd-nav-trigger {
  display: none;
}

.no-touch #cd-vertical-nav {
  position: fixed;
  right: 40px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}
.no-touch #cd-vertical-nav li {
  text-align: right;
}
.no-touch #cd-vertical-nav a {
  display: inline-block;
  /* prevent weird movements on hover when you use a CSS3 transformation - webkit browsers */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.no-touch #cd-vertical-nav a:after {
  content: "";
  display: table;
  clear: both;
}
.no-touch #cd-vertical-nav a span {
  float: right;
  display: inline-block;
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -ms-transform: scale(0.6);
  -o-transform: scale(0.6);
  transform: scale(0.6);
}
.no-touch #cd-vertical-nav a:hover span {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.no-touch #cd-vertical-nav a:hover .cd-label {
  opacity: 1;
}
.no-touch #cd-vertical-nav a.is-selected .cd-dot {
  background-color: white;
}
.no-touch #cd-vertical-nav .cd-dot {
  position: relative;
  /* we set a top value in order to align the dot with the label. If you change label's font, you may need to change this top value*/
  top: 8px;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background-color: #009ee0;
  -webkit-transition: -webkit-transform 0.2s, background-color 0.5s;
  -moz-transition: -moz-transform 0.2s, background-color 0.5s;
  transition: transform 0.2s, background-color 0.5s;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.no-touch #cd-vertical-nav .cd-label {
  position: relative;
  margin-right: 10px;
  //padding: .4em .5em;
  color: white;
  font-size: 14px;
  font-size: 1.5rem;
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
  -moz-transition: -moz-transform 0.2s, opacity 0.2s;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0;
  -webkit-transform-origin: 100% 50%;
  -moz-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  -o-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}

/* Touch devices */
.touch .cd-nav-trigger {
  display: block;
  z-index: 2;
  position: fixed;
  bottom: 30px;
  right: 5%;
  height: 44px;
  width: 44px;
  border-radius: 0.25em;
  background: rgba(255, 255, 255, 0.9);
}
.touch .cd-nav-trigger span {
  position: absolute;
  height: 4px;
  width: 4px;
  background-color: #3e3947;
  border-radius: 50%;
  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%);
}
.touch .cd-nav-trigger span::before, .touch .cd-nav-trigger span::after {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  background-color: inherit;
  border-radius: inherit;
}
.touch .cd-nav-trigger span::before {
  top: -9px;
}
.touch .cd-nav-trigger span::after {
  bottom: -9px;
}

.touch #cd-vertical-nav {
  position: fixed;
  z-index: 1;
  right: 5%;
  bottom: 30px;
  width: 90%;
  max-width: 140px;
  max-height: 90%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-transform-origin: right bottom;
  -moz-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  -o-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
  border-radius: 0.25em;
  background-color: rgba(255, 255, 255, 0.9);
}
.touch #cd-vertical-nav a {
  display: block;
  padding: 1em;
  border-bottom: 1px solid rgba(62, 57, 71, 0.1);
}
.touch #cd-vertical-nav a span:first-child {
  display: none;
}
.touch #cd-vertical-nav a.is-selected span:last-child {
  color: #d88683;
}
.touch #cd-vertical-nav.open {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.touch #cd-vertical-nav.open + .cd-nav-trigger {
  background-color: transparent;
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span {
  background-color: rgba(62, 57, 71, 0);
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span::before, .touch #cd-vertical-nav.open + .cd-nav-trigger span::after {
  background-color: #3e3947;
  height: 3px;
  width: 20px;
  border-radius: 0;
  left: -8px;
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 1px;
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span::after {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  bottom: 0;
}
.touch #cd-vertical-nav li:last-child a {
  border-bottom: none;
}

@media only screen and (min-width: 768px) {
  .touch .cd-nav-trigger, .touch #cd-vertical-nav {
    bottom: 40px;
  }
}

/*-------------------------------
---------------------------------
--------- Fiona's CSS -----------
---------------------------------
---------------------------------*/
#section1 {
  background: url(../img/original-parts/main-bg.jpg) 20% 100%  no-repeat;
  background-size: cover;
}
#section2, #section6 {
  background: url(../img/original-parts/skeleton-bg2.jpg) 50% 50%  no-repeat;
  background-size: cover;
}
#section3, #section5, #section7 {
  background-color: #2f383d;
}
#section4 {
  background: url(../img/original-parts/skeleton-bg1.jpg) 50% 50%  no-repeat;
  background-size: cover;
}
#section8 {
  background-color: #000;
}
.intro-text {
  margin-top: 50px;
}
.intro .intro-text h2 {
  color: white;
  font-size: 2.3em;
}
h3 {
  color: #009ee0;
  line-height: 1.5em;
  padding-left: 15px;
}
.content1 {
  margin-top: 50px;
}
#section2 .content1 .quality {
  width: 600px;
  padding-top: 100px;
}
#section2 .content2 .content-title {
  position: absolute;
  color: white;
  top: 55%;
  left: 43.1%;
}
#section2 .content2 span {
  position: absolute;
  font-size: 2.5em;
  line-height: 1.5em;
  color: white;
}
#section2 .content2 .quality-text {
  top: 25%;
  left: 47.7%;
}
#section2 .content2 .performance-text {
  bottom: 19%;
  left: 26.5%;
}
#section2 .content2 .compatibility-text {
  bottom: 19%;
  right: 24.5%;
}
#section3 .content1 h3 {
  margin-bottom: 20px;
}
h4 {
  color: white;
}
#section3 .row {
  margin-bottom: 30px;
}
#section3 .why1-1 {
  width: 95px;
}
#section3 .why1-2 {
  width: 160px;
  margin-left: 35px;
}
#section3 span {
  color: white;
  position: absolute;
}
#section3 .why-text1 {
  left: 36%;
}
#section3 .why-text2 {
  right: -4%;
  bottom: -7%;
}
#section3 .why2-1 {
  margin-right: 30px;
  margin-top: 10px;
}
#section3 .why2-2 {
  width: 170px;
}
#section3 .why-text3 {
  left: 0;
  bottom: -5px;
}
#section3 .why3-1 {
  width: 120px;
}
#section3 .why4-1 {
  margin-left: 137px;
  width: 160px;
}
#section3 .why5-1 {
  width: 140px;
}
#section3 .why5-2 {
  margin-left: 10px;
  width: 140px;
}
#section4 img {
  padding-top: 70px;
}
#section5 .content1 {
  margin-top: 35px;
}
#section5 .content1 i {
  margin-right: 10px;
}
#section5 .content1 .fa-heart {
  color: #f50000;
}
#section5 .content1 .fa-diamond {
  color: #e3e11f;
}
#section5 .content1 .fa-line-chart, #section6 .content2 li>i {
  color: #5cb85c;
}
#section5 .content1 .fa-bolt {
  color: #03edfc;
}
#section5 .content1 h4 {
  font-size: 2.5em;
  margin-top: 20px;
}
#section6 .content1 h3 {
  margin-top: 50%;
}
#section6 .content1 p {
  margin-left: 15px;
}
#section6 .content2 {
  margin-top: 15%;
  padding-left: 5%;
}
#section6 .content2 ul {
  list-style: none;
  margin-top: 15px;
}
#section6 .content2 li {
  font-size: 1.7em;
  color: white;
  line-height: 45px;
}
#section6 .content2 li>i {
  font-size: 1.3em;
  padding-right: 10px;
}
#section8 h2 {
  color: #009ee0;
  font-weight: normal;
  margin-top: 30%;
}
#section8 a {
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  #section1 {
    background-position: 50% 100%;
  }
  .intro .intro-text h1 {
    font-size: 3em;
    margin-bottom:
  }
  .intro .intro-text h2 {
    padding: 20px 0 10px;
  }
  .cd-section p {
    font-size: 1.6em;
    margin-top: 20px;
    line-height: 2em;
  }
  #section2 .content2 .quality-text {
    left: 46.7%;
    top: 23%;
  }
  #section2 .content1 .quality {
    padding-top: 30px;
  }
  #section2 .cd-single-point:nth-of-type(1) {
    right: 47%;
    top: 33%;
  }
  #section2 .content2 .performance-text {
    left: 12.5%;
  }
  #section2 .cd-single-point:nth-of-type(2) {
    left: 14.5%;
    bottom: 11%;
  }
  #section2 .content2 .compatibility-text {
    right: 10%;
  }
  #section2 .cd-single-point:nth-of-type(3) {
    right: 14%;
  }
  #section2 .content2 .content-title {
    top: 53%;
    left: 39.5%;
  }
  #section2 .cd-single-point .cd-more-info p {
    margin: 0;
  }
  #section3 .why4-1 {
    margin-left: 0;
  }
  #section3 .why-text1 {
    left: 20%;
    top: 50%;
  }
  #section3 .why-text2 {
    right: 15%;
  }
  #section4 p {
    line-height: 2em;
  }
}
@media only screen and (min-width: 768px) {
  #section1 {
    background-position: 50% 100%;
  }
  #section2 .content2 .quality-text{
    left: 46.5%;
  }
  #section2 .cd-single-point:nth-of-type(1) {
    right: 47%;
  }
  #section2 .content2 .performance-text {
    left: 13%;
  }
  #section2 .cd-single-point:nth-of-type(2) {
    left: 15%;
  }
  #section2 .content2 .compatibility-text {
    right: 10%;
  }
  #section2 .cd-single-point:nth-of-type(3) {
    right: 14.5%;
  }
  #section2 .content2 .content-title {
    left: 39.5%;
  }
  #section3 .why3-1 {
    width: 92px;
  }
}
@media only screen and (max-width: 991px) {
  #section3 .col-md-6 {
    text-align: center;
  }
  #section6 .content1 h3 {
    margin-top: 20px;
  }
  #section6 .content2 {
    padding-left: 15px;
  }
  #section8 h2 {
    margin-top: 50%;
  }
  #section8 a {
    margin-top: 40px;
  }
  #section7 .col-md-6 {
    margin: 20px 0;
  }
}
@media only screen and (min-width: 992px) {
  #section2 .content2 .quality-text {
    left:47.5%;
  }
  #section2 .cd-single-point:nth-of-type(1) {
    right: 47.5%;
  }
  #section2 .content2 .performance-text {
    left: 21.5%;
  }
  #section2 .cd-single-point:nth-of-type(2) {
    left: 23%;
  }
  #section2 .content2 .compatibility-text {
    right: 19%;
  }
  #section2 .cd-single-point:nth-of-type(3) {
    right: 22.5%;
  }
  #section2 .content2 .content-title {
    left: 41.5%;
  }
  #section3 .why1-1 {
    width: 75px;
  }
  #section3 .why1-2 {
    width:125px;
    margin-left: 15px;
  }
  #section3 .why2-1 {
    width: 60px;
    margin-right: 15px;
  }
  #section3 .why2-2 {
    width: 150px;
  }
  #section3 .why4-1 {
    margin-left: 90px;
  }
  #section3 .why5-1 {
    width: 100px;
  }
  #section3 .why5-2 {
    width: 122px;
  }
  #section5 img {
    width: 70%;
  }
  #section7 .col-md-6 {
    margin-top: 100px;
  }
}
@media only screen and (min-width: 1200px) {
  #section2 .cd-single-point:nth-of-type(1) {
    right: 48%;
  }
  #section2 .content2 .performance-text {
    left: 26.5%;
  }
  #section2 .cd-single-point:nth-of-type(2) {
    left: 28%;
  }
  #section2 .content2 .compatibility-text {
    right: 24.5%;
  }
  #section2 .cd-single-point:nth-of-type(3) {
    right: 27.5%;
  }
  #section2 .content2 .content-title {
    left: 43%;
  }
  #section3 .why1-1 {
    width: 95px;
  }
}

/*
 * Animation for arrow down
*/
/*
 * Animation configurations ( duration and fill mode )
*/
.animated {
  -webkit-animation-name: bounceIn;
  -webkit-animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
}
@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}
    40% {-webkit-transform: translateY(-10px);}
    60% {-webkit-transform: translateY(-5px);}
}

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

/*
 * Adding the animation to our element
*/
.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
}
/*
 * POINT OF INTEREST 品質/效能/相容性小套件
*/
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
}
.cd-container:after {
  content: "";
  display: table;
  clear: both;
}
.cd-product {
  text-align: center;
}

.cd-product-wrapper {
  display: inline-block;
  position: relative;
  margin: 0 auto;
  width: 100%;
}
.cd-product-wrapper > img {
  display: block;
}

.cd-single-point {
  position: absolute;
  border-radius: 50%;
}
.cd-single-point > a {
  position: relative;
  z-index: 2;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: inherit;
  background: #009ee0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.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-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
.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: 36%;
  right: 48%;
}
.cd-single-point:nth-of-type(2) {
  bottom: 10%;
  left: 28%;
}
.cd-single-point:nth-of-type(3) {
  bottom: 10%;
  right: 27.5%;
}
.cd-single-point.is-open > a {
  background-color: #475f74;
}
.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: #475f74;
}
.cd-single-point.visited::after {
  /* pulse effect no more active on visited elements */
  display: none;
}
@media only screen and (min-width: 600px) {
  .cd-single-point.is-open .cd-more-info.cd-left {
    right: 400%;
  }
  .cd-single-point.is-open .cd-more-info.cd-right {
    left: 400%;
  }
  .cd-single-point.is-open .cd-more-info.cd-top {
    bottom: 400%;
  }
  .cd-single-point.is-open .cd-more-info.cd-bottom {
    top: 400%;
  }
}

@-webkit-keyframes cd-pulse {
  0% {
    -webkit-transform: scale(1);
    box-shadow: inset 0 0 1px 1px rgba(217, 83, 83, 0.8);
  }
  50% {
    box-shadow: inset 0 0 1px 1px rgba(217, 83, 83, 0.8);
  }
  100% {
    -webkit-transform: scale(1.6);
    box-shadow: inset 0 0 1px 1px rgba(217, 83, 83, 0);
  }
}
@-moz-keyframes cd-pulse {
  0% {
    -moz-transform: scale(1);
    box-shadow: inset 0 0 1px 1px rgba(217, 83, 83, 0.8);
  }
  50% {
    box-shadow: inset 0 0 1px 1px rgba(217, 83, 83, 0.8);
  }
  100% {
    -moz-transform: scale(1.6);
    box-shadow: inset 0 0 1px 1px rgba(217, 83, 83, 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(217, 83, 83, 0.8);
  }
  50% {
    box-shadow: inset 0 0 1px 1px rgba(217, 83, 83, 0.8);
  }
  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(217, 83, 83, 0);
  }
}
.cd-single-point .cd-more-info {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  text-align: left;
  line-height: 1.5;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 2em 1em 1em;
  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: 22px;
  font-size: 1.375rem;
  margin-bottom: .6em;
}
.cd-single-point .cd-more-info p {
  color: #758eb1;
}
@media only screen and (min-width: 600px) {
  .cd-single-point .cd-more-info {
    position: absolute;
    width: 300px;
    height: 200px;
    padding: 1em;
    overflow-y: visible;
    line-height: 1.4;
    border-radius: 0.25em;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  }
  .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 {
    font-size: 20px;
    //font-size: 1.25rem;
    margin-bottom: 0;
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .cd-single-point .cd-more-info p {
    font-size: 14px;
    font-size: 1.5rem;
    line-height: 1.6em;
    text-align: justify;
  }
}

/* close the interest point description - only on mobile */
.cd-close-info {
  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;
  -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);
  background-color: #475f74;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
.cd-close-info::after {
  height: 2px;
  width: 16px;
}
.cd-close-info::before {
  height: 16px;
  width: 2px;
}
@media only screen and (min-width: 600px) {
  .cd-close-info {
    display: none;
  }
}
