/* Google Fonts */
@import url('http://fonts.googleapis.com/css?family=Montserrat:400,700|Lora:400,400i,700,700i|Open+Sans:400,600,700');
/*
* http://meyerweb.com/eric/tools/css/reset/ 
* v2.0 | 20110126
* License: none (public domain)
*/
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 {
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  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-spacing: 0;
  border-collapse: collapse;
}

/* ------------------------------------- */
/* Generic styles ...................... */
/* ------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  font-family: 'Open Sans', 'Helvetica Neue', 'Lucida Grande', Arial, Verdana, sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
  position: absolute;
  height: 100%;
  letter-spacing: 0;
  color: #ffffff;
  background: #191c27;
  transition: all 0.6s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
html {
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
a:hover {
  text-decoration: none !important;
  color: #ee2c52;
  outline: none !important;
}
a:active,
a:focus {
  text-decoration: none !important;
  color: #ffffff;
  outline: none !important;
}

button {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
button:hover,
button:active,
button:focus {
  text-decoration: none !important;
  color: #ffffff;
  outline: none !important;
}

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
  color: #ffffff;
}

img {
  transition: all 0.2s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Montserrat, 'Helvetica Neue', 'Lucida Grande', Arial, Verdana, sans-serif;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 1.5rem 0;
  color: #ffffff;
}

h1 {
  font-size: 8rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.2;
}

h2 {
  font-size: 7rem;
  font-weight: 700;
}
h2.home-h2 {
  font-family: Montserrat, 'Helvetica Neue', 'Lucida Grande', Arial, Verdana, sans-serif;
  font-size: 2rem;
  font-style: italic;
  display: block;
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
}

@keyframes shine {
  0% {
    transform: translateX(-100px) skewX(-15deg);
  }
  10%,
  100% {
    transform: translateX(300px) skewX(-15deg);
  }
}

/* ------------------------------------- */
/* Text rotator ........................ */
/* ------------------------------------- */
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: center;
  width: 100% !important;
}
.cd-words-wrapper b {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}
.cd-words-wrapper b.is-visible {
  position: relative;
}
.no-js .cd-words-wrapper b {
  opacity: 0;
}
.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

.cd-headline.zoom .cd-words-wrapper {
  perspective: 300px;
}
.cd-headline.zoom .cd-words-wrapper span.highlight {
  color: #ee2c52;
}

.cd-headline.zoom b {
  opacity: 0;
  font-weight: 600;
}
.cd-headline.zoom b.is-visible {
  opacity: 1;
  animation: zoom-in 0.8s;
}
.cd-headline.zoom b.is-hidden {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  animation: zoom-out 0.8s;
}

@keyframes zoom-in {
  0% {
    opacity: 0;
    transform: translateZ(100px);
  }
  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}

@keyframes zoom-out {
  0% {
    opacity: 1;
    transform: translateZ(0) translateX(-50%);
  }
  100% {
    opacity: 0;
    transform: translateZ(-100px) translateX(-50%);
  }
}

/* ------------------------------------- */
/* FULLPAGE CORE ....................... */
/* ------------------------------------- */
#fullpage {
  left: 0;
  width: 100vw;
  transition: all 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-content: center;
}

.full-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.full-overlay.on-canvas {
  background: rgba(0, 0, 0, 0.2);
}
.full-overlay.darky {
  background: rgba(0, 0, 0, 0.8);
}
.full-overlay.darky.on-canvas {
  background: rgba(0, 0, 0, 0.6);
}

.fp-section {
  top: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  left: 0;
  visibility: hidden;
  height: 0;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.fp-section .inside-content {
  transform: translateY(0) scale(0.8);
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
}
.fp-section.active {
  visibility: visible;
  opacity: 1;
}
.fp-section.active .inside-content {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.fp-section.color-1 {
  background: #263248 !important;
}
.fp-section.color-2 {
  background: #efc94c !important;
}
.fp-section.color-3 {
  background: #ee2c52 !important;
}

.inside-section {
  position: relative;
  display: table;
  width: 100%;
  height: calc(100% - 200px);
  border-radius: 0;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ------------------------------------- */
/* MAIN CONTENT ........................ */
/* ------------------------------------- */
.brand-logo {
  position: relative;
  max-width: 30rem;
  filter: brightness(0) invert(1);
  margin-bottom: 7rem;
}

.inside-content {
  position: relative;
  z-index: 10;
  left: 0;
  visibility: visible;
  padding: 0 100px;
  text-align: center;
}
.inside-content.double-col {
  text-align: left;
}
.inside-content .text {
  max-width: 60rem;
  margin: 2rem auto;
  position: relative;
}
.inside-content .text li {
  font-weight: 700;
}
.inside-content .text li .fa {
  color: #ee2c52;
}

/* ------------------------------------- */
/* CANVAS .............................. */
/* ------------------------------------- */
#bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#bg canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ------------------------------------- */
/* STAR WARS .......................... */
/* ------------------------------------- */
#starfield {
  position: fixed !important;
}

/* ------------------------------------- */
/* Media Queries ....................... */
/* ------------------------------------- */
/* Large Devices, Wide Screens @media only screen and (max-width: 1600px) */
@media only screen and (max-width: 1600px) {
  /* EMPTY */
}

/* Notebook devices @media only screen and (max-width: 1280px) */
@media only screen and (max-width: 1280px) {
  h1 {
    font-size: 7rem;
  }
  h2 {
    font-size: 5rem;
  }
  #subscribe #notifyMe .form-group .form-control {
    float: none;
    margin-bottom: 1.5rem;
  }
  #subscribe #notifyMe .form-group button.submit {
    float: none;
    margin-left: 0;
  }
  .spam-news {
    bottom: -3rem;
  }
}

