
/***********************************************************************************
  
Setup
  
************************************************************************************/

html,
body {
    width: 100%;
    height: 100%;
}

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

/***********************************************************************************
  
Typography
  
************************************************************************************/

body {
    font-family: 'proxima-nova', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 70%;
    color: #c5a2ac;
}

h1 {    
    font-family: 'proxima-nova', sans-serif;
    font-weight: 500;
   font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

h2 {    
    font-family: 'proxima-nova', sans-serif;
    font-weight: 500;
        font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

h3 {    
    font-family: 'proxima-nova', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase; 
    letter-spacing: 3px;
}

h4 {    
    font-family: 'proxima-nova', sans-serif;
    font-weight: 600;
    color: #9c1c4d;
    font-size: 13px;
    text-transform: uppercase; 
    letter-spacing: 3px;
    line-height: 250%;
}

h5 {    
    font-family: 'proxima-nova', sans-serif;
    font-weight: 500;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase; 
    letter-spacing: 3px;
    line-height: 130%;
}


a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 1px;
}

    
p {
    line-height: 100%;
}

p a,
strong {
    font-weight: 500;
}

p a {
    border-bottom: 1px solid;
}

/***********************************************************************************
  
Icons
  
************************************************************************************/

@font-face { 
    font-family: "ionicons"; 
    src: url("../icons/ionicons.eot?v=1.4.1"); 
    src: url("../icons/ionicons.eot?v=1.4.1#iefix") format("embedded-opentype"), 
         url("../icons/ionicons.ttf?v=1.4.1") format("truetype"), 
         url("../icons/ionicons.woff?v=1.4.1") format("woff"), 
         url("../icons/ionicons.svg?v=1.4.1#Ionicons") format("svg"); 
    font-weight: normal; 
    font-style: normal; 
}

.icon { 
    font-family: "ionicons"; 
    speak: none; 
    font-style: normal; 
    font-weight: normal; 
    font-variant: normal; 
    text-transform: none; 
    text-rendering: auto; 
    line-height: 1; 
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale; 
    
    display: inline-block; 
}

.icon.twitter:before { content: "\f243"; }
.icon.facebook:before { content: "\f231"; }
.icon.instagram:before { content: "\f351"; }
.icon.email:before { content: "\f187"; }
.icon.marker:before { content: "\f1ff"; }
.icon.clock:before { content: "\f172"; }
.icon.phone:before { content: "\f1e6"; }
.icon.submit:before { content: "\f16c"; }
.icon.edit:before { content: "\f2bf"; }

/***********************************************************************************
  
Header
  
************************************************************************************/

#header {
    line-height: 80px;
    
    width: 90%;
    height: 100px;
    
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    
    overflow: hidden;
}

/***********************************************************************************
  
Header Logo
  
************************************************************************************/

#header #logo {
    background: top left no-repeat;
    background-size: auto 40px;
    
    width: 50%;
    height: 60px;
    
    position: absolute;
    top: 20px;
    left: 40px;
}

/***********************************************************************************
  
Main Navigation Header Menu
  
************************************************************************************/

#header ul {
    position: absolute;
    top: 0;
    right: 60px;
}

#header ul li,
#header ul li a {
    float: left;
    position: relative;
}

#header ul li {
    margin-left: 20px;
}

#header ul li a {
    font-family: 'proxima-nova', sans-serif;
    font-weight: 400;
    font-size: 11px;
}

#header ul li.current a::before,
#header ul li a:hover::before {
    border-radius: 100%;
    
    width: 12px;
    height: 12px;
    
    position: absolute;
    top: -5px;
    left: 50%;
    
    margin-left: -6px;
    
    content: '';
}

/***********************************************************************************
  
Sections
  
************************************************************************************/

section {
    width: 100%;
    
    position: relative;
    
    overflow: hidden; 
}

section.full {
    height: 100%;
}

section.full .copy {
    text-align: center;
    
    width: 100%;
    
    position: absolute;
    z-index: 1;   
}

section.full h1 {
    font-size: 100px;
    line-height: 69.5px;
    
    padding: 0 100px;
}

section.full .copy blockquote {
    font-size: 28px;
    line-height: 34px;
    
    padding: 0 100px;
}

