/*
  FONTS
  font-family: 'Orelo', serif;
  font-family: 'Poppins', sans-serif;
*/

@font-face {
  font-family: 'Orelo';
  src: url('../fonts/orelo-semiwidemedium.woff2') format('woff2'),
       url('../fonts/orelo-semiwidemedium.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-v15-latin-regular.woff2') format('woff2'),
       url('../fonts/poppins-v15-latin-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-v15-latin-italic.woff2') format('woff2'),
       url('../fonts/poppins-v15-latin-italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-v15-latin-500.woff2') format('woff2'),
       url('../fonts/poppins-v15-latin-500.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-v15-latin-600.woff2') format('woff2'),
       url('../fonts/poppins-v15-latin-600.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-v15-latin-700.woff2') format('woff2'),
       url('../fonts/poppins-v15-latin-700.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-v15-latin-800.woff2') format('woff2'),
       url('../fonts/poppins-v15-latin-800.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}


/*
	NORMALIZE
*/

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

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

audio, canvas, video {
  display: inline-block;
}

:root {
  font-size: 62.5%;
  --black: #011629;
  --green: #0B3B47;
  --aquamarine: #1C9FB6;
  --grey: #303030;
  --grey-light: #848F98;
  --ocean: #020e2d;
  --blue: #1C9FB6;
  --white: #F4F6F7;
  --grey-lighter: rgba(244,246,247,0.48);
  --coral: #E36C6C;
}

body {
  margin: 0;
  padding: 0;
  color: var(--black);
  text-align: center;
  font-family: 'Poppins', sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

a:hover, a:focus, a:active {
  text-decoration: none;
  outline: none;
}

b, strong {
  font-weight: bold;
}

code, kbd, pre, samp {
  font-family: monospace, serif;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

small {
  font-size: 80%;
}

img {
  border: 0;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

ul, ol {
  padding: 0;
  margin: 0;
}

ul, li {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 0;
}

ol li {
  list-style-type: decimal;
}

p {
  line-height: 1em;
  margin-bottom: 0;
  margin-top: 0;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  margin-top: 0;
  margin-bottom: 0;
}

blockquote {
  margin: 0;
  padding: 0;
}

/* INTRO */
.intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-image: url('../img/intro/bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 4rem;
  position: relative;  
}

.intro ul {
  border-top: 1px solid black;
  margin-top: 4rem;
  padding-top: 4rem;
  text-align: left;
}

.intro li {
  color: var(--black);
  font-size: 1.4em;
  line-height: 1.286em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.intro li strong {
  font-weight: normal;
  width: calc(100% - 6rem);
}

.intro li img {
  max-width: 5rem;
}

.intro p {
  opacity: 0;
  visibility: hidden;
  animation: opacity 1s forwards 0.25s;
  font-size: 1.4em;
  line-height: 1.417em;
  text-align: center;
  max-width: 61rem;
  margin: auto auto 0;
}

.intro p + p {
  margin-top: 2rem;
}

.intro p strong {
  display: block;
  font-size: 1.083em;
  font-weight: normal;
  color: var(--aquamarine);
}

.intro .button {
  opacity: 0;
  visibility: hidden;
  animation: opacity 1s forwards 1s;
  margin: 4rem auto auto;
  font-weight: 500;
  font-size: 1.4em;
  line-height: 1.875em;
  letter-spacing: 0.041em;
  text-transform: uppercase;
  color: var(--black);
  position: relative;
  padding-top: 5.9rem;
  display: inline-block;
}

.intro .button:before {
  content: '';
  display: block;
  width: 4.4rem;
  height: 4.4rem;
  border: 0.15rem solid var(--black);
  border-radius: 100%;
  position: absolute;
  top: 0.6rem;
  left: 50%;
  transform: translateX(-50%) scale(1);
  animation: beat 0.8s infinite alternate;
}

.intro .button:after {
  content: '';
  display: block;
  width: 2rem;
  height: 1.2rem;
  background-image: url('../img/intro/arrow.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 2.3rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
}

.intro .button:hover:after {
  animation: arrow 2.6s infinite;
}

.intro #loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 2s;
  width: 100%;
  height: auto;
  min-height: calc(100vh - 8.2rem);
  display: flex;
  flex-direction: column;
}

.intro #loaded.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.loading {
  font-weight: 500;
  font-size: 1.4em;
  line-height: 1.875em;
  letter-spacing: 0.041em;
  text-transform: uppercase;
  color: var(--black);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  padding-top: 8rem;
  width: 14rem;
}

.loading:before {
  content: '';
  display: block;
  width: 14rem;
  height: 2rem;
  position: absolute;
  top: 4rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url('../img/loading-see.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.loading:after {
  content: '';
  display: block;
  width: 11rem;
  height: 4.6rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url('../img/loading-boat.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  animation: loadingboat 2.5s alternate infinite;
}


/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transition: opacity 3s;
}

.b-about header,
.b-history header {
  opacity: 1;
  visibility: visible;
}

.b-history:not(.b-closure):not(.b-back) header {
  background: var(--ocean);
}

.header_content {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin: 0 auto;
}

header h1 {
  font-family: 'Orelo';
  font-weight: normal;
  font-style: normal;
  font-size: 1.8em;
  line-height: 0.6em;
  color: var(--black);
  text-align: left;
  transition: color 0.25s;
}

.b-history:not(.b-closure):not(.b-back) header h1 {
  color: white;
}

header nav {
  margin-right: 0;
  margin-left: auto;
  width: 2.6rem;
  position: relative;
  z-index: 1;
  order: 1;
}

header nav ul {
  position: fixed;
  background: var(--black);
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 1s;  
}

header nav.active ul {
  opacity: 1;
  visibility: visible;
}

header nav li {
  margin: 2rem auto;
}

header nav a {
  font-family: 'Poppins';
  font-weight: 600;
  font-style: normal;
  color: var(--black);
  font-size: 1.4em;
  line-height: 1.1em;
  letter-spacing: 0.063em;
  text-transform: uppercase;
  display: block;
  transition: color 0.25s;
}

header nav.active a,
.b-history:not(.b-closure):not(.b-back) header nav a {
  color: white;
}

header nav > a {
  margin: auto;
  width: 2.6rem;
  height: 1.6rem;
  cursor: pointer;
  position: relative;
  z-index: 20;
}

header .hamburger,
header .hamburger:after,
header .hamburger:before {
  width: 2.6rem;
  height: 0.2rem;
}

header .hamburger {
  position: relative;
  transform: translateY(0.7rem);
  background: var(--black);
  transition: all 0ms 300ms;
  width: 2.2rem;
  display: block;
  transition: background 0.2s;
}

.b-history:not(.b-closure):not(.b-back) header .hamburger {
  background: white;
}

header nav.active .hamburger {
  background: rgba(255,255,255,0);
}

header .hamburger:before {
  content: '';
  position: absolute;
  left: -0.3rem;
  bottom: 0.7rem;
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), background 0.2s;
  background: var(--black);
}

header .hamburger:after {
  content: '';
  position: absolute;
  left: 0.5rem;
  width: 1.7rem;
  top: 0.7rem;
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), background 0.2s;
  background: var(--black);
}

header nav.active .hamburger:after {
  top: 0;
  width: 2.6rem;
  left: 0;
  transform: rotate(45deg);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

header nav.active .hamburger:before {
  bottom: 0;
  left: 0;
  transform: rotate(-45deg);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.b-history:not(.b-closure):not(.b-back) header .hamburger:before,
.b-history:not(.b-closure):not(.b-back) header .hamburger:after,
header nav.active .hamburger:before,
header nav.active .hamburger:after {
  background: white;
}

header .mute {
  margin-left: 1rem;
  margin-bottom: -0.18rem;
}

.mute,
.mute strong {
  display: block;
  width: 2.8rem;
  height: 2.3rem;
  text-align: left;
  text-indent: -6666rem;
  overflow: hidden;
  position: relative;
}

.mute strong:before,
.mute strong:after,
.mute:before,
.mute:after {
  content: '';
  display: block;
  width: 0.46rem;
  height: 2.3rem;
  background: var(--black);
  border: 0.16rem solid var(--black);
  position: absolute;
  bottom: 0;
  right: 0;
  animation: sound 0.6s alternate infinite ease-in-out;
  transition: color 0.25s;
}

.b-history:not(.b-closure):not(.b-back) .mute strong:before,
.b-history:not(.b-closure):not(.b-back) .mute strong:after,
.b-history:not(.b-closure):not(.b-back) .mute:before,
.b-history:not(.b-closure):not(.b-back) .mute:after {
  background: white;
}

.mute.active strong:before,
.mute.active strong:after,
.mute.active:before,
.mute.active:after {
  animation: none;
  background: transparent;
}

.b-history:not(.b-closure):not(.b-back) header .mute.active strong:before,
.b-history:not(.b-closure):not(.b-back) header .mute.active strong:after,
.b-history:not(.b-closure):not(.b-back) header .mute.active:before,
.b-history:not(.b-closure):not(.b-back) header .mute.active:after {
 border-color: white;
}

.mute strong:after {
  height: 1.84rem;
  right: 0.8rem;
  animation-delay: 0.1s;
}

.mute:before {
  height: 1.38rem;
  right: 1.6rem;
  animation-delay: 0.2s;
}

.mute:after {
  height: 0.92rem;
  right: auto;
  left: 0;
  animation-delay: 0.3s;
}

.stage_mute {
  width: 4.6rem;
  height: 4.6rem;
  padding: 0.75rem;
  border: 1px solid var(--black);
  border-radius: 100%;
  position: fixed;
  top: 2rem;
  left: 8.5rem;
  z-index: 5;
}

.stage_mute .mute {
  transform: scale(0.75);
}

#stage1 .stage_mute,
#stage2 .stage_mute {
  border-color: white;
}

.stage_mute .mute strong:before,
.stage_mute .mute strong:after,
.stage_mute .mute:before,
.stage_mute .mute:after {
  background: var(--black);
  border-color: var(--black);
}

#stage1 .stage_mute .mute strong:before,
#stage1 .stage_mute .mute strong:after,
#stage1 .stage_mute .mute:before,
#stage1 .stage_mute .mute:after,
#stage2 .stage_mute .mute strong:before,
#stage2 .stage_mute .mute strong:after,
#stage2 .stage_mute .mute:before,
#stage2 .stage_mute .mute:after {
  background: white;
  border-color: white;
}

.stage_mute .mute.active strong:before,
.stage_mute .mute.active strong:after,
.stage_mute .mute.active:before,
.stage_mute .mute.active:after,
#stage1 .stage_mute .mute.active strong:before,
#stage1 .stage_mute .mute.active strong:after,
#stage1 .stage_mute .mute.active:before,
#stage1 .stage_mute .mute.active:after,
#stage2 .stage_mute .mute.active strong:before,
#stage2 .stage_mute .mute.active strong:after,
#stage2 .stage_mute .mute.active:before,
#stage2 .stage_mute .mute.active:after {
  background: transparent;
}

/* MAIN */
main {
  background: white;
}

/* SEPARATE TITLES */
.separate strong {
  display: block;
}

.separate span {
  display: inline-block;
}

.separate span:nth-of-type(1n) { animation-delay: 0.1s; }
.separate span:nth-of-type(2n) { animation-delay: 0.2s; }
.separate span:nth-of-type(3n) { animation-delay: 0.3s; }
.separate span:nth-of-type(4n) { animation-delay: 0.4s; }
.separate span:nth-of-type(5n) { animation-delay: 0.5s; }
.separate span:nth-of-type(6n) { animation-delay: 0.6s; }
.separate span:nth-of-type(7n) { animation-delay: 0.7s; }
.separate span:nth-of-type(8n) { animation-delay: 0.8s; }
.separate span:nth-of-type(9n) { animation-delay: 0.9s; }
.separate span:nth-of-type(10n) { animation-delay: 1s; }
.separate span:nth-of-type(11n) { animation-delay: 1.1s; }
.separate span:nth-of-type(12n) { animation-delay: 1.2s; }
.separate span:nth-of-type(13n) { animation-delay: 1.3s; }
.separate span:nth-of-type(14n) { animation-delay: 1.4s; }
.separate span:nth-of-type(15n) { animation-delay: 1.5s; }
.separate span:nth-of-type(16n) { animation-delay: 1.6s; }
.separate span:nth-of-type(17n) { animation-delay: 1.7s; }
.separate span:nth-of-type(18n) { animation-delay: 1.8s; }
.separate span:nth-of-type(19n) { animation-delay: 1.9s; }
.separate span:nth-of-type(20n) { animation-delay: 2s; }

/* ABOUT */
.about {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about_content {
  display: block;
  width: 100%;
  max-width: 140rem;
  margin: 0 auto auto;
  position: relative;
  padding: 10rem 2rem 15rem;
  z-index: 2;
}

.about_bg {
  width: 0;
  height: 0;
  border-radius: 100%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);  
  z-index: -1;
}

.about_bg span {
  display: block;
  width: 120vw;
  height: 120vh;
  background-image: url('../img/about/bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.about_title {
  font-family: 'Orelo';
  font-weight: normal;
  font-style: normal;
  color: var(--green);
  font-size: 5em;
  line-height: 1em;
  letter-spacing: -0.006em;
  text-align: left;
  width: 100%;
  max-width: 40rem;
  margin: 0 auto 2rem 0;
  z-index: 10;
  position: relative;
}

.about_title strong {
  font-weight: normal;
}

.about_title span:nth-of-type(1n) { animation-delay: 1.1s; }
.about_title span:nth-of-type(2n) { animation-delay: 1.2s; }
.about_title span:nth-of-type(3n) { animation-delay: 1.3s; }
.about_title span:nth-of-type(4n) { animation-delay: 1.4s; }
.about_title span:nth-of-type(5n) { animation-delay: 1.5s; }
.about_title span:nth-of-type(6n) { animation-delay: 1.6s; }
.about_title span:nth-of-type(7n) { animation-delay: 1.7s; }
.about_title span:nth-of-type(8n) { animation-delay: 1.8s; }
.about_title span:nth-of-type(9n) { animation-delay: 1.9s; }
.about_title span:nth-of-type(10n) { animation-delay: 2s; }

.about_hashtag {
  color: var(--aquamarine);
  font-size: 1.8em;
  line-height: 1.154em;
  font-weight: normal;
  text-align: left;
  width: 100%;
  margin: 0 auto auto;
  z-index: 10;
  position: relative;
}

.about_mute {
  width: 4.6rem;
  height: 4.6rem;
  padding: 0.75rem;
  border: 0.15rem solid var(--black);
  border-radius: 100%;
  position: absolute;
  left: 2rem;
  bottom: 3rem;
  z-index: 10;
}

.about_mute .mute {
  transform: scale(0.75);
}

.about_skip {
  display: inline-block;
  color: var(--black);
  font-size: 1.4em;
  line-height: 1em;
  letter-spacing: 0.042em;
  text-transform: uppercase;
  position: absolute;
  left: 2rem;
  bottom: 0;
  z-index: 10;
}

.about_skip:after {
  content: '';
  width: 2.5rem;
  height: 1.6rem;
  display: inline-block;
  background-image: url('../img/arrow-right.svg');
  background-position: center right;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 0.5rem;
  margin-bottom: -0.3rem;
}

.about_elena {
  width: 50%;
  height: 90%;
  background-image: url('../img/about/elena.png?v2');
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateX(100%);
  z-index: 9;
}

.about_see {
  width: 100%;
  height: 10vh;
  max-height: 38rem;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(100%);
  z-index: 1;
}

.about_see span {
  display: block;
  width: 100%;
  height: 10vh;
  max-height: 38rem;
  background-image: url('../img/about/mar.png?v2');
  background-position: center bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  bottom: 0;
}

.about_see span:nth-of-type(2) {
  background-image: url('../img/about/mar-reflejo.png?v2');
}

.about_see span:nth-of-type(3) {
  background-image: url('../img/barco.png');
  mix-blend-mode: multiply;
  left: 50%;
  transform: translateY(0.5rem) rotate(-20deg);
  animation-name: boat;
  width: 16.2rem;
  height: 14.3rem;
  margin-left: -8.1rem;
  bottom: -6rem;
}

.about_butterflies span {
  display: block;
  width: 9.3rem;
  height: 9.4rem;
  background-image: url('../img/about/mariposa1.png');
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  position: absolute;
  left: 10%;
  top: 10%;
}

.about_butterflies span:nth-of-type(1) {
  width: 5rem;
  height: 4rem;
}

.about_butterflies span:nth-of-type(2) {
  width: 7rem;
  height: 3rem;
  background-image: url('../img/about/mariposa2.png');
  left: 30%;
  top: 10%;
}

.about_butterflies span:nth-of-type(3) {
  width: 6.2rem;
  height: 4.6rem;
  background-image: url('../img/about/mariposa3.png');
  left: 65%;
  top: 9%;
}

.about_butterflies span:nth-of-type(4) {
  background-image: url('../img/about/mariposa4.png');
  top: 30%;
  width: 4.5rem;
  height: 4.9rem;
  right: 5%;
  top: 30%;
  left: auto;
}

.about_butterflies span:nth-of-type(5) {
  background-image: url('../img/about/mariposa5.png');
  left: 74%;
  width: 6.7rem;
  height: 5.9rem;
  top: 42%;
}

.about_butterflies span:nth-of-type(6) {
  background-image: url('../img/about/mariposa6.png');
  left: 50%;
  width: 10.5rem;
  height: 10rem;
  top: 66%;
}

.about p {
  color: var(--grey);
  font-size: 1.6em;
  line-height: 1.333em;
  letter-spacing: 0.042em;
  text-align: left;
  margin: 0 auto auto;
  position: absolute;
  width: calc(100% - 6rem);
  max-width: 40rem;
}

.about_end {
  background: var(--ocean);
  position: absolute;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 100%;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about_end strong {
  font-weight: 700;
  font-style: normal;
  color: white;
  font-size: 1.6em;
  line-height: 1em;
  text-align: center;
}

.about_end:after {
  content: '';
  display: block;
  width: 100%;
  height: 15rem;
  background-image: url('../img/about/fin.png');
  background-position: center top;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: -15rem;
  left: 0;
  z-index: 1;
}

/* ABOUT > ANIMATIONS > SCENE 1 */
.about.active {
  z-index: 1;
}

.about_bg {
  transition: all 3s;
}

body.b-back .about_bg {
  transition: none;
  width: 200%;
  height: 200%;
}

.about.active .about_bg {
  width: 200%;
  height: 200%;
}

.about .about_title {
  opacity: 0;
  visibility: hidden;
  transform: translateY(2rem);
  transition: all 2s 1.25s;
}

.about.active .about_title {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.about.active > .about_title span {
  animation-name: wave;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.about .about_hashtag,
.about .about_mute,
.about .about_skip {
  opacity: 0;
  visibility: hidden;
  transition: all 2s 3s;
}

.about.active .about_hashtag,
.about.active .about_mute,
.about.active .about_skip {
  opacity: 1;
  visibility: visible;
}

.about_elena {
  opacity: 0;
  visibility: hidden;
  transition: all 4s 4s;
}

.about.active .about_elena {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%);
}

.about_see,
.about_see span:nth-of-type(3) {
  opacity: 0;
  visibility: hidden;
  transition: all 4s 4s;
}

.about.active .about_see {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
}

.about_see span {
  animation: see 4s alternate infinite;
}

.about_see span:nth-of-type(2) {
  animation: see-alt 4s alternate infinite;
}

/* ABOUT > ANIMATIONS > SCENE 2 */
.about_bg span {
  transition: width 3s, height 3s;
}

.about.scene-2 .about_bg span {
  width: 100vw;
  height: 100vh;
}

.about.scene-2 .about_title,
.about.scene-2 .about_hashtag {
  transition-delay: 0s;
  opacity: 0;
  visibility: visible;
}

.about_butterflies span {
  opacity: 0;
  visibility: hidden;
  transition: all 1s 2s;
}

.about.scene-2 .about_butterflies span:nth-of-type(1),
.about.scene-2 .about_butterflies span:nth-of-type(2),
.about.scene-2 .about_butterflies span:nth-of-type(3) {
  opacity: 1;
  visibility: visible;
  animation: butterflies-left 4s infinite;
}

.about.scene-2 .about_butterflies span:nth-of-type(2),
.about.scene-2 .about_butterflies span:nth-of-type(3),
.about.scene-2 .about_butterflies span:nth-of-type(6) {
  animation-name: butterflies-right;
}

.about.scene-2 .about_elena {
  transition-delay: 0s;
}

.about p {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-30%);
  position: absolute;
  top: 50%;
  transition: all 3s;
}

.about.scene-2 p:nth-of-type(1) {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
}

/* ABOUT > ANIMATIONS > SCENE 3 */
.about.scene-2.scene-3 p:nth-of-type(1) {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-60%);
  transition-delay: 0s;
  transition-duration: 1s;
}

.about.scene-2.scene-3 p:nth-of-type(2) {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
  transition-delay: 0.5s;
}

.about.scene-2.scene-3 .about_elena {
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition-delay: 0s;
}

.about.scene-2.scene-3 .about_see span:nth-of-type(3) {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.about.scene-2.scene-3 .about_butterflies span:nth-of-type(4),
.about.scene-2.scene-3 .about_butterflies span:nth-of-type(5),
.about.scene-2.scene-3 .about_butterflies span:nth-of-type(6) {
  opacity: 1;
  visibility: visible;
  animation: butterflies-left 4s infinite;
}

.about.scene-2.scene-3 .about_butterflies span:nth-of-type(4) {
  animation-delay: 1s;
  animation-duration: 5s;
}

.about.scene-2.scene-3 .about_butterflies span:nth-of-type(5) {
  animation-delay: 0.2s;
  animation-duration: 6s;
}

.about.scene-2.scene-3 .about_butterflies span:nth-of-type(6) {
  animation-name: butterflies-up;
  animation-duration: 7s;
}

/* ABOUT > ANIMATIONS > SCENE 4 */
.about.scene-2.scene-3.scene-4 .about_see span:nth-of-type(3),
.about.scene-2.scene-3.scene-4 .about_butterflies span,
.about.scene-2.scene-3.scene-4 p:nth-of-type(2) {
  opacity: 0;
  visibility: hidden;
}

.about_end {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s, top 5s;
}

.about.scene-2.scene-3.scene-4 .about_end {
  opacity: 1;
  visibility: visible;
  top: 0;
}

.about_end strong {
  opacity: 0;
  visibility: hidden;
  transition: all 2s 3s;
}

.about.scene-2.scene-3.scene-4 .about_end strong {
  opacity: 1;
  visibility: visible;
}

/* HISTORY */
.history {
  width: 100%;
  background: var(--ocean);
  display: none;
  height: 1200vw;
  position: relative;
  overflow: hidden;
  margin-top: 100vh; /* TODO */
}

.b-about .history,
.b-history .history {
  display: block;
}

.history_content {
  width: 1200vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.history.fixed .history_content {
  position: fixed;
  top: 0;
  left: 0;
}

.history.absoluted .history_content {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
}

.history ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.history li,
.history li div {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.history li div {
  padding: 5rem 3rem;
  max-width: 130.6rem;
  margin: auto;
}

.history li:nth-of-type(2),
.history li:nth-of-type(3),
.history li:nth-of-type(4),
.history li:nth-of-type(6),
.history li:nth-of-type(8),
.history li:nth-of-type(10),
.history li:nth-of-type(12),
.history li:nth-of-type(2) div,
.history li:nth-of-type(3) div,
.history li:nth-of-type(4) div,
.history li:nth-of-type(6) div,
.history li:nth-of-type(8) div,
.history li:nth-of-type(10) div,
.history li:nth-of-type(12) div {
  align-items: flex-end;
}

.history_image {
  border-radius: 1.6rem;
  overflow: hidden;
  display: block;
  width: 70%;
  position: absolute;
  right: 3rem;
  top: 12rem;
  z-index: 1;
}

.history li:nth-of-type(2) .history_image,
.history li:nth-of-type(3) .history_image,
.history li:nth-of-type(4) .history_image,
.history li:nth-of-type(6) .history_image,
.history li:nth-of-type(8) .history_image,
.history li:nth-of-type(10) .history_image,
.history li:nth-of-type(12) .history_image {
  right: auto;
  left: 3rem;
}

.history li:nth-of-type(3) .history_image,
.history li:nth-of-type(4) .history_image,
.history li:nth-of-type(5) .history_image,
.history li:nth-of-type(6) .history_image,
.history li:nth-of-type(7) .history_image,
.history li:nth-of-type(8) .history_image,
.history li:nth-of-type(9) .history_image {
 /* margin-top: 8rem; */
}

.history_image canvas {
  display: none;
}

.history_image picture,
.history_image picture img {
  display: block;
}

.history_number {
  color: rgba(255,255,255,0.48);
  font-size: 1.8em;
  line-height: 1em;
  margin-top: 5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.history_number strong {
  color: white;
  font-family: 'Orelo';
  font-weight: normal;
  font-style: normal;
}

.history_title {
  color: var(--blue);
  font-family: 'Orelo';
  font-weight: normal;
  font-style: normal;
  font-size: 3.6em;
  line-height: 1em;
  letter-spacing: -0.006em;
  margin-bottom: 3rem;
  text-align: left;
  position: relative;
  z-index: 2;
}

.history_title strong {
  font-weight: normal;
}

.history li:nth-of-type(2) .history_title,
.history li:nth-of-type(3) .history_title,
.history li:nth-of-type(4) .history_title,
.history li:nth-of-type(6) .history_title,
.history li:nth-of-type(8) .history_title,
.history li:nth-of-type(10) .history_title,
.history li:nth-of-type(12) .history_title {
  text-align: right;
}

.history_title a {
  color: var(--blue);
}

.history_link {
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  background-image: url('../img/link.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  text-indent: -6666rem;
  overflow: hidden;
  margin-bottom: auto;
  margin-left: 1rem;
  animation: circularDance 2s infinite linear;
  position: relative;
  z-index: 2;
}

.history li:nth-of-type(2) .history_link,
.history li:nth-of-type(3) .history_link,
.history li:nth-of-type(4) .history_link,
.history li:nth-of-type(6) .history_link,
.history li:nth-of-type(8) .history_link,
.history li:nth-of-type(10) .history_link,
.history li:nth-of-type(12) .history_link {
  margin-left: auto;
  margin-right: 1rem;
  transform: rotate(-90deg);
  animation-name: circularDanceMirror;
}

.history_menu {
  position: absolute;
  bottom: 0;
  z-index: 9;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem 5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1s;
}

.history_menu.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.history_intro,
.history_end {
  display: inline-block;
  width: 3.5rem;
  position: relative;
}

.history_intro:before,
.history_end:before {
  content: '';
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  display: inline-block;
  width: 3.5rem;
  height: 3.5rem;
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
  text-indent: -6666rem;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.history_intro:before {
  background-image: url('../img/boat.svg');
}

.history_end:before {
  background-image: url('../img/lighthouse.svg');
  background-size: auto 2.5rem;
}

.history_intro span,
.history_end span {
  display: none;
}

.history_nav {
  width: calc(100% - 9rem);
  max-width: 112rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.history_nav:after {
  content: '';
  display: block;
  background: rgba(255,255,255,0.39);
  width: calc(100% - 2rem);
  height: 1px;
  position: absolute;
  top: -0.05rem;
  left: 50%;
  transform: translateX(-50%);
}

.history_nav a {
  display: block;
  width: calc(100% / 12);
  height: 2.4rem;
  text-indent: -6666rem;
  overflow: hidden;
  margin: calc(100% / 12 * -1) 0;
  position: relative;
  z-index: 1;
}

.history_nav a:before {
  content: '';
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 100%;
  background: white;
  text-indent: -6666rem;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.history_nav:before {
  content: '';
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 100%;
  border: 1px solid var(--aquamarine);
  text-indent: -6666rem;
  overflow: hidden;
  position: absolute;
  top: -1.2rem;
  left: 0;
  transition: all 0.15s;
}

.scene-1 .history_nav:before { left: calc(((100% / 12) * 0) + (((100% / 12) - 2.4rem) / 2)); }
.scene-2 .history_nav:before { left: calc(((100% / 12) * 1) + (((100% / 12) - 2.4rem) / 2)); }
.scene-3 .history_nav:before { left: calc(((100% / 12) * 2) + (((100% / 12) - 2.4rem) / 2)); }
.scene-4 .history_nav:before { left: calc(((100% / 12) * 3) + (((100% / 12) - 2.4rem) / 2)); }
.scene-5 .history_nav:before { left: calc(((100% / 12) * 4) + (((100% / 12) - 2.4rem) / 2)); }
.scene-6 .history_nav:before { left: calc(((100% / 12) * 5) + (((100% / 12) - 2.4rem) / 2)); }
.scene-7 .history_nav:before { left: calc(((100% / 12) * 6) + (((100% / 12) - 2.4rem) / 2)); }
.scene-8 .history_nav:before { left: calc(((100% / 12) * 7) + (((100% / 12) - 2.4rem) / 2)); }
.scene-9 .history_nav:before { left: calc(((100% / 12) * 8) + (((100% / 12) - 2.4rem) / 2)); }
.scene-10 .history_nav:before { left: calc(((100% / 12) * 9) + (((100% / 12) - 2.4rem) / 2)); }
.scene-11 .history_nav:before { left: calc(((100% / 12) * 10) + (((100% / 12) - 2.4rem) / 2)); }
.scene-12 .history_nav:before { left: calc(((100% / 12) * 11) + (((100% / 12) - 2.4rem) / 2)); }

/* HISTORY > ANIMATIONS */
.b-history .history.fixed .history_menu {
  position: fixed;
}

.history_nav a:before,
.history_nav a:after {
  transition: all 0.15s;
}
  
.history.scene-1 .history_nav a:nth-of-type(1):before,
.history.scene-2 .history_nav a:nth-of-type(2):before,
.history.scene-3 .history_nav a:nth-of-type(3):before,
.history.scene-4 .history_nav a:nth-of-type(4):before,
.history.scene-5 .history_nav a:nth-of-type(5):before,
.history.scene-6 .history_nav a:nth-of-type(6):before,
.history.scene-7 .history_nav a:nth-of-type(7):before,
.history.scene-8 .history_nav a:nth-of-type(8):before,
.history.scene-9 .history_nav a:nth-of-type(9):before,
.history.scene-10 .history_nav a:nth-of-type(10):before,
.history.scene-11 .history_nav a:nth-of-type(11):before,
.history.scene-12 .history_nav a:nth-of-type(12):before,
.history.absoluted .history_nav a:nth-of-type(12):before {
  background: var(--aquamarine);
}

.history_title,
.history_number,
.history_link,
.history_image {
  opacity: 0;
  visibility: hidden;
  transform: translateY(2rem);
  transition: all 2s;
}

.history_number,
.history_link {
  transition-delay: 1s;
}

.history_image {
  transition-delay: 1.5s;
}

.history.fixed li:nth-of-type(1) .history_title,
.history.scene-2 li:nth-of-type(2) .history_title,
.history.scene-3 li:nth-of-type(3) .history_title,
.history.scene-4 li:nth-of-type(4) .history_title,
.history.scene-5 li:nth-of-type(5) .history_title,
.history.scene-6 li:nth-of-type(6) .history_title,
.history.scene-7 li:nth-of-type(7) .history_title,
.history.scene-8 li:nth-of-type(8) .history_title,
.history.scene-9 li:nth-of-type(9) .history_title,
.history.scene-10 li:nth-of-type(10) .history_title,
.history.scene-11 li:nth-of-type(11) .history_title,
.history.scene-12 li:nth-of-type(12) .history_title,
.history.absoluted li:nth-of-type(12) .history_title,
.history.fixed li:nth-of-type(1) .history_number,
.history.scene-2 li:nth-of-type(2) .history_number,
.history.scene-3 li:nth-of-type(3) .history_number,
.history.scene-4 li:nth-of-type(4) .history_number,
.history.scene-5 li:nth-of-type(5) .history_number,
.history.scene-6 li:nth-of-type(6) .history_number,
.history.scene-7 li:nth-of-type(7) .history_number,
.history.scene-8 li:nth-of-type(8) .history_number,
.history.scene-9 li:nth-of-type(9) .history_number,
.history.scene-10 li:nth-of-type(10) .history_number,
.history.scene-11 li:nth-of-type(11) .history_number,
.history.scene-12 li:nth-of-type(12) .history_number,
.history.absoluted li:nth-of-type(12) .history_number,
.history.fixed li:nth-of-type(1) .history_link,
.history.scene-2 li:nth-of-type(2) .history_link,
.history.scene-3 li:nth-of-type(3) .history_link,
.history.scene-4 li:nth-of-type(4) .history_link,
.history.scene-5 li:nth-of-type(5) .history_link,
.history.scene-6 li:nth-of-type(6) .history_link,
.history.scene-7 li:nth-of-type(7) .history_link,
.history.scene-8 li:nth-of-type(8) .history_link,
.history.scene-9 li:nth-of-type(9) .history_link,
.history.scene-10 li:nth-of-type(10) .history_link,
.history.scene-11 li:nth-of-type(11) .history_link,
.history.scene-12 li:nth-of-type(12) .history_link,
.history.absoluted li:nth-of-type(12) .history_link,
.history.fixed li:nth-of-type(1) .history_image,
.history.scene-2 li:nth-of-type(2) .history_image,
.history.scene-3 li:nth-of-type(3) .history_image,
.history.scene-4 li:nth-of-type(4) .history_image,
.history.scene-5 li:nth-of-type(5) .history_image,
.history.scene-6 li:nth-of-type(6) .history_image,
.history.scene-7 li:nth-of-type(7) .history_image,
.history.scene-8 li:nth-of-type(8) .history_image,
.history.scene-9 li:nth-of-type(9) .history_image,
.history.scene-10 li:nth-of-type(10) .history_image,
.history.scene-11 li:nth-of-type(11) .history_image,
.history.scene-12 li:nth-of-type(12) .history_image,
.history.absoluted li:nth-of-type(12) .history_image {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.history.fixed li:nth-of-type(1) .history_title span,
.history.scene-2 li:nth-of-type(2) .history_title span,
.history.scene-3 li:nth-of-type(3) .history_title span,
.history.scene-4 li:nth-of-type(4) .history_title span,
.history.scene-5 li:nth-of-type(5) .history_title span,
.history.scene-6 li:nth-of-type(6) .history_title span,
.history.scene-7 li:nth-of-type(7) .history_title span,
.history.scene-8 li:nth-of-type(8) .history_title span,
.history.scene-9 li:nth-of-type(9) .history_title span,
.history.scene-10 li:nth-of-type(10) .history_title span,
.history.scene-11 li:nth-of-type(11) .history_title span,
.history.scene-12 li:nth-of-type(12) .history_title span,
.history.absoluted li:nth-of-type(12) .history_title span {
  animation-name: wave;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.history_share {
  display: none;
  position: fixed;
  right: 2rem;
  bottom: 5rem;
  background-image: url('../img/line-v.svg');
  background-repeat: no-repeat;
  background-position: center 5.6rem;
}

.b-history.b-closure .history_share {
  background-image: url('../img/line-v-black.svg');
}

.history_share strong {
  font-size: 1.2em;
  line-height: 1em;
  letter-spacing: 0.167em;
  font-weight: normal;
  text-transform: uppercase;
  color: white;
  transform: rotate(-90deg);
  display: inline-block;
  margin-bottom: 11rem;
}

.b-history.b-closure .history_share strong {
  color: var(--black);
}

.history_share a {
  display: block;
  width: 4rem;
  height: 4rem;
  text-indent: -6666rem;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 1.2rem;
  margin: 0.05rem 1.5rem;
}

.history_share a.facebook { background-image: url('../img/facebook.svg'); background-size: auto 1.4rem; }
.history_share a.twitter { background-image: url('../img/twitter.svg'); }
.history_share a.linkedin { background-image: url('../img/linkedin.svg'); }

.b-history.b-closure .history_share a.facebook { background-image: url('../img/facebook-black.svg'); }
.b-history.b-closure .history_share a.twitter { background-image: url('../img/twitter-black.svg'); }
.b-history.b-closure .history_share a.linkedin { background-image: url('../img/linkedin-black.svg'); }

/* STAGE */
.stage {
  background-color: white;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transition: all 1s;
  pointer-events: none;
}

#stage1.stage { background-image: url('../img/stages/1/bg.png'); }
#stage2.stage { background-image: url('../img/stages/2/bg.jpg'); }
#stage2.stage.scene-1 { background-image: url('../img/stages/2/bg1-m.jpg'); background-position: center; }
#stage2.stage.scene-2 { background-image: url('../img/stages/2/bg2-m.jpg'); background-position: center; }
#stage2.stage.scene-3 { background-image: url('../img/stages/2/bg3-m.jpg'); background-position: center; }
#stage2.stage.scene-4 { background-image: url('../img/stages/2/bg4-m.jpg'); background-position: center; }
#stage3.stage { background-image: url('../img/stages/3/bg.png'); }
#stage4.stage { background-image: url('../img/stages/4/bg.jpg'); background-position: left center; }
#stage4.stage.scene-3 { background-image: url('../img/stages/4/bg3.jpg'); }
#stage4.stage.scene-4 { background-image: url('../img/stages/4/bg4.jpg'); }
#stage5.stage { background-image: url('../img/stages/5/bg.jpg'); }
#stage5.stage.scene-1 { background-image: url('../img/stages/5/bg1-m.jpg'); background-position: center right; }
#stage5.stage.scene-2 { background-image: url('../img/stages/5/bg2-m.jpg'); background-position: center right; }
#stage5.stage.scene-3 { background-image: url('../img/stages/5/bg3-m.jpg'); background-position: center right; }
#stage5.stage.scene-4 { background-image: url('../img/stages/5/bg4-m.jpg'); background-position: center right; }
#stage6.stage { background-image: url('../img/stages/6/bg.jpg'); }
#stage7.stage { background-image: url('../img/stages/7/bg.jpg'); }
#stage8.stage { background-image: url('../img/stages/8/bg.jpg'); }
#stage9.stage { background-image: url('../img/stages/9/bg.jpg'); }
#stage10.stage { background-image: url('../img/stages/10/bg.jpg'); }
#stage11.stage { background-image: url('../img/stages/11/bg.jpg'); }
#stage12.stage.scene-1 { background-image: url('../img/stages/12/bg1-m.jpg'); }
#stage12.stage.scene-2 { background-image: url('../img/stages/12/bg2-m.jpg'); }
#stage12.stage.scene-3 { background-image: url('../img/stages/12/bg3-m.jpg'); }
#stage12.stage.scene-4 { background-image: url('../img/stages/12/bg3-m.jpg'); }

.stage.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.stage:not(.active) {
  pointer-events: none;
}

.stage_scroll {
  display: block;
  height: calc(100vh - 16rem);
  max-height: 35rem;
  width: 1px;
  background: #C9C9C9;
  position: fixed;
  top: 50%;
  transform: translateY(calc(-50% - 2.5rem));
  right: 1.5rem;
}

.stage_scroll span {
  display: block;
  background: var(--coral);
  width: 0.3rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 0;
}

.stage_scroll:after {
  content: 'SCROLL';
  display: block;
  position: absolute;
  top: calc(100% + 3rem);
  left: -1.8rem;
  color: #9A9A9A;
  font-size: 1em;
  line-height: 1.2em;
  letter-spacing: 0.042em;
  font-weight: 700;
  transform: rotate(-90deg);
}

.stage_content {
  width: 100vw;
  /*height: 400vh;*/
  height: 300vh;
  padding: 2rem;
  text-align: left;
}

.stage_visible {
  width: calc(100vw - 5rem);
  height: 100%;
  text-align: center;
  position: relative;
  z-index: 4;
}

.stage_block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: sticky;
  top: 2rem;
  height: 65vh;
  padding-top: 8rem;
}

.stage_block:nth-of-type(1) {
  height: 50vh;
}

#stage6 .stage_block:nth-of-type(4),
#stage8 .stage_block:nth-of-type(4),
#stage9 .stage_block:nth-of-type(4),
#stage12 .stage_block:nth-of-type(4) {
  height: 75vh;
}

.stage_number {
  color: var(--grey-light);
  font-size: 1.8em;
  line-height: 1em;
  margin-top: 5rem;
  text-align: center;
  margin: 0 auto 2.1rem;
}

#stage1 .stage_number,
#stage2 .stage_number {
  color: var(--grey-lighter);
}

.stage_number strong {
  color: var(--black);
  font-family: 'Orelo';
  font-weight: normal;
  font-style: normal;
}

#stage1 .stage_number strong,
#stage2 .stage_number strong {
  color: var(--white);
}

.stage_title {
  font-family: 'Orelo';
  font-weight: normal;
  font-style: normal;
  color: var(--aquamarine);
  font-size: 4.5em;
  line-height: 1em;
  letter-spacing: -0.006em;
  text-align: center;
  margin-bottom: 2.3rem;
}

#stage1 .stage_title {
  color: white;
}

.stage_title strong {
  font-weight: normal;
}

#stage3 .stage_title strong:nth-of-type(1) em:nth-of-type(1):after { 
  content: '';
  display: block;
}

.stage_tag {
  color: var(--black);
  font-weight: 600;
  font-style: normal;
  font-size: 1.6em;
  line-height: 1em;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  margin-bottom: auto;
}

#stage1 .stage_tag,
#stage2 .stage_tag {
  color: white;
}

.stage_tag:after {
  content: '';
  display: block;
  width: 100%;
  height: 1rem;
  background-image: url('../img/line.svg');
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 100%;
  margin-top: 0.7rem;
}

.stage_subtitle {
  font-family: 'Orelo';
  font-weight: normal;
  font-style: normal;
  color: black;
  font-size: 4em;
  line-height: 1em;
  letter-spacing: -0.007em;
  text-align: left;
  width: 100%;
}

#stage1 .stage_subtitle,
#stage2 .stage_subtitle {
  color: white;
}

.stage_subtitle strong {
  font-weight: normal;
}

.stage_text {
  color: var(--grey);
  font-size: 1.8em;
  line-height: 1.333em;
  letter-spacing: 0.042em;
  text-align: left;
  margin-top: 0;
  margin-bottom: 2rem;
}

#stage4 .stage_block:nth-of-type(4) .stage_text {
  margin-bottom: 2rem;
  width: 100%;
}

#stage5 .stage_block:nth-of-type(3) .stage_text {
  margin-bottom: auto;
}

#stage1 .stage_text,
#stage2 .stage_text {
  color: white;
}

.stage_quote {
  color: black;
  font-family: 'Poppins';
  font-weight: 700;
  font-style: normal;
  font-size: 2.2em;
  line-height: 1.154em;
  letter-spacing: -0.007em;
  text-align: left;
  margin-bottom: auto;
  width: 100%;
}

#stage1 .stage_quote,
#stage2 .stage_quote {
  color: white;
}

#stage4 .stage_block:nth-of-type(3) .stage_text,
#stage9 .stage_block:nth-of-type(3) .stage_text,
#stage10 .stage_block:nth-of-type(3) .stage_text,
#stage11 .stage_block:nth-of-type(3) .stage_text,
#stage12 .stage_block:nth-of-type(3) .stage_text,
#stage8 .stage_block:nth-of-type(3) .stage_text,
#stage7 .stage_block:nth-of-type(3) .stage_text,
#stage6 .stage_block:nth-of-type(3) .stage_text {
  margin-top: 0;
  margin-bottom: auto;
}

#stage2 .stage_block:nth-of-type(3) .stage_quote,
#stage4 .stage_block:nth-of-type(4) .stage_text,
#stage7 .stage_block:nth-of-type(4) .stage_quote {
  margin-top: 0;
  margin-bottom: 2rem;
}

