@charset "UTF-8";
/* Media Queries
--------------------------------------------------------- */
/* HOVER
---------------------------------------------------------------------------------------------------- */
/* RESET
---------------------------------------------------------------------------------------------------- */

@font-face {
    font-family: 'American Typewriter';
    src: url('../fonts/American Typewriter Normal.ttf') format('ttf'),
    src: url('../fonts/American Typewriter Normal.woff') format('woff'),
    src: url('../fonts/American Typewriter Normal.woff2') format('woff2'),
    src: url('../fonts/American Typewriter Normal.eot') format('eot');
    font-weight: normal;
    font-style: normal;

}

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 {
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  font-size: 100%;
  background: transparent;
  border: 0;
  outline: 0;
}

html {
  font-size: 62.5%; }

body {
  line-height: 1; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block; }

ul,
ol {
  list-style: none; }

blockquote,
q {
  quotes: none; }

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: '';
  content: none; }

a,
input,
button,
select,
textarea {
  appearance: none;
  text-decoration: none;
  outline: none; }

a {
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  font-size: 100%;
  color: inherit;
  background: transparent;
  outline: none; }

button {
  padding: 0;
  cursor: pointer; }

ins {
  text-decoration: none;
  color: #000;
  background-color: #ff9; }

mark {
  font-style: italic;
  font-weight: 700;
  color: #000;
  background-color: #ff9; }

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;
  padding: 0;
  border: none; }

input,
select {
  vertical-align: middle; }

*,
*::after,
*::before {
  box-sizing: border-box; }

:root {
  --color-text1: #ffffff;
  --color-text2: #ffffff;
  --color-text3: #ffffff;
  --color-text4: #ffffff;
  --color-text5: #ffffff;
  --color-bg1: rgba(244,111,111,.35);
  --color-bg2: rgba(244,111,111,.35);
  --color-bg3: rgba(244,111,111,.35);
  --color-bg4: rgba(244,111,111,.35);
  --color-bg5: rgba(244,111,111,.35);
  --color-text: var(--color-text1);
  --color-bg: var(--color-bg1);
  --color-link: var(--color-text);
  --color-link-hover: #fff;
  font-size: 62.5%; }

body {
  margin: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: var(--color-text);
  background: url(img/bg_paranormal.jpg);
  transition: background-color .5s;
  background-size: cover; }

/* Page Loader */
.js .loading::before,
.js .loading::after {
  content: '';
  position: fixed;
  z-index: 1000; }

.js .loading::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg); }

.js .loading::after {
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  border-radius: 50%;
  opacity: 0.4;
  background: var(--color-link);
  animation: loaderAnim 0.7s linear infinite alternate forwards; }

@keyframes loaderAnim {
  to {
    opacity: 1;
    transform: scale3d(0.5, 0.5, 1); } }

a {
  text-decoration: none;
  color: var(--color-link);
  outline: none;
  transition: color .3s; }

@media (hover: hover) and (pointer: fine) {
  a:hover,
  a:focus {
    color: var(--color-link-hover);
    outline: none; } }

.message {
  background: var(--color-text);
  color: var(--color-bg);
  padding: 1rem;
  text-align: center; }

.frame {
  padding: 3rem 5vw 1rem;
  text-align: center;
  position: relative;
  z-index: 1000; }
  @media only screen and (max-width: 1111px) {
    .frame {
      display: flex;
      justify-content: space-between;
      align-items: center; } }
  @media only screen and (max-width: 767px) {
    .frame {
      flex-direction: column;
      align-items: flex-start; } }

.frame__title {
  font-size: 1rem;
  margin: 0 0 1rem;
  font-weight: normal; }

.frame__links {
  display: flex; }
  @media only screen and (max-width: 767px) {
    .frame__links {
      justify-content: center;
      text-decoration: underline; } }

.frame__links a:not(:last-child) {
  margin-right: 2rem; }

.frame__demos a:not(:last-child) {
  margin-right: 1rem; }

.frame__demos {
  margin: 1rem 0; }
  @media only screen and (max-width: 767px) {
    .frame__demos {
      order: 0;
      margin: -4rem 0 0rem;
      text-align: right;
      width: 100%; } }

.frame__demo {
  color: rgba(255, 255, 255, 0.3);
  transition: color .3s; }
  .frame__demo:not(:last-child)::after {
    content: 'â€”'; }
  .frame__demo--current, .frame__demo:hover {
    color: #fff; }

.content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
  height: calc(100vh - 20rem); }

