/* 
===============================
 Onepage CSS Document 
=============================== */

/* Logo
 * --------------------------------------- */
.site-title { 
    position: fixed;
	top: 30px;
    left: 60px;
    width: 60px;
    height: 60px;
	text-align: center;
	line-height: 60px;
    transform: scale(1, 1);
    z-index: 103;
    border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-transition: all 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
    -webkit-transition: all 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: all 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.site-title:hover {
	transform: scale(1.1, 1.1);
}
.site-title img {
	transform: scale(1, 1);
	-ms-transition: all 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
    -webkit-transition: all 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: all 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.site-title:hover img {
	transform: scale(0.8, 0.8);
}

/* Hamburger Icon */
#menu-toggle {
  position: absolute;
  right: 0px;
  z-index: 500;
  margin: 20px 20px 0 auto;
  cursor: pointer;
}

.c-hamburger {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 36px;
  height: 36px;
  font-size: 0;
  text-indent: -9999px;
  cursor: pointer;
  -webkit-transition: background 0.3s;
          transition: background 0.3s;
}
.c-hamburger:focus {
  outline: none;
}
.c-hamburger span {
  display: block;
  position: absolute;
  top: 18px;
  left: 0px;
  right: 0px;
  height: 3px;
  background: #fff;
}
.c-hamburger span::before,
.c-hamburger span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  content: "";
}
.c-hamburger span::before {
  top: -10px;
}
.c-hamburger span::after {
  bottom: -10px;
}
.c-hamburger span {
  -webkit-transition: background 0s 0.3s;
          transition: background 0s 0.3s;
}
.c-hamburger span::before,
.c-hamburger span::after {
  -webkit-transition-duration: 0.3s, 0.3s;
          transition-duration: 0.3s, 0.3s;
  -webkit-transition-delay: 0.3s, 0s;
          transition-delay: 0.3s, 0s;
}
.c-hamburger span::before {
  -webkit-transition-property: top, -webkit-transform;
          transition-property: top, transform;
}
.c-hamburger span::after {
  -webkit-transition-property: bottom, -webkit-transform;
          transition-property: bottom, transform;
}
/* active state, i.e. menu open */
/*.c-hamburger.open {
  background-color: #cb0032;
}*/

.c-hamburger.open span {
  background: none;
}
.c-hamburger.open span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-hamburger.open span::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-hamburger.open span::before,
.c-hamburger.open span::after {
  -webkit-transition-delay: 0s, 0.3s;
          transition-delay: 0s, 0.3s;
}

/* Menu
* --------------------------------------- */
/* sidenav */
.sidenav {
 	width: 300px;
 	margin: 0 auto;
 	background: #1c1c1c;
    position: fixed;
    top:0;
    right:0;
    transform: translate3d(100%, 0, 0);
	-webkit-transform: translate3d(100%, 0, 0);
    z-index:120;
    height: 100vh;
    overflow-y: auto;
    -moz-transition: all .6s cubic-bezier(.55, 0, .45, 1);
	-webkit-transition: all .6s cubic-bezier(.55, 0, .45, 1);
    transition: all .6s cubic-bezier(.55, 0, .45, 1);
}
.sidenav-active{
    right:0;  
    transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
}
.sidenav .link {
	cursor: pointer;
	display: block;
	padding: 15px 15px 15px 40px;
	color: #909090;
	font-size: 18px;
	line-height: 1;
	font-weight: 800;
	position: relative;
    text-transform: uppercase;
    z-index: 10;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
    -moz-transition: all .4s ease;
	transition: all .4s ease;
}
.sidenav .link:hover {
    color: #f1f1f2;
}
.sidenav .link a {
    color: #909090;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.sidenav .link a:hover {
    color: #f1f1f2;
}
.sidenav li:last-child .link {
    border-bottom: 0;
}

.sidenav li.open .link {
	color: #fff;
    padding:15px 15px 15px 20px;
}
.sidenav li.open .submenu .link {
	padding-left: 40px;
}
.sidenav li.default .submenu {
	display: block;
}

/*
 * Submenu
 -----------------------------*/