#stage2 .stage_block:nth-of-type(3) .stage_text {
  margin-top: 0;
  margin-bottom: auto;
}

#stage4 .stage_block:nth-of-type(4) .stage_quote,
#stage5 .stage_block:nth-of-type(4) .stage_quote,
#stage6 .stage_block:nth-of-type(4) .stage_quote,
#stage7 .stage_block:nth-of-type(4) .stage_text,
#stage8 .stage_block:nth-of-type(4) .stage_quote,
#stage9 .stage_block:nth-of-type(4) .stage_quote,
#stage10 .stage_block:nth-of-type(4) .stage_quote,
#stage11 .stage_block:nth-of-type(4) .stage_quote,
#stage12 .stage_block:nth-of-type(4) .stage_quote {
  margin-top: 0;
  margin-bottom: 2rem;
}

.stage_elena,
.stage_dew,
.stage_sharks span {
  position: absolute;
}

.active .stage_elena,
.active .stage_dew,
.active .stage_sharks span {
  position: fixed;
  pointer-events: none;
}

#stage1 .stage_elena {
  width: 50vw;
  height: 50vh;
  background-image: url('../img/stages/1/elena.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 0;
  left: 25vw;
  transform: translateX(100%);
  animation: stage1boat 4s alternate infinite;
}

