@import url(https://fonts.googleapis.com/css?family=Lato:100,300,400);
/*  =====================================================

    TITLE: Less styles
    AUTHOR: Sapient
    CLIENT: Nuit Blanche
    LICENSE: Copyright (c) 2015
    DEVELOPER(S): Takbir Sarker

    DESCRIPTION: Global styles used throughout the
    stylesheets and site.


    TABLE OF CONTENTS:
    1.  Less Variables
    2.  Less Mixins
    3.  Global styles
    4.  Full page video style
    5.  Headers
    6.  ScrollMagic Continaiers
    7.  Parallax Backgrounds
    8.  Navigation
    9.  Overlay
    10. Media Queries

    ===================================================== */
/* ============================
    1. Less Variables
============================ */
/* ============================
    2. Less Mixins
============================ */
/* line 45, src/less/home.less */
.turquoise-gradient {
  background: transparent;
  /* Old browsers */
  background: -moz-linear-gradient(45deg, #87e0fd 0%, #80f1da 50%, #80f9bf 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #87e0fd), color-stop(50%, #80f1da), color-stop(100%, #80f9bf));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(45deg, #87e0fd 0%, #80f1da 50%, #80f9bf 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(45deg, #87e0fd 0%, #80f1da 50%, #80f9bf 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(45deg, #87e0fd 0%, #80f1da 50%, #80f9bf 100%);
  /* IE10+ */
  background: linear-gradient(45deg, #87e0fd 0%, #80f1da 50%, #80f9bf 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#87e0fd', endColorstr='#80f9bf', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}
/* line 56, src/less/home.less */
.violet-gradient {
  background: #ca26d0;
  /* Old browsers */
  background: -moz-linear-gradient(45deg, #ca26d0 0%, #7564e4 50%, #289bf6 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #ca26d0), color-stop(50%, #7564e4), color-stop(100%, #289bf6));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(45deg, #ca26d0 0%, #7564e4 50%, #289bf6 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(45deg, #ca26d0 0%, #7564e4 50%, #289bf6 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(45deg, #ca26d0 0%, #7564e4 50%, #289bf6 100%);
  /* IE10+ */
  background: linear-gradient(45deg, #ca26d0 0%, #7564e4 50%, #289bf6 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ca26d0', endColorstr='#289bf6', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}
/* line 67, src/less/home.less */
.vignette-gradient {
  background: -moz-radial-gradient(center, ellipse cover, rgba(137, 137, 137, 0) 0%, #000000 100%);
  /* FF3.6+ */
  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(137, 137, 137, 0)), color-stop(100%, #000000));
  /* Chrome,Safari4+ */
  background: -webkit-radial-gradient(center, ellipse cover, rgba(137, 137, 137, 0) 0%, #000000 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-radial-gradient(center, ellipse cover, rgba(137, 137, 137, 0) 0%, #000000 100%);
  /* Opera 12+ */
  background: -ms-radial-gradient(center, ellipse cover, rgba(137, 137, 137, 0) 0%, #000000 100%);
  /* IE10+ */
  background: radial-gradient(ellipse at center, rgba(137, 137, 137, 0) 0%, #000000 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00898989', endColorstr='#000000', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}
/* line 77, src/less/home.less */
.seagreen-gradient {
  background: #44717f;
  /* Old browsers */
  background: -moz-linear-gradient(45deg, #44717f 0%, #447f70 50%, #427f60 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #44717f), color-stop(50%, #447f70), color-stop(100%, #427f60));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(45deg, #44717f 0%, #447f70 50%, #427f60 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(45deg, #44717f 0%, #447f70 50%, #427f60 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(45deg, #44717f 0%, #447f70 50%, #427f60 100%);
  /* IE10+ */
  background: linear-gradient(45deg, #44717f 0%, #447f70 50%, #427f60 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#44717f', endColorstr='#427f60', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}
/* ============================
    3. Global styles
============================ */
/* line 94, src/less/home.less */
html,
body {
  width: 100%;
  height: 100%;
}
/* line 99, src/less/home.less */
body {
  font-family: "Lato", Arial, sans-serif;
  background: #000000;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* line 107, src/less/home.less */
.touchonly {
  display: none;
}
/* line 111, src/less/home.less */
html.touch .touchonly {
  display: block;
}
/* line 114, src/less/home.less */
.noselect * {
  user-select: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
}
/* line 121, src/less/home.less */
.doselect * {
  user-select: auto;
  -webkit-user-select: auto;
  -khtml-user-select: auto;
  -moz-user-select: auto;
  -o-user-select: auto;
}
/* line 129, src/less/home.less */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
/* line 138, src/less/home.less */
.clearfix {
  display: inline-block;
}
/* line 142, src/less/home.less */
html[xmlns] .clearfix {
  display: block;
}
/* line 146, src/less/home.less */
* html .clearfix {
  height: 1%;
}
/* ============================
    4. Full page video style
============================ */
/* line 153, src/less/home.less */
video,
.videoHolder {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-size: cover;
  transition: 1s opacity;
}
/* line 170, src/less/home.less */
.videoHolder {
  display: none;
  top: 0%;
  left: 0%;
  -webkit-transform: inherit;
  background: url('/img/phoneBG.png');
  background-size: cover;
  /* background-attachment: fixed; */
  background-position: top left;
}
/* ============================
    5. Header
============================ */
/* line 184, src/less/home.less */
#header {
  width: 100%;
  margin: 0;
  position: fixed;
  top: 20px;
  z-index: 10;
}
/* line 191, src/less/home.less */
#header #bars {
  height: 16px;
  left: 20px;
  margin: 0;
  position: fixed;
  width: 20px;
}
/* line 199, src/less/home.less */
#header #bars .bar {
  background: #ffffff;
  bottom: 1px;
  height: 4px;
  opacity: .50;
  position: absolute;
  width: 3px;
}
/* line 209, src/less/home.less */
#header #bars.on .bar {
  height: 3px;
  -moz-animation: sound 0ms -800ms linear infinite alternate;
  -o-animation: sound 0ms -800ms linear infinite alternate;
  -webkit-animation: sound 0ms -800ms linear infinite alternate;
  animation: sound 0ms -800ms linear infinite alternate;
}
/* line 218, src/less/home.less */
#header #bars .bar:nth-child(1) {
  left: 1px;
  animation-duration: 474ms;
  -webkit-animation-duration: 474ms;
}
/* line 219, src/less/home.less */
#header #bars .bar:nth-child(2) {
  left: 5px;
  animation-duration: 433ms;
  -webkit-animation-duration: 433ms;
}
/* line 220, src/less/home.less */
#header #bars .bar:nth-child(3) {
  left: 9px;
  animation-duration: 407ms;
  -webkit-animation-duration: 407ms;
}
/* line 221, src/less/home.less */
#header #bars .bar:nth-child(4) {
  left: 13px;
  animation-duration: 458ms;
  -webkit-animation-duration: 458ms;
}
/* line 222, src/less/home.less */
#header #bars .bar:nth-child(5) {
  left: 17px;
  animation-duration: 400ms;
  -webkit-animation-duration: 400ms;
}
/* line 225, src/less/home.less */
#header .btn-about {
  background: transparent;
  padding: 0 20px 0;
  border: none;
  outline: none;
  float: right;
  color: #ffffff;
  font-family: "Lato", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  -ms-transition: color 0.2s ease-out, background 1s ease-in;
  -moz-transition: color 0.2s ease-out, background 1s ease-in;
  -o-transition: color 0.2s ease-out, background 1s ease-in;
  -webkit-transition: color 0.2s ease-out, background 1s ease-in;
  transition: color 0.2s ease-out, background 1s ease-in;
}
/* line 242, src/less/home.less */
#header .btn-about:hover {
  color: #6d6e71;
  text-decoration: none;
}
@-moz-keyframes sound {
  /* line 249, src/less/home.less */
  0% {
    opacity: .35;
    filter: alpha(opacity=35);
    height: 3px;
  }
  /* line 254, src/less/home.less */
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    height: 14px;
  }
}
@-o-keyframes sound {
  /* line 261, src/less/home.less */
  0% {
    opacity: .35;
    filter: alpha(opacity=35);
    height: 3px;
  }
  /* line 266, src/less/home.less */
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    height: 14px;
  }
}
@-webkit-keyframes sound {
  /* line 273, src/less/home.less */
  0% {
    opacity: .35;
    filter: alpha(opacity=35);
    height: 3px;
  }
  /* line 278, src/less/home.less */
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    height: 14px;
  }
}
@keyframes sound {
  /* line 285, src/less/home.less */
  0% {
    opacity: .35;
    height: 3px;
  }
  /* line 289, src/less/home.less */
  100% {
    opacity: 1;
    height: 14px;
  }
}
/* ============================
    6. ScrollMagic Containers
============================ */
/* line 299, src/less/home.less */
#content-wrapper,
#landing-wrapper {
  height: 100%;
}
/* line 304, src/less/home.less */
#content-wrapper .scrollContainer {
  overflow-y: scroll;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  margin: auto;
}
/* line 313, src/less/home.less */
#landing-wrapper .scrollContent {
  height: 100%;
}
/* line 315, src/less/home.less */
#landing-wrapper .scrollContent .mouse {
  display: block;
  position: fixed;
  opacity: 0.7;
  bottom: 10%;
  border: 1px solid #ffffff;
  border-radius: 25px;
  height: 36px;
  left: 0;
  margin: 0 auto;
  right: 0;
  width: 24px;
  cursor: pointer;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -ms-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .9s linear;
}
/* line 333, src/less/home.less */
#landing-wrapper .scrollContent .mouse:hover {
  opacity: 0.3;
}
/* line 336, src/less/home.less */
#landing-wrapper .scrollContent .mouse i {
  display: block;
  -webkit-animation: 1.4s ease 0s normal none infinite mouse-down;
  -moz-animation: 1.4s ease 0s normal none infinite mouse-down;
  -o-animation: 1.4s ease 0s normal none infinite mouse-down;
  animation: 1.4s ease 0s normal none infinite mouse-down;
  color: #ffffff;
  font-size: 12px;
}
/* line 344, src/less/home.less */
#landing-wrapper .scrollContent .mouse i:before {
  content: "\2193";
  display: block;
  font-style: normal;
}
@-moz-keyframes mouse-down {
  /* line 353, src/less/home.less */
  0% {
    margin-top: 4px;
    opacity: 0;
  }
  /* line 357, src/less/home.less */
  30% {
    opacity: 1;
  }
  /* line 360, src/less/home.less */
  100% {
    margin-top: 11px;
    opacity: 0;
  }
}
@-webkit-keyframes mouse-down {
  /* line 366, src/less/home.less */
  0% {
    margin-top: 4px;
    opacity: 0;
  }
  /* line 370, src/less/home.less */
  30% {
    opacity: 1;
  }
  /* line 373, src/less/home.less */
  100% {
    margin-top: 11px;
    opacity: 0;
  }
}
@-o-keyframes mouse-down {
  /* line 379, src/less/home.less */
  0% {
    margin-top: 4px;
    opacity: 0;
  }
  /* line 383, src/less/home.less */
  30% {
    opacity: 1;
  }
  /* line 386, src/less/home.less */
  100% {
    margin-top: 11px;
    opacity: 0;
  }
}
@keyframes mouse-down {
  /* line 392, src/less/home.less */
  0% {
    margin-top: 4px;
    opacity: 0;
  }
  /* line 396, src/less/home.less */
  30% {
    opacity: 1;
  }
  /* line 399, src/less/home.less */
  100% {
    margin-top: 11px;
    opacity: 0;
  }
}
/* line 405, src/less/home.less */
#landing-wrapper .scrollContent section#mainlogo {
  text-align: center;
  position: relative;
  height: 100%;
  min-height: 500px;
  min-width: 100%;
  height: 100vh;
}
/* line 413, src/less/home.less */
#landing-wrapper .scrollContent section#mainlogo .badge {
  background-color: transparent;
  padding: 0;
}
/* line 416, src/less/home.less */
#landing-wrapper .scrollContent section#mainlogo .badge .logo {
  width: 341px;
}
/* line 421, src/less/home.less */
#landing-wrapper .scrollContent section#mainlogo #description {
  top: 50%;
  left: 50%;
  position: absolute;
  display: block;
  overflow: visible;
  overflow-y: auto;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/* line 432, src/less/home.less */