.submenu {
    display: none;
	padding-top: 15px;
	padding-bottom: 15px;
    background: #141313;
    position: relative;
    z-index: 10;
}
.submenu .sub-menu-link {
	font-size: 14px;
    font-weight: 300;
	line-height: 1;
}
.submenu li {
    position: relative;
    z-index: 5;
}
.submenu li a:before {
    content: "";
    background: #fff;
    height: 0%;
    width: 3px;
    position: absolute;
    left: 0;
    top: 0;
    -moz-transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
}
.submenu a {
    display: block;
    text-decoration: none;
    color: #cbcbcb;
    padding: 15px;
    padding-left: 40px;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.submenu li.active a {
    color: #fecc00;
    -moz-transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
}
.submenu li.active a:before {
    content: "";
    background: #fecc00;
    height: 100%;
    width: 3px;
    position: absolute;
    left: 0;
    top: 0;
    -moz-transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
}
.submenu li.active a:hover {
    color: #fecc00;
}
.submenu a:hover {
    color: #fff;
}
.submenu a:hover:before {
    color: #fff;
    height: 75%;
}

/* Section Images  */
.section:after {
    content:"";
    background:#1c1c1c;
    height:100%;
    width:100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 102;
    -moz-transition: all .8s cubic-bezier(0.785, 0.135, 0.150, 0.860);
	-webkit-transition: all .8s cubic-bezier(.71, .01, .32, 1.01);
    transition: all .8s cubic-bezier(.71, .01, .32, 1.01);
    transform: translate3d(0%, 0, 0);
    -webkit-transform: translate3d(0%, 0, 0);
    -moz-transform: translate3d(0%, 0, 0);
}
.section.active:after {
    transform: translate3d(-100%, 0, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
    -moz-transform: translate3d(-100%, 0, 0);
}

.section {
    background-size:cover;
    -moz-transition: all .8s cubic-bezier(0.785, 0.135, 0.150, 0.860);
	-webkit-transition: all .8s cubic-bezier(0.785, 0.135, 0.150, 0.860);
    transition: all .8s cubic-bezier(0.785, 0.135, 0.150, 0.860);
}
.section.active {}

.section-blackout {
    display: block;
    background-color: rgba(0, 0, 0, .5); 
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 2;
    -moz-transition: all .6s cubic-bezier(0.785, 0.135, 0.150, 0.860);
	-webkit-transition: all .6s cubic-bezier(0.785, 0.135, 0.150, 0.860);
    transition: all .6s cubic-bezier(0.785, 0.135, 0.150, 0.860);
}
.section-blackout-active {
    background-color: rgba(0, 0, 0, 0);
    -moz-transition: all .6s cubic-bezier(0.785, 0.135, 0.150, 0.860);
	-webkit-transition: all .6s cubic-bezier(0.785, 0.135, 0.150, 0.860);
    transition: all .6s cubic-bezier(0.785, 0.135, 0.150, 0.860);
}

.section-img:before {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	top: 0;
	left: 0;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.35);
	/*background: linear-gradient(270deg,rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35));
	background: -webkit-linear-gradient(270deg,rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35));*/
}
.section-img { 
	width:100%;
	height:100%;
	position: relative;
	background-color: #101010;
	/*background-image: url(../images/space-desk-workspace-coworking.jpg);*/
	background-position: center;
	background-repeat: no-repeat;
	background-size:cover;
	-webkit-background-size:cover;
}

/* Video */
.video {
  position: fixed;
  right: 0; 
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
  width: auto; 
  height: auto;
  z-index: 1;
  display: block;
  -webkit-backface-visibility:hidden;
}

/* Preloader */
.overlay {
    display: block;
    background-color: #fff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 998;
    margin: 0 auto;
    overflow: hidden;
}
.overlay-active {
    width:0;
    left:100%;
    -ms-transition: all 0.7s cubic-bezier(.71, 0, .39, 1.01);
    -webkit-transition: all 0.7s cubic-bezier(.71, 0, .39, 1.01);
    transition: all 0.7s cubic-bezier(.71, 0, .39, 1.01);
}
.overlay-black {
    display: block;
    background-color: black;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 2;
    margin: 0 auto;
}
.active-preload {
    -moz-transition: all 1.5s cubic-bezier(0.785, 0.135, 0.150, 0.860);
	-webkit-transition: all 1.5s cubic-bezier(0.785, 0.135, 0.150, 0.860);
    transition: all 1.5s cubic-bezier(0.785, 0.135, 0.150, 0.860);
}
.overlay-active #preloader {
	background-image: none;
}