#stage2 .stage_elena {
  width: 60vw;
  margin-left: -30vw;
  height: 50vh;
  background-image: url('../img/stages/2/elena.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -10vh;
  left: 50%;
  transform: translateX(100%);
  animation: stage1boat 4s alternate infinite;
}

#stage3 .stage_elena {
  width: 100vw;
  height: 55%;
  background-image: url('../img/stages/3/elena.jpg');
  background-position: left bottom;
  background-size: auto 100%;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  bottom: 0;
  left: 0;
  transform: translateX(100%);
}

#stage4 .stage_elena {
  width: 100vw;
  height: 50vh;
  background-image: url('../img/stages/4/elena.png');
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 0;
  left: 0;
}

#stage5 .stage_elena {
  width: 100vw;
  height: 50vh;
  background-image: url('../img/stages/5/elena.png');
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 0;
  right: 0;
}

#stage6 .stage_elena,
#stage6 .stage_elena:before {
  width: 100vw;
  height: 50vh;
  background-image: url('../img/stages/6/elena.png');
  background-position: center bottom;
  background-size: 60% auto;
  background-repeat: no-repeat;
  bottom: 0;
  left: 0;
}

#stage6 .stage_elena:before {
  content: '';
  display: block;
  position: absolute;
  background-image: url('../img/stages/6/algas.png');
}

