* {
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    font-family: "Myriad Pro Regular", "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
}

html, body {
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* hide horizontal scrollbars, since we use the vertical ones to scroll to the right */
body {
    overflow-x: hidden;
    background-color: black;
    height: 100%;
}

body {
    background-image: url("images/pikespeak-bg.jpg");
    background-repeat: repeat-x;
    background-attachment: fixed;
    background-position: 0 0;
    background-size: auto 100%;
}

@keyframes scrollBg {
    from { background-position: 0 0; }
    to { background-position: -2000px 0; }
}

body {
    animation: scrollBackground 30s linear infinite;
}

.parallax {
    background-image: url("images/pikespeak-bg.jpg");
    min-height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#menu {
    background-image: url(../images/images/headerBackground_01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 170px;
    position: fixed;
    top: 0;
    z-index: 1000;
    border-bottom: 5px solid black;
    border-top: opx;
    margin: 0 auto;
}

/* Desktop / larger than tablet */
nav {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 5000;
    top:100PX;
}

nav ul {
    font-family: 'Philosopher', sans-serif;
    font-weight: bold;
    height: 50px;
    width: 960px;
}

nav li {
    float: left;
    list-style: none;
    width: 16.5%;
}

nav li a {
    color: #3280b0;
    font-family: 'Martel Sans', sans-serif;
    font-size: 1em;
    text-decoration: none;
    padding: 2px;
    letter-spacing: 1px;
    text-shadow: 1px 1px .5px black;
}

nav li a:hover {
    color: black;
}
#dis-None{
  display:none;
}

#drawer {
    position: fixed;
    top: 0;
    left: 0px; /* hidden off-screen */
    width: 250px;
    height: 100%;
    background: rgba(255,255,255,0);
    transition: left 0.3s ease;
}


#drawer-toggle-label {
    display: NONE; 
    position: fixed;
    top: 15px;
    left: 15px;
    font-size: 30px;
    cursor: pointer;
     z-index: 9999;
}
#drawer ul {
    list-style: none;
    padding: 0;
  	margin: 40%;
}

/* Drawer LI default layout (horizontal if desired) */
#drawer li {
    margin: 10px 0;
 
}

/* Links styling */
#drawer li a {
    text-decoration: none;
    color: #3280b0;
    font-weight: bold;
    display: block;
    padding: 10px;
}


@media screen and (max-width: 768px) {
  nav ul { display: none; } /* hide desktop nav */
    #drawer-toggle-label { display: block; } /* show hamburger */
  #drawer {
    left: -250px; /* hidden off-screen */
 }
  #drawer-toggle:checked ~ #drawer {
    left: 0; /* slide drawer in when checked */
   background: rgba(255,255,255,0.95);
}

  #drawer-toggle:checked ~ #drawer ul li {
    display: block; /* stack vertically */
    text-align: center; /* center links */
   	width:100%;
    padding:0px;
    margin:0px;
}
 #drawer-toggle:checked ~ nav ul {
 	display: block;
   	width:100%;
   margin:0;
}
#dis-None{
  display:block;
} 
  
}/*End Media Querri*/


.logo {
    width: 200px;
    height: 96px;
    margin: 0 auto;
    background-image: url(../images/pikesPeakLogo.png);
    background-repeat: no-repeat;
    background-size: contain;
    padding-bottom: 20px;
    position: fixed;
    left: 50%;
}

h1 {
    font-size: 20px;
    font-weight: normal;
    color: #2e6e80;
}

/* keep position fixed */
.scroll {
    position: fixed;
    top: 0;
    left: 0;
}

/* layer ordering */
.horizon {
    height: 100%;
    margin: auto;
    z-index: -1000;
    width: 3300px;
    background-image: url(../images/pikes%20peak.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.horizon2 {
    background-image: url(../gearBackground.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    position: fixed;
}

.horizon3 {
    background-image: url(../safetyBackground.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    position: fixed;
}

.horizon4 {
    background-image: url(../nightBackground.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    position: fixed;
}

.middle {
    height: 100%;
    z-index: -100;
    width: 4000px;
    margin-top: 70px;
}

.front {
    z-index: -50;
    width: 6500px;
}

.post {
    position: relative;
    z-index: 100;
    width: 40%;
    background-color: rgba(200,194,186,.96);
    padding: 20px;
    display: inline-block;
    margin-bottom: 30%;
    margin-top: 200px;
    margin-left: 50%;
}

.post p {
    line-height: 1.5em;
    padding: 10px 0;
}

.post h2 {
    font-size: 60px;
    color: #3280b0;
    text-shadow: 1px 1px 2px black;
    padding: 0;
    margin: 0;
}

.post ul {
    text-decoration: none;
}

.post li {
    list-style: none;
    line-height: 1.5em;
}

.post img {
    width: 100%;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 15%;
    z-index: 10000; /* Must be higher than parallax layers */
    background-image: url(../images/images/headerBackground_01.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    border-top: 5px solid black;
}


footer ul {
    position: relative;
    float: left;
    text-decoration: none;
    background: rgba(255,234,92,.3);
    margin-left: 20px;
    padding: 10px 20px 0 20px;
    animation: mymove 5s;
}

footer ul li {
    list-style: none;
}

footer ul li a {
    color: #3280b0;
    font-family: 'Martel Sans', sans-serif;
    font-size: .8em;
    text-decoration: none;
    padding: 2px;
    letter-spacing: 1px;
}

footer li a:hover {
    color: black;
}

#stayPut {
    margin: 0;
    margin-top: 150px;
    margin-bottom: 170px;
    margin-left: 40px;
    padding: 15px;
    background-color: rgba(200,194,186,.6);
    padding-bottom: 50px;
}

#stayPut li {
    padding-left: 70px;
    fo
