html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}
html, body, pre, code, kbd, samp, input, button, select, option, textarea {
  font-family: var(--font-theme);
  font-weight: var(--font-regular);
}
p {
  line-height: 150%;
  margin: 0px 0 35px 0;
}
strong {
  font-weight: var(--font-bold)
}
a {
  text-decoration: none;
  outline: none;
  color: var(--color-white);
  cursor: pointer;
}
button, a, input[type="button"] {
  outline: none;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-regular);
  font-size: 100%;
  line-height: 140%;
}
.is-hide {
  display: none !important;
}
.text-center {
  text-align: center;
}
.fig-img {
  position: relative;
}
.fig-img img {
  width: 100%;
  min-width: inherit;
  height: auto;
}
/*--theme CSS--*/
main {
  perspective-origine: center top;
}
body {
  font-size: 23px;
  color: var(--color-white);
  background-color: var(--color-theme-3);
  overflow-x: hidden;
}
body.is-loading {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: translateZ(0);
}
.loader-screen-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background-color: var(--color-theme-3);
}
.loader-screen-wrapper span {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  transform-origin: center;
  display: block;
  width: 220px;
  height: auto;
}
.loader-screen-wrapper span img {
  width: 100%;
  height: auto;
  max-width: inherit;
}
body.is-loaded .loader-screen-wrapper {
  opacity: 0;
  transform: translate3d(0, 0, 0);
  width: 0;
  height: 0;
}
.is-loading .main-wrapper {
  opacity: 0;
  transition: opacity 0.3s ease-in;
}
.section-wrapper {
  padding: 80px 0px;
}
.wrapper.is-boat {
  padding-bottom: 0px;
  padding-top: 70px;
}
.wrapper.is-boat .boat-holder {
  padding-bottom: 40px;
}
.is-bg-1 {
  background-repeat: repeat-y;
  background-size: cover;
  background-image: url(../images/bg-1.png);
}
.intro-wrapper {
  position: relative;
  width: 100%;
  /*  padding-bottom: 56.25%;*/
  padding-bottom: 100vh;
  overflow: hidden;
  height: 0px;
}
.intro-wrapper .is-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  overflow: hidden;
  object-fit: cover;
  pointer-events: none;
}
.logo-header {
  width: 90px;
  position: fixed;
  top: 28px;
  left: 28px;
  display: block;
  z-index: 1000;
}
.logo-header img {
  width: 100%;
  height: auto;
  max-width: inherit;
}
.content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.intro-wrapper .container {
  height: 100%;
}
.intro-caption {
  text-align: center;
  padding-top: 7%;
}
.intro-caption h1 {
  font-family: var(--font-headline);
  color: var(--color-theme-1);
  font-size: 280%;
  text-transform: uppercase;
  line-height: 100%;
  margin: 0 0 10px 0;
}
.intro-caption h2 {
  font-size: 100%;
  letter-spacing: 6px;
  text-transform: uppercase;
  line-height: 150%;
  margin: 0;
}
.reveal {
  position: relative;
  display: flex;
  white-space: pre;
  justify-content: center;
}
.reveal span {
  opacity: 0;
  transform: scale(0);
  animation: fade-in 2.4s forwards;
}
@keyframes fade-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slide-left {
  to {
    left: -6%;
    opacity: 1;
    transform: scale(0.9);
  }
}
@keyframes slide-right {
  to {
    right: -6%;
    opacity: 1;
    transform: scale(0.9);
  }
}
.entry-content {
  font-size: 90%;
}
p.fl::first-letter {
  font-size: 180%;
  font-weight: var(--font-medium);
}
.entry-content p:last-child {
  margin: 0;
  padding: 0;
}
.entry-content p a {
  color: var(--color-theme-2);
  background-image: linear-gradient(120deg, var(--color-theme-2) 0%, var(--color-theme-2) 100%);
  background-size: 100% 2px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: all 0.3s ease-in;
}
.entry-content p a:hover {
  background-size: 0% 2px;
}
.group-el-1 {
  width: 300px;
  margin: 0 auto 40px auto;
  max-width: 100%;
  position: relative;
}
.gfx-1 {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 47px;
  transform: translateY(-50%);
  margin-left: -39px;
  z-index: 1;
  pointer-events: none;
}
.gfx-1 img {
  width: 100%;
  height: auto;
  max-width: inherit;
}
.gfx-2 {
  position: relative;
  z-index: 2;
}
.gfx-2 img {
  width: 100%;
  height: auto;
  max-width: inherit;
}
.btn-1 {
  background-color: var(--color-theme-4);
  display: inline-block;
  padding: 10px 14px 11px 14px;
  font-size: 75%;
  margin: 20px 0 0 0px;
  font-weight: var(--font-semibold);
  line-height: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.sp-text {
  text-transform: uppercase;
  font-size: 45%;
  letter-spacing: 5px;
  margin: 10px 0 0 0;
  line-height: 100%;
}
.yt-embed {
  width: 800px;
  margin: 0 auto;
  background-color: var(--color-theme-4);
  border: 6px solid var(--color-theme-1);
  border-radius: 4px;
  overflow: hidden;
  max-width: 100%;
}
.video-wrapper .section-bottom {
  padding-top: 60px;
}
.boat {
  width: 80px;
  margin: 0 auto;
  user-select: none;
  pointer-events: none;
}
.boat img {
  width: 100%;
  height: auto;
  max-width: inherit;
}
.el-headline {
  font-size: 200%;
  color: var(--color-theme-1);
  text-transform: uppercase;
  font-weight: var(--font-black);
  text-align: center;
  margin: 0 15px 0 0;
  line-height: 100%;
}
.chapters {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0px -10px;
  padding-top: 30px;
}
.chapters .single-chapter {
  width: 20%;
  padding: 0px 10px;
}
.chapters .single-chapter a {
  display: block;
}
.chapters .single-chapter figure {}
.chapters .single-chapter .fig-img {
  width: 120px;
  height: 120px;
  background-color: var(--color-theme-5);
  border-radius: 100%;
  overflow: hidden;
  margin: 0 auto;
  filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.3));
  position: relative;
  /*	border: 3px solid var(--color-transparent);*/
  transition: all 0.2s ease-in;
}
.chapters .single-chapter .fig-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-size: 0;
  transition: all 0.2s ease-in;
  transform: scale3d(1, 1, 1);
  transform-origin: center;
}
.chapters .single-chapter figcaption h3 {
  line-height: 140%;
  font-size: 75%;
  padding: 20px 7px 0px 7px;
  text-align: center;
}
.chapters .single-chapter a:hover, .chapters .single-chapter a.is-active {
  color: var(--color-theme-1);
}
.chapters .single-chapter a:hover .fig-img img, .chapters .single-chapter a.is-active .fig-img img {
  transform: scale3d(1.2, 1.2, 1.2);
}
.chapters .single-chapter a:hover .fig-img, .chapters .single-chapter a.is-active .fig-img {
  border: 3px solid var(--color-theme-1);
}
.main-wrapper .chapters .single-chapter:nth-child(1) a {
  margin-top: 0px
}
.main-wrapper .chapters .single-chapter:nth-child(2) a {
  margin-top: 100px
}
.main-wrapper .chapters .single-chapter:nth-child(3) a {
  margin-top: 50px
}
.main-wrapper .chapters .single-chapter:nth-child(4) a {
  margin-top: 150px
}
.main-wrapper .chapters .single-chapter:nth-child(5) a {
  margin-top: 80px
}
.section-headline {
  margin: 0 0 50px 0;
}
.section-headline span {
  display: block;
  text-transform: uppercase;
}
.section-headline .is-sp {
  font-weight: var(--font-bold);
  letter-spacing: 3px;
  color: var(--color-white);
  font-size: 100%;
  line-height: 100%;
  margin: 0 0 2px 0;
}
.section-headline .is-edo {
  font-family: var(--font-headline);
  color: var(--color-theme-1);
  font-size: 280%;
  line-height: 100%;
  margin: 0 0 10px 0;
}
.section-headline .is-black {
  font-weight: var(--font-black);
  color: var(--color-white);
  font-size: 130%;
  line-height: 100%;
}
/*credits*/
.credits {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0px -10px;
}
.credits .single-credit {
  width: 20%;
  padding: 0px 10px;
  margin-bottom: 40px;
}
.credits .single-credit a {
  display: block;
}
.credits .single-credit a:hover {
  color: var(--color-theme-5);
}
.credits .single-credit figure {}
.credits .single-credit .fig-img {
  width: 120px;
  height: 120px;
  background-color: var(--color-theme-5);
  border-radius: 100%;
  overflow: hidden;
  margin: 0 auto;
  filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.3));
  position: relative;
}
.credits .single-credit .fig-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-size: 0;
}
.credits .single-credit figcaption h3 {
  line-height: 140%;
  font-size: 75%;
  padding: 20px 7px 0px 7px;
  text-align: center;
  font-weight: var(--font-black);
}
.credits .single-credit figcaption p {
  margin: 0;
  font-size: 60%;
}
.full-image-section {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden
}
.full-image {
  position: absolute;
  width: 100%;
  height: 100vh;
  overflow: hidden
}
.full-image img {
  height: 100vh;
  width: 100%;
  position: absolute;
  object-fit: cover;
  overflow: hidden;
  top: 0;
  left: 0
}
.background-fixed .full-image {
  position: absolute;
  top: 0;
  z-index: 0;
  clip: rect(0, auto, auto, 0);
  width: 100%
}
.background-fixed .full-image img {
  object-fit: cover;
  position: fixed;
  top: 0;
  -moz-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-backface-visibility: hidden
}
.entry-content blockquote.is-blurb {
  margin-bottom: 40px;
}
.entry-content blockquote.is-quote {
  margin-bottom: 40px;
  margin-top: -10px;
}
.blurb-text {
  padding: 15px 0px;
  font-weight: var(--font-bold);
  color: var(--color-theme-1);
  border-top: 4px solid var(--color-theme-1);
  border-bottom: 4px solid var(--color-theme-1);
  position: relative;
  font-size: 133%;
}
.blurb-text p:last-child {
  margin: 0;
}
.quote-text {
  font-weight: var(--font-semi-bold);
  position: relative;
  font-size: 133%;
  margin-bottom: 20px;
  padding-left: 30px;
}
.quote-text span {
  color: var(--color-theme-1);
  font-weight: var(--font-black);
  font-size: 60px;
  line-height: 100%;
  position: absolute;
}
.quote-text span:nth-child(1) {
  left: 0px;
}
.quote-text p:last-child {
  margin: 0;
}
.quote-info {
  font-style: italic;
  font-weight: var(--font-semi-bold);
  padding-left: 30px;
  color: var(--color-theme-1);
}
.quote-info p:last-child {
  margin: 0;
}
.is-circle {
  width: 180px;
  border-radius: 100%;
  overflow: hidden;
}
.is-circle img {
  width: 100%;
  max-width: inherit;
}
.is-circle.is-right {
  float: right;
  margin: 0px 30px 20px 60px;
}
.is-circle.is-left {
  float: left;
  margin: 0px 60px 20px 0px;
}
.full-image-section .container {
  height: 100%;
  position: relative;
  z-index: 10;
}
.parallax-content {
  position: absolute;
  width: 50%;
  max-width: 100%;
  padding: 30px;
  font-size: 100%;
  color: var(--color-white);
  background-color: rgba(5, 22, 25, 0.8);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  border-radius: 4px;
}
.is-intro .parallax-content {
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  color: var(--color-theme-1);
  font-weight: var(--font-bold);
  text-align: center;
}
.parallax-content p:last-child {
  margin: 0;
}
.credits-wrapper {
  padding-bottom: 80px;
}
.credits-wrapper .section-bottom {
  padding-top: 60px;
}
.sub-headline {
  font-family: var(--font-headline);
  color: var(--color-theme-1);
  font-size: 150%;
  line-height: 100%;
  margin: 0 0 20px 0;
}
.special-thanks {
  padding-top: 20px;
}
.special-thanks figure {}
.special-thanks figure .fig-img {
  width: 130px;
  margin: 0 auto;
}
.special-thanks figure .fig-img img {
  font-size: 0px;
}
.special-thanks figcaption {
  padding: 20px 20px 0px 20px;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}