#landing-wrapper .scrollContent section#mainlogo #description h1 {
  margin: 0;
}
/* line 436, src/less/home.less */
#landing-wrapper .scrollContent section#mainlogo #description h2 {
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 8px;
  margin: 40px auto 0 auto;
}
/* line 445, src/less/home.less */
#landing-wrapper .scrollContent section.panels {
  min-height: 100%;
  font-size: 0;
  text-align: center;
}
/* line 450, src/less/home.less */
#landing-wrapper .scrollContent section.panels .introduction {
  background: transparent;
}
/* line 452, src/less/home.less */
#landing-wrapper .scrollContent section.panels .introduction .title {
  font-size: 35px;
  text-transform: uppercase;
  letter-spacing: 7px;
  margin: 0 auto 30px auto;
}
/* line 458, src/less/home.less */
#landing-wrapper .scrollContent section.panels .introduction p {
  margin: 0 auto 30px auto;
  min-width: 540px;
  max-width: 540px;
  font-size: 15px;
  margin-bottom: 30px;
}
/* line 465, src/less/home.less */
#landing-wrapper .scrollContent section.panels .introduction .gradient-background {
  background: #44717f;
  /* Old browsers */
  background: -moz-linear-gradient(45deg, #44717f 0%, #447f70 50%, #427f60 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #44717f), color-stop(50%, #447f70), color-stop(100%, #427f60));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(45deg, #44717f 0%, #447f70 50%, #427f60 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(45deg, #44717f 0%, #447f70 50%, #427f60 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(45deg, #44717f 0%, #447f70 50%, #427f60 100%);
  /* IE10+ */
  background: linear-gradient(45deg, #44717f 0%, #447f70 50%, #427f60 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#44717f', endColorstr='#427f60', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  opacity: 0.15;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
}
/* line 475, src/less/home.less */
#landing-wrapper .scrollContent section.panels .navigation {
  background: #000000;
}
/* line 477, src/less/home.less */
#landing-wrapper .scrollContent section.panels .navigation .logo {
  width: 134px;
  margin-top: -100px;
}
/* line 481, src/less/home.less */
#landing-wrapper .scrollContent section.panels .navigation .title {
  font-size: 75px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-top: -8px;
}
/* line 489, src/less/home.less */
#landing-wrapper .scrollContent section.panels .navigation .subtitle {
  font-size: 22px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.47);
  text-transform: uppercase;
  letter-spacing: 8px;
  margin-top: -40px;
}
/* line 497, src/less/home.less */
#landing-wrapper .scrollContent section.panels .navigation .gradient-background {
  background: -moz-radial-gradient(center, ellipse cover, rgba(137, 137, 137, 0) 0%, #000000 100%);
  /* FF3.6+ */
  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(137, 137, 137, 0)), color-stop(100%, #000000));
  /* Chrome,Safari4+ */
  background: -webkit-radial-gradient(center, ellipse cover, rgba(137, 137, 137, 0) 0%, #000000 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-radial-gradient(center, ellipse cover, rgba(137, 137, 137, 0) 0%, #000000 100%);
  /* Opera 12+ */
  background: -ms-radial-gradient(center, ellipse cover, rgba(137, 137, 137, 0) 0%, #000000 100%);
  /* IE10+ */
  background: radial-gradient(ellipse at center, rgba(137, 137, 137, 0) 0%, #000000 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00898989', endColorstr='#000000', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  opacity: 0.5;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
}
/* line 507, src/less/home.less */
#landing-wrapper .scrollContent section.panels #pinContainer {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
/* line 512, src/less/home.less */
#landing-wrapper .scrollContent section.panels #pinContainer .panel {
  height: 100%;
  width: 100%;
  position: absolute;
}
/* line 517, src/less/home.less */
#landing-wrapper .scrollContent section.panels #pinContainer .panel > .content {
  font-size: 15px;
  display: block;
  overflow: visible;
  overflow-y: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/* line 534, src/less/home.less */
#landing-wrapper .scrollContent section.panels#section-wipes {
  height: 100%;
  width: 100%;
  background-image: none;
}
/* ============================
    7. Parallax backgrounds
============================ */
/* line 547, src/less/home.less */
.eye .scene,
.scene-wrapper .scene {
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
/* line 561, src/less/home.less */
.eye .scene .layer,
.scene-wrapper .scene .layer {
  height: 100%;
  width: 100%;
}
/* line 564, src/less/home.less */
.eye .scene .layer .content,
.scene-wrapper .scene .layer .content {
  position: relative;
  top: 30%;
  -webkit-transform: translateY(-30%);
  -ms-transform: translateY(-30%);
  transform: translateY(-30%);
  text-align: center;
}
/* line 573, src/less/home.less */
.eye .scene .layer:last-child .content,
.scene-wrapper .scene .layer:last-child .content {
  top: 45%;
  -webkit-transform: translateY(-45%);
  -ms-transform: translateY(-45%);
  transform: translateY(-45%);
}
/* line 583, src/less/home.less */
.eye .scene .layer .parallax,
.scene-wrapper .scene .layer .parallax {
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -50%;
  right: -50%;
  margin: auto;
}
/* line 596, src/less/home.less */
.eye .scene img,
.scene-wrapper .scene img {
  width: 110%;
  box-shadow: inset 0 0 10em #000000;
}
/* line 603, src/less/home.less */
.world {
  text-align: center;
}
/* line 605, src/less/home.less */
.world #cta-home {
  width: 62px;
  margin: 0 auto;
  display: block;
}
/* line 610, src/less/home.less */
.world #cta-home img {
  width: 62px;
  padding-top: 20px;
}
/* line 618, src/less/home.less */
.world .scene-wrapper .scene .layer .gradient-background {
  background: -moz-radial-gradient(center, ellipse cover, rgba(137, 137, 137, 0) 0%, #000000 100%);
  /* FF3.6+ */
  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(137, 137, 137, 0)), color-stop(100%, #000000));
  /* Chrome,Safari4+ */
  background: -webkit-radial-gradient(center, ellipse cover, rgba(137, 137, 137, 0) 0%, #000000 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-radial-gradient(center, ellipse cover, rgba(137, 137, 137, 0) 0%, #000000 100%);
  /* Opera 12+ */
  background: -ms-radial-gradient(center, ellipse cover, rgba(137, 137, 137, 0) 0%, #000000 100%);
  /* IE10+ */
  background: radial-gradient(ellipse at center, rgba(137, 137, 137, 0) 0%, #000000 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00898989', endColorstr='#000000', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  opacity: 1;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
}
/* line 626, src/less/home.less */
.world .scene-wrapper .scene .layer .content {
  top: 47%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* line 631, src/less/home.less */
.world .scene-wrapper .scene .layer .content svg {
  width: 81px;
  height: 80px;
  fill: #ffffff;
  opacity: 1;
  fill-rule: evenodd;
  position: relative;
  top: -6px;
}
/* line 642, src/less/home.less */
.world .scene-wrapper .scene .layer .content .title {
  margin-top: 0px;
  font-size: 80px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 5px;
}
/* line 651, src/less/home.less */
.world .scene-wrapper .scene .layer .content .subtitle {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: -6px;
}
/* line 664, src/less/home.less */
.world .scene-wrapper .scene .layer .content p {
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 22px;
  max-width: 400px;
  margin: 25px auto 0;
}
/* line 679, src/less/home.less */
#asgard .content p {
  color: #32385F;
}
/* line 684, src/less/home.less */
#niflheim h2 {
  color: #979995;
}
/* line 688, src/less/home.less */
#muspelheim h2 {
  color: #612609;
}
/* line 692, src/less/home.less */
#asgard h2 {
  color: #6d4679;
}
/* line 696, src/less/home.less */
#midgard h2 {
  color: #e2b08b;
}
/* line 700, src/less/home.less */
#jotunheim h2 {
  color: #7687b7;
}
/* line 704, src/less/home.less */
#vanaheim h2 {
  color: #66745D;
}
/* line 708, src/less/home.less */
#alfheim h2 {
  color: #d2cb7d;
}
/* line 712, src/less/home.less */
#nidavellir h2 {
  color: #836847;
}
/* line 716, src/less/home.less */
#svartalfheim h2 {
  color: #A8AB72;
}
/* ============================
    8. Navigation
============================ */
/* line 723, src/less/home.less */
nav {
  position: relative;
  position: fixed;
  width: 100%;
  bottom: 0;
  color: #000000;
  text-align: center;
  z-index: 10;
  display: none;
}
/* line 733, src/less/home.less */
nav:hover .swiper-container {
  opacity: 1;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  -ms-transition: opacity 0.5s, -ms-transform 0.5s;
  -moz-transition: opacity 0.5s, -moz-transform 0.5s;
  -o-transition: opacity 0.5s, -o-transform 0.5s;
  transition: opacity .5s, transform .5s;
}
/* line 742, src/less/home.less */
nav.open {
  display: block !important;
}
/* line 744, src/less/home.less */
nav.open .swiper-container {
  display: block !important;
}
/* line 749, src/less/home.less */
nav .swiper-container {
  width: 100%;
  max-width: 958px;
  height: 111px;
  margin: 0 auto;
  padding: 0 20px;
  opacity: 1;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  -ms-transition: opacity 0.5s, -ms-transform 0.5s;
  -moz-transition: opacity 0.5s, -moz-transform 0.5s;
  -o-transition: opacity 0.5s, -o-transform 0.5s;
  transition: opacity .5s, transform .5s;
}
/* line 762, src/less/home.less */
nav .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  width: 100px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
}
/* line 783, src/less/home.less */
nav .swiper-slide:hover h4 {
  opacity: 1;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  -ms-transition: opacity 0.5s, -ms-transform 0.5s;
  -moz-transition: opacity 0.5s, -moz-transform 0.5s;
  -o-transition: opacity 0.5s, -o-transform 0.5s;
  transition: opacity .5s, transform .5s;
}
/* line 791, src/less/home.less */
nav .swiper-slide:hover svg {
  -webkit-transition: width 0.5s, height 0.5s, opacity 0.5s, -webkit-transform 0.5s;
  -moz-transition: width 0.5s, height 0.5s, opacity 0.5s, -moz-transform 0.5s;
  -ms-transition: width 0.5s, height 0.5s, opacity 0.5s, -ms-transform 0.5s;
  -o-transition: width 0.5s, height 0.5s, opacity 0.5s, -o-transform 0.5s;
  transition: width .5s, height .5s, opacity .5s, transform .5s;
  opacity: 1;
  height: 61px;
  width: 62px;
}
/* line 804, src/less/home.less */
nav .swiper-slide h4 {
  position: absolute;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #ffffff;
  left: 0;
  top: 0;
  width: 100%;
  margin: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  -ms-transition: opacity 0.5s, -ms-transform 0.5s;
  -moz-transition: opacity 0.5s, -moz-transform 0.5s;
  -o-transition: opacity 0.5s, -o-transform 0.5s;
  transition: opacity .5s, transform .5s;
}
/* line 821, src/less/home.less */
nav .swiper-slide h4.asgard {
  left: 2px;
}
/* line 824, src/less/home.less */
nav .swiper-slide h4.midgard {
  left: 3px;
}
/* line 827, src/less/home.less */
nav .swiper-slide h4.muspelheim {
  left: -10px;
}
/* line 830, src/less/home.less */
nav .swiper-slide h4.alfheim {
  left: 1px;
}
/* line 833, src/less/home.less */
nav .swiper-slide h4.jotunheim {
  left: -5px;
}
/* line 836, src/less/home.less */
nav .swiper-slide h4.vanaheim {
  left: 1px;
}
/* line 839, src/less/home.less */
nav .swiper-slide h4.nidavellir {
  left: -5px;
}
/* line 842, src/less/home.less */
nav .swiper-slide h4.svartalfheim {
  left: -15px;
}
/* line 846, src/less/home.less */
nav .swiper-slide svg {
  height: 41px;
  width: 42px;
  fill: #ffffff;
  opacity: 0.5;
  -webkit-transition: width 0.5s, height 0.5s, opacity 0.5s, -webkit-transform 0.5s;
  -moz-transition: width 0.5s, height 0.5s, opacity 0.5s, -moz-transform 0.5s;
  -ms-transition: width 0.5s, height 0.5s, opacity 0.5s, -ms-transform 0.5s;
  -o-transition: width 0.5s, height 0.5s, opacity 0.5s, -o-transform 0.5s;
  transition: width .5s, height .5s, opacity .5s, transform .5s;
}
/* line 857, src/less/home.less */
nav .swiper-slide .nav-item {
  border: none;
  background: transparent;
}
/* ============================
    9. Overlay
============================ */
/* line 868, src/less/home.less */
#section-about {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  /* Effects */
}
/* line 875, src/less/home.less */
#section-about .container-fluid {
  padding: 0 150px;
  width: 100%;
  overflow-y: auto;
}
/* line 882, src/less/home.less */
#section-about .gradient-background {
  background: #ca26d0;
  /* Old browsers */
  background: -moz-linear-gradient(45deg, #ca26d0 0%, #7564e4 50%, #289bf6 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #ca26d0), color-stop(50%, #7564e4), color-stop(100%, #289bf6));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(45deg, #ca26d0 0%, #7564e4 50%, #289bf6 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(45deg, #ca26d0 0%, #7564e4 50%, #289bf6 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(45deg, #ca26d0 0%, #7564e4 50%, #289bf6 100%);
  /* IE10+ */
  background: linear-gradient(45deg, #ca26d0 0%, #7564e4 50%, #289bf6 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ca26d0', endColorstr='#289bf6', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  opacity: .3;
  z-index: -10;
}
/* line 891, src/less/home.less */
#section-about .overlay-close {
  position: relative;
  background: transparent;
  border: none;
  outline: none;
  z-index: 10;
  float: right;
  color: #ffffff;
  font-family: "Lato", Arial, sans-serif;
  font-size: 25px;
  height: 25px;
  width: 25px;
  margin-right: 20px;
  margin-top: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: color 0.2s ease-out, background 1s ease-in;
  -ms-transition: color 0.2s ease-out, background 1s ease-in;
  -moz-transition: color 0.2s ease-out, background 1s ease-in;
  -o-transition: color 0.2s ease-out, background 1s ease-in;
  transition: color 0.2s ease-out, background 1s ease-in;
}
/* line 913, src/less/home.less */
#section-about .overlay-close:hover {
  color: #6d6e71;
  text-decoration: none;
}
/* line 919, src/less/home.less */
#section-about .logo-wrap {
  position: relative;
  z-index: 10;
  text-align: center;
  width: 100%;
  margin: 0 0 20px;
}
/* line 926, src/less/home.less */
#section-about .logo-wrap .logo {
  margin: 0 auto;
  width: 340px;
}
/* line 933, src/less/home.less */
#section-about .title {
  position: relative;
  z-index: 10;
  margin: 0 0 50px 0;
  font-family: "Lato", Arial, sans-serif;
  font-weight: 300;
  font-size: 75px;
  text-shadow: 2px 2px 8px #000;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 4px;
}
/* line 946, src/less/home.less */
#section-about p.intro {
  position: relative;
  z-index: 10;
  margin: 0 0 50px 0;
  color: #fcfcfc;
  font-weight: 300;
  font-size: 15px;
  text-align: center;
}
/* line 956, src/less/home.less */
#section-about p.intro span {
  display: inline-block;
  max-width: 800px;
}
/* line 966, src/less/home.less */
#section-about h2.subtitle {
  position: relative;
  z-index: 10;
  margin: 35px 0 25px 0;
  font-weight: 800;
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-align: center;
}
/* line 979, src/less/home.less */
#section-about .partner {
  position: relative;
  z-index: 10;
  text-align: center;
}
/* line 984, src/less/home.less */
#section-about .partner a:hover {
  text-decoration: none;
}
/* line 988, src/less/home.less */
#section-about .partner img {
  margin: 0 0 30px 0;
}
/* line 991, src/less/home.less */
#section-about .partner p {
  font-weight: 300;
  font-size: 13px;
  color: #fcfcfc;
}
/* line 999, src/less/home.less */
#section-about.stretchup {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s, visibility 0s 0.5s;
  -ms-transition: opacity 0.5s, visibility 0s 0.5s;
  -moz-transition: opacity 0.5s, visibility 0s 0.5s;
  -o-transition: opacity 0.5s, visibility 0s 0.5s;
  transition: opacity 0.5s, visibility 0s 0.5s;
}
/* line 1008, src/less/home.less */
#section-about.stretchup.open {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
/* line 1017, src/less/home.less */
#section-about.stretchup.open .container-fluid {
  position: relative;
  /*top: 50%;*/
  /*transform: translateY(-25%);*/
  /*-webkit-transform: translateY(-25%);*/
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
}
/* line 1033, src/less/home.less */
#section-about.stretchup.close .container-fluid {
  -webkit-transform: translateY(25%) rotateX(-35deg);
  -ms-transform: translateY(25%) rotateX(-35deg);
  -moz-transform: translateY(25%) rotateX(-35deg);
  -o-transform: translateY(25%) rotateX(-35deg);
  transform: translateY(25%) rotateX(-35deg);
}
/* line 1042, src/less/home.less */
#section-about.stretchup .container-fluid {
  -webkit-perspective: 1200px;
  -moz-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px;
  opacity: 0.4;
  -webkit-transform: translateY(-25%) rotateX(35deg);
  -ms-transform: translateY(-25%) rotateX(35deg);
  -mosz-transform: translateY(-25%) rotateX(35deg);
  -o-transform: translateY(-25%) rotateX(35deg);
  transform: translateY(-25%) rotateX(35deg);
  -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
  -ms-transition: -ms-transform 0.5s, opacity 0.5s;
  -moz-transition: -moz-transform 0.5s, opacity 0.5s;
  -o-transition: -o-transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s;
}
/* line 1063, src/less/home.less */
body.phone .world .scene-wrapper .scene .layer .content .title {
  font-size: 25px;
}
/* line 1066, src/less/home.less */
.tablet-only {
  display: none;
}
/* line 1070, src/less/home.less */
.playContainer {
  display: none;
}
/* line 1074, src/less/home.less */
#section-wipes {
  display: block;
}
/* line 1078, src/less/home.less */
.eye .content h1.title svg {
  max-width: 640px;
}
/* ============================
    10. Media Queries
============================ */
@media only screen and (max-width: 1024px) {
  @keyframes fadein {
    /* line 1088, src/less/home.less */
    from {
      opacity: 0;
    }
    /* line 1089, src/less/home.less */
    to {
      opacity: 1;
    }
  }
  /* Firefox < 16 */
  @-moz-keyframes fadein {
    /* line 1094, src/less/home.less */
    from {
      opacity: 0;
    }
    /* line 1095, src/less/home.less */
    to {
      opacity: 1;
    }
  }
  /* Safari, Chrome and Opera > 12.1 */
  @-webkit-keyframes fadein {
    /* line 1100, src/less/home.less */
    from {
      opacity: 0;
    }
    /* line 1101, src/less/home.less */
    to {
      opacity: 1;
    }
  }
  /* Internet Explorer */
  @-ms-keyframes fadein {
    /* line 1106, src/less/home.less */
    from {
      opacity: 0;
    }
    /* line 1107, src/less/home.less */
    to {
      opacity: 1;
    }
  }
  /* Opera < 12.1 */
  @-o-keyframes fadein {
    /* line 1112, src/less/home.less */
    from {
      opacity: 0;
    }
    /* line 1113, src/less/home.less */
    to {
      opacity: 1;
    }
  }
  @keyframes fadeout {
    /* line 1117, src/less/home.less */
    from {
      opacity: 1;
    }
    /* line 1118, src/less/home.less */
    to {
      opacity: 0;
    }
  }
  /* Firefox < 16 */
  @-moz-keyframes fadeout {
    /* line 1123, src/less/home.less */
    from {
      opacity: 1;
    }
    /* line 1124, src/less/home.less */
    to {
      opacity: 0;
    }
  }
  /* Safari, Chrome and Opera > 12.1 */
  @-webkit-keyframes fadeout {
    /* line 1129, src/less/home.less */
    from {
      opacity: 1;
    }
    /* line 1130, src/less/home.less */
    to {
      opacity: 0;
    }
  }
  /* Internet Explorer */
  @-ms-keyframes fadeout {
    /* line 1135, src/less/home.less */
    from {
      opacity: 1;
    }
    /* line 1136, src/less/home.less */
    to {
      opacity: 0;
    }
  }
  /* Opera < 12.1 */
  @-o-keyframes fadeout {
    /* line 1141, src/less/home.less */
    from {
      opacity: 1;
    }
    /* line 1142, src/less/home.less */
    to {
      opacity: 0;
    }
  }
  /* line 1147, src/less/home.less */
  body.tablet .scene .playContainer {
    bottom: -80px;
  }
  /* line 1151, src/less/home.less */
  body.tablet #landing-wrapper .scrollContent section#mainlogo #description {
    top: 43%;
  }
  /* line 1155, src/less/home.less */
  body.tablet #mainlogo {
    -webkit-animation: fadein 2s;
    /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s;
    /* Firefox < 16 */
    -ms-animation: fadein 2s;
    /* Internet Explorer */
    -o-animation: fadein 2s;
    /* Opera < 12.1 */
    animation: fadein 2s;
  }
  /* line 1166, src/less/home.less */
  body.tablet .fadeout {
    -webkit-animation: fadeout 2s;
    /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadeout 2s;
    /* Firefox < 16 */
    -ms-animation: fadeout 2s;
    /* Internet Explorer */
    -o-animation: fadeout 2s;
    /* Opera < 12.1 */
    animation: fadeout 2s;
  }
  /* line 1174, src/less/home.less */
  body.tablet .eye .scene,
  body.tablet .scene-wrapper .scene {
    z-index: auto;
  }
  /* line 1178, src/less/home.less */
  body.tablet .playContainer {
    position: absolute;
    bottom: 100px;
    width: 100%;
    text-align: center;
  }
  /* line 1186, src/less/home.less */
  body.tablet a.mouse {
    display: none !important;
  }
  /* line 1190, src/less/home.less */
  body.tablet a.play {
    color: white;
    font-size: 40px;
    font-weight: bold;
    -webkit-transition: width 1s, height 1s, opacity 1s ease-out, -webkit-transform 1s;
    transition: width 1s, height 1s, opacity 1s, transform 1s;
    text-decoration: none;
    outline: none;
  }
  /* line 1201, src/less/home.less */
  body.tablet a.play:active,
  body.tablet a.play:focus {
    -webkit-opacity: 0;
    opacity: 0;
    -webkit-transform: scale(2, 2);
    transform: scale(2, 2);
    text-decoration: none;
  }
  /* line 1210, src/less/home.less */
  body.tablet .tablet-only {
    display: none;
    height: 100%;
    width: 100%;
    position: absolute;
  }
  /* line 1216, src/less/home.less */
  body.tablet .tablet-only .content {
    font-size: 15px;
    display: block;
    overflow: visible;
    overflow-y: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  /* line 1229, src/less/home.less */
  body.tablet .tablet-only h2 {
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 7px;
    margin: 0 auto 30px auto;
  }
  /* line 1236, src/less/home.less */
  body.tablet .tablet-only p {
    margin: 0 auto 30px auto;
    min-width: 540px;
    font-size: 15px;
    margin-bottom: 30px;
  }
  /* line 1244, src/less/home.less */
  body.tablet #section-wipes {
    display: none;
  }
  /* line 1254, src/less/home.less */
  #section-about .container-fluid #sapientNitro {
    width: 375px;
  }
  /* line 1259, src/less/home.less */
  #section-about #partnership {
    margin-top: 56px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 500px) {
  /* line 1267, src/less/home.less */
  a.play {
    display: none;
  }
  /* line 1272, src/less/home.less */
  nav .swiper-slide h4.svartalfheim {
    left: -15px;
  }
  /* line 1275, src/less/home.less */
  nav .swiper-slide h4.muspelheim {
    left: -15px;
  }
  /* line 1278, src/less/home.less */
  nav .swiper-slide h4.jotunheim {
    left: -15px;
  }
  /* line 1281, src/less/home.less */
  nav .swiper-slide h4.vanaheim {
    left: -11px;
  }
  /* line 1284, src/less/home.less */
  nav .swiper-slide h4.nidavellir {
    left: -11px;
  }
  /* line 1290, src/less/home.less */
  #section-about p.intro {
    margin-bottom: 30px;
  }
  /* line 1294, src/less/home.less */
  #section-about .logo-wrap {
    margin-bottom: 20px;
  }
  /* line 1297, src/less/home.less */
  #section-about .logo-wrap .logo {
    width: 240px;
  }
  /* line 1301, src/less/home.less */
  #section-about .container-fluid {
    max-width: 100%;
    padding: 0;
  }
  /* line 1305, src/less/home.less */
  #section-about .container-fluid #sapientNitro {
    width: 225px;
  }
  /* line 1310, src/less/home.less */
  #section-about #partnership {
    margin-top: 26px;
  }
  /* line 1314, src/less/home.less */
  #section-about #imgRune,
  #section-about #imgJmac,
  #section-about #imgSR,
  #section-about #imgAllied {
    margin: 10px 0;
  }
  /* line 1323, src/less/home.less */
  #landing-wrapper .scrollContent section.panels .introduction p {
    min-width: inherit;
  }
  /* line 1328, src/less/home.less */
  #landing-wrapper .scrollContent section.panels .navigation .title {
    font-size: 25px;
  }
  /* line 1332, src/less/home.less */
  #landing-wrapper .scrollContent section.panels .navigation .subtitle {
    margin-top: 50px;
    color: #6d6e71;
  }
  /* line 1346, src/less/home.less */
  .world .scene-wrapper .scene .layer .content svg {
    top: -40px;
    max-width: 20%;
  }
  /* line 1352, src/less/home.less */
  .world .scene-wrapper .scene .layer .content .title {
    margin-top: -45px;
    font-size: 30px;
  }
  /* line 1357, src/less/home.less */
  .world .scene-wrapper .scene .layer .content .subtitle {
    margin: 10px;
  }
  /* line 1362, src/less/home.less */
  .world .scene-wrapper .scene .layer .content p {
    padding: 0 10%;
    margin-top: 35px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 1381, src/less/home.less */
  #landing-wrapper .scrollContent section#mainlogo .badge .logo {
    width: 221px;
  }
  /* line 1396, src/less/home.less */
  #landing-wrapper .scrollContent section#mainlogo #description h2 {
    font-size: 20px;
  }
  /* line 1437, src/less/home.less */
  #landing-wrapper .scrollContent section.panels .navigation .eye .scene .layer:last-child .content .subtitle {
    color: #6d6e71;
  }
  /* line 1453, src/less/home.less */
  #landing-wrapper .scrollContent section.panels #pinContainer .panel > .content {
    height: 80%;
    width: 80%;
  }
  /* line 1469, src/less/home.less */
  nav .swiper-container {
    max-width: 303px;
  }
  /* Overlay style */
  /* line 1477, src/less/home.less */
  #section-about .container-fluid {
    padding: 0 30px 80px;
  }
  /* line 1498, src/less/home.less */
  #section-about .title {
    font-size: 65px;
  }
}
@media only screen and (min-width: 1025px) {
  /* line 1531, src/less/home.less */
  #section-about .container-fluid {
    width: 850px;
    padding: 0;
  }
  /* line 1535, src/less/home.less */
  #section-about .container-fluid #sapientNitro {
    width: 375px;
  }
  /* line 1540, src/less/home.less */
  #section-about #imgRune {
    margin-top: 22px;
    margin-left: 90px;
  }
  /* line 1545, src/less/home.less */
  #section-about #imgJmac {
    margin-top: 10px;
    margin-left: 180px;
  }
  /* line 1550, src/less/home.less */
  #section-about #imgSR {
    margin-top: 13px;
    margin-left: 80px;
  }
  /* line 1555, src/less/home.less */
  #section-about #imgAllied {
    margin-left: -90px;
  }
}