section::before,
section.split .media  {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

@media (min-width: 1000px) {

    /* Exclude Tablets & Phones */
    section::before  {
        background-attachment: fixed;
    }
}

section::before,
section::after {
    width: 100%;
    height: 100%;
    
    position: absolute;
    top: 0;
    left: 0;
    
    content: '';
}

section::before {
    z-index: -2;
}

section::after {
    z-index: -1;
}

section h2 {
    font-size: 40px;
    line-height: 34px;
}

section .divider {
    width: 100%;
    height: 40px;
    
    display: block;
    
    position: relative;
    
    margin: 30px 0;
}

section .divider::after {
    border-bottom: 2px dashed;
    
    width: 100%;
    height: 2px;
    
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
    
    margin-top: -1px;
    
    content: '';
}

section.split .media {
    width: 20%;
    height: 100%;
    
    position: absolute;
    top: 0;
    left: 0;
}

section.split .copy {
    width: 80%;
    
    float: left;
    
    margin-left: 20%;
}

section.split .copy .content {
    float: left;
    padding: 80px;
}

section.split .copy .content h2 {
    border-bottom: 1px solid;
    
    width: 100%;
    
    padding-bottom: 20px;
    margin-bottom: 20px;
}

section.split .copy .content h3,
section.split .copy .content blockquote {
    font-size: 20px;
    line-height: 27px;
    font-weight: 400;
    
    margin-bottom: 24px;
}

section.split .copy .content p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
}

/***********************************************************************************
  
Intro Panel
  
************************************************************************************/

#intro .copy .social {
    height: 40px;
    
    margin: 48px 0 35px;
}

#intro .copy .social a {
    border-radius: 50%;
    
    font-size: 22px;
    line-height: 40px;
    
    width: 40px;
    height: 40px;
    
    margin: 0 15px;
}

/***********************************************************************************
  
About Panel
  
************************************************************************************/

#about .copy p:last-of-type {
    border-bottom: 1px solid;
    
    padding-bottom: 36px;
    margin-bottom: 37px;
}

#about .copy img {
    width: 125px;
}

/***********************************************************************************
  
Tickets Panel
  
************************************************************************************/

#tickets .content {
    border-left: 1px solid;
    border-right: 1px solid;
    
    position: relative;
    
    float: left;
    
    margin: 0 100px;
}

#tickets .content::after {
    border-left: 1px solid;
    border-right: 1px solid;
    
    width: 33.333333333%;
    height: 100%;
    
    position: absolute;
    top: 0;
    left: 33.333333333%;
    
    content: "";
}

/***********************************************************************************
  
Tickets Panel Columns
  
************************************************************************************/

#tickets .content .column {
    width: 33.333333333%;
    
    float: left;
    
    padding-top: 100px;
}

/***********************************************************************************
  
Tickets Panel Menus
  
************************************************************************************/

#tickets .content .column .menu {
    float: left;
    
    padding: 0 50px 75px;
}

#tickets .content .column .menu h2 {
    border-bottom: 1px solid;
    
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    
    padding-bottom: 30px;
    margin-bottom: 21px;
}

/***********************************************************************************
  
Tickets Panel Menu Items
  
************************************************************************************/

#tickets .content .column .menu .item {
    border-bottom: 1px dashed;
    
    width: 100%;
    
    float: left;
    
    padding-bottom: 20px;
    margin-bottom: 15px;
}

#tickets .content .column .menu .item:last-of-type {
    border: none;
    
    padding: 0;
    margin-bottom: 23px;
}

#tickets .content .column .menu .item h3 {
    font-size: 14px;
    line-height: 22px;
    
    margin-bottom: 10px;
}

#tickets .content .column .menu .item p {
    font-size: 14px;
    line-height: 18px;
    
    margin-bottom: 16px;
}

#tickets .content .column .menu .item span {
    border-radius: 2px;
    
    font-size: 12px;
    font-weight: 500;
    line-height: 30px;
    
    height: 30px;
    
    display: inline-block;
    
    padding: 0 20px;
}

/***********************************************************************************
  
Locations Panel
  
************************************************************************************/

#locations #map {
    width: 100%;
    height: 100%;
}

#locations .copy .content .location {
    border-bottom: 1px solid;
    
    width: 100%;
    
    float: left;
    
    padding-bottom: 30px;
        padding: 20px;
    margin-bottom: 30px;
}

