@charset "UTF-8";
/* 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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

/*********************************************************
* Scroll up arrow animation
**********************************************************/
p.scroll-arrow {
  font-size: 11rem;
  text-align: center;
  border: solid rgba(135, 175, 34, 0.8);
  border-width: 0 0.015em 0.015em 0;
  display: inline-block;
  padding: 0.2em;
  transform: rotate(45deg);
  margin-top: -0.35em;
}
@media only screen and (max-width: 999px) {
  p.scroll-arrow {
    font-size: 9.9rem;
  }
}
@media only screen and (max-width: 600px) {
  p.scroll-arrow {
    font-size: 7.7rem;
  }
}

.scroll-arrow-mid {
  border: solid #87af22;
  border-width: 0 0.02em 0.02em 0;
}

.scroll-arrow-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  margin: -1rem 0 0 40%;
  text-align: center;
  width: 5%;
  height: -moz-fit-content;
  height: fit-content;
  animation: arrow-container-keyframes 1.8s infinite;
}
@media only screen and (max-width: 999px) {
  .scroll-arrow-container {
    margin: auto 0 0 30%;
  }
}

.scroll-arrow-container p:first-child {
  animation: arrow-keyframes 1.8s infinite;
  margin: 0;
}
.scroll-arrow-container p:nth-child(2) {
  animation: arrow-keyframes 1.8s infinite;
  animation-delay: 0.2s;
}
.scroll-arrow-container p:last-child {
  animation: arrow-keyframes 1.8s infinite;
  animation-delay: 0.4s;
}
@keyframes arrow-container-keyframes {
  0% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 30px);
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
}
@keyframes arrow-keyframes {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*********************************************************
* Underline Animations
**********************************************************/
.underline {
  display: inline-block;
  margin: 0;
  position: relative;
}

.underline::before {
  content: "";
  background: #99C62B;
  position: absolute;
  width: 105%;
  height: 50%;
  top: 50%;
  left: -2%;
  transform: scaleX(0);
  transform-origin: left;
  -webkit-transform: scaleX(0);
  -webkit-transform-origin: left;
  z-index: -1;
}

.underline.visible::before {
  -webkit-animation-name: stretchRight;
  -webkit-animation-delay: 0.5s;
  -webkit-animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-name: stretchRight;
  animation-delay: 0.5s;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}

.underline-b.visible::before {
  width: 106%;
  height: 50%;
  top: 50%;
  left: -1%;
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}

.underline-c.visible::before {
  width: 102%;
  height: 50%;
  top: 50%;
  left: 2%;
  animation-delay: 1.5s;
  -webkit-animation-delay: 1.5s;
}

.underline-d.visible::before {
  width: 104%;
  height: 50%;
  top: 50%;
  left: 2%;
  animation-delay: 1.7s;
  -webkit-animation-delay: 1.7s;
}

@keyframes stretchRight {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
/**************************************
* base
**************************************/
@font-face {
  font-display: swap;
  font-family: "TimeBurner Regular";
  font-style: normal;
  src: url("../assets/fonts/timeburnernormal.woff") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "TimeBurner Bold";
  font-style: normal;
  src: url("../assets/fonts/timeburnerbold.woff") format("truetype");
}
html {
  font-size: 16px;
}

body {
  min-width: 320px;
  margin: auto;
  background-color: black;
  overflow: hidden;
}

p,
h1,
h2,
h3,
h4,
h5,
li,
input,
select,
section {
  font-family: "TimeBurner Regular";
  color: #3D283B;
  font-size: 4vw;
}
@media only screen and (max-width: 1024px) and (max-height: 1366px) {
  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  li,
  input,
  select,
  section {
    font-size: 4.8vw;
  }
}
@media only screen and (max-width: 1300px) {
  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  li,
  input,
  select,
  section {
    font-size: 5.2vw;
  }
}
@media only screen and (max-width: 999px) {
  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  li,
  input,
  select,
  section {
    font-size: 7.2vw;
  }
}
@media only screen and (max-width: 600px) {
  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  li,
  input,
  select,
  section {
    font-size: 8vw;
  }
}
@media only screen and (max-width: 480px) {
  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  li,
  input,
  select,
  section {
    font-size: 8.8vw;
  }
}

a {
  text-decoration: none;
  color: #3D283B;
  cursor: pointer;
}
a:hover {
  color: #99C62B;
}

.bold {
  font-family: "TimeBurner Bold";
}
@media only screen and (max-width: 1024px) and (max-height: 1366px) {
  .bold {
    font-size: 6vw;
  }
}
@media only screen and (max-width: 1300px) {
  .bold {
    font-size: 5.6vw;
  }
}
@media only screen and (max-width: 999px) {
  .bold {
    font-size: 8vw;
  }
}
@media only screen and (max-width: 600px) {
  .bold {
    font-size: 8.8vw;
  }
}
@media only screen and (max-width: 480px) {
  .bold {
    font-size: 10vw;
  }
}

/**************************************
* header
**************************************/
header {
  position: fixed;
  height: 10rem;
  width: 20vw;
  z-index: 5;
  margin: 0;
}
@media only screen and (max-width: 999px) {
  header {
    height: 5rem;
  }
}
@media only screen and (max-width: 600px) {
  header {
    height: 4rem;
  }
}
header #vistas-logo-header {
  height: 90%;
  margin: 3%;
}
header #vistas-logo-header div {
  margin: 0.5rem;
  background: url("/img/vistas-logo.png") no-repeat;
  background-size: contain;
  height: 90%;
  width: auto;
  margin: 0;
}

