
/* -------------------------------- 

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: #000;
}
/*.cd-section:nth-of-type(odd) p {
  color: #898099;
}*/
.cd-section:nth-of-type(even) {
  background-color: #000;
}
/*.cd-section:nth-of-type(even) p {
  color: #bda3ad;
}*/
/*
.cd-section h1, .cd-section p {
  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%);
  width: 90%;
  max-width: 768px;
  text-align: center;
}*/
/*
.cd-section h1 {
  color: white;
  font-weight: 300;
  text-transform: none;
  font-size: calc( 20px + -0px );
  font-size: calc( 1.25rem + -0px );
}
.cd-section p {
  line-height: 1.6;
}*/

/*
@media only screen and (min-width: 768px) {
  .cd-section h1 {
    font-size: calc( 30px + -0px );
    font-size: calc( 1.875rem + -0px );
  }
  .cd-section p {
    font-size: calc( 20px + -0px );
    font-section_p: calc( 1.25rem + -0px );
    line-height: 2;
  }
}*/


.cd-scroll-down {
  position: absolute;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 20px;
  width: auto;
  height: 34px;
  font-size: calc( 14px + -0px );
  letter-spacing: 5px;
  text-transform: none;
  font-family: 'HelveticaNeueLT Std Lt Cn';
  color: #FFF;
  font-weight: 300;
  font-style: normal;
  font-stretch: condensed;
  z-index: 9999;
}
.cd-scroll-down.explore {
  height: 46px;
  color: #e88d53;
}
.cd-scroll-down:hover {
  color: #e88d53;
}
.cd-scroll-down.explore:hover {
  color: #FFF;
}

.cd-scroll-down:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%,0);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #bf7446;
  -webkit-animation: sdb07 2s infinite;
  animation: sdb07 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}

.cd-scroll-down.explore:after,
.cd-scroll-down.explore:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%,0);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #bf7446;
  -webkit-animation: sdb07 2s infinite;
  animation: sdb07 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}
.cd-scroll-down.explore:before {
  bottom: 12px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.cd-scroll-down.explore:after {
  -webkit-animation-delay: .15s;
  animation-delay: .15s;
}

@-webkit-keyframes sdb07 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb07 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}







/* No Touch devices */
.cd-nav-trigger {
  display: none;
}

 #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: 99999998;
}
 #cd-vertical-nav li {
  text-align: right;
}
 #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;
}
 #cd-vertical-nav a:after {
  content: "";
  display: table;
  clear: both;
}
 #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);
  transform-origin: right center;
}
 #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);
  transform-origin: right center;
}
 #cd-vertical-nav a:hover .cd-label {
  opacity: 1;
}
 #cd-vertical-nav a.is-selected .cd-dot {
  background-color: white;
}
 #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: #e88d53;
  -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%;
}
 #cd-vertical-nav .cd-label {
  font-family: 'HelveticaNeueLT Std Lt Cn';
  color: #b16c3f;
  font-weight: 300;
  font-size: calc( 15px + -0px );
  letter-spacing: 5px;
  text-transform: none;
  text-shadow: 1px 2px 0px rgba(0, 0, 0, 1);
  position: relative;
  margin-right: 10px;
  padding: .4em .5em;
  color: white;
  /*font-size: 14px;*/
  font-size: calc( 0.875rem + -0px );
  -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%;
}


@media only screen and (min-width: 768px) {
  .js .cd-nav-trigger, .js #cd-vertical-nav {
    /*bottom: 40px;*/
  }
  }






/* MOBILE */

@media only screen and (max-width: 1200px), (max-height: 640px) {

/* Touch devices */
.js .cd-nav-trigger {
  width: 100%;
  display: block !important;
  z-index: 2;
  position: fixed;
  /*bottom: 30px;*/
  top: 20px;
  /*right: 5%;*/
  right: 80px;
  height: 36px;
  width: 36px;
  z-index: 99999999999999999999;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%; 
  /*background: rgba(255, 255, 255, 0.9);*/
  border: 2px solid #e88d53;
}
.js .cd-nav-trigger span {
  position: absolute;
  height: 4px;
  width: 4px;
  background-color: #e88d53;
  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%);
}
.js .cd-nav-trigger span::before, .js .cd-nav-trigger span::after {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  background-color: inherit;
  border-radius: inherit;
}
.js .cd-nav-trigger span::before {
  top: -9px;
}
.js .cd-nav-trigger span::after {
  bottom: -9px;
}

.js #cd-vertical-nav {
  position: fixed;
  z-index: 1;
  /*right: 5%;*/
  /*bottom: 30px;*/
  /*top: 40px;*/
  /*right: 80px;
  top: 20px;*/
  right: 82px;
  top: 62px;  
  /*width: 90%;*/
  width: 60%;
  /*max-width: 400px;*/
  /*max-width: 280px;*/
  max-width: 200px;
  max-height: 90%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  -o-transform-origin: right top;
  transform-origin: right top;
  -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;
 /* -webkit-border-top-right-radius: 18px;
  -moz-border-radius-topright: 18px;
  border-top-right-radius: 18px;  */
  /*border-radius: 0.25em;*/
  /*background-color: rgba(255, 255, 255, 0.9);*/
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 99999999999999;
}
.js #cd-vertical-nav a {
  display: block !important;
  /*padding: 1em;*/
  padding: 0.8em 0 0.8em 20px !important;
  border-bottom: 1px solid rgba(62, 57, 71, 0.3) !important;
}
.js #cd-vertical-nav a span.cd-label,
#cd-vertical-nav .cd-label {
  opacity: 1;
  float: left !important;
  text-align: left !important;
  padding: 0 !important;
  font-family: 'HelveticaNeueLT Std Lt Cn' !important;
  color: #FFF !important;
  font-weight: 300 !important;
  font-size: calc( 13px  + -0px )!important;
  letter-spacing: 5px !important;
  text-transform: none !important;
  text-shadow: 1px 2px 0px rgba(0, 0, 0, 1) !important;
}


.js #cd-vertical-nav a span:first-child {
  display: none;
}
.js #cd-vertical-nav a.is-selected span:last-child {
  color: #e88d53 !important;
}
.js #cd-vertical-nav.open {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.js #cd-vertical-nav.open + .cd-nav-trigger {
  background-color: transparent;
}
.js #cd-vertical-nav.open + .cd-nav-trigger span {
  background-color: rgba(62, 57, 71, 0);
}
.js #cd-vertical-nav.open + .cd-nav-trigger span::before, .js #cd-vertical-nav.open + .cd-nav-trigger span::after {
  background-color: #e88d53;
  height: 3px;
  width: 20px;
  border-radius: 0;
  left: -8px;
}
.js #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;
}
.js #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;
}
.js #cd-vertical-nav li:last-child a {
  border-bottom: none;
}

 #cd-vertical-nav a span {
  float: right;
  display: inline-block;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}


}