@font-face {
  font-family: "Self Modern";
  src: url(../fonts/self-modern.otf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Self Modern";
  src: url(../fonts/self-modern-italic.otf);
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Digitany";
  src: url(../fonts/digitany-fixed.woff);
  font-weight: normal;
  font-style: normal;
}
* {
  box-sizing: border-box;
  font-family: "Self Modern", Garamond, serif;
  font-weight: normal;
  margin: 0;
  padding: 0;
}

html, body {
  background-color: #000000;
}

html, body, input, textarea, select, button {
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  html, body, input, textarea, select, button {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  html, body, input, textarea, select, button {
    font-size: 13px;
    line-height: 1.4;
  }
}

h1, h2, h3 {
  font-family: "Digitany", Garamond, serif;
  font-weight: normal;
  line-height: 1;
}

h1, h2, .big-word {
  font-size: 60px;
}
@media (max-width: 1024px) {
  h1, h2, .big-word {
    font-size: 46px;
  }
}
@media (max-width: 767px) {
  h1, h2, .big-word {
    font-size: 31px;
  }
}
h1.self-modern, h2.self-modern, .big-word.self-modern {
  font-size: 67px;
  letter-spacing: 3px;
}
@media (max-width: 1024px) {
  h1.self-modern, h2.self-modern, .big-word.self-modern {
    font-size: 51px;
  }
}
@media (max-width: 767px) {
  h1.self-modern, h2.self-modern, .big-word.self-modern {
    font-size: 36px;
  }
}

h3 {
  font-size: 36px;
}
@media (max-width: 1024px) {
  h3 {
    font-size: 27px;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 18px;
  }
}

h1, h2 {
  margin-bottom: -10px;
}

i, em {
  font-style: italic;
}

ul, ol {
  padding-left: 1em;
}

ul li, ol li {
  padding-left: 20px;
}

.digitany {
  font-family: "Digitany", Garamond, serif;
}

.self-modern {
  font-family: "Self Modern", Garamond, serif;
}

a {
  text-decoration: none;
  color: inherit;
  font-family: inherit;
}

.border {
  border: solid 1px #FFFFFF;
}

img, video {
  display: block;
}

.pos-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.underline-hover:hover {
  text-decoration: underline;
}

#loading {
  background-color: #000000;
  color: #FFFFFF;
  outline: solid 1px #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  height: 100dvh;
  width: 100vw;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 999;
  transform: scale(1);
  filter: blur(0);
  opacity: 1;
  transition-property: transform, opacity, filter;
  transition-duration: 0.4s;
  transition-timing-function: ease;
}
#loading.ready {
  transform: scale(1.5);
  filter: blur(10px);
  opacity: 0;
  transition-duration: 0.8s;
}
#loading img {
  width: 200px;
  height: auto;
}

.d-inline-block {
  display: inline-block;
}

.d-block {
  display: block;
}

.hide {
  display: none;
}

.touch-show {
  display: none;
}

.d-flex {
  display: flex;
  gap: 40px;
}

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
  align-items: flex-start;
}

.row-same-width > * {
  flex: 1 1 0;
  min-width: 0;
}

.justify-center {
  justify-items: center;
}

.align-center {
  align-items: center;
}

.section {
  padding: 40px 0;
  height: 100vh;
  height: 100dvh;
  justify-content: center;
  max-width: 1440px;
  margin: 0 auto;
}

.d-grid {
  display: grid;
  gap: 40px;
}

.small-gap {
  gap: 20px;
}

.large-gap {
  gap: 80px;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-justify {
  text-align: justify;
  margin-bottom: -1em;
}
.text-justify::after {
  content: "";
  display: inline-block;
  width: 100%;
}

.text-center {
  text-align: center;
}

button {
  font-family: "Digitany", Garamond, serif;
  font-size: 14px;
  letter-spacing: 10px;
  text-indent: 10px;
  background-color: transparent;
  border: solid 1px #FFFFFF;
  padding: 20px 40px;
  text-transform: uppercase;
  flex-grow: 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease-in-out;
}
@media (max-width: 767px) {
  button {
    font-size: 12px;
    letter-spacing: 7px;
    text-indent: 7px;
  }
}

button::after {
  content: "";
  z-index: -1;
  background-color: #FFFFFF;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  transition: height 0.3s ease-in-out;
}

button:hover {
  color: #090C1B;
}

button:hover::after {
  height: 100%;
}

#header {
  justify-content: space-between;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9;
  padding: 20px 40px;
}
#header .logo-eterna {
  width: 150px;
}
#header .logo-rr {
  width: 50px;
}
@media (max-width: 767px) {
  #header {
    padding: 20px;
  }
  #header .logo-eterna {
    width: 120px;
  }
  #header .logo-rr {
    width: 40px;
  }
}

