body {
  margin: 0px;
  padding: 0px;
  /* background-color: rgb(255, 255, 255);
	color: rgb(255, 255, 255); */
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  line-height: 24px;
  overscroll-behavior: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  min-height: 100vh;
  color: whitesmoke;
}

.dg.ac {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 2 !important; /* TODO Solve this in HTML */
}

/* Loading animation */
.lds-roller {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: ' ';
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f9f0ec;
  margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#loading-text-intro {
  z-index: 3;
  position: absolute;
  width: 100vw;
  height: 100vh;
  font-family: 'Archivo';
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 100;
  color: #f9f0ec;
  /* transition: all 1.5s ease-in; */
  background: linear-gradient(60deg, rgb(45 52 90 / 100%) 00%, rgb(0 0 0 / 100%) 100%);
}

#loading-text-intro.ended {
  transform: translateY(200%);
}

#canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  outline: none;
  z-index: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

.loading-bar {
  position: absolute;
  top: 70.5%;
  width: 100%;
  height: 2px;
  background: #f9f0ec;
  transform: scaleX(0);
  transition: transform 1s;
  z-index: 10;
}

.loading-bar.ended {
  transform: scaleX(0);
}

#button-scroll {
  cursor: pointer;
  margin-top: 60px;
  pointer-events: all;
  width: 180px;
  /* height: 45px; */
  border: 1px solid white;
  padding: 18px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.381);
  backdrop-filter: blur(10px);
  transition: all 0.8s ease;
  display: flex;
  gap: 2em;
  align-items: center;
}

#button-scroll:hover {
  background-color: rgba(255, 255, 255, 0.181);
  backdrop-filter: blur(6px);
}

#button-scroll p {
  /* padding: 0 20px; */
  /* position: absolute; */
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

#button-scroll .svg-circle {
  transform: rotate(-90deg);
  transition: all 1200ms ease-in-out;
}

#button-scroll:hover .svg-circle {
  stroke-dasharray: 3;
  stroke-dashoffset: 200;
  animation: firstAnimation 4s linear forwards infinite;
  transform: rotate(-90deg) scale(120%);
}

@keyframes firstAnimation {
  to {
    stroke-dashoffset: 0;
  }
}

#button-zoom {
  align-self: end;
  cursor: pointer;
  position: absolute;
  bottom: 80px;
  right: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  z-index: 2;
  pointer-events: visible;
}

#button-zoom img {
  border-radius: 90px;
  animation: pulse-animation 2s infinite;
  transition: all 800ms ease-in-out;
}

#button-zoom img:hover {
  transform: scale(140%);
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgb(255 255 255 / 0.4);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}

#btn-continue-explore {
  position: fixed;
  margin-bottom: auto;
  align-content: center;
  justify-content: center;
  width: 100%;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 8;
  visibility: hidden;
  display: none;
  /* transition: all 200ms ease-in-out; */
  align-items: center;
  height: 100%;
}

.sunset {
  cursor: pointer;
  pointer-events: visible;
  transition: all 0.5s ease-out;
  padding: 15px 40px;
  border-radius: 50px;
  border: 1px solid;
  margin: 0 5px;
}

.sunset:hover {
  color: black;
  background: black;
  color: white;
}
.sunset.active {
  color: black;
  background: black;
  color: white;
}

.midday {
  cursor: pointer;
  pointer-events: visible;
  transition: all 0.5s ease-out;
  padding: 15px 40px;
  border-radius: 50px;
  border: 1px solid;
  margin: 0 5px;
}
.midday:hover {
  color: black;
  background: black;
  color: white;
}
.midday.active {
  color: black;
  background: black;
  color: white;
}

#menu-item-1 {
  cursor: pointer;
  transition: all 0.5s ease-out;
}

#menu-item-1:hover {
  color: rgb(68, 68, 68);
}

.toggle-effects {
  cursor: pointer;
  pointer-events: visible;
  transition: all 0.5s ease-out;
  padding: 15px 60px;
  margin-top: 40px;
  border-radius: 50px;
  border: 1px solid;
  font-size: 1.2em;
}

.toggle-effects:hover {
  color: white;
  background: black;
  color: white;
}

.toggle-effects.active {
  color: white;
  background: black;
  color: white;
}

.toggle-effects-aditional {
  opacity: 0;
  height: 0;
  line-height: 19px;
  padding: 0 40px;
  text-align: center;
  transition: all 0.8s ease-in-out;
  font-size: 1.2em;
  margin: 0;
}

.toggle-effects-aditional.active {
  opacity: 1;
}

