* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body,
div,
span,
applet,
object,
iframe,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend {
  font-size: 100%;
  letter-spacing: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  color: inherit;
}
html,
body {
	font-family: 'Raleway', sans-serif;
	font-weight: 300;
  	font-size: 16px;
  	overflow-x: hidden;
  	letter-spacing: 0.07em;
  	line-height: 1.6;
  	color: #5c5c5c;
  	background: #161616;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
  margin: 10px 0;
  font-weight: bold;
  color: #212121;
}
h1,
h2,
h3,
h4 {
  letter-spacing: 2px;
}
h1 {
  font-size: 60px;
  font-weight: 300;
}
h2 {
  font-size: 46px;
  font-weight: normal;
}
h3 {
  font-size: 24px;
  font-weight: normal;
}
h4 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #b6b6b6;
}
h5 {
  font-size: 16px;
}
h6 {
  font-size: 12px;
}
h2,
h3 {
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 35px;
  }
  h2 {
    font-size: 25px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 14px;
  }
  h5 {
    font-size: 12px;
  }
  h6 {
    font-size: 10px;
  }
}

p {
  margin: 30px 0;
}

a {
	text-decoration: none;
	color: #8BC53F;
	transition: all 0.5s ease-in-out;
}

a:hover {
	color: #fff;
}

#wrapper {
	position: relative;
	width: 100%;
}

#hero {
	position: relative;
	height: 100vh;
	width: 100%;
	background-image: url('../images/hero.jpg');
	background-size: cover;
	background-position: center center;
}

#hero:before,
#hero:after {
	content: " ";
  	display: table;
}

#hero .cover {
	position: absolute;
	height: 100%;
	width: 100%;
	background-color: #000;
	opacity: 0.7;
}

#hero .layout {
	position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

#hero .layout .content {
	text-align: center;
	color: #fff;
}

#hero .layout .page-title {
	font-weight: 300;
	color: #8BC53F;
	margin: 0;
}

#hero .layout .page-sub-title {
	display: block;
	font-size: 30px;
}

#hero .down-arrow-wrapper {
	font-size: 220%;
	width: 100%;
	margin-top: 40px;
}

#hero .down-arrow-wrapper .down {
}

@-webkit-keyframes bobble {
  from {
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
  }
  50% {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
  }
  to {
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
  }
}
@-moz-keyframes bobble {
  from {
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
  }
  50% {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
  }
  to {
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
  }
}
@keyframes bobble {
  from {
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
  }
  50% {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
  }
  to {
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
  }
}

#hero .down-arrow-wrapper .down::before {	
	-webkit-transform: translateY(5px);
  	-moz-transform: translateY(5px);
  	-moz-animation-name: bobble;
  	-moz-animation-duration: 1s;
  	-moz-animation-iteration-count: infinite;
  	-webkit-animation-name: bobble;
  	-webkit-animation-duration: 1s;
  	-webkit-animation-iteration-count: infinite;
}

.section {
	position: relative;
	width: 100%;
	padding: 140px 0;
}

.section-1 {
	background-color: #231F20;
}

.section-2 {
	background-color: #fff;
}

.section-3 {
	background-color: #8BC53F;
	overflow: hidden;
}

.section-3 .video-wrapper {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
}

.credit {
  margin-left: 40px;
}

.section-3 .video-wrapper video {
  position: absolute;
	top: 0;
	left: 0;
  min-width: 100%;
  min-height: 100%;
}

.section-3 .video-wrapper .cover {
	position: absolute;
	height: 100%;
	width: 100%;
	background-color: #8BC53F;
	opacity: 0.8;
}

.section-3 .content {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 60px;
}

.section-3 .content a {
  color: #fff;
}

.section-3 .content h2 {
  margin-bottom: 60px;
}

.light h2,
.light p {
	color: #fff;
}

.text-center {
	text-align: center;
}

.col-2 {
	-webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;
    -webkit-column-gap: 40px; /* Chrome, Safari, Opera */
    -moz-column-gap: 40px; /* Firefox */
    column-gap: 40px;
    margin-top: 40px;
}

@media (max-width: 600px) {
  .col-2 {
    -webkit-column-count: 1; /* Chrome, Safari, Opera */
      -moz-column-count: 1; /* Firefox */
      column-count: 1;
      -webkit-column-gap: 0; /* Chrome, Safari, Opera */
      -moz-column-gap: 0; /* Firefox */
      column-gap: 0;
      margin-top: 0;
  }
}

.col-2 p:first-of-type {
	margin-top: 0;
}

#footer {
  text-align: center;
  padding: 10px 40px;
  color: #ccc;
  font-size: 80%;
}

/* FONTS */
@font-face {
	font-family: 'icomoon';
	src:url('../fonts/icomoon.eot?-krb11u');
	src:url('../fonts/icomoon.eot?#iefix-krb11u') format('embedded-opentype'),
		url('../fonts/icomoon.ttf?-krb11u') format('truetype'),
		url('../fonts/icomoon.woff?-krb11u') format('woff'),
		url('../fonts/icomoon.svg?-krb11u#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
	font-family: 'icomoon';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-down-arrow:before {
	content: "\e600";
}
.icon-facebook:before {
	content: "\e601";
}
.icon-twitter:before {
	content: "\e602";
}
.icon-youtube3:before {
	content: "\e603";
}

.page-404 {
  background-color: #8BC53F;
  height: 100vh;
  padding: 30vh 80px 0;
  text-align: center;
}

.page-404 h1 {
  color: #fff;
  font-size: 10vw;
  margin-bottom: 60px;
}

.page-404 p {
  color: #fff;
  font-size: 2vw;
}

@media screen and (max-width: 1000px) {
  .page-404 h1 {
    color: #fff;
    font-size: 20vw;
    margin-bottom: 60px;
  }

  .page-404 p {
    color: #fff;
    font-size: 4vw;
  }
}