/**************************************
* cube
**************************************/
.scene {
  width: 100vw;
  height: 100vh;
  position: fixed;
}

#cube {
  width: 1500px;
  height: 1500px;
  position: relative;
  left: 20vw;
  perspective: 2000px;
  perspective-origin: 115% 7%;
  -webkit-perspective: 2000px;
  transform: rotateX(340deg) rotateY(325deg) rotateZ(0deg) translateX(-66rem) translateY(-5rem) translateZ(-44rem);
  transform-origin: bottom;
  -webkit-transform-origin: bottom;
  /*
  * Specific devices targets for specifying height of cube
  */
}
@media only screen and (max-width: 999px) {
  #cube {
    left: 1rem;
    top: 0rem;
  }
}
@media only screen and (max-width: 600px) {
  #cube {
    left: 0rem;
  }
}
@media only screen and (max-width: 480px) {
  #cube {
    top: 2rem;
  }
}
@media only screen and (max-width: 1024px) and (max-height: 1366px) {
  #cube {
    top: 8rem;
  }
}
@media only screen and (max-width: 912px) and (max-height: 1368px) {
  #cube {
    top: 13rem;
  }
}
@media only screen and (max-width: 896px) and (max-height: 932px) {
  #cube {
    top: -5rem;
  }
}
@media only screen and (max-width: 375px) and (max-height: 740px) {
  #cube {
    top: -9rem;
  }
}

.cube-face {
  position: fixed;
  box-shadow: inset 0.5rem 0.5rem 2rem grey;
  background: grey;
}

#left {
  background: radial-gradient(at 100% 100%, #E4E5E4, #A6A6A6);
  width: 100%;
  height: 100%;
  transform: rotateY(90.001deg) translateZ(-750px);
  -webkit-transform: rotateY(90.001deg) translateZ(-750px);
  overflow: hidden;
}

#right {
  background: radial-gradient(at 0 100%, #E4E5E4, #A6A6A6);
  width: 250vw;
  height: 100%;
  transform: translateZ(-750px);
  -webkit-transform: translateZ(-750px);
  overflow-y: scroll;
  overflow-x: hidden;
  z-index: 10;
  overscroll-behavior-y: none;
  scroll-snap-type: y mandatory;
}

#bottom {
  background: radial-gradient(at 0% 0%, #E4E5E4, #A6A6A6);
  width: 250vw;
  height: 100%;
  transform: rotateX(90.001deg) translateZ(-750px);
  -webkit-transform: rotateX(90.001deg) translateZ(-750px);
  z-index: 5;
  overflow-y: scroll;
  overflow-x: hidden;
}
@media only screen and (max-width: 999px) {
  #bottom {
    pointer-events: none;
  }
}

/**************************************
* content
**************************************/
#main-content,
#bottom-content {
  width: 65vw;
  margin: 45rem 10rem 0rem 15vw;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 999px) {
  #main-content,
  #bottom-content {
    width: 100vw;
    margin-left: 18vw;
  }
}

#bottom-content {
  transform: translateY(-94rem);
}
@media only screen and (max-width: 999px) {
  #bottom-content {
    margin-left: 18vw;
  }
}

section {
  margin: 5rem 0 0 0;
  padding-bottom: 7rem;
  scroll-snap-align: end;
  scroll-snap-stop: always;
}
section p:first-child {
  margin-top: 5rem;
}
section .bold {
  margin: 2rem 0 0 0;
}
section p.br {
  margin: 1rem 0 0rem 0;
}