#locations .copy .content .location p {
    margin-bottom: 20px;
}

#locations .copy .content .location li {
    font-size: 10px;
    line-height: 6px;
    
    width: 100%;
    
    float: left;
    
    margin-bottom: 1px;
}


#locations .copy .content .location li .icon.clock {    
    font-size: 12px;
}


/***********************************************************************************
  
News Panel
  
************************************************************************************/

#news {
    text-align: center;
    
    padding: 100px 0;
}

#news .divider {
    margin: 16px 0 22px;
}

#news h2 {
    margin-bottom: 32px;
}

#news p {
    font-size: 18px;
    line-height: 24px;
    
    padding: 0 100px;
}

#news form {
    width: 240px;
    
    position: relative;
    
    margin: 0px auto;
}

#news form input[type="text"],
#news form input[type="email"] {
    background: none;
    
    border: 2px solid;
    border-radius: 20px;
    
    outline: none;
    
    font-family: 'proxima-nova', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 30px;
    text-align: center;
    
    width: 240px;
    height: 38px;
    
    padding: 0 20px;
    
    -webkit-appearance: none;
}

#news form .button {
    border: none;
    border-radius: 50%;
    
    outline: none;
    
    font-size: 40px;
    line-height: 24px;
    text-align: center;
    
    width: 34px;
    height: 34px;
    
    position: absolute;
    top: 30px;
    left: 50%;
    
    padding: 0;
    margin-left: -17px;
    
    cursor: pointer;
    
    transition-duration: 0.25s;
}

/***********************************************************************************
  
Loading Overlay
  
************************************************************************************/

#overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
}

#overlay img {
    width: 150px;
    
    position: absolute;
    top: 100px;
    left: 50%;
    
    margin-left: -75px;
}

/***********************************************************************************
  
Loading Indicator
  
************************************************************************************/

.loading {
    -webkit-animation: fade-in .1s linear;
    -moz-animation: fade-in .1s linear;
    -o-animation: fade-in .1s linear;
    animation: fade-in .1s linear;
}

@-webkit-keyframes fade-in {
    from	{ opacity: 0; }
    to		{ opacity: 1; }
}

@-moz-keyframes fade-in {
    from	{ opacity: 0; }
    to		{ opacity: 1; }
}

@-o-keyframes fade-in {
    from	{ opacity: 0; }
    to		{ opacity: 1; }
}

@keyframes fade-in {
    from	{ opacity: 0; }
    to		{ opacity: 1; }
}

.loading,
.loading div {
    border-radius: 50%;
}

.loading {
    width: 40px;
    height: 40px;   
     
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 30;
    
    padding: 10px;
    margin: -20px 0 0 -20px;
}

.loading div {
    width: 20px;
    height: 20px;
    
    -webkit-animation: loading .5s ease infinite;
    -moz-animation: loading .5s ease infinite;
    -o-animation: loading .5s ease infinite;
    animation: loading .5s ease infinite;
}

@-webkit-keyframes loading {
    from { opacity: .5;	-webkit-transform: scale( .75 ); }
    50%	 { opacity: 1;	-webkit-transform: scale( 1 ); }
    to	 { opacity: .5;	-webkit-transform: scale( .75 ); }
}

@-moz-keyframes loading {
    from { opacity: .5;	-moz-transform: scale( .75 ); }
    50%	 { opacity: 1;	-moz-transform: scale( 1 ); }
    to	 { opacity: .5;	-moz-transform: scale( .75 ); }
}

@-o-keyframes loading {
    from { opacity: .5;	-o-transform: scale( .75 ); }
    50%	 { opacity: 1;	-o-transform: scale( 1 ); }
    to	 { opacity: .5;	-o-transform: scale( .75 ); }
}

@keyframes loading {
    from { opacity: .5;	transform: scale( .75 ); }
    50%	 { opacity: 1;	transform: scale( 1 ); }
    to	 { opacity: .5;	transform: scale( .75 ); }
}

/***********************************************************************************
  
Camping Panel
  
************************************************************************************/

#camping .content {
    border-left: 1px solid;
    border-right: 1px solid;
    
    position: relative;
    
    float: left;
    
    margin: 0 100px;
}