/* Page Preloader */
#preloader {
  position: fixed;
  overflow: hidden;
  background-image: url(../images/logo.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-background-size: contain;
  
  height: 36px;
  width: 184px;
  margin: -18px -92px -18px -92px;
  top: 50%;
  left:50%;
  z-index: 999;
  -moz-transition: all 1s cubic-bezier(0.785, 0.135, 0.150, 0.860);
  -webkit-transition: all 1s cubic-bezier(0.785, 0.135, 0.150, 0.860);
  transition: all 1s cubic-bezier(0.785, 0.135, 0.150, 0.860);
  overflow: hidden;
}

#preloader:after {
  content: "";
  background: rgba(255, 255, 255, 1);
  position: absolute;
  width: 100%;
  height: 100%;
  -moz-animation: load 1s;
  -webkit-animation: load 1s;
  animation: load 1s;
  transform: translate3d(100%, 0, 0);
}

@keyframes load {
  from {
    transform: translate3d(0, 0, 0);
  }
}

/* Headline-animation */
.section h1, .section h2 {
    position: absolute;
    left: 55px;
	right: 55px;
    color: #fff;
	/*font-size: 50px;
    height: 90px;*/
    z-index: 101;
    /*width: 100%;
	max-width: 450px;
    overflow: hidden;*/
    line-height: 3;
    letter-spacing: -3px;
    -moz-transition: line-height .6s cubic-bezier(.69, 0, .31, 1);
    -webkit-transition: line-height .6s cubic-bezier(.69, 0, .31, 1);
    transition: line-height .6s cubic-bezier(.69, 0, .31, 1);
}
.section h1 {
    top: 32%;
    -webkit-transition-delay: .5s;
          transition-delay: .5s;
}
.section h2 {
    top: 44%;
    -webkit-transition-delay: .6s;
          transition-delay: .6s;
}
.section.active h1,
.section.active h2 {
    line-height: 1;
}

/* Headline-animation
* --------------------------------------- */
.learn-more-cta-text {
	font-weight: 400;
	text-transform: uppercase;
	font-size: 16px;
	position: relative;
	top: 1px;
	left: 0;
	color: #fff;
	text-align: right;
	margin-left: 0px;
	letter-spacing: .75px;
	display: inline-block;
	-moz-transition: all 0.7s cubic-bezier(0.7, 0.01, 0.3, 1);
	-webkit-transition: all 0.7s cubic-bezier(0.7, 0.01, 0.3, 1);
	transition: all 0.7s cubic-bezier(0.7, 0.01, 0.3, 1);
	transform: matrix(1, 0, 0, 1, -115, 0);
	-webkit-transform: matrix(1, 0, 0, 1, -115, 0);
	-moz-transform: matrix(1, 0, 0, 1, -115, 0);   
}

.learn-more-cta {
	position: relative;
	overflow: hidden;
	top: 6px;
	width: 120px;
	left: 6px;
	color: #fff;
	transform: matrix(1, 0, 0, 1, 0, 0);
	-webkit-transform: matrix(1, 0, 0, 1, 0, 0);
	-moz-transform: matrix(1, 0, 0, 1, 0, 0);
	-moz-transition: all 0.5s cubic-bezier(0.7, 0.01, 0.3, 1);
	-webkit-transition: all 0.5s cubic-bezier(0.7, 0.01, 0.3, 1);
	transition: all 0.5s cubic-bezier(0.7, 0.01, 0.3, 1);
}  

.learn-more-cta-hover {
	position: relative;
	overflow: hidden;
	width: 120px;
	left: 77px;
	color: #fff;
	-moz-transition: all 0.5s cubic-bezier(0.7, 0.01, 0.3, 1);
	-webkit-transition: all 0.5s cubic-bezier(0.7, 0.01, 0.3, 1);
	transition: all 0.5s cubic-bezier(0.7, 0.01, 0.3, 1);
}  
        
.active-cta {
	-moz-transition: all 0.7s cubic-bezier(0.7, 0.01, 0.3, 1);
	-webkit-transition: all 0.7s cubic-bezier(0.7, 0.01, 0.3, 1);
	transition: all 0.7s cubic-bezier(0.7, 0.01, 0.3, 1);
	transform: matrix(1, 0, 0, 1, 0, 0);
	-webkit-transform: matrix(1, 0, 0, 1, 0, 0);
	-moz-transform: matrix(1, 0, 0, 1, 0, 0);
}