#lang-selector {
  gap: 16px;
  font-size: 18px;
  margin-bottom: -0.3em;
}
@media (max-width: 767px) {
  #lang-selector {
    font-size: 16px;
    margin-bottom: -0.4em;
  }
}

:root {
  --swiper-theme-color: #FFFFFF;
  --swiper-pagination-right: 40px;
  --swiper-pagination-bottom: 40px;
  --swiper-pagination-bullet-size: 12px;
  --swiper-pagination-bullet-inactive-color: #252525;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 0;
  --swiper-pagination-bullet-vertical-gap: 0;
}

#main-swiper {
  padding: 0 40px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  #main-swiper {
    padding: 0 20px;
  }
}

.swiper-pagination-bullet {
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.swiper-pagination-bullet:hover {
  transform: scale(1.5);
}

#pagination {
  mix-blend-mode: screen;
  position: fixed;
  top: unset;
  left: unset;
  right: 50%;
  bottom: 0;
  padding: 30px 40px;
  transform: translateX(50%);
  z-index: 9;
  gap: 0;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  max-width: 700px;
}
#pagination:before {
  content: "";
  width: calc(100% - 80px);
  height: 2px;
  background-color: #252525;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 767px) {
  #pagination {
    padding: 20px;
  }
  #pagination:before {
    width: calc(100% - 40px);
  }
}

@keyframes eterna-glow {
  0% {
    filter: drop-shadow(0 0 1px #FFFFFF) blur(0);
  }
  100% {
    filter: drop-shadow(0 0 5px #FFFFFF) blur(0.5px);
  }
}
#intro .logo-eterna {
  animation: eterna-glow 2s ease infinite alternate;
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  #intro .logo-eterna {
    margin-bottom: 20px;
  }
}

#audio-icon {
  margin-top: 40px;
  width: 35px;
  height: 35px;
  cursor: pointer;
}
@media (max-width: 767px) {
  #audio-icon {
    width: 25px;
    height: 25px;
  }
}

.era-header {
  align-items: end;
}
@media (max-width: 767px) {
  .era-header {
    align-items: start;
    gap: 20px;
    margin-bottom: -10px;
  }
}

.era-paragraph {
  max-width: 500px;
}

#three-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  display: block;
  pointer-events: none;
}

#novecento-swiper {
  width: 100%;
  max-width: 100vh;
  min-height: 0;
  overflow: visible;
  margin: 80px auto;
}
@media (max-width: 1024px) {
  #novecento-swiper {
    margin: 80px auto;
  }
}
@media (max-width: 767px) {
  #novecento-swiper {
    margin: 40px auto;
  }
}
#novecento-swiper .swiper-slide {
  transition: transform 0.5s ease, filter 0.5s ease, opacity 0.5s ease;
  z-index: 1;
  opacity: 0;
  background-color: #090C1B;
  filter: blur(4px);
  border-radius: 4px;
}
#novecento-swiper .swiper-slide:has(+ .swiper-slide-prev),
#novecento-swiper .swiper-slide-next + .swiper-slide {
  opacity: 0.5 !important;
}
#novecento-swiper .swiper-slide-prev,
#novecento-swiper .swiper-slide-next {
  z-index: 2;
  transform: scale(1.2);
  filter: blur(1px) !important;
  opacity: 1 !important;
}
#novecento-swiper .swiper-slide-active {
  z-index: 3;
  transform: scale(1.4);
  filter: blur(0) !important;
  opacity: 1 !important;
}
#novecento-swiper .swiper-slide img {
  cursor: pointer;
  border-radius: 4px;
  width: 100%;
  aspect-ratio: 2/3;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: luminosity;
}

#finale .logo-full {
  width: 200px;
  animation: eterna-glow 2s ease infinite alternate;
}