@media screen and (min-width: 53em) {
  .message {
    display: none; }
  .frame {
    position: fixed;
    text-align: left;
    z-index: 100;
    top: 0;
    left: 0;
    display: grid;
    align-content: space-between;
    width: 100%;
    max-width: none;
    padding: 3rem;
    pointer-events: none;
    grid-template-columns: 0% 100% 0%;
    grid-template-rows: auto auto auto;
    grid-template-areas: 'title demos links' '. . .' '. . .'; }
  .frame__title-wrap {
    grid-area: title;
    display: flex; }
  .frame__title {
    margin: 0; }
  .frame__tagline {
    position: relative;
    margin: 0 0 0 1rem;
    padding: 0 0 0 1rem;
    opacity: 0.5; }
  .frame__demos {
    margin: 0;
    grid-area: demos;
    justify-self: right; }
  .frame__links {
    padding: 0;
    grid-column: -1 / 1;
    grid-area: demos; }
    .frame__links a:first-child {
      margin-right: auto; }
  .frame a {
    pointer-events: auto; }
  .content {
    height: 100vh;
    justify-content: center; } }

/* MAIN
--------------------------------------------------------- */
body {
  font-family: 'American Typewriter', serif;
  font-size: 1.4rem;
  font-weight: 400; }

#scene {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100vh;
  pointer-events: none; }

.scroll-content, .detail-view__inner {
  display: block;
  width: 100%;
  height: 100%;
  padding: 9rem 5vw 0;
  color: #fff; }
  @media only screen and (max-width: 767px) {
    .scroll-content, .detail-view__inner {
      padding-top: 12rem; } }
  @media screen and (min-width: 768px) and (max-width: 1112px) {
    .scroll-content, .detail-view__inner {
      padding-top: 12rem; }
      .scrollarea {padding-top: 4rem;}
      .slideshow__progress-ctn {bottom: 0;} }

.scrollarea {
  height: 100%; }

.scrollarea-ctn {
  position: relative;
  z-index: 5; }

.page-title {
  position: fixed;
  top: 14rem;
  left: 0vw;
  z-index: -1;
  white-space: nowrap;
  font-size: calc(4vw + 8rem);
  line-height: .975;
  color: var(--textColor);
  opacity: .25;
  width: 100%; }

.line-ctn {
  display: block;
  overflow: hidden; }

.btn-inline {
  display: inline-block;
  line-height: 1.5;
  background: #F46F6F;
  padding: 6px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1.5rem;
  border: 1px solid #F46F6F;
  cursor: pointer;
}

.btn-inline:hover {
  background-color: #ffffff;
  color: #F46F6F;
  border: 1px solid #F46F6F;
  cursor: pointer;
}

.title {
  font-family: 'American Typewriter', serif;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
}
.tile__content h3 {
  font-family: 'American Typewriter', serif;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 2rem;
}
.title--medium {
  font-size: calc(2rem + 2vw); }
.title--large {
  font-size: calc(10rem + 3vw); }

.tile::first-line {
  font-weight: 600;
  font-size: 50px;
}

.title__offset {
  display: block;
  margin-left: 15%; }
  @media only screen and (min-width: 768px) {
    .title__offset--medium {
      margin-left: 23%; } }

@keyframes rotate {
  to {
    transform: rotate(1turn); } }

/* DETAIL VIEW
---------------------------------------------------------------------------------------------------- */
.detail-view {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  min-height: 100vh;
  opacity: 0;
  pointer-events: none; }
  .detail-view.is-interactive {
    pointer-events: all; }
  .detail-view.is-visible {
    opacity: 1; }

.detail-view__inner {
  padding-left: 10vw; }

/* Content
--------------------------------------------------------- */
.detail-view__title {
  margin-top: 4rem;
  margin-bottom: 5rem;
  color: var(--color-text); }

.detail-view__content p {
  width: 100%;
  max-width: 35vw;
  font-size: 1.8rem;
  line-height: 1.9;
  opacity: .7; }
  .detail-view__content p:not(:last-child) {
    margin-bottom: 3rem; }

/* Button
--------------------------------------------------------- */
.close-detail {
  position: relative;
  background: transparent;
  border: 0; }

.close-detail__path {
  fill: var(--color-text); }

.close-detail__back {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translate(-50%, -50%); }

.close-detail__round {
  animation: rotate 40s linear infinite; }

.slideshow {
  position: relative;
  width: 100%; }

.slideshow__progress-ctn {
  overflow: hidden;
  position: absolute;
  bottom: 5%;
  left: calc(50% - 6.5rem);
  width: 13rem;
  height: .4rem;
  background-color: #5BB6A7;
  border-radius: .4rem;
  will-change: transform; }

.slideshow__progress {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #EE9494;
  border-radius: .4rem;
  transform: translateX(-100%); }

.slideshow-list {
  display: flex;
  align-items: center;
  height: 100%; }

.slideshow-list__el {
  flex: 0 0 auto;
  width: 100%;
  min-width: 25rem;
  max-width: 40vmin;
  margin-left: 15vw; }
  .slideshow-list__el:last-child {
    padding-right: 10vw;
    box-sizing: content-box; }
  .slideshow-list__el:nth-child(1) .tile__content {
    color: var(--color-text2); }
  @media only screen and (min-width: 1112px) {
    .slideshow-list__el:nth-child(1) {
      transform: translateY(12vh); } }
  .slideshow-list__el:nth-child(2) .tile__content {
    color: var(--color-text2); }
  @media only screen and (min-width: 1112px) {
    .slideshow-list__el:nth-child(2) {
      transform: translateY(-12vh); } }
  .slideshow-list__el:nth-child(3) .tile__content {
    color: var(--color-text3); }
  @media only screen and (min-width: 1112px) {
    .slideshow-list__el:nth-child(3) {
      transform: translateY(12vh); } }
  .slideshow-list__el:nth-child(4) .tile__content {
    color: var(--color-text4); }
  @media only screen and (min-width: 1112px) {
    .slideshow-list__el:nth-child(4) {
      transform: translateY(-12vh); } }
  .slideshow-list__el:nth-child(5) .tile__content {
    color: var(--color-text5); }
  @media only screen and (min-width: 1112px) {
    .slideshow-list__el:nth-child(5) {
      transform: translateY(12vh); } }
  @media only screen and (min-width: 768px) {
    .slideshow-list__el {
      margin-left: 20vw; } }

.tile {
  position: relative; }

.tile__fig {
  position: relative;
  width: 100%; }
  .tile__fig::before {
    content: '';
    display: block;
    padding-top: 136.36%; }

.tile__img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity .3s; }
  .tile__img.is-loaded {
    opacity: 0; }