#camping .content::after {
    border-left: 1px solid;
    border-right: 1px solid;
    
    width: 33.333333333%;
    height: 100%;
    
    position: absolute;
    top: 0;
    left: 33.333333333%;
    
    content: "";
}

/***********************************************************************************
  
camping Panel Columns
  
************************************************************************************/

#camping .content .column {
    width: 33.333333333%;
    
    float: left;
    
    padding-top: 100px;
}

/***********************************************************************************
  
Menus Panel Menus
  
************************************************************************************/

#camping .content .column .menu {
    float: left;
    
    padding: 0 50px 75px;
}

#camping .content .column .menu h2 {
    border-bottom: 1px solid;
    
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    
    padding-bottom: 30px;
    margin-bottom: 21px;
}

/***********************************************************************************
  
Camping Panel Menu Items
  
************************************************************************************/

#camping .content .column .menu .item {
    border-bottom: 1px dashed;
    
    width: 100%;
    
    float: left;
    
    padding-bottom: 20px;
    margin-bottom: 15px;
}

#camping .content .column .menu .item:last-of-type {
    border: none;
    
    padding: 0;
    margin-bottom: 23px;
}

#camping .content .column .menu .item h3 {
    font-size: 14px;
    line-height: 22px;
    
    margin-bottom: 10px;
}

#camping .content .column .menu .item p {
    font-size: 14px;
    line-height: 18px;
    
    margin-bottom: 16px;
}

#camping .content .column .menu .item span {
    border-radius: 3px;
    
    font-size: 11px;
    font-weight: 500;
    line-height: 25px;
    
    height: 25px;
    
    display: inline-block;
    
    padding: 0 8px;
}

/***********************************************************************************
  
Guidelines Panel
  
************************************************************************************/

#guidelines #map {
    width: 100%;
    height: 100%;
}

#guidelines .copy .content .location {
    border-bottom: 1px solid;
    
    width: 100%;
    
    float: left;
    
    padding-bottom: 30px;
        padding: 20px;
    margin-bottom: 30px;
}

#guidelines .copy .content .location p {
    margin-bottom: 20px;
}

#guidelines .copy .content .location li {
    font-size: 10px;
    line-height: 6px;
    
    width: 100%;
    
    float: left;
    
    margin-bottom: 1px;
}


#guidelines .copy .content .location li .icon.clock {    
    font-size: 12px;
}

/***********************************************************************************
  
FAQ Panel
  
************************************************************************************/

#faq .content {
    border-left: 1px solid;
    border-right: 1px solid;
    
    position: relative;
    
    float: left;
    
    margin: 0 100px;
}

#faq .content::after {
    border-left: 1px solid;
    border-right: 1px solid;
    
    width: 33.333333333%;
    height: 100%;
    
    position: absolute;
    top: 0;
    left: 33.333333333%;
    
    content: "";
}

/***********************************************************************************
  
FAQ Panel Columns
  
************************************************************************************/

#faq .content .column {
    width: 33.333333333%;
    
    float: left;
    
    padding-top: 100px;
}

/***********************************************************************************
  
FAQ Panel Menus
  
************************************************************************************/

#faq .content .column .menu {
    float: left;
    
    padding: 0 50px 75px;
}

#faq .content .column .menu h2 {
    border-bottom: 1px solid;
    
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    
    padding-bottom: 30px;
    margin-bottom: 21px;
}

/***********************************************************************************
  
FAQ Panel Menu Items
  
************************************************************************************/

#faq .content .column .menu .item {
    border-bottom: 1px dashed;
    
    width: 100%;
    
    float: left;
    
    padding-bottom: 20px;
    margin-bottom: 15px;
}

#faq .content .column .menu .item:last-of-type {
    border: none;
    
    padding: 0;
    margin-bottom: 23px;
}

#faq .content .column .menu .item h3 {
    font-size: 14px;
    line-height: 22px;
    
    margin-bottom: 10px;
}

#faq .content .column .menu .item p {
    font-size: 14px;
    line-height: 18px;
    
    margin-bottom: 16px;
}

#faq .content .column .menu .item span {
    border-radius: 3px;
    
    font-size: 11px;
    font-weight: 500;
    line-height: 25px;
    
    height: 25px;
    
    display: inline-block;
    
    padding: 0 8px;
}