input[type='range'] {
  outline: 0;
  border: 0;
  border-radius: 500px;
  width: 250px;
  max-width: 100%;
  /* margin: 24px 0 16px; */
  transition: box-shadow 0.2s ease-in-out;
  pointer-events: all;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type='range'] {
    overflow: hidden;
    height: 40px;
    -webkit-appearance: none;
    background-color: rgb(240, 240, 240);
  }
  input[type='range']::-webkit-slider-runnable-track {
    height: 40px;
    -webkit-appearance: none;
    color: rgb(204, 204, 204);
    transition: box-shadow 0.2s ease-in-out;
  }
  input[type='range']::-webkit-slider-thumb {
    width: 40px;
    -webkit-appearance: none;
    height: 40px;
    cursor: ew-resize;
    background: #fff;
    box-shadow: -340px 0 0 320px #202020, inset 0 0 0 40px #202020;
    border-radius: 50%;
    transition: box-shadow 0.2s ease-in-out;
    position: relative;
  }
  input[type='range']:active::-webkit-slider-thumb {
    background: #fff;
    box-shadow: -340px 0 0 320px #202020, inset 0 0 0 3px #202020;
  }
}

#btn-continue-explore a {
  align-self: center;
  font-family: 'Archivo';
  background: #fff;
  height: 60px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  border-radius: 200px;

  color: rgb(0 0 0);
  text-decoration: none;
  font-weight: normal;
  letter-spacing: 0.5px;
  margin-bottom: 80px;
  width: 60px;
  transition: 1s ease-in-out;
  margin-top: auto;
  font-size: 12px;
  border-radius: 60px;
  background-color: white;
  pointer-events: auto;
}

#btn-continue-explore a:hover {
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 2px;
  transform: scale(1.2);
}

/* Sections */

#section-logo {
  visibility: hidden;
  width: 85%;
  pointer-events: none;
}

#section-logo h1 {
  font-size: 19vh;
  letter-spacing: -12px;
  text-align: left;
  text-shadow: #5a5a5ad5 2px 1px 65px;
  color: whitesmoke;
  /* font-weight: 100; */
  font-family: 'Libre Baskerville';
  line-height: 17vh;
  margin: 100px 0 0;
}

.sub-title {
  font-size: 0.8rem;
  letter-spacing: 0px;
  text-align: left;
  /* text-shadow: #5a5a5aa3 2px 1px 15px; */
  color: #141414;
  font-weight: 100;
  font-family: 'Archivo';
  margin: 20px 60px;
  width: 26%;
}

#btnExplorar {
  position: relative;
  margin: 0;
  transform: translate(0px, 20px) scale(1);
  transition: 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  visibility: hidden;
}

#btnExplorar:hover {
  transform: scale(120%);
  cursor: pointer;
}

.menu--item {
  cursor: pointer;
  pointer-events: all;
  transition: all 0.4s ease-in-out;
}

.menu--item:hover {
  color: black;
}

.customize--button--container {
  display: block;
  background: none;
  position: absolute;
  right: 20px;
  top: 50%;
  z-index: 10;
}

.customize--floating {
  display: none;
  background-color: white;
  cursor: pointer;
  color: #000;
  pointer-events: visible;
  transition: all 0.5s ease-out;
  padding: 15px 40px;
  border-radius: 50px;
  border: 1px solid;
  margin: 0 5px;
  pointer-events: all;
  transform: rotate(-90deg);
}

.customize--floating:hover {
  background-color: black;
  color: white;
}

.customize--container {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.customize--container.visible {
  display: flex;
}

.customize--close {
  position: absolute;
  margin-left: auto;
  right: 10px;
  top: 10px;
  opacity: 0.4;
  pointer-events: all;
  transition: all 0.4s ease-in-out;
}

.customize--close:hover {
  cursor: pointer;
  transform: scale(1.1);
}

.customize--box {
  display: flex;
  right: 10%;
  position: absolute;
  z-index: 5;
  background: white;
  width: 350px;
  border-radius: 20px;
  /* margin: auto; */
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 20px 7px #00000052;
  color: rgb(53, 53, 53);
  height: 540px;
  transition: height 0.8s ease-in-out;
}

.customize--box.active {
  height: 600px;
}

.customize--title {
  margin-top: 40px;
  margin-bottom: 40px;
}

.customize--title:hover {
  cursor: move;
}

.customize--sunlight {
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
  display: inline-flex;
}

.toggle-effects-aditional > #ssao {
  text-decoration: underline;
  cursor: pointer;
  pointer-events: all;
  margin-top: -10px;
}

.toggle-effects-aditional > small {
  text-align: center;
  width: 250px;
  line-height: 14px;
}

.section {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  padding-left: 5%;
  padding-right: 5%;
  z-index: 1;
  width: 65%;
}

/* About */