#stage7 .stage_elena,
#stage7 .stage_elena:before {
  width: 100vw;
  height: 50vh;
  background-image: url('../img/stages/7/elena.png');
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  bottom: 0;
  left: 0;
}

#stage7 .stage_elena:before {
  content: '';
  display: block;
  position: absolute;
  background-image: url('../img/stages/7/planta.png');
}

#stage8 .stage_elena {
  width: 80vw;
  height: 40vh;
  background-image: url('../img/stages/8/elena.png');
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  bottom: 0;
  right: 0;
}

#stage8 .stage_dew {
  width: 90vw;
  height: 50vh;
  background-image: url('../img/stages/8/gota.png');
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  bottom: 0;
  right: 0;
}

#stage9 .stage_elena,
#stage9 .stage_elena:before {
  width: 100vw;
  height: 40vh;
  background-image: url('../img/stages/9/elena.png');
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  bottom: 0;
  left: 0;
}

#stage9.stage.scene-3 .stage_elena,
#stage9.stage.scene-4 .stage_elena {
  background-image: url('../img/stages/9/elena2.png');
}

#stage9 .stage_elena:before {
  content: '';
  display: block;
  position: absolute;
  background-image: url('../img/stages/9/flores.png');
  animation: butterflies-up 10s infinite;
}

#stage10 .stage_elena {
  width: 100vw;
  height: 60vh;
  background-image: url('../img/stages/10/elena.png');
  background-position: bottom right;
  background-size: contain;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  bottom: 0;
  right: 0;
}

#stage10 .stage_sharks span {
  width: 100vw;
  height: 60vh;
  background-image: url('../img/stages/10/tiburon1.png');
  background-position: bottom right;
  background-size: contain;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  bottom: 0;
  right: 0;
  animation: circularDance 5s infinite;
}

#stage10 .stage_sharks span:nth-of-type(2) {
  background-image: url('../img/stages/10/tiburon2.png');
  animation-delay: 1s;
  animation-duration: 6s;
}

#stage10 .stage_sharks span:nth-of-type(3) {
  background-image: url('../img/stages/10/tiburon3.png');
  animation-delay: 1.5s;
  animation-duration: 5.5s;
}

#stage11 .stage_elena,
#stage11 .stage_elena:before {
  width: 100vw;
  height: 40vh;
  background-image: url('../img/stages/11/elena.png');
  background-position: left bottom;
  background-size: contain;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  bottom: 0;
  left: 0;
}

#stage11 .stage_elena:before {
  content: '';
  display: block;
  position: absolute;
  background-image: url('../img/stages/11/polilla.png');
  animation: butterflies-up 10s infinite;
}

.stage_see,
.stage_wave {
  position: absolute;
  mix-blend-mode: multiply;
}

.active .stage_see,
.active .stage_wave {
  position: fixed;
  pointer-events: none;
}

#stage1 .stage_see {
  width: 100vw;
  height: 100vh;
  top: -10vh;
  left: 0;
  z-index: -1;
  background-image: url('../img/stages/1/ola.png');
  background-position: center bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  animation: stage1wave 5s infinite;
}

#stage2 .stage_see,
#stage2 .stage_wave {
  display: block;
  width: 100%;
  height: 30vh;
  max-height: 45rem;
  background-image: url('../img/stages/2/oceano.png');
  background-position: center bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  left: 0;
  bottom: 0;
  z-index: 1;
}

#stage2 .stage_wave {
  background-image: url('../img/stages/2/ola.png');
  mix-blend-mode: normal;
  z-index: 4;
}