.float-img {
  background-color: #090C1B;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.float-img:after, .float-img:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  height: auto;
  aspect-ratio: 1;
  z-index: 1;
}
.float-img:before {
  background: linear-gradient(-45deg, #090C1B 0%, transparent 50%);
  width: 50%;
}
.float-img:after {
  background: url(../assets/graphics/plus-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 5% 5% 0;
  width: 8%;
}
.float-img img {
  cursor: pointer;
  width: 225px;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: luminosity;
  transition: transform 0.3s ease;
}
@media (max-width: 1024px) {
  .float-img img {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .float-img img {
    width: 150px;
  }
}
.float-img img:hover {
  transform: scale(1.1);
}

#insights-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  pointer-events: none;
  background-color: transparent;
  -webkit-backdrop-filter: blur(0);
          backdrop-filter: blur(0);
  transition: background-color 0.5s ease, -webkit-backdrop-filter 0.5s ease;
  transition: backdrop-filter 0.5s ease, background-color 0.5s ease;
  transition: backdrop-filter 0.5s ease, background-color 0.5s ease, -webkit-backdrop-filter 0.5s ease;
}
#insights-wrapper.active {
  pointer-events: auto;
  background-color: rgba(9, 12, 27, 0.5647058824);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.insight-overlay {
  gap: 80px;
  border: solid 1px #FFFFFF;
  padding: 60px;
  background-color: #090C1B;
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  max-width: 1440px;
  overflow-y: scroll;
  position: fixed;
  left: 50%;
  top: 150%;
  transform: translate(-50%, -50%);
  transition: top 0.5s ease;
}
.insight-overlay.active {
  top: 50%;
  display: flex;
}
@media (max-width: 767px) {
  .insight-overlay {
    gap: 40px;
    padding: 40px 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
  }
}

.insight-img-wrapper {
  margin: 40px auto;
}

.insight-img {
  border-radius: 4px;
  width: 100%;
  max-width: 600px;
  cursor: zoom-in;
}

.insight-close-icon {
  position: fixed;
  width: 30px;
  height: 30px;
  top: 40px;
  right: 40px;
  cursor: pointer;
}
.insight-close-icon:after, .insight-close-icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
}
.insight-close-icon:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.insight-close-icon:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
@media (max-width: 767px) {
  .insight-close-icon {
    width: 15px;
    height: 15px;
    top: 20px;
    right: 20px;
  }
}

.insight-title {
  padding-right: 50px;
}

.caption, .insight-fonti {
  opacity: 0.7;
}

.insight-fonti a {
  text-decoration: underline;
}

.cursor-influence {
  transition: transform 0.5s ease;
}

@media (min-width: 1025px) {
  .lg-text-right {
    text-align: right;
  }
  .lg-text-left {
    text-align: left;
  }
  .lg-text-justify {
    text-align: justify;
    margin-bottom: -1em;
  }
  .lg-text-justify::after {
    content: "";
    display: inline-block;
    width: 100%;
  }
  .lg-text-center {
    text-align: center;
  }
  .lg-hide {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .md-text-right {
    text-align: right;
  }
  .md-text-left {
    text-align: left;
  }
  .md-text-justify {
    text-align: justify;
    margin-bottom: -1em;
  }
  .md-text-justify::after {
    content: "";
    display: inline-block;
    width: 100%;
  }
  .md-text-center {
    text-align: center;
  }
  .md-hide {
    display: none !important;
  }
  .md-flex-column {
    flex-direction: column;
  }
  .md-flex-row {
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .sm-text-right {
    text-align: right;
  }
  .sm-text-left {
    text-align: left;
  }
  .sm-text-justify {
    text-align: justify;
    margin-bottom: -1em;
  }
  .sm-text-justify::after {
    content: "";
    display: inline-block;
    width: 100%;
  }
  .sm-text-center {
    text-align: center;
  }
  .sm-hide {
    display: none !important;
  }
  .sm-flex-column {
    flex-direction: column;
  }
  .sm-flex-row {
    flex-direction: row;
  }
  .sm-flex-column-reverse {
    flex-direction: column-reverse;
  }
  .sm-flex-row-reverse {
    flex-direction: row-reverse;
  }
}/*# sourceMappingURL=style.css.map */