@media only screen and (max-width: 999px) {
  .first-scroll-block {
    padding-bottom: 5rem;
  }
}

.quote-block li {
  list-style: none;
  font-size: 3.2vw;
}
@media only screen and (max-width: 1024px) and (max-height: 1366px) {
  .quote-block li {
    font-size: 3.84vw;
  }
}
@media only screen and (max-width: 1300px) {
  .quote-block li {
    font-size: 4.16vw;
  }
}
@media only screen and (max-width: 999px) {
  .quote-block li {
    font-size: 5.76vw;
  }
}
@media only screen and (max-width: 600px) {
  .quote-block li {
    font-size: 6.4vw;
  }
}
@media only screen and (max-width: 480px) {
  .quote-block li {
    font-size: 7.04vw;
  }
}
.quote-block li::before {
  content: "";
  display: inline-block;
  height: 0.7em;
  width: 0.7em;
  background-image: url("/img/vistas-logo.png");
  background-size: cover;
  margin-right: 1rem;
}
.quote-block blockquote {
  position: relative;
  margin-bottom: 4rem;
  padding: 0.5rem;
}
.quote-block blockquote:before,
.quote-block blockquote:after {
  position: absolute;
  color: #99C62B;
  font-size: 3em;
  height: 30%;
}
.quote-block blockquote:before {
  content: "“";
  left: -10%;
  top: -2rem;
}
.quote-block blockquote:after {
  content: "”";
  left: 90%;
  bottom: -5%;
}

.last-block {
  text-align: center;
}
.last-block p {
  text-align: center;
  margin: auto;
  font-size: 3.6vw;
}
@media only screen and (max-width: 1024px) and (max-height: 1366px) {
  .last-block p {
    font-size: 4.32vw;
  }
}
@media only screen and (max-width: 1300px) {
  .last-block p {
    font-size: 4.68vw;
  }
}
@media only screen and (max-width: 999px) {
  .last-block p {
    font-size: 6.48vw;
  }
}
@media only screen and (max-width: 600px) {
  .last-block p {
    font-size: 7.2vw;
  }
}
@media only screen and (max-width: 480px) {
  .last-block p {
    font-size: 7.92vw;
  }
}
.last-block .mail-address {
  font-size: 2.4vw;
  margin: 2em 0 0 0;
}
@media only screen and (max-width: 1024px) and (max-height: 1366px) {
  .last-block .mail-address {
    font-size: 2.88vw;
  }
}
@media only screen and (max-width: 1300px) {
  .last-block .mail-address {
    font-size: 3.12vw;
  }
}
@media only screen and (max-width: 999px) {
  .last-block .mail-address {
    font-size: 4.32vw;
  }
}
@media only screen and (max-width: 600px) {
  .last-block .mail-address {
    font-size: 4.8vw;
  }
}
@media only screen and (max-width: 480px) {
  .last-block .mail-address {
    font-size: 5.28vw;
  }
}
.last-block .mail-address a:hover > span::before {
  background-color: rgba(166, 166, 166, 0.1);
}

.vistas-logo {
  margin: 7rem 0 2rem 0;
}
.vistas-logo div {
  background: url("/img/vistas-logo-bw.png") no-repeat;
  background-size: contain;
  height: 90%;
  margin: auto;
  height: 10rem;
  width: 10rem;
  opacity: 0.5;
}

nav {
  margin: auto;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  nav {
    bottom: 3rem;
    right: 0rem;
  }
}
nav ul {
  display: flex;
  list-style: none;
  margin-bottom: 0;
  width: 100%;
  justify-content: center;
}
nav li a {
  color: #3D283B;
  cursor: pointer;
  font-size: 1.6vw;
  display: block;
  position: relative;
  text-decoration: none;
}
@media only screen and (max-width: 1024px) and (max-height: 1366px) {
  nav li a {
    font-size: 1.92vw;
  }
}
@media only screen and (max-width: 1300px) {
  nav li a {
    font-size: 2.08vw;
  }
}
@media only screen and (max-width: 999px) {
  nav li a {
    font-size: 2.88vw;
  }
}
@media only screen and (max-width: 600px) {
  nav li a {
    font-size: 3.2vw;
  }
}
@media only screen and (max-width: 480px) {
  nav li a {
    font-size: 3.52vw;
  }
}
nav li:nth-child(2) {
  font-size: 1.6vw;
  margin: 0 0.5rem;
  opacity: 0.5;
}
@media only screen and (max-width: 1024px) and (max-height: 1366px) {
  nav li:nth-child(2) {
    font-size: 1.92vw;
  }
}
@media only screen and (max-width: 1300px) {
  nav li:nth-child(2) {
    font-size: 2.08vw;
  }
}
@media only screen and (max-width: 999px) {
  nav li:nth-child(2) {
    font-size: 2.88vw;
  }
}
@media only screen and (max-width: 600px) {
  nav li:nth-child(2) {
    font-size: 3.2vw;
  }
}
@media only screen and (max-width: 480px) {
  nav li:nth-child(2) {
    font-size: 3.52vw;
  }
}
nav li:last-child a:after {
  border: none;
}