.special-thanks figcaption h3 {
  font-weight: var(--font-black);
}
.special-thanks figcaption p {
  font-size: 80%;
  margin: 0;
}
.sound-cloud {
  margin-bottom: 40px;
}
.header-elmnts {
  position: fixed;
  top: 40px;
  right: 0;
  z-index: 1000;
}
.header-elmnts .toggle-nav {
  display: block;
  width: 52px;
}
.header-elmnts .toggle-nav svg {
  width: 100%;
  height: auto;
  max-width: inherit;
  vertical-align: top;
}
.is-highlight {
  color: var(--color-theme-1);
}
.section-image {
  width: 100%;
  height: auto;
}
.section-image img {
  width: 100%;
  max-width: inherit;
  height: auto;
}
.nav-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: translateZ(0);
  z-index: -9999;
  background-color: rgba(0, 0, 0, 0.6);
  pointer-events: none;
  opacity: 0;
  transition: 0.3s ease-in;
}
.nav-wrapper .container {
  position: relative;
  height: 100%;
}
body.is-nav {
  overflow: hidden;
}
.is-nav .nav-wrapper {
  pointer-events: auto;
  z-index: 9999;
  opacity: 1;
}
.main-wrapper {
  transition: 0.3s ease-in;
}
body.is-nav .main-wrapper {
  filter: blur(10px);
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
}
.close-nav {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  display: block;
  transition: 0.3s ease-in;
  z-index: 100;
}
.close-nav svg {
  width: 100%;
  max-width: inherit;
  height: auto;
  z-index: 100;
  vertical-align: middle;
  border-radius: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.close-nav:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.nav-content .single-chapter {
  margin-top: 30px;
}
.social-share {
  position: absolute;
  top: 55px;
  right: 0px;
  padding: 10px 10px 2px 10px;
  background: #fff;
  border-radius: 14px 0px 0px 14px;
}
.social-share a {
  width: 30px;
  height: auto;
  display: block;
  margin-bottom: 10px;
}
.social-share a svg {
  width: 100%;
  height: auto;
  max-width: inherit;
  vertical-align: sub;
  fill: var(--color-theme-3);
  border-radius: 5px;
  overflow: hidden;
}
.social-share a.speaker {
  height: 30px;
  width: 30px;
  position: relative;
  overflow: hidden;
  display: inline-block;
  margin-bottom: 0;
}
.social-share a.speaker span {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--color-theme-3);
  margin: 11px 0 0 2px;
  box-sizing: inherit;
}
.social-share a.speaker span:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent var(--color-theme-3) transparent transparent;
  border-width: 10px 14px 10px 15px;
  left: -13px;
  top: 5px;
}
.social-share a.speaker span:before {
  transform: rotate(45deg);
  border-radius: 0 50px 0 0;
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  border-style: double;
  border-color: var(--color-theme-3);
  border-width: 7px 7px 0 0;
  left: 18px;
  top: 9px;
  transition: all 0.2s ease-out;
  -webkit-box-sizing: unset !important;
}
.social-share a.speaker:hover span:before {
  transform: scale(0.8) translate(-3px, 0) rotate(42deg);
}
.social-share a.speaker.mute span:before {
  transform: scale(0.5) translate(-15px, 0) rotate(36deg);
  opacity: 0;
}
.social-share a.speake * {
  -webkit-box-sizing: unset !important;
}