@font-face {
  font-family: 'Belwe';
  src: url("../webfonts/belweb-webfont.woff2") format("woff2"), url("../webfonts/belweb-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Lato Regular';
  src: url("../webfonts/lato-v24-latin-regular.woff2") format("woff2"), url("../webfonts/lato-v24-latin-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  text-align: center;
  opacity: 0;
  animation: loader-animation 0.25s cubic-bezier(0, 0, 0.1, 1) 0s 1 normal forwards; }
@keyframes loader-animation {
  0% {
    transform: scale(0.5);
    opacity: 0; }
  100% {
    transform: scale(1);
    opacity: 1; } }
  .loader .loader-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center; }
  .loader .hexagon {
    width: calc(50 * 100vw / 1366);
    height: calc(58 * 100vw / 1366);
    animation: hexagon-animation 6s linear 0s infinite; }
    .loader .hexagon svg {
      fill: #02539c; }
@keyframes hexagon-animation {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
*, *:before, *:after {
  box-sizing: border-box; }

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overscroll-behavior: none; }

body {
  background-color: #000;
  font-family: chaparral-pro, serif;
  font-weight: 400;
  font-size: 0;
  color: #fff;
  overflow: hidden; }

.main {
  position: relative;
  opacity: 0;
  height: 100%; }

.responsive-video-16-9 {
  position: relative;
  height: 0;
  padding-bottom: 56.25%; }
  .responsive-video-16-9 video, .responsive-video-16-9 iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; }

.show .main {
  transition: opacity 0.5s linear;
  opacity: 1; }

/* ==========================================================================
   Custom
   ========================================================================== */
@media (max-width: 720px) and (orientation: landscape) {
  .main {
    display: none; } }

.landscape-notice {
  display: none;
  height: 100vh;
  width: 100%;
  font-size: 3.6231884058vh;
  padding: 20px;
  align-items: center;
  text-align: center;
  justify-content: center; }
  @media (max-width: 720px) and (orientation: landscape) {
    .landscape-notice {
      display: flex; } }

.main {
  position: relative; }
  .main .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; }
  .main .logo {
    position: absolute;
    top: 30px;
    left: 30px; }
    .main .logo img {
      width: 240px; }
    @media (max-width: 720px) {
      .main .logo {
        top: 2.6666666667vw;
        left: 2.6666666667vw; }
        .main .logo img {
          width: 37.3333333333vw; } }
  .main .content {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 640px;
    height: 303px;
    max-height: calc(100% - 60px);
    background-color: #02539C;
    border-radius: 30px;
    padding: 23px 27px 139px; }
    @media (max-width: 1023px) {
      .main .content {
        max-height: calc(100% - 140px); } }
    @media (max-width: 720px) {
      .main .content {
        bottom: 2.6666666667vw;
        right: 2.6666666667vw;
        width: 94.6666666667vw;
        height: 48vw;
        max-height: calc(100% - (100vw / 375 * 60));
        border-radius: 5.3333333333vw;
        padding: 4.2666666667vw 4.2666666667vw 29.3333333333vw; } }
    .main .content .navi {
      display: flex;
      flex-wrap: wrap;
      gap: 0 30px;
      max-width: 450px; }
      @media (max-width: 720px) {
        .main .content .navi {
          gap: 0 4.2666666667vw; } }
      .main .content .navi .navi-item {
        color: #fff;
        font-family: 'Belwe';
        font-size: 32px;
        line-height: 42px;
        cursor: pointer;
        text-decoration: none;
        transition: opacity 0.2s linear; }
        .main .content .navi .navi-item:hover {
          opacity: 0.7; }
        @media (max-width: 720px) {
          .main .content .navi .navi-item {
            font-size: 5.3333333333vw;
            line-height: 6.6666666667vw; } }
    .main .content .line {
      width: 100%;
      height: 3px;
      background-color: #fff;
      border-radius: 3px;
      margin: 15px 0; }
      @media (max-width: 720px) {
        .main .content .line {
          margin: 2.1333333333vw 0 4vw; } }
    .main .content .content-items .content-item {
      display: none;
      font-size: 18px;
      line-height: 24px;
      font-family: 'Lato Regular';
      padding-right: 30px; }
      .main .content .content-items .content-item a {
        color: #fff;
        text-decoration: none;
        transition: opacity 0.2s linear; }
        .main .content .content-items .content-item a:hover {
          opacity: 0.7; }
      @media (max-width: 720px) {
        .main .content .content-items .content-item {
          font-size: 4vw;
          line-height: 5.6vw;
          padding-right: 5.3333333333vw; } }
      .main .content .content-items .content-item iframe {
        width: 100%; }
      .main .content .content-items .content-item h3 {
        font-family: 'Belwe';
        font-size: 32px;
        line-height: 42px;
        margin: 0 0 6px;
        font-weight: 400; }
        @media (max-width: 720px) {
          .main .content .content-items .content-item h3 {
            font-size: 5.3333333333vw;
            line-height: 6.4vw; } }
      .main .content .content-items .content-item .songkick-container {
        color: #fff; }
        .main .content .content-items .content-item .songkick-container .plain_text {
          color: #fff !important; }
        .main .content .content-items .content-item .songkick-container .widget_row {
          font-family: 'Lato Regular';
          font-size: 14px;
          width: 100%;
          border-bottom: 1px solid #fff; }
          @media (max-width: 720px) {
            .main .content .content-items .content-item .songkick-container .widget_row {
              display: flex;
              flex-direction: column;
              gap: 16px; } }
          .main .content .content-items .content-item .songkick-container .widget_row .event_date {
            font-family: 'Belwe';
            color: #fff;
            font-size: 20px;
            width: 25%; }
            @media (max-width: 720px) {
              .main .content .content-items .content-item .songkick-container .widget_row .event_date {
                width: 100%; } }
          .main .content .content-items .content-item .songkick-container .widget_row .event_location {
            width: 50%; }
            @media (max-width: 720px) {
              .main .content .content-items .content-item .songkick-container .widget_row .event_location {
                width: 100%; } }
          .main .content .content-items .content-item .songkick-container .widget_row .event_links {
            margin-left: auto;
            width: 25%; }
            @media (max-width: 720px) {
              .main .content .content-items .content-item .songkick-container .widget_row .event_links {
                width: 100%;
                float: none;
                position: relative;
                top: auto;
                transform: none; } }
            .main .content .content-items .content-item .songkick-container .widget_row .event_links .link_background {
              background-color: transparent !important;
              border: 1px solid #fff;
              font-family: 'Belwe';
              text-transform: none;
              font-size: 20px; }
          .main .content .content-items .content-item .songkick-container .widget_row .location {
            font-size: 20px; }
          .main .content .content-items .content-item .songkick-container .widget_row .featuring-artists {
            display: none; }
    .main .content .footer {
      position: absolute;
      bottom: 23px;
      left: 27px;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      width: calc(100% - 54px); }
      @media (max-width: 720px) {
        .main .content .footer {
          bottom: 2.6666666667vw;
          left: 4.2666666667vw;
          width: calc(100% - 100vw / 375 * 32); } }
      .main .content .footer .footer-left {
        display: flex;
        flex-direction: column;
        gap: 0; }
        .main .content .footer .footer-left .legal-item {
          font-family: 'Lato Regular';
          font-size: 13px;
          line-height: 16px;
          color: #fff;
          cursor: pointer;
          text-decoration: none;
          transition: opacity 0.2s linear; }
          .main .content .footer .footer-left .legal-item:hover {
            opacity: 0.7; }
          @media (max-width: 720px) {
            .main .content .footer .footer-left .legal-item {
              font-size: 2.6666666667vw;
              line-height: 3.2vw; } }
      .main .content .footer .footer-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end; }
        .main .content .footer .footer-right .social {
          display: flex;
          gap: 14px;
          align-items: center; }
          @media (max-width: 720px) {
            .main .content .footer .footer-right .social {
              gap: 2.6666666667vw; } }
          .main .content .footer .footer-right .social a {
            transition: opacity 0.2s linear; }
            .main .content .footer .footer-right .social a:hover {
              opacity: 0.7; }
          .main .content .footer .footer-right .social .tiktok {
            width: 30px; }
            @media (max-width: 720px) {
              .main .content .footer .footer-right .social .tiktok {
                width: 5.8666666667vw; } }
          .main .content .footer .footer-right .social .instagram {
            width: 34px; }
            @media (max-width: 720px) {
              .main .content .footer .footer-right .social .instagram {
                width: 6.4vw; } }
          .main .content .footer .footer-right .social .youtube {
            width: 42px; }
            @media (max-width: 720px) {
              .main .content .footer .footer-right .social .youtube {
                width: 8vw; } }
          .main .content .footer .footer-right .social .whatsapp {
            width: 35px; }
            @media (max-width: 720px) {
              .main .content .footer .footer-right .social .whatsapp {
                width: 6.6666666667vw; } }
          .main .content .footer .footer-right .social .spotify {
            width: 35px; }
            @media (max-width: 720px) {
              .main .content .footer .footer-right .social .spotify {
                width: 6.6666666667vw; } }
          .main .content .footer .footer-right .social .apple {
            width: 35px; }
            @media (max-width: 720px) {
              .main .content .footer .footer-right .social .apple {
                width: 6.6666666667vw; } }
        .main .content .footer .footer-right .legal-copy {
          font-family: 'Lato Regular';
          font-size: 13px;
          line-height: 16px;
          color: #fff;
          text-align: right;
          margin-top: 10px; }
          .main .content .footer .footer-right .legal-copy a {
            color: #fff;
            text-decoration: none;
            transition: opacity 0.2s linear; }
            .main .content .footer .footer-right .legal-copy a:hover {
              opacity: 0.7; }
          @media (max-width: 720px) {
            .main .content .footer .footer-right .legal-copy {
              font-size: 2.6666666667vw;
              line-height: 3.2vw; } }
    .main .content.live {
      height: auto; }
      .main .content.live .content-item.live {
        display: block; }
    .main .content.newsletter {
      height: auto; }
      .main .content.newsletter .content-item.newsletter {
        display: block;
        padding-right: 0; }
    .main .content.bio {
      height: auto; }
      .main .content.bio .content-item.bio {
        display: block; }
    .main .content.kontakt {
      height: auto; }
      .main .content.kontakt .content-item.kontakt {
        display: block; }
    .main .content .simplebar-content {
      height: 100%; }