.section-excerpt:after {
    width: 292px;
    height: 1px;
    font-size: 16px;
    top: -3px;
    opacity: 0;
    content: '';
    display: block;
    position: relative;
	background-color: #ffffff;
    transform: matrix(1, 0, 0, 1, 0, 0);
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
    -moz-transform: matrix(1, 0, 0, 1, 0, 0);
}
.section-excerpt {
	position: absolute;
	z-index: 105;
	left: 60px;
	top: 67%;
	width: 100%;
	max-width: 425px;
	font-size: 16px;
	line-height: 1.45;
	font-weight: 200;
	color: #FFF;
	opacity: 0;
	word-spacing: 2px;
	transform: matrix(1, 1, 0, 0, 0, 20);
	-webkit-transform: matrix(1, 0, 0, 1, 0, 20);
	-moz-transform: matrix(1, 0, 0, 1, 0, 20);
	-moz-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
	-webkit-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
	transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
}
.section-excerpt a {
	color: #FFF;
	text-decoration:underline;
}
.section-excerpt a:hover {
	color:#fecc00;
}
.section-excerpt-active {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
    -moz-transform: matrix(1, 0, 0, 1, 0, 0);
    -moz-transition: all .9s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all .9s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all .9s cubic-bezier(0.7, 0.01, 0.3, 1);
}
.section-excerpt-active:after {
    width: 292px;
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
    -moz-transform: matrix(1, 0, 0, 1, 0, 0);
    -moz-transition: all 0.8s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all 0.8s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.8s cubic-bezier(0.7, 0.01, 0.3, 1);
}