#stage3 .stage_see,
#stage6 .stage_see,
#stage7 .stage_see,
.closure .closure_see {
  width: 100vw;
  height: 10vh;
  bottom: 0;
  left: 0;
  z-index: 1;
}

#stage3 .stage_see span,
#stage6 .stage_see span,
#stage7 .stage_see span,
.closure .closure_see span {
  display: block;
  width: 100%;
  height: 14vh;
  max-height: 38rem;
  background-image: url('../img/mar.png');
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  bottom: 0;
}

#stage3 .stage_see span:nth-of-type(2),
#stage6 .stage_see span:nth-of-type(2),
#stage7 .stage_see span:nth-of-type(2),
.closure .closure_see span:nth-of-type(2) {
  background-image: url('../img/mar-reflejo.png');
}

#stage3 .stage_see span:nth-of-type(3) {
  background-image: url('../img/ola.png');
  background-size: cover;
  mix-blend-mode: multiply;
  width: 100vw;
  height: 50vh;
  left: 0;
  bottom: 3rem;
}

#stage3 .stage_see span:nth-of-type(4) {
  background-image: url('../img/barco.png');
  mix-blend-mode: multiply;
  left: 50%;
  transform: translateY(0.5rem) rotate(-20deg);
  width: 16.2rem;
  height: 14.3rem;
  margin-left: -8.1rem;
  bottom: 0;
}

#stage4 .stage_see {
  display: block;
  width: 130vw;
  height: 20vh;
  background-image: url('../img/stages/4/mar.png');
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  left: 0;
  bottom: -40vh;
  transition: bottom 1s;
  animation: see 4s alternate infinite;
}

#stage5 .stage_see {
  width: 100vw;
  height: 50vh;
  background-image: url('../img/stages/5/reflejo.png');
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  bottom: 0;
  right: 0;
  animation: circularDance 5s alternate infinite;
}

#stage6 .stage_see span:nth-of-type(3) {
  background-image: url('../img/stages/6/rocas.png');
  animation: none;
}

#stage7 .stage_butterflies span,
#stage11 .stage_butterflies span,
#stage12 .stage_butterflies span,
.closure .closure_butterflies span {
  display: block;
  width: 6.2rem;
  height: 4.6rem;
  background-image: url('../img/about/mariposa3.png');
  left: 65%;
  top: 12%;
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  position: absolute;
}

#stage7.active .stage_butterflies span,
#stage11.active .stage_butterflies span,
#stage12.active .stage_butterflies span,
.b-closure .closure .closure_butterflies span {
  position: fixed;
  pointer-events: none;
}

#stage12 .stage_butterflies span:nth-of-type(1) {
  top: auto;
  bottom: 5%;
  left: 10%;
  transform: rotate(70deg);
}

#stage7 .stage_butterflies span:nth-of-type(2),
#stage11 .stage_butterflies span:nth-of-type(2),
#stage12 .stage_butterflies span:nth-of-type(2),
.closure .closure_butterflies span:nth-of-type(2) {
  background-image: url('../img/about/mariposa4.png');
  top: 30%;
  width: 4.5rem;
  height: 4.9rem;
  right: 5%;
  top: 30%;
  left: auto;
}

#stage12 .stage_butterflies span:nth-of-type(2) {
  top: 7%;
}

#stage7 .stage_butterflies span:nth-of-type(3),
#stage11 .stage_butterflies span:nth-of-type(3),
#stage12 .stage_butterflies span:nth-of-type(3),
.closure .closure_butterflies span:nth-of-type(3) {
  background-image: url('../img/about/mariposa6.png');
  left: 61%;
  width: 6.5rem;
  height: 5rem;
  top: 52%;
}

#stage12 .stage_butterflies span:nth-of-type(1) {
  background-image: url('../img/stages/12/polilla.png');
}

#stage11 .stage_butterflies span:nth-of-type(3) {
  left: 71%;
  top: 60%;
}

#stage9 .stage_butterflies span {
  display: block;
  width: 6.2rem;
  height: 4.6rem;
  background-image: url('../img/about/mariposa3.png');
  left: 65%;
  top: 12%;
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  position: absolute;
}

#stage9.active .stage_butterflies span {
  position: fixed;
  pointer-events: none;
}

#stage9 .stage_butterflies span:nth-of-type(2) {
  background-image: url('../img/about/mariposa4.png');
  top: 30%;
  width: 4.5rem;
  height: 4.9rem;
  left: 40%;
  top: 55%;
  left: auto;
}

#stage9 .stage_butterflies span:nth-of-type(3) {
  background-image: url('../img/about/mariposa6.png');
  left: 5%;
  width: 6.5rem;
  height: 5rem;
  top: 20%;
}

.stage_info {
  display: none;
  background: var(--black);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow-y: auto;
  text-align: left;
  z-index: 10;
  height: 100vh;
  width: calc(100vw - 2rem);
  z-index: 10;
  padding: 8rem 3rem;
}

#stageInfo11 {
  max-height: 50rem;
}

.stage.active .stage_info {
  position: fixed;
}

.stage_info.active {
  display: block;
}

.stage_info h4 {
  color: white;
  font-family: 'Poppins';
  font-weight: 700;
  font-style: normal;
  font-size: 2.6em;
  line-height: 1.077em;
  margin-bottom: 3rem;
  clear: both;
}

.stage_info p {
  color: white;
  font-family: 'Poppins';
  font-weight: normal;
  font-style: normal;
  font-size: 1.8em;
  line-height: 1.556em;
  letter-spacing: 0.042em;
}

.stage_info_close {
  display: block;
  width: 2.8rem;
  height: 2.8rem;
  background-image: url('../img/close-alt.svg');
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-indent: -6666rem;
  overflow: hidden;
  float: right;
  margin-bottom: 2rem;
}

.btn-close {
  display: block;
  width: 4.6rem;
  height: 4.6rem;
  background-image: url('../img/close.svg');
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: calc(100% + 0.2rem);
  text-indent: -6666rem;
  overflow: hidden;
  margin-bottom: 3rem;
  position: fixed;
  left: 2rem;
  top: 2rem;
  z-index: 10;
  border: 1px solid var(--black);
  border-radius: 100%;
}

#stage1 .btn-close,
#stage2 .btn-close {
  background-image: url('../img/close-white.svg');
  border-color: white;
}

.stage_nav {
  width: 17rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 auto auto;
}

.stage_nav a {
  color: var(--black);
  font-weight: 500;
  font-size: 1.2em;
  line-height: 1em;
  letter-spacing: 0.042em;
  text-transform: uppercase;
  text-align: center;
}

#stage1 .stage_nav a,
#stage2 .stage_nav a {
  color: var(--white);
}

.stage_nav a:before {
  content: '';
  display: block;
  width: 4.5rem;
  height: 4.5rem;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: 0 auto 1rem;
}

.stage_nav a.btn-info:before {
  background-image: url('../img/info.svg');
}

#stage1 .stage_nav a.btn-info:before,
#stage2 .stage_nav a.btn-info:before {
  background-image: url('../img/info-white.svg');
}

.stage_nav a.btn-next:before {
  background-image: url('../img/next.svg');
}

.stage_nav a.btn-end:before {
  background-image: url('../img/end.svg');
}

#stage1 .stage_nav a.btn-next:before,
#stage2 .stage_nav a.btn-next:before {
  background-image: url('../img/next-white.svg');
}

/* STAGE > ANIMATIONS > SCENE 1 */
.stage .stage_title,
.stage .stage_number,
.stage .stage_tag {
  opacity: 0;
  visibility: hidden;
  transform: translateY(2rem);
  transition: all 2s;
}

.stage.scene-1 .stage_title,
.stage.scene-1 .stage_number,
.stage.scene-1 .stage_tag {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.stage.scene-1 .stage_number,
.stage.scene-1 .stage_tag {
  transition-delay: 0.75s;
}

.stage.scene-1 .stage_title span {
  animation-name: wave;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

#stage1 .stage_elena,
#stage2 .stage_elena,
#stage3 .stage_elena {
  opacity: 0;
  visibility: hidden;
  transition: all 3s 1s;
  transform: translateX(-100%);
}

#stage4 .stage_elena,
#stage5 .stage_elena,
#stage6 .stage_elena,
#stage6 .stage_elena:before,
#stage7 .stage_elena,
#stage7 .stage_elena:before,
#stage7 .stage_butterflies span,
#stage8 .stage_elena,
#stage8 .stage_dew,
#stage9 .stage_elena,
#stage9 .stage_elena:before,
#stage9 .stage_butterflies span,
#stage10 .stage_elena,
#stage10 .stage_sharks span,
#stage11 .stage_elena,
#stage11 .stage_elena:before,
#stage11 .stage_butterflies span,
#stage12 .stage_butterflies span,
.closure .closure_butterflies span {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}

#stage1.stage.scene-2 .stage_elena,
#stage1.stage.scene-3 .stage_elena,
#stage1.stage.scene-4 .stage_elena,
#stage2.stage.scene-2 .stage_elena,
#stage2.stage.scene-3 .stage_elena,
#stage2.stage.scene-4 .stage_elena,
#stage4.stage.scene-1 .stage_elena,
#stage4.stage.scene-2 .stage_elena,
#stage4.stage.scene-3 .stage_elena,
#stage4.stage.scene-4 .stage_elena,
#stage5.stage.scene-1 .stage_elena,
#stage5.stage.scene-2 .stage_elena,
#stage5.stage.scene-3 .stage_elena,
#stage5.stage.scene-4 .stage_elena,
#stage3.stage.scene-1 .stage_elena,
#stage3.stage.scene-2 .stage_elena,
#stage3.stage.scene-3 .stage_elena,
#stage3.stage.scene-4 .stage_elena,
#stage6.stage.scene-1 .stage_elena,
#stage6.stage.scene-2 .stage_elena,
#stage6.stage.scene-3 .stage_elena,
#stage6.stage.scene-4 .stage_elena,
#stage6.stage.scene-3 .stage_elena:before,
#stage6.stage.scene-4 .stage_elena:before,
#stage7.stage.scene-1 .stage_elena,
#stage7.stage.scene-2 .stage_elena,
#stage7.stage.scene-3 .stage_elena,
#stage7.stage.scene-4 .stage_elena,
#stage7.stage.scene-3 .stage_elena:before,
#stage7.stage.scene-4 .stage_elena:before,
#stage7.stage.scene-3 .stage_butterflies span:nth-of-type(1),
#stage7.stage.scene-4 .stage_butterflies span:nth-of-type(1),
#stage7.stage.scene-4 .stage_butterflies span:nth-of-type(2),
#stage7.stage.scene-4 .stage_butterflies span:nth-of-type(3),
#stage8.stage.active .stage_elena,
#stage8.stage.active .stage_dew,
#stage9.stage.active .stage_elena,
#stage9.stage.active .stage_butterflies span,
#stage9.stage.scene-4 .stage_elena:before,
#stage10.stage.active .stage_elena,
#stage10.stage.scene-2 .stage_sharks span:nth-of-type(1),
#stage10.stage.scene-3 .stage_sharks span:nth-of-type(1),
#stage10.stage.scene-4 .stage_sharks span:nth-of-type(1),
#stage10.stage.scene-3 .stage_sharks span:nth-of-type(2),
#stage10.stage.scene-4 .stage_sharks span:nth-of-type(2),
#stage10.stage.scene-4 .stage_sharks span:nth-of-type(3),
#stage11.stage.active .stage_elena,
#stage11.stage.scene-4 .stage_butterflies span,
#stage11.stage.scene-3 .stage_elena:before,
#stage11.stage.scene-4 .stage_elena:before,
.b-closure .closure .closure_butterflies span {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%);
}

#stage12.stage.scene-2 .stage_butterflies span:nth-of-type(1),
#stage12.stage.scene-3 .stage_butterflies span:nth-of-type(1),
#stage12.stage.scene-4 .stage_butterflies span:nth-of-type(1),
#stage12.stage.scene-4 .stage_butterflies span:nth-of-type(2),
#stage12.stage.scene-4 .stage_butterflies span:nth-of-type(3) {
  opacity: 1;
  visibility: visible;
}

#stage2.stage.scene-3 .stage_elena {
  width: 70vw;
  height: 55vh;
  margin-left: -35vw;
}

#stage2.stage.scene-4 .stage_elena {
  width: 80vw;
  height: 60vh;
  margin-left: -40vw;
}

#stage8 .stage_elena {
  transition: transform 2s;
}

#stage8.stage.scene-1 .stage_elena {
  transform: rotate(27deg);
}

#stage8.stage.scene-2 .stage_elena {
  transform: rotate(0deg);
}

