html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Type ------------------------------------------------------ */

.inria-sans-light {
    font-family: "Inria Sans", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.inria-sans-regular {
    font-family: "Inria Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.inria-sans-bold {
    font-family: "Inria Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.inria-sans-light-italic {
    font-family: "Inria Sans", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.inria-sans-regular-italic {
    font-family: "Inria Sans", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.inria-sans-bold-italic {
    font-family: "Inria Sans", sans-serif;
    font-weight: 700;
    font-style: italic;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Inria Sans', Helvetica, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 135%;
    text-align: center;
}

.lg {
    font-size: 2.25rem;
    line-height: 115%;
    margin-bottom: 2rem;
}

.md {
    font-size: 2rem;
    line-height: 135%;
    margin-bottom: 2rem;
}

.sm{
    font-size: 1.75rem;
    line-height: 145%;
    margin-bottom: 1rem;
}

p {
    font-size: 1.125rem;
    line-height: 155%;
    margin-bottom: 12rem;
}

.social > p, .quotes > p {
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

a.button {
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .1rem;
    background-color: rgba(255, 255, 255, .85);
    width: 55px;
    height: 55px;
    line-height: 55px;
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    transition: all 0.5s ease-in-out;
    position: relative;
}

a.button img {
    width: 24px;
    height: 24px;
}

a.button:hover {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 
        0 0 10px 4px rgba(255, 255, 255, 0.1),
        0 0 20px 7px rgba(255, 255, 255, 0.2),
        7px -7px 15px rgba(190, 149, 255, 0.3),  /* Purple tint */
        -4px 0px 15px rgba(162, 255, 202, 0.3);   /* Green tint */
    transform: scale(1.01);
}

a.secondary-button {
    
    text-transform: uppercase;
    color: #fff;
    letter-spacing: .1rem;
    border-bottom: 2px solid #fff;
    padding: 0px;
    margin: 16px 24px;
    cursor: pointer;
}

a.secondary-button:hover {
    border-bottom: 2px solid transparent;
}


/* Positioning ------------------------------------------------------ */

#container {
    position: relative;
}

.screen {
    position: absolute;
    top:0;
    left:0;
    height: 100vh;
    width: 100vw;
    z-index: 3;
    background-color: rgba(0, 0, 0, 1);
}

.noise {
    position: absolute;
    height: 300%;
	width: 300%;
	background-image: url("img/noise.png");
    -webkit-animation: static 10s steps(10) infinite;
	animation: static 10s steps(10) infinite;
    pointer-events: none;
    left: -50%;
	top: -110%;
    will-change: transform;
    opacity: 0.15;
}

@-webkit-keyframes static {
	0%, 100% { -webkit-transform:translate3d(0, 0, 0); }
	10% { -webkit-transform:translate3d(-5%, -10%, 0); }
	20% { -webkit-transform:translate3d(-15%, 5%, 0); }
	30% { -webkit-transform:translate3d(7%, -25%, 0); }
	40% { -webkit-transform:translate3d(-5%, 25%, 0); }
	50% { -webkit-transform:translate3d(-15%, 10%, 0); }
	60% { -webkit-transform:translate3d(15%, 0%, 0); }
	70% { -webkit-transform:translate3d(0%, 15%, 0); }
	80% { -webkit-transform:translate3d(3%, 35%, 0); }
	90% { -webkit-transform:translate3d(-10%, 10%, 0); }
}

@keyframes static {
	0%, 100% { transform:translate3d(0, 0, 0); }
	10% { transform:translate3d(-5%, -10%, 0); }
	20% { transform:translate3d(-15%, 5%, 0); }
	30% { transform:translate3d(7%, -25%, 0); }
	40% { transform:translate3d(-5%, 25%, 0); }
	50% { transform:translate3d(-15%, 10%, 0); }
	60% { transform:translate3d(15%, 0%, 0); }
	70% { transform:translate3d(0%, 15%, 0); }
	80% { transform:translate3d(3%, 35%, 0); }
	90% { transform:translate3d(-10%, 10%, 0); }
}
  
.scroll {
    font-size: .85rem;
    padding: 80px 0px;
    position: absolute;
    z-index: 8;
    bottom: 0px;
    color: white;
    text-decoration: none;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    margin-bottom: 0px;
}

#background-image {
    position: sticky;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background: url(img/this-hunt.jpg) no-repeat center center; background-size: cover;
    z-index: 1;
    overflow: hidden;
}

#content {
    position: relative;
    z-index: 6;
    margin: -100vh 0 0 0;
    padding-bottom: 75vh;
}

.hero-screen {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
}

.hero-screen p {
    margin-bottom: 0px;
}

.btn-holder{
    display: flex;
    align-items: center;
    justify-content: center;
}


#content section, .quotes {
    padding: 0 40px;
}

footer {
    max-width: 800px;
}

.sticky {
    position: sticky;
    bottom:0;
    padding: 180px 40px 0px 40px;
}

.trap {
    text-align: right;
    margin-bottom: 80px;
    padding-right: 60px;
}

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

@media only screen and (min-width: 750px) {
    .lg {
        font-size: 3rem;
        line-height: 115%;
        margin-bottom: 2rem;
    }
    
    .md {
        font-size: 1.5rem;
        line-height: 135%;
        margin-bottom: 1.5rem;
    }
    
    .sm{
        font-size: 1.25rem;
        line-height: 145%;
        margin-bottom: 1rem;
    }

    p {
        font-size: 1.5rem;
        line-height: 155%;
        margin-bottom: 12rem;
    }

  }

/* ------------------------------------------------------ */
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 7000;
    display: none;
    align-items: center;
    justify-content: center;
  }

  .modal-content {
    width: 70%;
    max-width: 650px;
  }

  .modal-close {
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer;
  }

  .mc-button {
    border-radius:0px; 
    background-color: transparent;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: .1rem;
    border: transparent;
    border-bottom: 2px solid #fff;
    padding: 0px;
    margin: 16px 24px;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 155%;
    font-family: 'Inria Sans', Helvetica, sans-serif;
  }
  .mc-button:hover {
    border: transparent;
    border-bottom: 2px solid transparent;
  }

  #mce-EMAIL, #mce-MESSAGE {
    background: transparent;
    padding: 16px 0;
    text-indent: 16px;
    color:#fff; 
    margin: 10px 0 0 0;
    border: 1px solid #fff;
    width: 100%;
  }

  #mce-MESSAGE {
    padding: 16px 0px 32px 0px;
  }

  .mce_inline_error, #mce-success-response {
    text-align: left;
    padding: 8px 0px;
  }

  a.button img {
    vertical-align: middle;
    display: block;
}

a.button img.play-offset {
    transform: translateX(1px);
}