#left #vistas-re {
  text-orientation: mixed;
  width: auto;
  float: right;
  margin: 85rem 2vw 0 0;
}
#left #vistas-re #vistas-real-estate {
  background-image: url("/img/vistas-real-estate.svg");
  background-repeat: no-repeat;
  width: 30rem;
  height: 7.128rem;
}
@media only screen and (max-width: 999px) {
  #left #vistas-re #vistas-real-estate {
    width: 40rem;
    height: 9.504rem;
    background-image: url("/img/vistas-real-estate-vertical.svg");
  }
}
@media only screen and (max-width: 600px) {
  #left #vistas-re #vistas-real-estate {
    width: 35rem;
    height: 8.316rem;
  }
}
@media only screen and (max-width: 999px) {
  #left #vistas-re {
    float: inline-end;
    transform: rotateZ(-90deg);
    margin: 67rem -16rem 0 0;
    display: flex;
  }
}
@media only screen and (max-width: 600px) {
  #left #vistas-re {
    margin: 71rem -14.5rem 0 0;
  }
}

/*************************************************
* Lightbox Windows
*************************************************/
.lightbox {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 60px;
  color: #fff;
  display: none;
  z-index: 20;
}
@media only screen and (max-width: 999px) {
  .lightbox {
    padding: 0;
  }
}
.lightbox p,
.lightbox li {
  font-size: 1rem;
}
.lightbox h2,
.lightbox h3,
.lightbox h4 {
  font-size: 2rem;
  margin: 1rem 0;
}
@media only screen and (max-width: 999px) {
  .lightbox h2,
  .lightbox h3,
  .lightbox h4 {
    font-size: 1.5rem;
  }
}
.lightbox h3,
.lightbox h4 {
  font-size: 1.5rem;
}
.lightbox a {
  text-decoration: none;
  color: #3D283B;
}

.lightbox.active {
  display: block;
}

.background {
  top: 0;
  left: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(166, 166, 166, 0.5);
}

.lightbox .inner {
  background: radial-gradient(at 50% 50%, #E4E5E4, #A6A6A6);
  box-sizing: border-box;
  overflow: hidden;
  padding: 120px;
  height: 100%;
  position: relative;
}
@media only screen and (max-width: 999px) {
  .lightbox .inner {
    padding: 20vw 3vw;
  }
}

.lightbox .center {
  margin: 0 auto;
  max-width: 700px;
  height: 100%;
  position: relative;
}

.lightbox a:not(.button) {
  text-decoration: underline;
}

.lightbox .closeBtn {
  right: -30px;
  top: -80px;
}
@media only screen and (max-width: 999px) {
  .lightbox .closeBtn {
    right: 5vw;
    top: -4rem;
  }
}

.closeBtn {
  position: absolute;
  width: 40px;
  height: 40px;
  font: 0/0 a;
  color: transparent;
  overflow: hidden;
  cursor: pointer;
  transition: 0.5s;
}

.closeBtn:after,
.closeBtn:before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  left: 0;
  top: 50%;
  background: #fff;
  transition: 120ms;
  transform: rotate(45deg);
}

.closeBtn:after {
  transform: rotate(-45deg);
}

.lightbox .content {
  width: 100%;
  height: 100%;
  padding-right: 15px;
  overflow: auto;
  line-height: 1.375;
}
@media only screen and (max-width: 999px) {
  .lightbox .content {
    width: 90%;
  }
}

/* width */
::-webkit-scrollbar {
  width: 0.5rem;
}

/* Track */
::-webkit-scrollbar-track {
  background: none;
  box-shadow: none;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: white;
  border-radius: 5px;
}/*# sourceMappingURL=style.css.map */