#stage8.stage.scene-3 .stage_elena {
  transform: rotate(17deg);
}

#stage8.stage.scene-4 .stage_elena {
  transform: rotate(9deg);
}

#stage12.stage.scene-3 .stage_butterflies span:nth-of-type(1) {
  left: 35%;
  transform: rotate(135deg);
  animation: none;
}

#stage12.stage.scene-4 .stage_butterflies span:nth-of-type(1) {
  left: 55%;
  transform: rotate(75deg);
}

.stage_subtitle {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}

.stage.scene-2 .stage_subtitle {
  opacity: 1;
  visibility: visible;
}

.stage.scene-2 .stage_subtitle span {
  animation-name: wave;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.stage_text {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}

.stage.scene-3 .stage_text1 {
  opacity: 1;
  visibility: visible;
}

.stage.scene-4 .stage_text2 {
  opacity: 1;
  visibility: visible;
}

.stage_quote,
#stage4.stage.scene-3 .stage_quote,
#stage5.stage.scene-3 .stage_quote,
#stage6.stage.scene-3 .stage_quote,
#stage7.stage.scene-3 .stage_quote,
#stage8.stage.scene-3 .stage_quote,
#stage9.stage.scene-3 .stage_quote,
#stage10.stage.scene-3 .stage_quote,
#stage11.stage.scene-3 .stage_quote,
#stage12.stage.scene-3 .stage_quote {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}

.stage.scene-3 .stage_quote,
#stage4.stage.scene-4 .stage_quote,
#stage5.stage.scene-4 .stage_quote,
#stage6.stage.scene-4 .stage_quote,
#stage7.stage.scene-4 .stage_quote,
#stage8.stage.scene-4 .stage_quote,
#stage9.stage.scene-4 .stage_quote,
#stage10.stage.scene-4 .stage_quote,
#stage11.stage.scene-4 .stage_quote,
#stage12.stage.scene-4 .stage_quote {
  opacity: 1;
  visibility: visible;
}

.stage_nav {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}

.stage.scene-4 .stage_nav {
  opacity: 1;
  visibility: visible;
}

#stage2 .stage_see,
#stage2 .stage_wave,
#stage3 .stage_see span,
#stage5 .stage_see,
#stage6 .stage_see span,
#stage7 .stage_see span {
  opacity: 0;
  visibility: hidden;
  transform: translateY(110%);
  transition: all 2s;
  animation: see 4s alternate infinite;
}

.closure .closure_see span {
  animation: see 4s alternate infinite;
}

#stage5 .stage_see {
  animation: circularDance 5s alternate infinite;
}

#stage2.stage.active .stage_see,
#stage2.stage.active .stage_wave,
#stage3.stage.active .stage_see span:nth-of-type(1),
#stage3.stage.active .stage_see span:nth-of-type(2),
#stage5.stage.active .stage_see,
#stage6.stage.active .stage_see span:nth-of-type(1),
#stage6.stage.active .stage_see span:nth-of-type(2),
#stage7.stage.scene-2 .stage_see span,
#stage7.stage.scene-3 .stage_see span,
#stage7.stage.scene-4 .stage_see span {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
}

#stage2 .stage_wave,
#stage3 .stage_see span:nth-of-type(2),
#stage6 .stage_see span:nth-of-type(2),
#stage7 .stage_see span:nth-of-type(2),
.closure .closure_see span:nth-of-type(2) {
  animation-name: see-alt;
}

#stage3.stage.scene-2 .stage_see span:nth-of-type(3),
#stage3.stage.scene-3 .stage_see span:nth-of-type(3),
#stage3.stage.scene-4 .stage_see span:nth-of-type(3) {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
  animation-name: big-wave;
}

#stage3.stage.scene-3 .stage_see span:nth-of-type(4),
#stage3.stage.scene-4 .stage_see span:nth-of-type(4) {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
  animation-name: boat;
}

#stage3.stage.scene-4 .stage_see span:nth-of-type(4) {
  animation-name: boat-warning;
}

#stage4.stage.scene-2 .stage_see {
  bottom: -20vh;
}

#stage4.stage.scene-3 .stage_see,
#stage4.stage.scene-4 .stage_see {
  bottom: 0;
}

#stage6.stage.scene-2 .stage_see span:nth-of-type(3),
#stage6.stage.scene-3 .stage_see span:nth-of-type(3),
#stage6.stage.scene-4 .stage_see span:nth-of-type(3) {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
}

#stage7 .stage_butterflies span,
#stage9 .stage_butterflies span,
#stage11 .stage_butterflies span,
#stage12 .stage_butterflies span:nth-of-type(3),
.closure .closure_butterflies span {
  animation: butterflies-right 4s infinite;
}

#stage7 .stage_butterflies span:nth-of-type(2),
#stage9 .stage_butterflies span:nth-of-type(2),
#stage11 .stage_butterflies span:nth-of-type(2),
#stage12 .stage_butterflies span:nth-of-type(2),
.closure .closure_butterflies span:nth-of-type(2) {
  animation: butterflies-left 6s infinite;
}

/* CLOSURE */
.closure {
  width: 100%;
  background-image: url('../img/closure.jpg');
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  display: none;
  height: calc(100vh - 15rem);
  padding-top: 7rem;
  position: relative;
  overflow: hidden;
}

.b-history .closure {
  display: block;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 2rem 4rem;
}

.closure_title {
  font-family: 'Orelo';
  font-weight: normal;
  font-style: normal;
  color: var(--green);
  font-size: 5em;
  line-height: 1em;
  letter-spacing: -0.006em;
  text-align: left;
  z-index: 10;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: translateY(2rem);
  transition: all 2s;
}

.b-closure .closure_title {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
} 