.about--container {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.about--container.visible {
  display: flex;
}

.about--close {
  position: absolute;
  margin-left: auto;
  right: 10px;
  top: 10px;
  opacity: 0.4;
  pointer-events: all;
  transition: all 0.4s ease-in-out;
}

.about--close:hover {
  cursor: pointer;
  transform: scale(1.1);
}

.about--box {
  display: flex;
  position: absolute;
  z-index: 5;
  background: white;
  width: 440px;
  height: 560px;
  border-radius: 20px;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 20px 7px #00000052;
  color: rgb(53, 53, 53);
  padding: 0 50px;
}

.about--box p {
  font-size: 1.3em;
}

.about--title {
  margin-top: 60px;
  margin-bottom: 30px;
  align-self: flex-start;
  font-size: 34px;
}

.about--list {
  list-style: none;
  margin: 40px 0 0 0;
  padding: 0;
  display: inline-flex;
}

.about--list > li {
  margin: 0 15px;
}

.about--list > li a {
  text-decoration: none;
  color: #000;
}

.about--buttons a {
  cursor: pointer;
  pointer-events: visible;
  transition: all 0.5s ease-out;
  padding: 15px 40px;
  border-radius: 50px;
  border: 1px solid;
  margin: 0 5px;
}

.about--buttons a:hover {
  background: black;
  color: white;
}
/* Menu */

#music {
  /* transform: translateX(-100%); */
  border-radius: 50%;
  top: 3px;
  box-shadow: 0 0 0 0 #000, 0 0 0 0 #000;
  cursor: pointer;
  height: 38px;
  position: relative;
  pointer-events: all;
  right: 34px;
  transition: 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  width: 38px;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#music img {
  margin-top: 15px;
  margin-right: 0;
  height: 22px;
  margin-left: 2px;
}

#music:hover {
  box-shadow: 0 0 0 2px rgb(255, 255, 255), 0 0 0 2px rgb(255, 255, 255);
  cursor: pointer;
}

#tap-container {
  position: absolute;
  top: 75%;
  z-index: 3;
  pointer-events: none;
  left: 40%;
  width: 39px;
}

/* .menu {
    background: #FFFFFF00;
    border-radius: 50%;
    top: 5px;
    box-shadow: 0 0 0 0 #fff, 0 0 0 0 #fff;
    cursor: pointer;
    height: 34px;
    position: relative;
    pointer-events: all;
    right: 20px;
    transition: 1.1s cubic-bezier(.19,1,.22,1);
    width: 34px;
    z-index: 2;
}

.menu:hover {
	box-shadow: 0 0 0 8px #FFF, 0 0 0 8px #FFF;
	background: #FFF;
}

.hamburguer {
    position: relative;
    display: block;
    background: #000;
    width: 24px;
    height: 2px;
    top: 15px;
    left: 5px;

	
  transition: 0.5s ease-in-out;
}

.hamburguer:before,
.hamburguer:after {
  background: #000;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  transition: 0.5s ease-in-out;
  pointer-events: none;
}

.hamburguer:before {
  top: -8px;
}

.hamburguer:after {
  bottom: -8px;
} */

.headerContainer {
  width: 100vw;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 90px;
  position: absolute;
  margin-right: auto;
  background: linear-gradient(180deg, rgb(19 22 30 / 2%) 0%, rgba(1, 1, 1, 0) 100%);
  background: linear-gradient(180deg, rgb(19 22 30 / 2%) 0%, rgba(1, 1, 1, 0) 100%);
}

.sectionContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footerContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #470000fa;
}

#header {
  position: absolute;
  display: none;
  width: 70vw;
  height: 70px;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  letter-spacing: -2px;
  pointer-events: none;
  z-index: 5;
  transform: translateY(-70px);
  align-items: baseline;
  align-items: center;
  top: 20px;
}

#header.down {
  animation: slidedown 2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes slidedown {
  from {
    transform: translateY(-70px);
  }

  to {
    transform: translateY(0px);
  }
}

#header.up {
  animation: slideup 2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes slideup {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-70px);
  }
}

#middle-menu {
  flex-grow: 1;
  display: inline-flex;
  justify-content: flex-end;
  align-self: center;
  margin-right: 60px;
  height: 100%;
  align-items: center;
}

#middle-menu p {
  font-size: 13px;
  padding-left: 30px;
  margin-top: 20px;
  /* flex-grow: 1; */
  /* color: #141414; */
  font-family: 'Archivo';
  letter-spacing: 1px;
}

#header h1 {
  font-size: 2rem;
  /* padding-left: 30px; */
  /* flex-grow: 1; */
  /* color: #141414; */
  font-family: 'Archivo';
  font-weight: 200;
  letter-spacing: normal;
}

