/* -------------------------------- 

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: 14;
  font-family: "Arial", sans-serif;
  color: #3d3536;
  background-color: black;
}

body, html {
  /* important */
  height: 100%;
}

a {
  color: #0054ff;
  text-decoration: none;
}

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.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: 1000px;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.cd-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: rgba(25, 25, 25, 0.75);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.cd-header:after {
  content: "";
  display: table;
  clear: both;
}
.cd-header #cd-logo {
  float: left;
  margin: 13px 0 0 5%;
}
.cd-header #cd-logo img {
  display: block;
}
@media only screen and (min-width: 768px) {
  .cd-header {
    height: 70px;
  }
  .cd-header #cd-logo {
    margin: 23px 0 0 5%;
  }
}

.cd-main-nav {
  float: right;
  margin-right: 5%;
  width: 44px;
  height: 100%;
  background: url("../parallax/img/cd-icon-menu.svg") no-repeat center center;
  background-size: 44px 44px;
  cursor: pointer;
}
.cd-main-nav ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.cd-main-nav ul.is-visible {
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.cd-main-nav a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 2%;
  background: #2f292a;
  border-top: 1px solid #453c3d;
  color: #8e7d7f;
}
@media only screen and (min-width: 768px) {
  .cd-main-nav {
    width: auto;
    height: auto;
    background: none;
    cursor: auto;
  }
  .cd-main-nav ul {
    position: static;
    width: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    line-height: 70px;
  }
  .cd-main-nav ul.is-visible {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .cd-main-nav li {
    display: inline-block;
    margin-left: 1em;
  }
  .cd-main-nav a {
    display: inline-block;
    height: auto;
    line-height: normal;
    background: transparent;
    padding: .6em 1em;
    border-top: none;
    color: #ffffff;
    text-transform: uppercase; 
    font-size: 14px;
  
  }
  .no-touch .cd-main-nav a:hover {
    color: #99a478;
  }
}

.cd-main-content {
  /* you need to assign a min-height to the main content so that the children can inherit it*/
  height: 100%;
  position: relative;
  z-index: 1;
}

.cd-fixed-bg {
  position: relative;
  min-height:70%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}
.cd-fixed-bg h1, .cd-fixed-bg h2 {
  position: absolute;
  left: 50%;
  top: 60%;
  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: 100%;
  max-width: 1170px;
  text-align: center;
  font-size: 26px;
  
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  color: white;
}
.cd-fixed-bg.cd-bg-1 {
  background-image: url("../parallax/img/bg1.jpg");
}
.cd-fixed-bg.cd-bg-2 {
  background-image: url("../parallax/img/bg2.jpg");
}
.cd-fixed-bg.cd-bg-3 {
  background-image: url("../parallax/img/bg3.jpg");
}
.cd-fixed-bg.cd-bg-4 {
  background-image: url("../parallax/img/bg4.jpg");
}
.cd-fixed-bg.cd-bg-5 {
  background-image: url("../parallax/img/bg5.jpg");
}
.cd-fixed-bg.cd-bg-6 {
  background-image: url("../parallax/img/bg6.jpg");
}
.cd-fixed-bg.cd-bg-7 {
  background-image: url("../parallax/img/bg7.jpg");
}
.cd-fixed-bg.cd-bg-8 {
  background-image: url("../parallax/img/bg8.jpg");
}
.cd-fixed-bg.cd-bg-9 {
  background-image: url("../parallax/img/bg9.jpg");
}
.cd-fixed-bg.cd-bg-10 {
  background-image: url("../parallax/img/bg10.jpg");
}
.cd-fixed-bg.cd-bg-11 {
  background-image: url("../parallax/img/bg11.jpg");
}
.cd-fixed-bg.cd-bg-12 {
  background-image: url("../parallax/img/bg12.jpg");
}
.cd-fixed-bg.cd-bg-13 {
  background-image: url("../parallax/img/bg13.jpg");
}
.cd-fixed-bg.cd-bg-14 {
  background-image: url("../parallax/img/bg14.jpg");
}
.cd-fixed-bg.cd-bg-15 {
  background-image: url("../parallax/img/bg15.jpg");
}
.cd-fixed-bg.cd-bg-16 {
  background-image: url("../parallax/img/bg16.jpg");
}
.cd-fixed-bg.cd-bg-17 {
  background-image: url("../parallax/img/bg17.jpg");
}
.cd-fixed-bg.cd-bg-18 {
  background-image: url("../parallax/img/bg18.jpg");
}
.cd-fixed-bg.cd-bg-19 {
  background-image: url("../parallax/img/bg19.jpg");
}
.cd-fixed-bg.cd-bg-20 {
  background-image: url("../parallax/img/bg20.jpg");
}
.cd-fixed-bg.cd-bg-21 {
  background-image: url("../parallax/img/bg21.jpg");
}
.cd-fixed-bg.cd-bg-22 {
  background-image: url("../parallax/img/bg22.jpg");
}
.cd-fixed-bg.cd-bg-23 {
  background-image: url("../parallax/img/bg23.png");
}
.cd-fixed-bg.cd-bg-24 {
  background-image: url("../parallax/img/bg24.png");
}
.cd-fixed-bg.cd-bg-25 {
  background-image: url("../parallax/img/bg25.jpg");
}
.cd-fixed-bg.cd-bg-26 {
  background-image: url("../parallax/img/bg26.jpg");
}
.cd-fixed-bg.cd-bg-27 {
  background-image: url("../parallax/img/bg27.png");
}
.cd-fixed-bg.cd-bg-28 {
  background-image: url("../parallax/img/FrameCatcherWebBackground.png");
}
@media only screen and (min-width: 768px) {
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 34px;
  }
@media only screen and (min-width: 768px) {
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 34px;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-fixed-bg {
    background-attachment: fixed;
  }
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 34px;

  }
}

.cd-scrolling-bg {
  position: relative;
  min-height: 100%;
  padding: 2em 0;
  line-height: 1;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.cd-scrolling-bg.cd-color-1 {
  background-color: #404050;
  color: #dddddd;
}
.cd-scrolling-bg.cd-color-2 {
  background-color: #99a478;
  color: #3d3536;
}
.cd-scrolling-bg.cd-color-3 {
  background-color: #b4d7a8;
  color: #3d3536;
}
.cd-scrolling-bg.cd-color-4 {
  background-color: #A4A4A3;
  color: #3d3536;
}
.cd-scrolling-bg.cd-color-5 {
  background-color: #b4d7a8;
  color: #3d3536;
}
.cd-scrolling-bg.cd-color-6 {
  background-color: #80A0A4;
  color: #3d3536;
}
.cd-scrolling-bg.cd-color-7 {
  background-color: #6884A3;
  color: #3d3536;
}
.cd-scrolling-bg.cd-color-8 {
  background-color: #FFD7B1;
  color: #3d3536;
}
.cd-scrolling-bg.cd-color-9 {
  background-color: #8389A3;
  color: #ffffff;
}
.cd-scrolling-bg.cd-color-10 {
  background-color: #101020;
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
  .cd-scrolling-bg {
    padding: 2em 0;
    font-size: 14px;

    line-height: 2;

  }
}
