/* css reset */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body,
html {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

main {
  display: flex;
  flex-direction: column;
}

body {
  background-color: rgb(0, 0, 0);
  font-family: "Luckiest Guy", cursive;
}

#logo {
  padding: 20px;
  z-index: 10;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(63, 63, 63, 0.15);
  width: 100%;
}

#logo img {
  width: 100%;
  max-width: 420px;
  height: auto;
}

h2 {
  font-size: 2.2vw;
  text-align: center;
  margin-bottom: 10px;
}

#questions {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.question {
  width: 100%;

  left: 0;
  top: 0;
  position: absolute;
  height: 100vh;
  transition: all 0.3s;
}

.questionInfo {
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  flex-direction: column;
  transition: all 0.3s;
  z-index: 2;
}

.questionInfo-alt {
  position: absolute;
  top: 12%;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  flex-direction: column;
  transition: all 0.3s;
  z-index: 2;
}

.questionInfo h3,
.message {
  margin-bottom: 30px;
  letter-spacing: 2px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.55);
  font-size: 1.8em;
  color: white;
}

.questionInfo h3 span,
.message span {
  color: rgb(131, 220, 255);
}

.btnWrap {
  margin-bottom: 50px;
  display: flex;
  justify-content: space-around;
  width: 100%;
  align-items: center;
}

.questionInfo a, .questionInfo a:active {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  margin: 0 10px;
  font-size: 24px;
  padding: 20px 20px;
  background-image: -moz-linear-gradient(
    90deg,
    rgb(4, 127, 209) 0%,
    rgb(94, 204, 255) 100%
  );
  background-image: -webkit-linear-gradient(
    90deg,
    rgb(4, 127, 209) 0%,
    rgb(94, 204, 255) 100%
  );
  background-image: -ms-linear-gradient(
    90deg,
    rgb(4, 127, 209) 0%,
    rgb(94, 204, 255) 100%
  );
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.35),
    inset 0px -1px 0px 0px rgb(233, 233, 233, 0.3);
  width: 204px;
  transition: all 0.3s;
  /* margin-top: -100px;
         display: block;
         visibility: hidden;
         opacity: 0;*/
  z-index: 2;
  border-radius: 40px;
  display: block;
  text-align: center;

  color: white;
  text-decoration: none;
  transform: scale(1);
  width: calc(50% - 20px);
}

.questionInfo a.negative {
  background-color: #808080;
  color: #cccccc;
  background-image: none;
}

.questionInfo a:hover {
  transform: scale(1.1);
  color: #fff;
}


.videoContainer {
  position: absolute;
  width: 100%;
  height: 100%;
}

.videoContainer {
  position: relative;
}

video {
  height: 100vh;
  width: 100%;
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 1;
}

#loadBar {
  background: rgba(255, 255, 255, 0.3);
  width: 80%;
  margin: 0 auto;
  height: 30px;
}

#loadInner {
  width: 0px;
  height: 100%;

  background-image: -moz-linear-gradient(
    90deg,
    rgb(4, 127, 209) 0%,
    rgb(94, 204, 255) 100%
  );
  background-image: -webkit-linear-gradient(
    90deg,
    rgb(4, 127, 209) 0%,
    rgb(94, 204, 255) 100%
  );
  background-image: -ms-linear-gradient(
    90deg,
    rgb(4, 127, 209) 0%,
    rgb(94, 204, 255) 100%
  );

  -webkit-animation: progress 12s linear 1 forwards;
  -moz-animation: progress 12s 1 linear forwards;
  -ms-animation: progress 12s 1 linear forwards;
  animation: progress 12s 1 linear forwards;
}

#q6 .btnWrap {
  margin-top: 20px;
  opacity: 0;
  transition: all 0.8s;
  /* -webkit-animation: opa 6s 1 forwards;
   -moz-animation: opa 6s 1 forwards;
   -ms-animation: opa 6s 1 forwards;
   animation: opa 6s 1 forwards;*/
}
.message {
  opacity: 0;
  transition: all 0.5s;
  margin-bottom: 10px;
  font-size: 1.5em;
}
.opacity {
  opacity: 1 !important;
}
#q2,
#q3,
#q4,
#q5,
#q6,
#q7,
#q8,
#q9,
#q10,
#q11,
#q12,
#name-fail,
#email-fail {
  display: none;
}

.questionInfo input {
  font-size: 20px;
  margin-bottom: 20px;
  border-radius: 40px;
  border: 2px solid #000;
  padding: 10px;
  text-align: center;
}