.tile__content {
  position: absolute;
  bottom: 12rem;
  left: 5%;
  width: 70%;
  font-size: 1.2rem;
  transition: color .3s; }
  @media (hover: hover) and (pointer: fine) {
    .tile:hover .tile__content {
      color: #F4D4D4; } }

.tile__title {
  margin-left: -25%;
  white-space: nowrap; }
  @media only screen and (min-width: 768px) {
    .tile__title {
      margin-left: -45%;
      font-size: 3.4rem !important; }
    .tile__content h3 {
      font-size: 2.2rem;
    }
  }

.tile__cta {
  display: block;
  margin-top: 2rem;
  margin-left: 6.4%;
  line-height: 1.5; }
  @media only screen and (min-width: 768px) {
    .tile__cta {
      margin-left: -11%; } }

.copy-version {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  font-size: 8px;
  color: #fff;
}
@media only screen and (max-width: 1112px) {
  .copy-version.copy-mobile {position: inherit; text-align: center; margin-top: 40px;}
}

.text-header {
  position: absolute;
  top: 14rem;
  min-width: 28rem !important;
  max-width: 58rem !important;
}

.text-header h2 {
  font-size: 2.5rem;
  color: #ffffff;
  line-height: 1.5em;
  letter-spacing: 1px;
  font-weight: normal;
}

.text-header h2 .highlighted-text {
  background-color: #F46F6F;
  color: #ffffff;
  padding: 0 4px;
}

@media only screen and (max-width: 768px) {
  .text-header {top: 0;}
  .text-header h2 {font-size: 1.85rem; line-height: 1.3em;}
}

@media screen and (min-width: 768px) and (max-width: 1112px) {
  .text-header {top: 5rem; max-width: 65rem !important;}
}


/* MENU LATERAL */

header {
  position: relative;
  bottom: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.main-menu {
  background-color: #F46F6F;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 18px;
  padding: 10px;
  display: inline-block;
  margin: 0 auto;
  position: relative;
  right: 46vh;
}
.menu-items .item {
  display: inline-block;
  padding: 8px 12px;
  border-right: 1px solid #ffffff;
  cursor: pointer;
}
.menu-items .item:last-child {
  border-right: none !important;
}
.item:hover, .item:focus,
.item:active, .item.active {
  color: #123330;
}

@media only screen and (max-width: 768px) {
  .menu-lateral { display: none;}
  .scrollarea-ctn {top: 0rem;}
}
@media only screen and (min-width: 768px) {
  .main-menu {top: 47vw;}
  .menu-items {height: 5vw;}
  .scrollarea-ctn {top: 2rem;}
  main {margin-top: -8rem;}
}
@media only screen and (min-width: 1112px) {
  .main-menu {top: 48vw;}
  .menu-items {height: 3vw;}
}

/* BOTÓN VOLVER */

.back_btn {
  animation: rotate 40s linear infinite;
}

@media only screen and (max-width: 420px) {
  .text-header h2 {
    font-size: 1.8rem;
    line-height: 1.2em;
  }
  .frame {
    padding: 2rem 5vw 1rem;
  }
  .page-title {
    top: 9rem;
  }
  .slideshow__progress-ctn {
    bottom: -5%;
  }
  .tile__content {
    bottom: 0;
    top: 4rem;
  }
}

/* REDES SOCIALES */
.social {
    margin: 7px 0;
}
.social a {
  width: 25px;
  height: 25px;
  display: inline-block;
  margin-right: 6px !important;
  opacity: .85;
}
.social a:hover {
  opacity: 1;
}

@media only screen and (min-width: 768px) {
  .social {
    float: inline-start;
    margin: 5px 25px 0 10px;
  }
}