.b-closure .closure_title span {
  animation-name: wave;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.closure_title strong {
  font-weight: normal;
}

.closure_title strong:nth-of-type(3) {
  margin-left: 25%;
}

/* FOOTER */
footer {
  background: var(--black);
  width: 100%;
  padding: 2rem 1rem;
  text-align: center;
  display: none;
}

.b-about footer,
.b-history footer,
.b-closure footer {
  display: block;
}

footer nav {
  margin-bottom: 2rem;
}

footer ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

footer li:not(:first-child):before {
  content: '|';
  display: inline-block;
  vertical-align: middle;
  margin: 0 1rem;
  color: white;
}

footer nav a {
  font-size: 1.2em;
  line-height: 1.438em;
  font-weight: normal;
  color: white;
}

footer p {
  font-size: 1.2em;
  line-height: 1.438em;
  font-weight: normal;
  color: rgba(255,255,255,0.67);
  max-width: 80rem;
  margin: 0 auto;
}

/* INACTIVE */

body section.inactive {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  display: none;
  position: relative;
}


/*
  TABLET
*/
@media (min-width: 768px){
  
  .about_content {
    padding-top: 25rem;
  }
  
  .about_see span:nth-of-type(3) {
    bottom: -1rem;
  }
  
  .about_end:after {
    height: 20rem;
    top: -20rem;
  }
  
  .stage_block {
    padding-top: 25rem;
  }
  
  .stage_text,
  .stage_quote {
    max-width: 40rem;
    margin-left: 0;
    margin-right: auto;
  }
  
  .stage_nav {
    margin-left: 11rem;
  }
  
  
}

/*
  DESKTOP
*/
@media (min-width: 1024px){
  
  .intro p {
    font-size: 2em;
    line-height: 1.417em;
    letter-spacing: 0;
    max-width: 77rem;
  }
  
  .intro p + p {
    margin-top: 3.2rem;
  }
  
  .intro p strong {
    font-size: 1.083em;
  }
  
  .intro ul {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 140rem;
    margin: 0 auto;
  }
  
  .intro li {
    align-items: flex-start;
    width: 20%;    
    max-width: 18rem;
  }
  
  .intro li:nth-of-type(1) {
    max-width: 16rem;
  }
  
  .intro li:nth-of-type(4) {
    max-width: 19rem;
  }
  
  .intro li:nth-of-type(5) {
    max-width: 24rem;
  }
  
  .intro li img {
    height: 4rem;
    object-fit: contain;
    object-position: center;
  }
  
  .loading {
    font-size: 1.6em;
    line-height: 1.875em;
    letter-spacing: 0.042em;
  }

  .intro .button {
    font-size: 1.6em;
    line-height: 1.875em;
    letter-spacing: 0.042em;
    padding-top: 8.3rem;
    margin-top: 4.5rem;
  }
  
  .intro .button:before {
    width: 6.8rem;
    height: 6.8rem;
  }

  .intro .button:after {
    width: 2.6rem;
    height: 1.6rem;
    top: 3.3rem;
  }
  
  .about {
    align-items: flex-start;
  }
  
  .about_content {
    padding-top: 16rem;
    padding-bottom: 18rem;
  }
  
  .about_title {
    font-size: 10em;
    line-height: 0.846em;
    letter-spacing: -0.006em;
    max-width: 75rem;
    margin-left: 0;
    margin-bottom: 5rem;
  }

  .about_hashtag {
    font-size: 2.6em;
    line-height: 1.154em;
    max-width: 75rem;
    margin-left: 0;
  }
  
  .about_see {
    height: 38rem;
    bottom: -1rem;
  }

  .about_see span {
    height: 38rem;
  }
  
  .about_see span:nth-of-type(3) {
    width: 31.2rem;
    height: 32.3rem;
    margin-left: -16.1rem;
    bottom: -6rem;
  }
  
  .about p {
    font-size: 2.4em;
    line-height: 1.250em;
    letter-spacing: 0.042em;
    text-align: left;
    max-width: 55rem;
    margin-left: 0;
    margin-top: auto;
    left: auto;
  }
  
  .about_butterflies span {
    width: 13.3rem;
    height: 14.4rem;
  }
  
  .about_butterflies span:nth-of-type(2) {
    width: 8.5rem;
    height: 5.5rem;
    left: 30%;
  }
  
  .about_butterflies span:nth-of-type(3) {
    width: 7.2rem;
    height: 6.6rem;
    left: 45%;
  }
  
  .about_butterflies span:nth-of-type(4) {
    width: 7.5rem;
    height: 9.9rem;
    left: 50%;
    right: auto;
  }
  
  .about_butterflies span:nth-of-type(5) {
    width: 14.7rem;
    height: 14.9rem;
    top: 32%;
  }
  
  .about_butterflies span:nth-of-type(6) {
    width: 16.5rem;
    height: 18rem;
    top: 50%;
  }
  
  .about_end:after {
    height: 36rem;
    top: -36rem;
  }
  
  .about_end strong {
    font-size: 3em;
  }
  
  .about_skip {
    font-size: 1.6em;
    left: 2rem;
  }

  .header_content {
    padding: 2rem;
    align-items: center;
  }
  
  header h1 {
    font-size: 2.2em;
    line-height: 1em;
  }
  
  header nav {
    margin-right: 0;
    margin-left: auto;
    position: relative;
    width: auto;
  }
  
  header nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 1;
    visibility: visible;
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    background: transparent;
    flex-direction: row;
  }
  
  header nav > a {
    display: none;
  }
  
  header nav li {
    margin: 0 1.5rem;
  }

  header nav li:last-child {
    margin-right: 0;
  }
  
  header nav li a {
    position: relative;
  }
  
  header nav li a:not(.mute):before {
    content: '';
    display: block;
    width: 0%;
    height: 0.12rem;
    background: var(--black);
    position: absolute;
    top: 100%;
    left: 0;
    transition: all 0.5s;
  }
  
  .b-history header nav li a:not(.mute):before {
    background: white;
  }
  
  header nav li a:not(.mute):hover:before {
    width: 100%;
  }
  
  header .mute {
    margin-top: -0.8rem;
    margin-bottom: 0;
    order: 1;
  }
  
  .history li div {
    padding: 10rem;
  }
  
  .history_title {
    font-size: 8em;
    line-height: 1em;
    letter-spacing: -0.006em;
    margin-bottom: 5.8rem;
  }
  
  .history_number {
    font-size: 2.6em;
    line-height: 1em;
    margin-bottom: 2.4rem;
  }
  
  .history_link {
    width: 6.8rem;
    height: 6.8rem;
    margin-left: 1.7rem;
  }

  .history li:nth-of-type(2) .history_link,
  .history li:nth-of-type(3) .history_link,
  .history li:nth-of-type(4) .history_link,
  .history li:nth-of-type(6) .history_link,
  .history li:nth-of-type(8) .history_link,
  .history li:nth-of-type(10) .history_link,
  .history li:nth-of-type(12) .history_link {
    margin-left: auto;
    margin-right: 1.7rem;
  }
  
  .history_image {
    width: 90%;
    max-width: 86rem;
    right: 10rem;
    top: auto;
  }
  
  .history_image picture {
    display: none;
  }
  
  .history_image canvas {
    display: block;
  }

  .history li:nth-of-type(2) .history_image,
  .history li:nth-of-type(3) .history_image,
  .history li:nth-of-type(4) .history_image,
  .history li:nth-of-type(6) .history_image,
  .history li:nth-of-type(8) .history_image,
  .history li:nth-of-type(10) .history_image,
  .history li:nth-of-type(12) .history_image {
    right: auto;
    left: 10rem;
    margin-top: 0;
  }
  
  .b-history .history_share {
    display: block;
  }
  
  .history_menu {
    width: calc(100% - 30rem);
    max-width: 114rem;
    left: 50%;
    transform: translateX(-50%);
    padding-left: 0;
    padding-right: 0;
  }
  
  .history_menu:after {
    content: 'SCROLL';
    display: block;
    font-size: 1.3em;
    line-height: 1em;
    letter-spacing: 0.042em;
    color: rgba(255,255,255,0.41);
    font-weight: 700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 8rem;
  }
  
  .history_intro,
  .history_end {
    width: 6.5rem;
  }
  
  .history_intro span,
  .history_end span {
    color: white;
    font-size: 1.2em;
    line-height: 1em;
    letter-spacing: 0.042em;
    text-transform: uppercase;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s;
  }
  
  .history_intro:before,
  .history_end:before {
    width: 6.5rem;
    height: 4rem;
  }
  
  .history_end:before {
    background-size: auto 3.6rem;
  }
  
  .history_intro:before,
  .history_end:before {
    transform: translateY(0.5rem);
    transition: all 0.5s;
  }
  
  .history_intro:hover:before,
  .history_end:hover:before {
    transform: translateY(0);
  }
  
  .history_intro:hover span,
  .history_end:hover span {
    opacity: 1;
    visibility: visible;
  }
  
  .history_nav:after {
    width: calc(100% - 8rem);
  }
  
  .history_nav a {
    width: 9rem;
  }
  
  #stage2.stage.scene-1 { background-image: url('../img/stages/2/bg1.jpg'); }
  #stage2.stage.scene-2 { background-image: url('../img/stages/2/bg2.jpg'); }
  #stage2.stage.scene-3 { background-image: url('../img/stages/2/bg3.jpg'); }
  #stage2.stage.scene-4 { background-image: url('../img/stages/2/bg4.jpg'); }
  
  #stage5.stage.scene-1 { background-image: url('../img/stages/5/bg1.jpg'); }
  #stage5.stage.scene-2 { background-image: url('../img/stages/5/bg2.jpg'); }
  #stage5.stage.scene-3 { background-image: url('../img/stages/5/bg3.jpg'); }
  #stage5.stage.scene-4 { background-image: url('../img/stages/5/bg4.jpg'); }
  
  #stage12.stage.scene-1 { background-image: url('../img/stages/12/bg1.jpg'); }
  #stage12.stage.scene-2 { background-image: url('../img/stages/12/bg2.jpg'); }
  #stage12.stage.scene-3 { background-image: url('../img/stages/12/bg3.jpg'); }
  #stage12.stage.scene-4 { background-image: url('../img/stages/12/bg3.jpg'); }
  
  .stage_scroll {
    right: 4rem;
  }

  /*.stage_scroll {
    display: block;
    height: calc(100vh - 16rem);
    max-height: 35rem;
    width: 1px;
    background: #C9C9C9;
    position: fixed;
    top: 50%;
    transform: translateY(calc(-50% - 2.5rem));
    right: 4rem;
  }
  
  .stage_scroll span {
    display: block;
    background: var(--coral);
    width: 0.3rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 0;
  }
  
  .stage_scroll:after {
    content: 'SCROLL';
    display: block;
    position: absolute;
    top: calc(100% + 3rem);
    left: -1.8rem;
    color: #9A9A9A;
    font-size: 1em;
    line-height: 1.2em;
    letter-spacing: 0.042em;
    font-weight: 700;
    transform: rotate(-90deg);
  }*/
  
  .stage_content {
    padding: 12rem 2rem 10rem;
  }
  
  .about_mute {
    left: 2rem;
    bottom: 5rem;
    width: 7.6rem;
    height: 7.6rem;
    padding: 2.25rem;
  }
  
  .stage_mute .mute,
  .about_mute .mute {
    transform: scale(1);
  }
  
  .stage_visible {
    width: calc(100vw - 14rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  #stage2 .stage_visible,
  #stage3 .stage_visible,
  #stage4 .stage_visible,
  #stage6 .stage_visible,
  #stage7 .stage_visible,
  #stage11 .stage_visible,
  #stage12 .stage_visible {
    align-items: flex-end;
  }
  
  .stage_block,
  .stage_block:nth-of-type(1),
  #stage6 .stage_block:nth-of-type(4),
  #stage8 .stage_block:nth-of-type(4),
  #stage9 .stage_block:nth-of-type(4),
  #stage12 .stage_block:nth-of-type(4) {
    align-items: flex-end;
    max-width: 48rem;
    top: 12rem;
    height: calc(100vh - 20rem);
    padding-top: 0;
  }
  
  #stage3 .stage_block:nth-of-type(1) {
    max-width: 70rem;
  }

  #stage3 .stage_block:nth-of-type(2) {
    align-items: flex-start;
  }
  
  #stage1 .stage_block,
  #stage5 .stage_block,
  #stage8 .stage_block,
  #stage9 .stage_block,
  #stage10 .stage_block {
    align-items: flex-start;
  }
  
  #stage1 .stage_title,
  #stage5 .stage_title,
  #stage8 .stage_title,
  #stage9 .stage_title,
  #stage10 .stage_title {
    text-align: left;
  }
  
  .stage_info {
    padding: 5rem 11.5rem 5rem;
    max-width: 78rem;
    max-height: 72rem;
  }
  
  #stage6 .stage_info {
    max-height: 81rem;
  }

  .stage_info h4 {
    font-size: 3em;
    line-height: 0.933em;
  }
  
  .stage_info_close {
    margin-bottom: 6.5rem;
    margin-right: -6.5rem;
  }
  
  .stage_number {
    text-align: right;
    margin-right: 0;
    font-size: 2.6em;
    line-height: 1em;
  }
  
  #stage1 .stage_number,
  #stage5 .stage_number,
  #stage8 .stage_number,
  #stage9 .stage_number,
  #stage10 .stage_number {
    margin-left: 0;
    margin-right: auto;
  }
  
  .stage_title {
    text-align: right;
    font-size: 7.6em;
    line-height: 1em;
    letter-spacing: -0.006em;
    margin-bottom: 4rem;
  }
  
  #stage3 .stage_title strong:nth-of-type(1) em:nth-of-type(1):after {
    content: none;
    display: none;
  }
  
  .stage_tag {
    top: 34rem;
    text-align: right;
    font-size: 1.6em;
    line-height: 1em;
    letter-spacing: 0.025em;
  }
  
  .stage_subtitle {
    font-size: 5.7em;
    line-height: 1em;
    letter-spacing: -0.007em;
  }
  
  .stage_text {
    font-size: 2em;
    line-height: 1.25em;
    letter-spacing: 0.042em;
    max-width: 100%;
  }
  
  .stage_quote {
    font-size: 3em;
    line-height: 1.143em;
    letter-spacing: -0.007em;
    max-width: 100%;
  }
  
  .stage_nav {
    width: 27rem;
    margin-top: 3rem;
  }
  
  .stage_nav a {
    font-size: 1.6em;
  }
  
  #stage1 .stage_elena {
    left: auto;
    right: 0;
    bottom: 10vh;
  }
  
  #stage2 .stage_elena {
    width: 50vw;
    margin-left: 0;
    height: 50vh;
    bottom: 8vh;
    left: 3vw;
    z-index: 3;
  }
  
  #stage2.stage.scene-3 .stage_elena {
    width: 55vw;
    height: 55vh;
    margin-left: 0;
  }

  #stage2.stage.scene-4 .stage_elena {
    width: 60vw;
    height: 60vh;
    left: 0;
    margin-left: 0;
  }
  
  #stage3 .stage_elena {
    width: 70vw;
    height: 85vh;
  }
  
  #stage4 .stage_elena {
    width: 71vw;
    height: 58vh;
  }
  
  #stage5 .stage_elena,
  #stage5 .stage_see {
    width: 100vw;
    height: 70vh;
    bottom: 10vh;
  }
  
  #stage6 .stage_elena,
  #stage6 .stage_elena:before {
    width: 60vw;
    height: 70vh;
    background-size: contain;
  }
  
  #stage7 .stage_elena,
  #stage7 .stage_elena:before {
    width: 60vw;
    height: 90vh;
  }
  
  #stage1 .stage_see {
    top: 0;
  }
  
  #stage3 .stage_see,
  #stage6 .stage_see,
  #stage7 .stage_see {
    height: 20vh;
  }
  
  #stage3 .stage_see span,
  #stage6 .stage_see span,
  #stage7 .stage_see span {
    height: 30vh;
  }
  
  .closure .closure_see span {
    height: 20vh;
  }
  
  #stage3 .stage_see span:nth-of-type(3) {
    height: 100vh;
    background-position: left bottom !important;
    max-height: 100vh;
  }
  
  #stage3 .stage_see span:nth-of-type(4) {
    width: 30rem;
    height: 25rem;
  }
  
  #stage4 .stage_see {
    width: 99vw;
    height: 39vh;
  }
  
  #stage7.active .stage_butterflies span,
  #stage11.active .stage_butterflies span,
  #stage12.active .stage_butterflies span {
    width: 9rem;
    height: 9rem;
    top: 35%;
    left: 50%;
  }
  
  #stage7.active .stage_butterflies span {
    top: 22%;
  }
  
  .closure .closure_butterflies span {
    width: 9rem;
    height: 9rem;
    top: 15%;
    left: 40%;
  }
  
  #stage7.active .stage_butterflies span:nth-of-type(3),
  #stage11.active .stage_butterflies span:nth-of-type(3),
  #stage12.active .stage_butterflies span:nth-of-type(3) {
    top: 5%;
    left: 20%;
  }
  
  .closure .closure_butterflies span:nth-of-type(3) {
    width: 9rem;
    height: 9rem;
    top: 12%;
    left: 60%;
  }
  
  #stage7.active .stage_butterflies span:nth-of-type(2),
  #stage11.active .stage_butterflies span:nth-of-type(2),
  #stage12.active .stage_butterflies span:nth-of-type(2) {
    height: 12rem;
    top: 12%;
    left: 48%;
  }
  
  #stage7.active .stage_butterflies span:nth-of-type(2) {
    left: 40%;
  }
  
  .closure .closure_butterflies span:nth-of-type(2) {
    width: 9rem;
    height: 9rem;
    top: 14%;
    left: calc(90% - 9rem);
  }
  
  #stage8 .stage_elena,
  #stage8 .stage_dew {
    width: 50vw;
    height: 90vh;
  }
  
  #stage8 .stage_dew {
    width: 60vw;
  }
  
  #stage9 .stage_elena,
  #stage9 .stage_elena:before {
    width: 60vw;
    height: 80vh;
    left: auto;
    right: 0;
    bottom: 10vh;
  }
  
  #stage9 .stage_butterflies span,
  #stage9 .stage_butterflies span:nth-of-type(2),
  #stage9 .stage_butterflies span:nth-of-type(3) {
    width: 10rem;
    height: 13rem;
  }
  
  #stage9 .stage_butterflies span:nth-of-type(1) {
    left: 85%;
    top: 22%;
  }
  
  #stage9 .stage_butterflies span:nth-of-type(2) {
    left: 45%;
    top: 22%;
  }
  
  #stage9 .stage_butterflies span:nth-of-type(3) {
    top: 10%;
    left: 25%;
  }
  
  #stage11 .stage_elena,
  #stage11 .stage_elena:before {
    width: 60vw;
    height: 80vh;
  }
  
  #stage12:before {
    content: none;
    display: none;
  }
  
  #stage12 .stage_butterflies span:nth-of-type(1) {
    width: 13rem;
    height: 13rem;
    top: auto;
    bottom: 15%;
    left: auto;
    right: 25%;
    transform: rotate(-20deg);
  }
  
  #stage12.stage.scene-2 .stage_butterflies span:nth-of-type(1) {
    left: auto;
    right: 25%;
    transform: rotate(-20deg);
  }
  
  #stage12.stage.scene-3 .stage_butterflies span:nth-of-type(1) {
    left: auto;
    right: 30%;
    transform: rotate(0deg);
  }
  
  #stage12.stage.scene-4 .stage_butterflies span:nth-of-type(1) {
    left: auto;
    right: 30%;
    transform: rotate(5deg);
    animation: butterflies-up 4s infinite;
  }
  
  .b-history .closure {
    padding: 20rem 15rem 0;
  }
  
  .closure_title {
    font-size: 8em;
    line-height: 0.846em;
    letter-spacing: -0.006em;
  }
  
  footer {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  
  footer li:not(:first-child):before {
    margin-left: 2rem;
    margin-right: 2rem;
  }
  
  footer nav a,
  footer p {
    font-size: 1.6em;
    line-height: 1.438em;
  }
  
}