.error {
  color: rgb(255, 255, 0);
  text-align: center;
  padding-bottom: 10px;
}

.questionInfo .btn-alt {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  margin: 0 10px;
  font-size: 24px;
  padding: 20px 20px;
  background-image: -moz-linear-gradient(
    90deg,
    rgb(4, 127, 209) 0%,
    rgb(94, 204, 255) 100%
  );
  background-image: -webkit-linear-gradient(
    90deg,
    rgb(4, 127, 209) 0%,
    rgb(94, 204, 255) 100%
  );
  background-image: -ms-linear-gradient(
    90deg,
    rgb(4, 127, 209) 0%,
    rgb(94, 204, 255) 100%
  );
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.35),
    inset 0px -1px 0px 0px rgb(233, 233, 233, 0.3);
  width: 280px;
  transition: all 0.3s;
  /* margin-top: -100px;
         display: block;
         visibility: hidden;
         opacity: 0;*/
  z-index: 2;
  border-radius: 40px;
  display: block;
  text-align: center;

  color: white;
  text-decoration: none;
  transform: scale(1);
  cursor: pointer;
}

.questionInfo .btn-alt:hover {
  transform: scale(1.1);
}

#finalIframe {
  min-height: 500px;
}


/* FAQ */
#faq {
	cursor: pointer;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.3s;
  z-index: 3;
  color: #d5caca;
  font-size: 10pt;
}

.faq-container {
  position: fixed;
  z-index: 69;
  width: 100%;
  height: 0;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.93);
  opacity: 0;
  overflow: auto;
  transition: all 1s;
}

.faq-container.open {
  height: 100%;
  top: 0;
  opacity: 1;
}

.panel {
	background-color: transparent !important;
}

.panel-heading .accordion-toggle:after {
  font-family: 'Glyphicons Halflings';
  content: "\e113";
  color: grey;
  position: absolute;
  right: 5px;
}

.panel-heading .accordion-toggle.collapsed:after {
  content: "\e114";
}

.panel-default>.panel-heading {
    color: #333;
    background-color: transparent !important;
    border-color: transparent !important;
}


.panel {
  background-color: transparent;
}

.panel-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #fff !important;
}

.panel-body {
  font-size: 1.2em;
  color: #c2c2c2;
  padding: 1em 1em 1em 0;
}

.panel-default {
  border: none !important;
}

.panel-default>.panel-heading {
  color: #fff;
  background-color: transparent;
  border: none;
  padding: 1em 2em 1em 0;
}

.panel-default>.panel-heading+.panel-collapse>.panel-body {
  border: none;
}

.faq-container .container {
  padding: 10px 0;
  max-width: 800px;
  width: 95%;
  position: relative;
}

.faq-container a:focus, .faq-container a:hover {
  text-decoration: none;
}

.close-faq {
  position: absolute;
  right: 40px;
  top: 10px;
  cursor: pointer;
  max-width: 2em;
}

.faq-title {
  font-size: 2.5em;
  text-align: center;
  margin: 1em 0;
  color: #fff !important;
}

.open-faq {
  cursor: pointer;
  text-decoration: underline;
}

.faq-question {
  text-shadow: 0px 0px 20px #000;
}


@media (orientation: landscape) and (hover: none) and (pointer: coarse) {
  .message {
    font-size: 1em !important;
  }
  #logo {
    display: none;
  }
}
@media screen and (max-width: 720px) {
  #questions {
    flex-direction: column;
    justify-content: center;
  }

  .question {
    width: 100%;
    flex-grow: 1;
  }
  .questionInfo {
    bottom: 100px;
  }

  .questionInfo h3,
  .message {
    font-size: 1.1em;
  }

  .btnWrap {
    margin-bottom: 20px;
  }

  .questionInfo a {
    padding: 10px 20px !important;
  }
}

@-webkit-keyframes progress {
  from {
  }

  to {
    width: 100%;
  }
}

@keyframes progress {
  from {
  }

  to {
    width: 100%;
  }
}

@-webkit-keyframes opa {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes opa {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.spinner {
	display: inline-block;
	opacity: 0;
	max-width: 0;
	-webkit-transition: opacity 0.25s, max-width 0.45s;
	-moz-transition: opacity 0.25s, max-width 0.45s;
	-o-transition: opacity 0.25s, max-width 0.45s;
	transition: opacity 0.25s, max-width 0.45s;
}

.has-spinner.active {
	cursor: progress;
}

.has-spinner.active .spinner {
	opacity: 1;
	max-width: 50px;
	margin-right: 10px;
}