/* Medium Devices, Desktops @media only screen and (max-width: 991px) */
@media only screen and (max-width: 991px) {
  h1 {
    font-size: 6rem;
  }
  .fp-section {
    min-height: 100vh !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .fp-section {
    position: relative;
    opacity: 1 !important;
    top: auto;
    visibility: visible !important;
  }
  .fp-section .inside-content {
    transform: scale(1) translateY(0) !important;
    opacity: 1 !important;
  }
  .fp-section:not(#section0) {
    min-height: 0 !important;
    height: auto !important;
    background: #191c27;
  }
  .fp-section:not(#section0) .fp-tableCell {
    height: auto !important;
    padding-top: 10rem;
    padding-bottom: 10rem;
    display: inherit;
    vertical-align: inherit;
  }
  .fp-section:not(#section0) .inside-content {
    text-align: left;
  }
  #contact-form {
    margin: 3rem 0 0;
  }
  #slideshow,
  #image {
    position: absolute !important;
  }
  .full-overlay {
    max-height: 50%;
  }
  #fp-nav {
    position: fixed;
  }
  .block-message,
  #block-answer {
    position: fixed;
    right: -100vw;
  }
  .spam-news {
    position: relative;
    bottom: auto;
  }
  #player-nav {
    position: absolute;
  }
}

/* Small Devices, Tablets @media only screen and (max-width: 768px) */
@media only screen and (max-width: 768px) {
  .inside-content {
    padding: 0 5rem;
  }
  .inside-content .text {
    margin: 2rem 0 4rem;
  }
  #fp-nav {
    display: none;
  }
  .fp-section:not(#section0) .inside-content {
    width: 100%;
  }
  #fp-nav {
    position: fixed;
    top: 3rem;
    transform: translateY(0);
  }
  .cd-headline.zoom b {
    white-space: inherit;
  }
  @keyframes zoom-out {
    0% {
      display: none;
    }
  }
}

/* Extra Small Devices, Phones @media only screen and (max-width: 480px) */
@media only screen and (max-width: 480px) {
  h1 {
    font-size: 4rem;
    margin-top: 1rem;
  }
  h2 {
    font-size: 4rem;
  }
  h2.home-h2 {
    font-size: 1.6rem;
  }
  .copyright {
    position: relative;
    z-index: 60;
    right: auto;
    bottom: auto;
    text-align: center;
    margin: 2rem 0;
  }
  .social-nav {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    text-align: center;
  }
  .social-nav ul {
    display: inline-block;
  }
  #player-nav {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
  }
  #player-nav ul {
    display: inline-block;
  }
  .block-message,
  #block-answer {
    right: 0;
    width: 100%;
    border-radius: 0;
    top: -50vh;
  }
  .block-message.show-block-error,
  #block-answer.show-block-error {
    right: 0;
    top: 0;
  }
  .block-message.show-block-valid,
  #block-answer.show-block-valid {
    right: 0;
    top: 0;
  }
  p.notify-valid {
    font-size: 1.4rem;
  }
  .form-control {
    font-size: 1.2rem;
  }
  .fp-section:not(#section0) .fp-tableCell {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .inside-content {
    padding: 0 3rem;
  }
  #subscribe #notifyMe .form-group .form-control {
    text-align: center;
    max-width: none;
  }
  #subscribe #notifyMe .form-group button.submit {
    width: 100%;
  }
  #contact-form {
    margin-top: 2rem;
    margin-bottom: 3rem;
  }
  #contact-form .ios {
    float: none;
    margin: 1rem auto;
  }
  #contact-form label.check-news {
    margin-top: 0;
    width: 100%;
    text-align: center;
  }
  #contact-form button#valid-form {
    width: 100%;
    margin-top: 1.5rem;
  }
}

/* Only for tablet in landscape mode @media only screen and (max-device-width: 1024px) and (orientation: landscape) */
@media only screen and (max-device-width: 1024px) and (orientation: landscape) {
  /* EMPTY */
}

/* Only for phone in landscape mode @media screen and (max-device-width: 667px) and (orientation: landscape) */
@media screen and (max-device-width: 667px) and (orientation: landscape) {
  #section0 .inside-section {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
  #slideshow,
  #image {
    position: fixed !important;
    top: 0;
  }
}