/* 
  LARGE DESKTOPS
*/
@media (min-width: 1600px) {
  
  .header_content {
    padding: 2rem 12rem;
  }
  
  .intro p {
    font-size: 2.4em;
  }
  
  .about_see span:nth-of-type(3) {
    bottom: 3rem;
  }
  
  #stage3 .stage_see span:nth-of-type(4) {
    bottom: 6rem;
  }

  .about_content {
    padding-top: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 47rem;
    transition: all 1s;
  }
  
  .about.scene-2 .about_content,
  .about.scene-3 .about_content {
    height: 37rem;
  }
  
  .about p,
  .about.scene-2 p:nth-of-type(1),
  .about.scene-2.scene-3 p:nth-of-type(2) {
    top: 0;
    transform: translateY(0);
  }
  
  .about_title {
    font-size: 13em;
    line-height: 0.846em;
    letter-spacing: -0.006em;
  }
  
  .history li div {
     padding-left: 0;
     padding-right: 0;
     max-width: 140rem;
  }
  
  .history_menu {
    max-width: 140rem;
  }
  
  .history_nav {
    max-width: 116rem;
  }
  
  .history_nav a {
    width: 8.6rem;
  }
  
  .scene-1 .history_nav:before { left: calc(((100% / 12) * 0) + (((100% / 12) - 3.5rem) / 2)); }
  .scene-2 .history_nav:before { left: calc(((100% / 12) * 1) + (((100% / 12) - 3.1rem) / 2)); }
  .scene-3 .history_nav:before { left: calc(((100% / 12) * 2) + (((100% / 12) - 3.2rem) / 2)); }
  .scene-4 .history_nav:before { left: calc(((100% / 12) * 3) + (((100% / 12) - 2.9rem) / 2)); }
  .scene-5 .history_nav:before { left: calc(((100% / 12) * 4) + (((100% / 12) - 2.7rem) / 2)); }
  .scene-6 .history_nav:before { left: calc(((100% / 12) * 5) + (((100% / 12) - 2.5rem) / 2)); }
  .scene-7 .history_nav:before { left: calc(((100% / 12) * 6) + (((100% / 12) - 2.3rem) / 2)); }
  .scene-8 .history_nav:before { left: calc(((100% / 12) * 7) + (((100% / 12) - 2.2rem) / 2)); }
  .scene-9 .history_nav:before { left: calc(((100% / 12) * 8) + (((100% / 12) - 2rem) / 2)); }
  .scene-10 .history_nav:before { left: calc(((100% / 12) * 9) + (((100% / 12) - 1.7rem) / 2)); }
  .scene-11 .history_nav:before { left: calc(((100% / 12) * 10) + (((100% / 12) - 1.6rem) / 2)); }
  .scene-12 .history_nav:before { left: calc(((100% / 12) * 11) + (((100% / 12) - 1.4rem) / 2)); }

  .history_title {
    font-size: 10em;
  }
  
  .stage_content {
    padding: 19rem 10rem 10rem;
  }
  
  .stage_visible {
    width: calc(100vw - 20rem);
    max-width: 140rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  .btn-close {
    width: 7.6rem;
    height: 7.6rem;
    top: 11rem;
  }
  
  .stage .btn-close {
    left: 10rem;
  }
  
  .stage_mute {
    top: 11rem;
    left: 19.5rem;
    width: 7.6rem;
    height: 7.6rem;
    padding: 2.25rem;
  }
  
  .stage_block,
  .stage_block:nth-of-type(1),
  #stage6 .stage_block:nth-of-type(4),
  #stage8 .stage_block:nth-of-type(4),
  #stage9 .stage_block:nth-of-type(4),
  #stage12 .stage_block:nth-of-type(4) {
    max-width: 65.5rem;
    top: 50%;
    transform: translateY(-50%);
    height: auto;
  }
  
  .stage_title {
    font-size: 10em;
  }
  
  .stage_subtitle {
    font-size: 7em;
  }
  
  .stage_tag {
    font-size: 2em;
  }
  
  .stage_text {
    font-size: 2.4em;
  }
  
  .stage_quote {
    font-size: 3.5em;
  }
  
  #stage6 .stage_see span:nth-of-type(3) {
    height: 60vh;
  }
  
  .b-history .closure {
    padding: 15rem;
    padding-left: 50%;
    align-items: flex-start;
  }
  
  .closure_title {
    font-size: 13em;
  }
  
}

@media (min-width: 2000px) {
  
  .about_see span:nth-of-type(3) {
    bottom: 8rem;
  }
  
  .about_end:after {
    height: 90rem;
    top: -90rem;
  }
  
  .scene-1 .history_nav:before { left: calc(((100% / 12) * 0) + (((100% / 12) - 3.25rem) / 2)); }
  .scene-2 .history_nav:before { left: calc(((100% / 12) * 1) + (((100% / 12) - 3rem) / 2)); }
  .scene-3 .history_nav:before { left: calc(((100% / 12) * 2) + (((100% / 12) - 3rem) / 2)); }
  .scene-4 .history_nav:before { left: calc(((100% / 12) * 3) + (((100% / 12) - 3rem) / 2)); }
  .scene-5 .history_nav:before { left: calc(((100% / 12) * 4) + (((100% / 12) - 2.5rem) / 2)); }
  .scene-6 .history_nav:before { left: calc(((100% / 12) * 5) + (((100% / 12) - 2.5rem) / 2)); }
  .scene-7 .history_nav:before { left: calc(((100% / 12) * 6) + (((100% / 12) - 2.5rem) / 2)); }
  .scene-8 .history_nav:before { left: calc(((100% / 12) * 7) + (((100% / 12) - 2.5rem) / 2)); }
  .scene-9 .history_nav:before { left: calc(((100% / 12) * 8) + (((100% / 12) - 2.5rem) / 2)); }
  .scene-10 .history_nav:before { left: calc(((100% / 12) * 9) + (((100% / 12) - 1.25rem) / 2)); }
  .scene-11 .history_nav:before { left: calc(((100% / 12) * 10) + (((100% / 12) - 1.25rem) / 2)); }
  .scene-12 .history_nav:before { left: calc(((100% / 12) * 11) + (((100% / 12) - 1.25rem) / 2)); }
  
}

@media (max-width: 768px) {
  
  .intro {
    height: 100vh;
    overflow: auto;
    display: block;
  }

  .intro #loaded {
    padding-bottom: 100px;
  }

  #about {
    height: 100vh;
    display: block;
  }

  body:not(.b-history) {
    height: 100vh;
    overflow: hidden;
    /*position: fixed;*/
    width: 100vw;
  }

  body.b-about.b-history {
    height: auto;
    overflow: auto;
  }

  .history.inactive,
  body .stage:not(.active) {
    z-index: -2;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
  }

  body.b-about footer {
    display: none;
  }

  body.b-about.b-history footer {
    display: block;
  }

/*
  body:not(.b-history) {
    height: 100vh;
    overflow: hidden;
  }

  body #intro,
  body #about {
    height: 100vh;
    overflow: hidden;
    display: block;
    position: fixed;
    width: 100%;
  }

  body #intro #loaded {
    padding-bottom: 80px;
  }

  body #history.inactive {
    margin-top: 0;
  }

  body.b-about footer {
    display: none;
  }

  body .intro p {
    color: green;
  }
*/
}

/*
  MIN HEIGHT DESKTOPS
*/
@media (max-height: 800px) {
  
  .history_share {
    background: none;
  }
  
  .history_share strong {
    display: none;
  }
  
}

/*
  KEYFRAMES
*/
@keyframes opacity {
  100% {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes beat {
  100% {
    transform: translateX(-50%) scale(1.15);
  }
}

@keyframes arrow {
  0% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  25% {
    opacity: 0;
    transform:translateX(0.5rem) scale(0.9);
  }
  26% {
    opacity: 0;
    transform:translateX(-2rem) scale(0.9);
  }
  55% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes wave {
  0% {
    transform: translateY(0em);
  }
  60% {
    transform: translateY(-0.6rem);
  }
  100% {
    transform: translateY(0em);
  }
}

@keyframes see {
  0% {
    transform: translateY(2rem) rotate(1.5deg);
  }
  50% {
    transform: translateY(1rem) rotate(0deg);
  }
  100% {
    transform: translateY(2rem) rotate(1.5deg);
  }
}

@keyframes see-alt {
  0% {
    transform: translateY(0) rotate(-0.5deg);
  }
  50% {
    transform: translateY(1rem) rotate(0deg);
  }
  100% {
    transform: translateY(0) rotate(-0.5deg);
  }
}

@keyframes boat {
  0% {
    transform: translateY(0.5rem) rotate(-20deg);
  }
  50% {
    transform: translateY(1.2rem) rotate(-25deg);
  }
  100% {
    transform: translateY(0.5rem) rotate(-20deg);
  } 
}

@keyframes big-wave {
  0% {
    transform: translateY(2rem) rotate(-2.5deg);
    transform-origin: center;
  }
  50% {
    transform: translateY(1rem) rotate(7deg);
    transform-origin: center;
  }
  100% {
    transform: translateY(2rem) rotate(-2.5deg);
    transform-origin: center;
  }
}

@keyframes boat-warning {
  0% {
    transform: translateY(-1rem) rotate(-10deg) translateX(-3rem);
  }
  50% {
    transform: translateY(1.2rem) rotate(-25deg);
  }
  100% {
    transform: translateY(-1rem) rotate(-10deg) translateX(-3rem);
  } 
}

@keyframes boat-warning-desktop {
  0% {
    transform: translateY(-4rem) rotate(-10deg) translateX(-8rem);
  }
  50% {
    transform: translateY(1.2rem) rotate(-35deg);
  }
  100% {
    transform: translateY(-4rem) rotate(-10deg) translateX(-8rem);
  } 
}

@keyframes butterflies-right {
  0% {
    transform: rotate(0) translateY(0rem);
  }
  50% {
    transform: rotate(7deg) translateY(0rem);
  }
  100% {
    transform: rotate(0) translateY(0rem);
  }
}

@keyframes butterflies-left {
  0% {
    transform: rotate(0) translateY(0rem);
  }
  50% {
    transform: rotate(-5deg) translateY(1.5rem);
  }
  100% {
    transform: rotate(0) translateY(0rem);
  }
}

@keyframes butterflies-up {
  0% {
    transform: rotate(0) translateY(0rem);
  }
  50% {
    transform: rotate(-0.5deg) translateY(1.25rem);
  }
  100% {
    transform: rotate(0) translateY(0rem);
  }
}

@keyframes sound {
  0% {
    height: 0;
  }
  100% {
    height: 2.3rem;
  }
}

@keyframes circularDance {
  from {
    transform: rotate(0deg) translate3d(3px, 0, 0) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translate3d(3px, 0, 0) rotate(-360deg);
  }
}

@keyframes circularDanceMirror {
  from {
    transform: rotate(0deg) translate3d(3px, 0, 0) rotate(0deg) scaleX(-1);
  }
  to {
    transform: rotate(360deg) translate3d(3px, 0, 0) rotate(-360deg) scaleX(-1);
  }
}

@keyframes stage1wave {
  0% {
    transform: rotate(0) translateY(0rem);
  }
  50% {
    transform: rotate(0.65deg) translateY(2rem);
  }
  100% {
    transform: rotate(0) translateY(0rem);
  }
}

@keyframes stage1boat {
  0% {
    transform: translateY(0.5rem) rotate(0deg);
  }
  50% {
    transform: translateY(1.2rem) rotate(-2.5deg);
  }
  100% {
    transform: translateY(0.5rem) rotate(0deg);
  } 
}

@keyframes loadingboat {
  0% {
    transform: translateX(-51%) rotate(0.5deg);
  }
  50% {
    transform: translateX(-47%) rotate(-1.5deg);
  }
  100% {
    transform: translateX(-51%) rotate(0.5deg);
  } 
}