/* Explore block
*--------------------------------------------------*/  
.explore-block {
    position: absolute;
    width: 265px;
    left: 55px;
    top: 59%;
    z-index: 101;
    -moz-transition: all .7s cubic-bezier(0.7, 0.01, 0.3, 1);
    -o-transition: all .7s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all .7s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all .7s cubic-bezier(0.7, 0.01, 0.3, 1);
}
.arrow-explore {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    border: solid 2px #FFF;
    display: block;
    position: relative;
    left: 215px;
    top: -27px;
    transform: scale(1, 1);
    -ms-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
}
.arrow-explore-hover {
    background-color: #fff;
    border: solid 2px #fff;
    /*-moz-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);*/
}
.arrow-explore:after,
.arrow-explore:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility:hidden;
}
.arrow-explore:after {
  animation: sonar 2.5s infinite 1s;
  border: 1px solid rgba(255, 255, 255, .3);
  -webkit-backface-visibility:hidden;
}
.arrow-explore:before {
  animation: sonar 2.5s infinite 2.5s;
  border: 1px solid rgba(255, 255, 255, .1);
  -webkit-backface-visibility:hidden;
}
@keyframes sonar { 
  0% { transform: scale(1); opacity: 0; }
  50% { transform: scale(2); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}

@-webkit-keyframes sonar { 
  0% { transform: scale(1); opacity: 0; }
  50% { transform: scale(2); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}

.arrow-explore-first {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    border: solid 2px #FFF;
    display: block;
    position: relative;
    left: 215px;
    top: -27px;
    transform: scale(1, 1);
    -ms-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
}

.arrow-explore-first:after,
.arrow-explore-first:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility:hidden;
}
.arrow-explore-first:after {
  animation: sonar-none 2.5s infinite 1s;
  border: 1px solid rgba(255, 255, 255, .3);
  -webkit-backface-visibility:hidden;
}
.arrow-explore-first:before {
  animation: sonar-none 2.5s infinite 2.5s;
  border: 1px solid rgba(255, 255, 255, .1);
  -webkit-backface-visibility:hidden;
}
@keyframes sonar-none { 
  0% { transform: scale(1); opacity: 0; }
  50% { transform: scale(1); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

@-webkit-keyframes sonar-none { 
  0% { transform: scale(1); opacity: 0; }
  50% { transform: scale(1); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

.arrow-explore-active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    border: solid 1px #FFF;
    display: block;
    position: relative;
    left: 215px;
    top: -27px;
    opacity: 0;
    transform: scale(3, 3);
    /*-ms-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);*/
}
.learn-more-line {
    position: absolute;
    left: 138px;
    top: 16px;
    width: 70px;
    height: 2px;
    z-index: 10;
	background-color:#fcbf0f;
    transform: scale(0, 0);
    -moz-transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
}
.learn-more-line::before {
    position: absolute;
    left: 96px;
    top: 1px;
    width: 10px;
    height: 2px;
    content: '';
    transform: rotate(-45deg);
    opacity: 1;
    background-color: #FFF;
    -moz-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
}
.learn-more-line::after {
    position: absolute;
    left: 96px;
    top: -5px;
    width: 10px;
    height: 2px;
    content: attr(data-content);
    transform: rotate(45deg);
    background-color: #FFF;
    opacity: 1;
    -moz-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
}
.active-line {
    width: 70px;
    left: 132px;
    transform: scale(1, 1);
    -moz-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
}
.hover-line {
    width: 0px;
    left: 215px;
    -ms-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
}
.hover-line:before,
.hover-line:after {
    background: #333;
    left: 13px;
    -moz-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
}
.overlay-translate {
    display: block;
    background-color: #fecc00;
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 990;
    margin: 0 auto;
    overflow: hidden;
}
.overlay-translate-active {
    width: 100%;
    -moz-transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
}
.overlay-translate:before {
    content: "";
    display: block;
    background-color: #fff;
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 990;
    margin: 0 auto;
    overflow: hidden;
}
.overlay-translate-active:before {
    width: 100%;
    -moz-transition: all 0.9s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all 0.9s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.9s cubic-bezier(0.7, 0.01, 0.3, 1);
}

/* Colors
 * --------------------------------------- */
.theme-color {
	background-color:#009cde;
}

body.admin-bar .site-title,
body.admin-bar .back-menu,
body.admin-bar .back-line,
body.admin-bar .sidenav {
	margin-top: 32px;
}

/*  Back, logo, etc
*-------------------------------------------------*/
.back-line {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    position: fixed;
    left:150px;
    top:47px;
    z-index: 10;
    width: 70px;
    color:#009cde;
    cursor: pointer;
    -ms-transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
}
.back-line:before {
    content: '';
    width: 16px;
    height: 2px;
    left: -20px;
    top: 13px;
    display: block;
    position: relative;
    background-color:#009cde;
    -ms-transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.6s cubic-bezier(0.7, 0.01, 0.3, 1);
}
.back-line:hover:before {
    width: 0px;
    left: 0px;
    -ms-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
}
.back-line:hover {
    left:130px;
    top:47px;
    cursor: pointer;
    -ms-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
}

/* Social + Prev and Next
*--------------------------------------------------*/  
ul.social {
    width: 310px;
	height: 30px;
    text-align: left;
    cursor: pointer;
	position: relative;
    top: 27px;
    left: 0px;
    z-index: 100;
    -moz-transition: all .8s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all .8s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all .8s cubic-bezier(0.7, 0.01, 0.3, 1);
}

.social li, .social a {
    float:left;
    -moz-transition: all .5s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all .5s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all .5s cubic-bezier(0.7, 0.01, 0.3, 1);
}

.social li:first-child {
    display: inline-block;
    width: 100px;
	height: 30px;
    margin: 10px 8px 0 0;
    color:#FFF;
    font-weight: 300;
    letter-spacing: 1px;
}
.social a {
	display: inline-block;
    width: 30px;
	height: 40px;
    margin: 0 10px 0 5px;
    background-image: url(../images/social_icons.svg);
    background-size: 160px 120px;
}

.social a.fb { background-position: 110px -20px; }
.social a.fb:hover { background-position: 110px 60px; }

.social a.twitter { background-position: -10px -20px; }
.social a.twitter:hover { background-position: -10px 60px; }

.social a.insta { background-position: 30px -20px; }
.social a.insta:hover { background-position: 30px 60px; }

.social a.youtube { background-position: 75px -20px; }
.social a.youtube:hover { background-position: 75px 60px; }

/* Navigation */
.nav {
    position: absolute;
    width: 150px;
    left: 50%;
    margin: 0 0 0 -75px;
}
.middle-nav {
    position: absolute;
    width: 200px;
    height: 30px;
    left: 50%;
    top: 90%;
    z-index: 200;
    margin: 0 0 0 -100px;
}
.scroll-sign {
    position: absolute;
    width: 200px;
    height: 30px;
    left: 50%;
    top: 90%;
    z-index: 212;
    margin: 0 0 0 -100px;
    text-align: center;
    font-size: 18px;
    font-weight: 200;
    color: #fff;
    -moz-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
    -o-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
}

.opacity-zero{
    opacity: 0;
    transform: translate(0,40px);
    -moz-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
	-o-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);	
    -webkit-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
}

#section-next {
	font-family: inherit;
    width: 60px;
    height: 30px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    left: 93px;
    top: -3px;
    border: 0;
    outline: 0;
    z-index: 200;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    background: transparent;
    -moz-transition: all 0.7s cubic-bezier(0.7, 0.01, 0.3, 1);
    -o-transition: all 0.7s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all 0.7s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.7s cubic-bezier(0.7, 0.01, 0.3, 1);
}
#section-next span {
    display: inline-block;
    position: relative;
    left: 0;
    -moz-transition: all 0.3s cubic-bezier(0.7, 0.01, 0.3, 1);
    -o-transition: all 0.3s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all 0.3s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.3s cubic-bezier(0.7, 0.01, 0.3, 1);
}
#section-next span:before {
    display: block;
    position: relative;
    top: 12px;
    left: 0px;
    border-bottom: 1px solid #FFF;
    width: 0;
    content: '';
    -moz-transition: all 0.3s cubic-bezier(0.7, 0.01, 0.3, 1);
    -o-transition: all 0.3s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all 0.3s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.3s cubic-bezier(0.7, 0.01, 0.3, 1);
}
#section-next:hover span {
    left: 25px;
}
#section-next:hover span:before {
    width: 15px;
    left: -20px;
    -moz-transition: all 0.3s cubic-bezier(0.7, 0.01, 0.3, 1);
    -o-transition: all 0.3s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all 0.3s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.3s cubic-bezier(0.7, 0.01, 0.3, 1);
}
#section-prev {
	font-family: inherit;
    width: 60px;
    height: 30px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    left: 37px;
    top: -3px;
    border: 0;
    outline: 0;
    z-index: 200;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
	background: transparent;
    -moz-transition: all 0.3s cubic-bezier(0.7, 0.01, 0.3, 1);
    -o-transition: all 0.3s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all 0.3s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.3s cubic-bezier(0.7, 0.01, 0.3, 1);
    
}
#section-prev span {
    display: inline-block;
    position: relative;
    left: 0;
    -moz-transition: all 0.3s cubic-bezier(0.7, 0.01, 0.3, 1);
    -o-transition: all 0.3s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all 0.3s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.3s cubic-bezier(0.7, 0.01, 0.3, 1);
}
#section-prev span:before {
    display: block;
    position: relative;
    top: 12px;
    right: -35px;
    border-bottom: 1px solid #FFF;
    width: 0;
    content: '';
    -moz-transition: all 0.3s cubic-bezier(0.7, 0.01, 0.3, 1);
    -o-transition: all 0.3s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all 0.3s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.3s cubic-bezier(0.7, 0.01, 0.3, 1);
}
#section-prev:hover span {
    left: -25px;
}
#section-prev:hover span:before {
    width: 15px;
    right: -42px;
    -moz-transition: all 0.3s cubic-bezier(0.7, 0.01, 0.3, 1);
    -o-transition: all 0.3s cubic-bezier(0.7, 0.01, 0.3, 1);
    -webkit-transition: all 0.3s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition: all 0.3s cubic-bezier(0.7, 0.01, 0.3, 1);
}

