html {
  -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
}

html,
body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  padding: 0;
  margin: 0;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  color: #5a5a5a;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.2em;
  height: -webkit-fill-available;
}

.viewport {
  height: 100vh;
  position: absolute;
  width: 50px !important;
  background: pink;
  z-index: 1000;
  z-index: 500;
  box-sizing: border-box;
  display: none;
}
.viewport::after {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: green;
}

.main-container {
  max-width: 1200px;
  padding: 20px;
  margin: 0 auto;
}

#furioos_container {
  height: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  top: 0;
  left: 0;
  position: fixed;
  overflow: hidden;
  background: #fff;
}
#furioos_container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: none;
}

.button_location {
  background: #000;
  color: #fff;
}

aside {
  pointer-events: default;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
}
aside nav {
  width: 100%;
}
aside nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: stretch;
  width: 100%;
  gap: 2px;
}
aside nav ul li {
  font-size: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: linear-gradient(rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.8) 100%);
  list-style: none;
  padding: 0;
  margin: 0;
  padding: 1em 0;
  width: 25%;
  font-size: 3vw;
  text-align: center;
  color: #711e82;
  transition: all 0.2s ease;
  cursor: pointer;
  z-index: 3;
  position: relative;
}
@media (max-width: 767px) {
  aside nav ul li {
    font-size: 5vw;
  }
}
@media (min-width: 992px) {
  aside nav ul li {
    font-size: 30px;
  }
}
aside nav ul li.active, body:not(.touch) aside nav ul li:hover {
  background: linear-gradient(white 0%, white 100%);
  z-index: 5;
}

.bubble {
  position: absolute;
  left: 0;
  bottom: 20px;
  display: block;
  width: 100vw;
  z-index: 105;
  display: block;
  transition: all 0.5s ease;
  pointer-events: none;
  opacity: 0;
}
.bubble.active {
  opacity: 1;
}
.bubble.progress {
  bottom: 50px;
}
.bubble.progress.cta {
  bottom: 120px;
}
.bubble .content {
  padding: 20px;
  background: #fff;
  color: #333;
  margin: 0 20px;
  border: 1px solid #dfdfdf;
  font-weight: bold;
  line-height: 1.3em;
}

section.furioos {
  width: 100%;
  height: calc(100vh - 44px);
  position: relative;
  margin: -1px 0 0;
}

.icon {
  width: 1em;
  height: 1em;
}
.icon svg {
  width: 1em;
  height: 1em;
}
.icon svg,
.icon svg path,
.icon svg line {
  fill: currentColor;
}

.btns {
  display: flex;
  margin: 30px 0;
}

