@font-face {
  font-family: 'jpicons';
  font-weight: normal;
  font-style: normal;
  src: url('../fonts/jpicons/jpicons.eot');
  src: url('../fonts/jpicons/jpicons.eot?#iefix') format('embedded-opentype'),
    url('../fonts/jpicons/jpicons.woff') format('woff'),
    url('../fonts/jpicons/jpicons.ttf') format('truetype'),
    url('../fonts/jpicons/jpicons.svg#jpicons') format('svg');
  font-display: swap;
}

:root {
  --primary: #38463a;
  --secondary: #677e6a;
  --tertiary: #eadbc1;
  --vh: 1vh;
}

.primary {
  color: #38463a;
}

.secondary {
  color: #677e6a;
}

.tertiary {
  color: #eadbc1;
}

*,
*:after,
*:before {
  box-sizing: border-box;
  margin: 0;
  position: relative;
  padding: 0;
  /* border: 1px solid red; */
}

html {
  height: 100%;
  width: 100%;
  padding: env(safe-area-inset);
}

img {
  max-width: 100%;
  height: auto;
}

.lazyImage {
  margin: 2em 0;
  overflow: hidden;
}

.image-wrapper {
  margin: 0 0 1em 0;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.image-wrapper .bottom {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin-top: 1em;
  flex-wrap: wrap;
}

/* .image-wrapper .bottom .bottom-left,
.image-wrapper .bottom .bottom-right {
  flex-grow: 1;
} */

.image-wrapper .bottom .bottom-left {
  overflow: hidden;
}

.bottom-left,
.bottom-right {
  -webkit-box-flex: 1;
  flex-grow: 1;
}

.image-wrapper .bottom .bottom-left img {
  padding-right: 0.5em;
}

.image-wrapper .bottom .bottom-right img {
  padding-left: 0.5em;
}

.image-wrapper .bottom img {
  /* width: 340px; */
  height: auto;
  display: block;
}

.js-image {
  display: block;
  min-width: 100%;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.placeholder {
  -webkit-filter: blur(5px);
  /* transform: scale(1.2); */
  filter: blur(5px);
  /* transform: scale(1.1); */
}

.lazy {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  width: 100%;
}

.fadeOut {
  transition: opacity 0.5s ease-in;
  opacity: 0;
}

.clearfix:before,
.clearfix:after {
  content: '';
  display: table;
}

.clearfix:after {
  clear: both;
}

body {
  font-family: 'Avenir Next', Avenir, 'Helvetica Neue', Helvetica, Arial,
    sans-serif;
  color: #5d5c56;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: #dd973a;
  outline: none;
}

a:hover,
a:focus {
  color: #dd973a;
}

.hidden {
  position: absolute;
  overflow: hidden;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Canvas container */

.container {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
}

/* Header */

.jp-header {
  z-index: 1000;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  height: 100vh;
  /* Fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);
  padding: 2em 2em;
  text-align: center;
  color: #eadbc1;
}

.jp-header.imprint {
  height: 5vh;
  color: #5d5c56;
}

.jp-video::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(2, 0, 36);
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(19, 24, 20, 1)),
    color-stop(50%, rgba(0, 0, 0, 0.5032387955182073)),
    to(rgba(0, 0, 0, 0))
  );
  background: linear-gradient(
    0deg,
    rgba(19, 24, 20, 1) 0%,
    rgba(0, 0, 0, 0.5032387955182073) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.jp-header__arrow {
  position: absolute;
  bottom: 5em;
  -webkit-animation: arrowDown 1.5s ease-in-out infinite;
  animation: arrowDown 1.5s ease-in-out infinite;
}

.jp-yakushima {
  background: url('./../img/highlights/yakushima/yakushima-highlight-01.jpg')
    no-repeat center center;
  background-attachment: initial;
  background-size: cover;
}
.jp-tokyo {
  background: url('./../img/highlights/tokio/tokio-highlight-01.jpg') no-repeat
    center center;
  background-attachment: initial;
  background-size: cover;
}
.jp-fuji {
  background: url('./../img/highlights/fuji/mount-fuji-highlight-01.jpg')
    no-repeat center center;
  background-attachment: initial;
  background-size: cover;
}
.jp-kyoto {
  background: url('./../img/highlights/kyoto/kyoto-highlight-01.jpg') no-repeat
    center center;
  background-attachment: initial;
  background-size: cover;
}
.jp-fukuoka {
  background: url('./../img/highlights/fukuoka/fukuoka-highlight-01.jpg')
    no-repeat center center;
  background-attachment: initial;
  background-size: cover;
}
.jp-takachiho {
  background: url('./../img/highlights/takachiho/takachiho-highlight-02.jpg')
    no-repeat center center;
  background-attachment: initial;
  background-size: cover;
}

@-webkit-keyframes arrowDown {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
  }
}

@keyframes arrowDown {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
  }
}

.header-title__main {
  font-family: Baskerville, 'Baskerville Old Face', 'Hoefler Text', Garamond,
    'Times New Roman', serif;
  font-size: 3em;
  font-weight: 400;
  margin: 0em 0 0.15em 0;
  display: block;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

.header-title__part {
  font-family: Baskerville, 'Baskerville Old Face', 'Hoefler Text', Garamond,
    'Times New Roman', serif;
  font-size: 0.85em;
  font-weight: 400;
  padding: 0.5em 0;
  text-indent: 4px;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

.header-title__part::before,
.header-title__part::after {
  content: '\2014';
  padding: 0 0.5em;
}

.header-title__subtitle {
  display: block;
  font-size: 0.5em;
  display: block;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

.header-title__main.animate {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
}

.header-title__part.animate {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  opacity: 0;
  visibility: hidden;
}

.header-title__subtitle.animate {
  -webkit-transform: translateY(-5em);
  transform: translateY(-5em);
  opacity: 0;
  visibility: hidden;
}

.header-title__play {
  margin: 1em 0;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

.header-title__play.animate {
  opacity: 0;
  visibility: hidden;
}

#playIcon.animate {
  opacity: 0;
  visibility: hidden;
}

#playIcon:hover {
  cursor: pointer;
}

#playIcon {
  -webkit-animation: circleScale 3s ease-in-out infinite;
  animation: circleScale 3s ease-in-out infinite;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

@-webkit-keyframes circleScale {
  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
  }
}

@keyframes circleScale {
  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
  }
}

.video-background {
  min-width: 100%;
  min-height: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  background: #181922 url('../img/journey/header.jpg') no-repeat center center;
  background-size: cover;
}

.video-background video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
}

.section {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
  padding: 5em 0;
}

.section__heading {
  width: 100%;
  padding-top: 5em;
}

.section__heading h2 {
  margin: 0;
  position: relative;
  font-size: 1.85em;
}

.section__heading h1::after {
  content: '';
  font-size: 0.85em;
  font-weight: 400;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 25px;
  height: 1px;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.section__content {
  margin-bottom: 3em;
}

h1.primary::after {
  background: #38463a;
}

h1.secondary::after {
  background: #677e6a;
}

h1.tertiary::after {
  background: #eadbc1;
}

h1.white::after {
  background: white;
}

.section__heading span {
  display: block;
  margin: 1em 0;
  margin: 0 1em;
  text-transform: uppercase;
}

.section__content {
  width: 80%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.section__content p {
  font-size: 1.25em;
  line-height: 1.8em;
}

.section.imprint,
.section.imprint.privacy {
  max-width: 720px;
  width: 80%;
  margin: 0 auto;
  padding: 5em 0 0 0;
}

.section.imprint.privacy {
  padding-bottom: 5em;
}

.section.imprint p,
.section.imprint.privacy p {
  line-height: 1.6em;
}

.section.imprint ul {
  width: 80%;
}
.section.imprint ul li {
  text-align: left;
  line-height: 1.8em;
  font-size: 0.9em;
  font-style: italic;
}

header.imprint h1,
header.imprint.privacy h1 {
  margin-top: 5em;
}

.section.imprint h2,
.section.imprint h3,
.section.imprint.privacy h2,
.section.imprint.privacy h3 {
  margin: 2em 0 0.8em 0;
}

.intro {
  background: rgb(19, 24, 20);
  background-image: url('../img/line-bg.svg');
  background-size: 110%;
  color: white;
  min-height: 80vh;
}

.intro-influencers {
  background: rgb(255, 255, 255);
  /* background-image: url('../img/line-bg.svg');
  background-size: 120%; */
  overflow: hidden;
}

.coming-up {
  background-image: url('../img/journey/header.jpg');
  background-size: cover;
  background-position: center;
  color: white;
}

.coming-up::after {
  content: '';
  background: rgba(24, 24, 24, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.coming-up > * {
  z-index: 10;
}

.partners {
  background: rgba(255, 255, 255, 1);
}

.partners .secondary {
  color: #38463a;
}

.partners .title-up {
  color: #677e6a;
}

.partner-logos {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;
  display: table;
}

.partner-logos img {
  padding: 1em;
  width: 25%;
}

/* .partner-logo {
  width: 150px;
  height: 120px;
  margin: 2em 2em;
  overflow: hidden;
} */

/* .partner-logo:nth-child(1) {
  background-image: url('../img/logos/logo-japan.png');
}
.partner-logo:nth-child(2) {
  background-image: url('../img/logos/logo-fmd.png');
}
.partner-logo:nth-child(3) {
  background-image: url('../img/logos/logo-turkish-airlines.png');
}
.partner-logo:nth-child(4) {
  background-image: url('../img/logos/logo-mrg.png');
} */

.coming-up .section__content p,
.partners .section__content p,
.intro .section__content p {
  margin: 2em 0;
}

.intro-influencers > .section__content {
  width: 100%;
}

.intro-influencers__cards {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-box-align: center;
  align-items: center;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  justify-content: center;

  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); */
}

.intro-influencers__card {
  margin: 2em 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  padding: 1em;
  margin: 1em;
  flex-basis: 33%;
  -webkit-box-flex: 1;
  flex-grow: 1;
}

.intro-influencers__portrait {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: 1em;
}

.intro-influencers__description {
  font-size: 0.8em;
  margin-bottom: 0.8em;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.intro-influencers__name {
  color: rgb(255, 255, 255);
  margin: 0 0 1em 0;
}

.intro-influencers__social {
  color: #38463a;
}

.intro-influencers__social span {
  margin: 0 0.8em;
  font-size: 0.8em;
}

#hannah {
  background-image: url('../img/portraits/hannah-hofinger-01.jpg');
  background-size: cover;
  overflow: hidden;
}

#mrgoodlife {
  background-image: url('../img/portraits/mr.goodlife-02.jpg');
  background-size: cover;
}

#marc {
  background-image: url('../img/portraits/marc-baechthold-01.jpg');
  background-size: cover;
}

#fmd {
  background-image: url('../img/journey/04-takachiho.jpg');
  background-size: cover;
}

.story__info {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin: 1em 0;
}

.story__info .left {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-box-align: center;
  align-items: center;
}

.story__info .right {
  width: 100%;
}

.story__info .portrait-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-image: url('../img/journey/01-tokyo.jpg');
  background-size: cover;
  overflow: hidden;
}