.brand {
  display: flex;
  align-items: flex-end;
  gap: 1em;
}

.brand p {
  letter-spacing: normal;
}

#header img {
  margin-top: 5px;
  margin-right: 20px;
  margin-left: 7px;
  height: 30px;
  filter: invert(1);
}

#header h2 {
  margin-top: 39px;
  margin-left: 20px;
  letter-spacing: -0.1px;
  font-size: 14px;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: normal;
  flex-grow: 1;
}

a,
button,
input,
select {
  pointer-events: auto;
}

.invert {
  filter: invert(100%);
}

.explore {
  align-self: center;
  font-family: 'Archivo';
  background: #fff;
  width: 140px;
  height: 140px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  border-radius: 200px;
}

#footer {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 40px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  width: 65%;
}

#footer p {
  /* margin-top: 10px; */
  font-size: 10px;
  /* margin-top: auto; */
  margin-bottom: 0px;
  color: #f9f0ec;
  font-family: 'Archivo';
}

#footer h2 {
  font-size: 19px;
  letter-spacing: 0px;
  text-align: left;
  /* text-shadow: #5a5a5aa3 2px 1px 15px; */
  color: #f9f0ec;
  /* font-weight: 100; */
  font-family: 'Archivo';
  /* line-height: 16px; */
  margin: 8px 0;
  /* align-self: revert; */
}

#footer a {
  color: #f9f0ec;
  text-decoration: none;
}

/* Points */
.point {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  pointer-events: all;
}

.point .label {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff12;
  border: 1px solid #ffffff40;
  color: #ffffff;
  font-family: 'Archivo';
  text-align: center;
  line-height: 40px;
  font-weight: 100;
  font-size: 14px;
  cursor: zoom-in;
  transform: scale(0, 0);
  transition: transform 0.3s;
  z-index: 4;
}

.point.visible .label {
  transform: scale(1, 1);
}

.point .text {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 95px;
  padding: 5px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #353535;
  line-height: 1.3em;
  font-family: 'Archivo';
  font-weight: 100;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 4;
  text-align: center;
}

.point:hover .text {
  opacity: 1;
}

#div-points {
  top: 0px;
  left: 0px;
  position: fixed;
  z-index: 5;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

#div-points.ended {
  opacity: 1;
}

@keyframes animate {
  0% {
    transform: scale(2);
  }

  100% {
    transform: scale(0.7);
  }
}

@media only screen and (max-width: 660px) {
  .section {
    height: 100vh;
    padding-left: 0px;
    padding-right: 0px;
    overflow-x: hidden;
    width: 85%;
  }
  #header {
    width: 100vw;
    height: 70px;
  }
  #header h1 {
    font-size: 20px;
    flex-grow: 1;
  }

  .customize--container {
    justify-content: center;
  }

  .customize--box {
    background: none;
    box-shadow: none;
    color: inherit;
    right: 0;
    backdrop-filter: blur(3px);
    z-index: 10;
    position: relative;
    height: 100vh;
    justify-content: center;
  }

  .customize--close {
    position: absolute;
    margin-bottom: 23%;
    /* right: 10px; */
    bottom: 0px;
    opacity: 1;
    pointer-events: all;
    transition: all 0.4s ease-in-out;
    z-index: 40;
    right: auto;
    top: auto;
    transform: scale(1.5);
  }

  .about--buttons > a {
    padding: 15px 30px;
  }
  .about--list > li {
    margin: 0 0;
  }
  .about--box {
    background: white;
    width: 80%;
    height: 630px;
    padding: 0 30px;
    z-index: 10;
    line-height: 20px;
  }

  #middle-menu {
    flex-grow: 1;
    display: inline-flex;
    justify-content: center;
    align-self: center;
    margin-right: 40px;
    height: 100%;
    align-items: center;
  }

  #section-logo {
    overflow-y: hidden;
    justify-content: center;
    pointer-events: none;
  }
  #section-logo h1 {
    font-size: 20vw;
    line-height: 1em;
    letter-spacing: -6px;
  }
  /* #section-logo p{
    display: none;
  } */
  #button-scroll {
    margin-top: 20px;
    margin-left: 0;
    border: none;
  }

  #button-scroll p {
    font-size: 13px;
  }

  .loading-bar {
    top: 60.5%;
  }
  #button-zoom {
    align-self: end;
    position: absolute;
    margin-bottom: -10%;
    right: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    z-index: 22;
  }
  .brand {
    display: none;
  }

  #div-points {
    height: 100vh;
  }

  #btn-continue-explore {
    height: 100vh;
  }

  #music {
    right: 25px;
  }

  .customize--button--container {
    display: none;
    visibility: hidden;
    opacity: 0;
  }
}