.btn {
  display: block;
  height: 47px;
  width: 100%;
  background: #dfdfdf;
  color: #5a5a5a;
  font-size: 20px;
  font-weight: bold;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn.active {
  background: #00b482;
  color: #fff;
}
.btn.btn-submit {
  background: #711e82;
  color: #fff;
}

.title {
  font-family: Arial, Helvetica, sans-serif;
  color: #00b482;
  font-size: 30px;
  font-weight: 200;
  line-height: 1.1em;
}

.subtitle {
  font-family: Arial, Helvetica, sans-serif;
  color: #711e82;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.1em;
}

.intro-1,
.intro-2,
.intro-3,
.reanimate {
  width: 100vw;
  height: 100%;
  z-index: 150;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  background-size: cover;
  background-position: left center;
  overflow: hidden;
}
.intro-1 .logo,
.intro-2 .logo,
.intro-3 .logo,
.reanimate .logo {
  padding: 20px 0 15px 20px;
  height: 35px;
  width: 100%;
  background: #fff;
  position: relative;
  z-index: 2;
}
.intro-1 .logo img,
.intro-2 .logo img,
.intro-3 .logo img,
.reanimate .logo img {
  width: 115px;
  height: auto;
  display: block;
  margin: 0;
}
.intro-1 .border-left,
.intro-2 .border-left,
.intro-3 .border-left,
.reanimate .border-left {
  width: 40px;
  background: #00b482;
  height: 70vh;
  position: absolute;
  left: 0;
  top: 0;
}
.intro-1 .footer,
.intro-2 .footer,
.intro-3 .footer,
.reanimate .footer {
  background: rgba(255, 255, 255, 0.8);
  left: 40px;
  top: 70%;
  position: fixed;
  height: 30%;
  width: calc(100vw - 40px);
}
.intro-1 .footer .padding,
.intro-2 .footer .padding,
.intro-3 .footer .padding,
.reanimate .footer .padding {
  padding: 20px;
}
.intro-1 .footer .progress-bar,
.intro-2 .footer .progress-bar,
.intro-3 .footer .progress-bar,
.reanimate .footer .progress-bar {
  width: calc(100% - 80px);
  position: absolute;
  bottom: 58px;
}
.intro-1 .bg,
.intro-1 .video,
.intro-2 .bg,
.intro-2 .video,
.intro-3 .bg,
.intro-3 .video,
.reanimate .bg,
.reanimate .video {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 0;
}
.intro-1 .bg img,
.intro-1 .bg video,
.intro-1 .video img,
.intro-1 .video video,
.intro-2 .bg img,
.intro-2 .bg video,
.intro-2 .video img,
.intro-2 .video video,
.intro-3 .bg img,
.intro-3 .bg video,
.intro-3 .video img,
.intro-3 .video video,
.reanimate .bg img,
.reanimate .bg video,
.reanimate .video img,
.reanimate .video video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.intro-1 .video,
.intro-2 .video,
.intro-3 .video,
.reanimate .video {
  z-index: 1;
}
.intro-1 .content,
.intro-2 .content,
.intro-3 .content,
.reanimate .content {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2;
}
.intro-1 .btn-submit,
.intro-2 .btn-submit,
.intro-3 .btn-submit,
.reanimate .btn-submit {
  position: absolute;
  bottom: 20px;
  width: calc(100% - 40px);
}

.intro-1 {
  z-index: 400;
}

.intro-2 .bg,
.intro-3 .bg,
.reanimate .bg {
  opacity: 0.2;
}
.intro-2 .bg img,
.intro-3 .bg img,
.reanimate .bg img {
  filter: blur(10px);
}
.intro-2 .content .padding,
.intro-3 .content .padding,
.reanimate .content .padding {
  padding: 20px;
}
.intro-2 .content .title,
.intro-3 .content .title,
.reanimate .content .title {
  text-transform: none;
  margin: 2em 0 0;
}

.intro-2 .content {
  max-width: 480px;
  position: relative;
  margin: 0 auto;
}
.intro-2 .btn-submit {
  max-width: 480px;
}

.intro-3 .progress-bar {
  width: calc(100% - 100px);
  position: absolute;
  bottom: 40px;
  left: 50px;
}

.furioos {
  position: relative;
}
.furioos .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 100;
  cursor: pointer;
  background-position: center;
  background-size: cover;
}
.furioos .overlay::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  top: 0;
  left: 0;
}
.furioos .overlay .center {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.furioos .overlay .center .text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}
.furioos .overlay .center .text h2 {
  margin: 0 0 0.25em;
  padding: 0;
  font-size: 28px;
  line-height: 1em;
  font-weight: 200;
}
.furioos .overlay .center .text p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 200;
}
.furioos .overlay .center .play {
  margin: 0.5em 0 0;
}
.furioos .overlay .center button {
  display: block;
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 100%;
  padding: 0.75em;
  font-size: 3em;
  color: #fff;
  transition: all 0.25s ease;
  z-index: 2;
  cursor: pointer;
}
.furioos .overlay .center button .icon {
  transform: translateX(0.075em);
}
body:not(.touch) .furioos .overlay .center button:hover {
  border-color: #fff;
  transform: scale(1.1);
}

@-webkit-keyframes tick_tock {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(359.9deg);
  }
}

@keyframes tick_tock {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(359.9deg);
  }
}
.loading {
  font-size: 3em;
  content: "";
  margin: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  border: 0.05em solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  border-top: 0.05em solid white;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation: tick_tock 1s linear infinite;
          animation: tick_tock 1s linear infinite;
  transform: translate(-50%, -50%);
  z-index: 15;
}

.ratio {
  position: absolute;
  top: 1em;
  left: 1em;
  z-index: 300;
  display: none;
}

.btn-header {
  cursor: pointer;
  background: none;
  padding: 0;
  border: none;
  background: none;
  color: #fff;
  height: 48px;
  width: 48px;
  background: #711e82;
  padding: 0;
}
.btn-header svg {
  width: 20px;
  height: 15px;
  fill: #fff;
}