.story__info .left .description {
  margin-left: 1em;
}

.story__info .left .description span {
  display: block;
  font-size: 0.7em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}

.story__info .right .story-btn {
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px dashed #5d5c56;
  padding: 0.8em 1em;
  text-transform: uppercase;
  text-align: center;
}

.story__info .right .story-btn a {
  padding: 1em;
  color: #5f646c;
}

.story__info .right .story-btn a:hover {
  color: #cecec5;
}

.intro-images__image h3 {
  position: absolute;
  bottom: 0;
  left: 50%;
  color: rgb(206, 206, 206);
  -webkit-transform: translate(-50%, 150%);
  transform: translate(-50%, 150%);
  text-align: center;
}

.btn {
  display: block;
  border: 2px solid #eadbc1;
  padding: 1em;
  font-weight: 600;
  margin: 2em 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #eadbc1;
}

.btn:hover {
  background-color: #eadbc1;
  border: 2px solid #eadbc1;
  color: rgba(24, 25, 34, 1);
  cursor: pointer;
}

/* Top Navigation Style */

.jp-links {
  position: relative;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}

.jp-links::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  -webkit-transform: rotate3d(0, 0, 1, 22.5deg);
  transform: rotate3d(0, 0, 1, 22.5deg);
}

/* Demo links */