/*==============================
	CSS Queries
=================================*/

@media screen and ( min-height: 860px) {
    .section h1 { top: 30%; }
    .section h2 { top: 41%; }
    .section-excerpt {
        left: 60px;
        top: 62%;
    }
    .explore-block {
        left: 55px;
        top: 55%;
    }
}
@media screen and ( min-height: 960px) {
    .section h1 { top: 32%; }
    .section h2 { top: 42%; }
    .section-excerpt {
        left: 60px;
        top: 60%;
    }
    .explore-block {
        width: 265px;
        left: 55px;
        top: 54%;
    }
}
@media screen and ( min-height: 1040px) {
    .section h1 { top: 30%; }
    .section h2 { top: 39%; }
    .section-excerpt {
        left: 60px;
        top: 56%;
    }
    .explore-block {
        left: 55px;
        top: 50%;
    }
}
@media screen and ( min-height: 1100px) {
    .section h1 { top: 31%; }
    .section h2 { top: 39%; }
    .section-excerpt {
        left: 60px;
        top: 56%;
    }
    .explore-block {
        left: 55px;
        top: 50%;
    }
}
@media screen and (max-width: 767px) {
    .site-title {
        top: 10px;
        left: 10px;
        z-index: 99;
    }
    .site-title:hover {
        top: 10px;
        left: 10px;
        z-index: 99;
    }
    .section-excerpt {
        display: none;
    }

/* Sections
* --------------------------------------- */    
    .video {
        display: none;
    }
    .section h1,
    .section h2 {
        left: 10px;
		right: 10px;
        font-size: 40px;
        color: #fff;
        height: 40px;
    }
    .section h1 { top: 55%; }
    .section h2 { top: 62%; }
    .section.active .section h1,
    .section.active .section h2 {
        line-height: 1;
    }
    .section,
    .section-img,
    .section-active {
        transform: scale(1, 1) !important;
    }
    .section-blackout {
        display: none;
    }

/* Headline-animation
* --------------------------------------- */
    .learn-more-cta-text {
        top: 1px;
        left: 0;
    }
    .learn-more-cta {
        top: 6px;
        left: 3px;
    }
    .learn-more-cta-hover {
        left: 3px;
    }
    .active-cta {
        opacity: 1;
    }
    .section-excerpt {
        left: 60px;
        top: 60%;
        width: 300px;
    }
    .section-excerpt a {
        color: #fff;
        text-decoration: underline;
    }
    .section-excerpt a:hover {
        color: #fecc00;
    }
    .section-excerpt::after {
        height: 1px;
        top: -3px;
        opacity: 0;
    }

/* Explore block
*--------------------------------------------------*/
    .explore-block {
        position: fixed;
        width: 215px;
        left: 10px;
        top: 70%;
    }
    .arrow-explore {
        left: 130px;
        top: -25px;
    }
    .arrow-explore-active {
        left: 135px;
        top: -27px;
    }
    .learn-more-line {
        left: 138px;
        top: 16px;
        width: 0px;
        height: 0px;
        z-index: 10;
    }
    .learn-more-line::before {
        left: 13px;
        top: 3px;
        width: 10px;
        height: 2px;
    }
    .learn-more-line::after {
        left: 13px;
        top: -3px;
        width: 10px;
        height: 2px;
    }
    .active-line {
        width: 40px;
        left: 130px;
    }
    .hover-line {
        width: 0px;
        left: 215px;
    }
    .hover-line:before,
    .hover-line:after {
        left: -72px;
    }
	
    /* Accordion */
    .sidenav {
        width: calc(100% - 80px);
        margin: 0 auto;
        background: #1c1c1c;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 120;
        height: 100vh;
        overflow-y: auto;
        -ms-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
        -webkit-transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
        transition: all 0.4s cubic-bezier(0.7, 0.01, 0.3, 1);
    }
    .sidenav-active {
        right: 0;
        -ms-transition: all 0.4s cubic-bezier(.21, .01, 0, 1.01);
        -webkit-transition: all 0.4s cubic-bezier(.21, .01, 0, 1.01);
        transition: all 0.4s cubic-bezier(.21, .01, 0, 1.01);
    }
    .home {
        margin: 13px 0 0 0;
    }
	
    /* Next Prev buttons */
    .middle-nav {
        left: -35px;
        top: 90%;
        margin: 0;
    }
    .scroll-sign {
        left: 15px;
        top: 90%;
        margin: 0;
        text-align: left;
        font-size: 16px;
    }
    #section-next {
        left: 93px;
        top: -3px;
        border: 0;
        outline: 0;
        z-index: 200;
    }
    #section-next:hover span {
        left: 0;
    }
    #section-next:hover span:before {
        width: 15px;
        left: -20px;
    }
    #section-prev {
        left: 37px;
        top: -3px;
    }
    #section-prev span:before {
        display: none;
        top: 12px;
        right: -35px;
    }
    #section-prev:hover span {
        left: 0;
    }
    #section-prev:hover span:before {
        width: 15px;
        right: -42px;
    }

/*  Back, logo, etc
*-------------------------------------------------*/    
    .back-line {
        left: 100px;
        top: 27px;
        z-index: 109;
    }
    .back-line:before {
        content: '';
        width: 16px;
        height: 2px;
        left: -20px;
        top: 13px;
    }
    .back-line:hover:before {
        width: 0px;
        left: 0px;
    }
    .back-line:hover {
        left: 80px;
        top: 27px;
    }
}