nav.menu {
  height: 100vh;
  width: 100vw;
  max-width: 480px;
  position: absolute;
  z-index: 1000;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.2);
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
  overflow: auto;
  position: relative;
}
nav.menu.active {
  opacity: 1;
  pointer-events: all;
}
nav.menu .btn-header {
  right: 0;
  top: 0;
  position: absolute;
}
nav.menu .padding {
  padding: 150px 50px 0;
}
nav.menu .padding ul {
  padding: 0;
  margin: 0 0 40px;
}
nav.menu .padding ul li {
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 2px solid #dfdfdf;
}
nav.menu .padding ul li a {
  font-size: 20px !important;
  display: block;
  font-weight: 900;
  color: #00b482;
  padding: 10px 20px;
  text-decoration: none;
}
body:not(.touch) nav.menu .padding ul li a:hover:not(.muted), nav.menu .padding ul li a.active {
  color: #711e82;
}
nav.menu .padding ul li a.muted {
  color: #999;
  cursor: not-allowed;
}

header {
  position: absolute;
  z-index: 150;
  background: #00b482;
  color: #fff;
  height: 48px;
  width: 100vw;
  display: flex;
  align-content: center;
  align-items: center;
  display: flex;
}
header .title {
  font-family: Arial, Helvetica, sans-serif;
  color: #5a5a5a;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.2em;
  color: #fff;
  text-align: center;
  width: 100%;
  text-transform: none;
  font-weight: bold;
}

.modal-container {
  height: 100vh;
  width: 100vw;
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  z-index: 600;
  left: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
}
.modal-container.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  position: absolute;
  left: 50%;
  top: 50%;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  transform: translate(-50%, -50%);
  height: auto;
  width: 90vw;
  max-height: 100%;
  overflow: auto;
}
.modal .close {
  top: 0;
  right: 0;
  position: absolute;
  background: none;
  border: none;
  padding: 0.5em;
  font-size: 1.25em;
  cursor: pointer;
  color: #000;
}
.modal .modal-body {
  padding: 2.5em 1.5em 1.5em;
}
.modal .modal-body h2 {
  margin: 0 0 0.5em;
  padding: 0;
  font-weight: normal;
  color: inherit;
  line-height: 1em;
}
.modal .modal-body p {
  margin: 0 0 0.5em;
}
.modal .modal-body *:last-child {
  margin-bottom: 0;
}

.responsive-16-9 {
  margin: 2em 0;
  width: 100%;
  height: 0;
  padding: 0 0 56.25%;
  position: relative;
}
.responsive-16-9 iframe {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.step-check {
  z-index: 600;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.25);
  padding: 0.5em;
  background: #00b482;
  color: #fff;
  border-radius: 10em;
  font-size: 60px;
  pointer-events: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
  opacity: 0;
}
.step-check svg {
  fill: #fff;
  width: 1em;
  height: 1em;
}
.step-check.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.step-progress {
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 100%;
  z-index: 600;
  pointer-events: none;
}
.step-progress .padding {
  padding: 0 20px;
  display: flex;
  gap: 5px;
  justify-content: stretch;
}
.step-progress .padding button {
  display: block;
  background: #dfdfdf;
  border: none;
  height: 10px;
  width: 100%;
  transition: all 0.25s ease;
}
.step-progress .padding button.done {
  background: #711e82;
}

.step-cta {
  position: fixed;
  bottom: 50px;
  left: 0;
  width: 100%;
  z-index: 500;
}
.step-cta .padding {
  padding: 0 20px;
}

.cursor {
  height: 100%;
  width: 100%;
  background: rgba(255, 0, 0, 0.2);
  background: rgba(255, 0, 0, 0.2);
  position: absolute;
  z-index: 1;
  cursor: default;
  pointer-events: none;
  display: none;
}

#cursor {
  position: absolute;
  z-index: 10000;
  color: #000;
  font-size: 24px;
  pointer-events: none;
  display: inline-block;
}

.progress-bar {
  display: block;
  width: 100%;
  height: auto;
  transition: all 0.25s ease;
  background: #dfdfdf;
  z-index: 2;
  position: relative;
}
.progress-bar .progress {
  height: 10px;
  display: block;
  width: 50%;
  background: #711e82;
  -webkit-animation: fake 40s ease-out 1 forwards;
          animation: fake 40s ease-out 1 forwards;
}

.obsolete {
  display: none !important;
}

@-webkit-keyframes fake {
  0% {
    width: 5%;
  }
  100% {
    width: 100%;
    width: 100%;
  }
}

@keyframes fake {
  0% {
    width: 5%;
  }
  100% {
    width: 100%;
    width: 100%;
  }
}/*# sourceMappingURL=main.css.map */