.jp-demos {
  margin: 2em 0 0;
}

.jp-demos a {
  display: inline-block;
  margin: 0 0.5em;
}

.jp-demos a.current-demo {
  color: #333;
}

/* Content */

.content {
  padding: 3em 0;
}

/* Related demos */

.main {
  min-height: 100%;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.footer {
  background: rgba(19, 24, 20, 1);
  z-index: 99999;
  padding: 2em 2em;
  text-align: center;
  color: #fff;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  width: 100%;
  -webkit-box-align: center;
  align-items: center;
}

.footer a,
.footer p {
  color: #eadbc1;
}

.footer p,
li {
  font-size: 0.8em;
}

.footer ul {
  -webkit-margin-start: 0;
  margin-inline-start: 0;
}

.footer ul li {
  display: inline;
}

.footer ul a {
  padding: 1em;
}

/* .footer ul a:first-child {
  padding-left: 0;
} */

.info {
  font-size: 1.65em;
  padding: 0 0 4em;
}

.media-item {
  display: inline-block;
  padding: 1em;
  vertical-align: top;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.media-item__img {
  max-width: 100%;
  opacity: 0.6;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.media-item:hover .media-item__img,
.media-item:focus .media-item__img {
  opacity: 1;
}

.media-item__title {
  font-size: 1em;
  margin: 0;
  padding: 0.5em;
}

/* Story */

.text {
  position: relative;
  z-index: 1000;
  padding: 5em 3em;
}

.text section {
  font-size: 1.25em;
  line-height: 1.7;
}

.text section h2 {
  font-size: 2.7em;
  font-weight: 400;
  margin: 0;
  text-align: left;
}

.text section:not(:first-child) h2 {
  padding: 2em 0 0 0;
}

.title-up {
  font-size: 0.365em;
  font-weight: bold;
  display: block;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: #cecec5;
}

.title-down {
  font-family: Baskerville, 'Baskerville Old Face', 'Hoefler Text', Garamond,
    'Times New Roman', serif;
  font-size: 1.35em;
  font-weight: 400;
  line-height: 0.9;
  display: block;
  padding: 0.15em 0 0.35em;
  color: #5f646c;
}

.text figure {
  margin: 1em 0 2em;
}

.text figure img {
  max-width: 100%;
}

.text figcaption {
  font-size: 0.85em;
  font-style: italic;
  padding: 1em 1.5em 0;
  text-align: center;
  color: #5f646c;
}

.text section p {
  font-size: 0.95em;
  margin: 0.5em 0 1.5em;
}

.text section p.text-intro {
  font-size: 1.3em;
  font-style: italic;
  line-height: 1.5;
  margin: 0.5em 0 1.25em;
  text-align: left;
  color: #9d9c95;
}

.text blockquote {
  font-family: Baskerville, 'Baskerville Old Face', 'Hoefler Text', Garamond,
    'Times New Roman', serif;
  font-size: 2em;
  line-height: 1.5;
  position: relative;
  text-align: left;
  color: #939997;
}

.text blockquote::before {
  content: '\201C';
  font-size: 2.5em;
  font-style: italic;
  line-height: 1;
  position: absolute;
  top: -0.15em;
  right: 100%;
  margin: 0 0.075em 0 0;
  color: #f0f3f3;
}

.text blockquote span {
  font-family: 'Avenir Next', Avenir, 'Helvetica Neue', Helvetica, Arial,
    sans-serif;
  font-size: 0.5em;
  white-space: nowrap;
  color: #cbcece;
}

.js-section {
  width: 50%;
  max-width: 700px;
}

.js-section ul {
  margin: 0 0 1em 1em;
}

.js-section ul li {
  font-size: 0.9em;
}

.js-gallery {
  padding-top: 50px;
  padding-bottom: 50px;
}

.js-gallery-content {
  font-size: 0;
  text-align: center;
}

.js-gallery-content img {
  width: 100%;
  margin: 10px 0;
}

#partner,
#impressum,
#datenschutz,
#kontakt {
  display: none;
}

.modal {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  -webkit-transform: translateY(100vh);
  transform: translateY(100vh);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  visibility: hidden;
  background: rgba(19, 24, 20, 1);
  color: #eadbc1;
  background-image: url('../img/line-bg.svg');
  background-size: cover;
  padding: 5em;
  overflow-y: hidden;
}

.modal .section__content {
  display: block;
}

.modal .modal-section {
  width: 100%;
  max-height: 100%;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
  overflow: scroll;
  text-align: left;
}

.modal h1 {
  font-size: 2.2em;
  margin-bottom: 1em;
}

.modal h2 {
  margin-bottom: 1em;
}

.modal p {
  font-size: 1em;
  line-height: 1.8em;
}

.close-modal {
  position: absolute;
  top: 2%;
  right: 2%;
  font-size: 3em;
  cursor: pointer;
}

.modal.isOpen {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.visible {
  display: -webkit-box !important;
  display: flex !important;
}

.scrollDisabled {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .header-title {
    font-size: 1.4em;
  }
}

@media (max-width: 720px) {
  h1 {
    margin: 0 0 0.67em 0;
  }

  .intro,
  .coming-up,
  .partners {
    font-size: 0.85em;
  }

  .btn {
    padding: 0.85em;
    font-weight: 600;
    margin: 1em 0;
  }

  .header-title {
    font-size: 1.5em;
  }

  .intro,
  .coming-up,
  .partners {
    padding: 4em 2em;
    font-size: 0.85em;
  }

  .section__heading {
    font-size: 0.85em;
  }

  .section__content {
    width: auto;
    font-size: 1.25em;
  }

  .modal-section .section__content p {
    font-size: 0.7em;
  }

  .section__content .intro-influencers__cards {
    font-size: 0.8em;
  }

  .section p {
    font-size: 0.95em;
  }

  .text {
    font-size: 0.85em;
    padding: 5em 2em 2em 2em;
    text-align: justify;
  }

  .text section h2 {
    font-size: 1.85em;
  }

  .text blockquote {
    font-size: 1.45em;
  }

  .js-section {
    width: 100%;
    max-width: none;
  }

  .footer {
    min-height: 5em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
  }

  .footer .left {
    margin-bottom: 1em;
  }

  .modal {
    padding: 2em;
  }

  .modal .modal-section {
    width: 100%;
  }

  p {
    text-align: justify;
  }

  .section.imprint p,
  .section.imprint h2,
  .section.imprint h3,
  .section.imprint.privacy p,
  .section.imprint.privacy h2,
  .section.imprint.privacy h3 {
    text-align: left;
    align-self: flex-start;
  }

  video,
  .header-title__play {
    display: none;
  }
}

@media (max-height: 450px) {
  video,
  .header-title__play {
    display: none;
  }

  .jp-header__arrow i {
    font-size: 1em;
  }
}

@media (max-width: 520px) {
  .partner-logos img {
    width: 50%;
  }

  .jp-header__arrow i {
    font-size: 1em;
  }

  .main .header-title__part {
    text-indent: 0px;
  }

  .main .header-title__part::before,
  .main .header-title__part::after {
    content: '';
    padding: 0;
  }

  .btn {
    padding: 0.85em;
    font-weight: 600;
    margin: 1em 0;
    width: 100%;
  }

  .section p {
    font-size: 0.95em;
  }

  .story__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }

  .story__info .portrait-image {
    width: 60px;
    height: 60px;
  }

  .story__info .left {
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 1em;
  }

  .story__info .left .description {
    margin-left: 1em;
  }

  .bottom-left,
  .bottom-right {
    width: 100%;
  }

  .image-wrapper .bottom .bottom-right img {
    padding-left: 0;
  }

  .image-wrapper .bottom .bottom-left img {
    padding-right: 0;
  }

  .modal-section,
  .section__content,
  .modal-section,
  .section__heading {
    width: 100%;
  }

  .modal-section .section__content p {
    padding-right: 1.5em;
  }
}

/* Project CSS */

.highlight-slider {
  /* height: 100vh; */
  background: rgb(19, 24, 20);
}

.highlight-slider h2 {
  align-self: center;
}

.swiper-slide img {
  height: 100%;
}

.highlight-title {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  padding: 2em 0 2em 0;
  color: #eadbc1;
  background: rgba(19, 24, 20, 1);
}

.highlight-title:before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 25%;
  height: 2px;
  background: rgb(255, 255, 255, 0.3);
}
.highlight-title:after {
  content: '';
  position: absolute;
  top: 0;
  width: 25%;
  height: 2px;
  background: rgb(255, 255, 255, 0.3);
}

.highlight {
  background: rgb(19, 24, 20);
}

.highlight-container {
  background: rgb(19, 24, 20);
  color: #eadbc1;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  padding: 2em 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.highlight-image {
  width: 100%;
  margin: 0 0 1.5em 0;
  justify-content: center;
  overflow: hidden;
}

.highlight-image .container {
  height: 0;
  padding-bottom: 66.67%;
}

.highlight-image .container img {
  width: 100%;
  height: 100%;
  position: absolute;
}

.highlight-info {
  width: 90%;
  margin: 1em 0;
}

.highlight-info p {
  font-size: 1.1em;
  line-height: 1.8em;
}

.amp-story {
  width: 100%;
  min-height: 100vh;
  display: block;
  border: none;
}

@media (max-width: 320px) {
  .modal {
    padding: 5em 1em 2em 1em;
  }

  .partner-logos img {
    width: 100%;
  }
}

@media (min-width: 720px) and (max-width: 1000px) {
  .story__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }

  .story__info .portrait-image {
    width: 60px;
    height: 60px;
  }

  .story__info .left {
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 1em;
  }

  .story__info .left .description {
    margin-left: 1em;
  }
}

@media (max-width: 1520px) {
  .bottom-left {
    margin-bottom: 1em;
  }
}

@media (min-width: 1024px) {
  .intro-influencers__cards {
    flex-wrap: nowrap;
  }

  .intro-influencers__card {
    -webkit-box-flex: 0;
    flex-grow: 0;
  }

  .highlight-image {
    width: 80%;
  }

  .highlight-info {
    width: 80%;
  }
}

@media (min-width: 1440px) {
  .section__content,
  .section__heading {
    max-width: 960px;
  }

  .intro-influencers > div.section__content {
    max-width: 1280px;
  }

  .text {
    padding: 5em 0 0 10em;
  }

  .highlight-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    text-align: left;
  }

  .highlight-info {
    padding: 0 2em 0 2em;
  }

  .highlight-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }

  .highlight-image {
    width: 45%;
  }

  .highlight-info {
    width: 35%;
  }

  .highlight-image-2 {
    -webkit-box-ordinal-group: 3;
    order: 2;
  }
}
