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

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%;
}

body {
    font-size: 14px;
  color: #0f594d;
  background-color: #f2e6cd;
}
@media only screen and (min-width: 1048px) {
  body {
    /* hide horizontal scroll bar in IE */
    overflow-x: hidden;
  }
}

a {
  color: #93a748;
  text-decoration: none;
}

h2 {
  font-family: 'Bemio';
  font-size: 3.5em;
}

p {
  font-family: 'Clear Sans';
  font-size: 1.2em;
}

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

Main Components 

-------------------------------- */
.cd-header {
  position: relative;
  height: 100%;
  background-color: #93a748;
      background-image: url("../img/intro.jpg");
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}
.cd-header h1 {
  width: 90%;
  color: #f2e6cd;
  text-align: center;
  font-size: 2.2rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  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%);
}
@media only screen and (min-width: 768px) {
  .cd-header h1 {
    font-size: 3.6rem;
    font-weight: 300;
  }
}

.cd-fixed-background {
  position: relative;
  padding: 3em 5% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.cd-fixed-background h2, .cd-fixed-background p {
  color: #f2e6cd;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-fixed-background h2 {
  margin-bottom: 0.5em;
}
.cd-fixed-background p {
  line-height: 1.6;
}
.cd-fixed-background .light-background h2, .cd-fixed-background .light-background p {
  color: #333333;
}
.cd-fixed-background .cd-content::after {
  /* phone image on small devices */
  content: '';
  display: block;
  width: 100%;
  padding: 60% 0;
  margin: 2em auto 0;
}
.cd-fixed-background.img-0 .cd-content::after {
  background: url("../img/img-mobile-0.jpg") no-repeat;
  background-size: 100% auto;
  background-color: #86a53e;
}
.cd-fixed-background.img-0 {
   background-color: #86a53e;
}

.cd-fixed-background.img-1 .cd-content::after {
  background: url("../img/img-mobile-1.jpg") no-repeat;
  background-size: 100% auto;
  background-color: #86a53e
}
.cd-fixed-background.img-2 {
   background-color: #86a53e;
}
.cd-fixed-background.img-2 .cd-content::after {
  background: url("../img/img-mobile-2.jpg") no-repeat;
  background-size: 100% auto;
    color: #333333;
}
.cd-fixed-background.img-3 {
    background-color: #f4ead5;
}
.cd-fixed-background.img-3 .cd-content::after {
  background: url("../img/img-mobile-3.jpg") no-repeat;
  background-size: 100% auto;
}
.cd-fixed-background.img-4 {
   background-color: #86a53e;
}
.cd-fixed-background.img-4 .cd-content::after {
  background: url("../img/img-mobile-4.jpg") no-repeat;
  background-size: 100% auto;
}
.cd-fixed-background.img-5 .cd-content::after {
  background: url("../img/img-mobile-5.jpg") no-repeat;
  background-size: 100% auto;

}
.cd-fixed-background.img-6 .cd-content::after {
  background: url("../img/img-mobile-6.jpg") no-repeat;
  background-size: 100% auto;
}
.cd-fixed-background.img-6 {
   background-color: #333;
}

.cd-fixed-background.img-7 .cd-content::after {
  background: url("../img/img-mobile-7.jpg") no-repeat;
  background-size: 100% auto;
}
.cd-fixed-background.img-8 .cd-content::after {
  background: url("../img/img-mobile-8.jpg") no-repeat;
  background-size: 100% auto;
}
.cd-fixed-background.img-8 {
   background-color: #333;
}

.cd-fixed-background.img-9 .cd-content::after {
  background: url("../img/img-mobile-9.jpg") no-repeat;
  background-size: 100% auto;
    background-color: #86a53e;
}
.cd-fixed-background.img-9 {
   background-color: #86a53e;
}


.cd-fixed-background.img-10 .cd-content::after {
  background: url("../img/img-mobile-10.jpg") no-repeat;
  background-size: 100% auto;
}
.cd-fixed-background.img-11 .cd-content::after {
  background: url("../img/img-mobile-11.jpg") no-repeat;
  background-size: 100% auto;
    background-color: #86a53e;
}
.cd-fixed-background.img-11 {
   background-color: #86a53e;
}


@media only screen and (min-width: 768px) {
  .cd-fixed-background {
    height: 100%;
    padding: 0;
  }
  .cd-fixed-background h2 {
    font-weight: 300;
  }
  .cd-fixed-background p {
    line-height: 1.618;
  }
  .cd-fixed-background .cd-content {
    width: 50%;
    position: absolute;
    left: 5%;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .cd-fixed-background .cd-content::after {
    display: none !important;
  }

   .cd-fixed-background.img-0 {
    background-image: url("../img/img-0.jpg");
  } 
  .cd-fixed-background.img-1 {
    background-image: url("../img/img-1.jpg");
  }
  .cd-fixed-background.img-2 {
    background-image: url("../img/img-2.jpg");
  }
  .cd-fixed-background.img-3 {
    background-image: url("../img/img-3.jpg");
  }
  .cd-fixed-background.img-4 {
    background-image: url("../img/img-4.jpg");
  }
    .cd-fixed-background.img-5 {
    background-image: url("../img/img-5.jpg");
  }
      .cd-fixed-background.img-6 {
    background-image: url("../img/img-6.jpg");
  }
      .cd-fixed-background.img-7 {
    background-image: url("../img/img-7.jpg");
  }
      .cd-fixed-background.img-8 {
    background-image: url("../img/img-8.jpg");
  }
      .cd-fixed-background.img-9 {
    background-image: url("../img/img-9.jpg");
  }
      .cd-fixed-background.img-10 {
    background-image: url("../img/img-10.jpg");
  }
        .cd-fixed-background.img-11 {
    background-image: url("../img/img-11.jpg");
  }
}
@media only screen and (min-width: 1048px) {
  .cd-fixed-background {
    background-attachment: fixed;
  }
  .cd-fixed-background .cd-content {
    width: 40%;
    left: 10%;
  }
}

.cd-vertical-nav {
  position: fixed;
  z-index: 2;
  right: 3%;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;
}
.cd-vertical-nav a {
  display: block;
  height: 85px;
  width: 75px;
  /* image replace */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
    opacity: 0.7;
  background-size: 100% !important;
  background: transparent url(../img/arrow-down.png) no-repeat center center;
  -webkit-transition: opacity 0.2s 0s, visibility 0.2s 0s;
  -moz-transition: opacity 0.2s 0s, visibility 0.2s 0s;
  transition: opacity 0.2s 0s, visibility 0.2s 0s;
}
.cd-vertical-nav a.cd-prev {
  display: block;
  height: 85px;
  width: 75px;
  /* image replace */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
    opacity: 0.7;
  background-size: 100% !important;
  background: transparent url(../img/arrow-up.png) no-repeat center center;
  -webkit-transition: opacity 0.2s 0s, visibility 0.2s 0s;
  -moz-transition: opacity 0.2s 0s, visibility 0.2s 0s;
  transition: opacity 0.2s 0s, visibility 0.2s 0s;
  margin-bottom: 10px;
}
.cd-vertical-nav a.inactive {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s 0s, visibility 0s 0.2s;
  -moz-transition: opacity 0.2s 0s, visibility 0s 0.2s;
  transition: opacity 0.2s 0s, visibility 0s 0.2s;
}
.cd-vertical-nav a:hover {
  opacity: 1;
    -webkit-transition: opacity 0.9s 0s, visibility 0s 0.2s;
  -moz-transition: opacity s.0 9s, visibility 0s 0.2s;
  transition: opacity 0.9s 0s, visibility 0s 0.2s;
}


.btn {
  background: 100%;
  width: 50%;
  max-width: 250px;
}


@media only screen and (min-width: 1200px) {
  .cd-vertical-nav {
    display: block;
  }
}

.no-js .cd-vertical-nav {
  display: none;
}

