@font-face {
  font-family: "Helvetica Neue LT Pro";
  src: url("../font/HelveticaNeueLTW01-65Medium.woff2") format("woff2");
  font-weight: 500;
}
@font-face {
  font-family: "Helvetica Neue LT Pro";
  src: url("../font/HelveticaNeueLTW02-55Roman.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "Helvetica Neue LT Pro";
  src: url("../font/HelveticaNeueLTW01-75Bold.woff2") format("woff2");
  font-weight: bold;
}
html {
  cursor: none;
}
html a {
  cursor: none;
}

:root {
  --barWidth: 40%;
}

.intro-anim {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-color: #C69C6D;
  z-index: 100;
}

body {
  position: relative;
  padding: 0;
  margin: 0;
  background-color: #fe2438;
  font-family: "Helvetica Neue LT Pro", sans-serif;
  overflow: hidden;
}

/** Header / Navigation */
header {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0 2vw;
}
header #main-nav {
  padding-right: 0;
  padding-top: 2vw;
  padding-bottom: 2vw;
}
header #main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
}
header #main-nav ul li {
  display: inline-block;
  padding: 0px 2.5vw;
}
header #main-nav ul li:last-child {
  padding-right: 1.5vw;
}
header #main-nav ul li a {
  font-family: "Helvetica Neue LT Pro";
  font-weight: normal;
  text-decoration: none;
  font-size: 2.8vmin;
  color: #231F20;
}
header #main-nav ul li a.active {
  border-bottom: solid white 2px !important;
}
header #main-nav ul li .normal {
  top: 0;
  opacity: 1;
}
header #main-nav ul li .hover {
  top: 15px;
  opacity: 0;
}
header #main-nav ul li:hover .normal {
  top: -15px;
  opacity: 0;
}
header #main-nav ul li:hover .hover {
  top: 0;
  opacity: 1;
}

/* Logo */
a.nav-r-home.nav-l-home.normal {
  width: 28%;
  max-width: 40%;
  padding-top: 2vw;
  box-sizing: border-box;
}

.main-logo {
  z-index: 20;
}
.main-logo svg {
  height: auto !important;
}

#logo-animated svg {
  transform: none !important;
}

/* Main Container */
.video-background {
  display: flex;
}
.video-background .video-mobile {
  display: none;
}
.video-background video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  transition: opacity 0.75s;
}

/* Overwrites */
#nav-r-speaker .speaker-line {
  border-bottom: solid white 2px !important;
  font-size: 2.8vmin !important;
  cursor: none !important;
}

.main-heading {
  color: white !important;
  font-size: calc(0.5 * (7vh + 6.6vw)) !important;
}

#nav-r-timetable .timetable-line {
  border-bottom: solid white 2px !important;
  font-size: 2.8vmin !important;
  cursor: none !important;
}

div[class|=nav-desc] {
  border-bottom: solid white 2px !important;
}

div[class|=nav-desc] .box p {
  font-size: 1.8vmin;
  line-height: 1.35;
}

.location-text {
  font-size: 1.8vmin !important;
  line-height: 1.35 !important;
}

#nav-r-location .location-footer a {
  font-size: 1.8vmin !important;
}

/* Custom Cursor Styling */
.cursor {
  width: 12.5rem;
  height: 12.5rem;
  font-size: 1.25rem;
}

.cursor {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.25rem;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  pointer-events: none;
  overflow: hidden;
  border-radius: 100%;
  transition-property: transform, opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transform: translate(-50%, -50%) scale(0.1);
  border: white 12px solid;
  width: 8.75rem;
  height: 8.75rem;
}

/* Left Bar */
.left-bar {
  position: relative;
  background-color: #C69C6D;
  width: var(--barWidth);
  min-width: var(--barWidth);
  height: 100vh;
  z-index: 10;
}
.left-bar .wrapper {
  padding: 0 2vw;
  display: flex;
  flex-direction: column;
  height: -webkit-fill-available;
  height: -moz-available;
  height: fill-available;
}
.left-bar .wrapper .logo {
  pointer-events: none;
  width: 28vw;
  margin-top: 40px;
}
.left-bar .wrapper .logo-placeholder {
  visibility: hidden;
}
.left-bar .wrapper h1 {
  font-weight: 400;
  line-height: 0.9;
  color: #ffffff;
  margin-top: 3rem;
  font-size: calc(0.5 * (7vh + 6.6vw));
  margin: 5vmin 0;
  letter-spacing: -4px;
}
.left-bar .wrapper .subtext {
  font-size: 1.8vmin;
  line-height: 1.35;
  color: #231F20;
}
.left-bar .wrapper .subtext.mobile {
  display: none;
}
.left-bar .wrapper .subtext.part2 {
  margin-top: 30px;
}
.left-bar .wrapper .subtext a {
  color: #231F20;
}
.left-bar .wrapper .small-text {
  font-size: 0.7rem;
}
.left-bar .wrapper .logo-container {
  display: flex;
  position: relative;
  align-items: center;
}
.left-bar .wrapper .logo-container .logo-heading {
  position: absolute;
  top: -25px;
  left: 0;
}
.left-bar .wrapper .logo-container .sulser-logo {
  height: auto;
  width: 138px;
  margin-right: 20px;
}
.left-bar .wrapper .logo-container .twofold-logo {
  height: auto;
  width: 45px;
}
.left-bar .wrapper .left-bar-footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: auto;
  margin-bottom: 1.9vw;
}

.date-subline {
  font-size: 1.2rem;
  line-height: 1.3;
  padding-top: 20px;
  color: #231F20;
}

/* Imprint */
.imprint {
  position: absolute;
  width: 40%;
  left: -40%;
  top: 0;
  font-size: 1.2rem;
  bottom: 0;
  background: white;
  overflow: hidden;
  color: black;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  transition-timing-function: ease-in-out;
  z-index: 11;
}
.imprint .small-text {
  font-size: 1rem;
  margin-bottom: 25px;
}
.imprint.active {
  opacity: 1;
  left: 0;
}
.imprint .wrapper {
  padding: 0 50px;
  display: flex;
  flex-flow: column;
  justify-content: space-around;
  height: -webkit-fill-available;
  height: -moz-available;
  height: fill-available; /* WebKit-based browsers will ignore this. */
}
.imprint .imprint-content {
  margin-bottom: 25px;
}
.imprint .imprint-content .company {
  font-weight: bold;
}
.imprint .imprint-content span {
  display: block;
}
.imprint .imprint-content span a {
  color: black;
  text-decoration: none;
}
.imprint .imprint-content span a:hover {
  color: #C69C6D;
}
.imprint .icon-back {
  margin-top: 50px;
}

.imprint-trigger {
  /* cursor: pointer; */
  color: #231F20;
}

/* Right Bar */
.right-bar {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  padding-left: 5%;
  padding-bottom: 3.4vw;

  max-height: calc(96vh - 160px);
}
.right-bar .sub-heading {
  font-size: 2.8vmin;
  color: #231F20;
}
.right-bar .date-heading {
  font-size: calc(0.5 * (11.5vh + 11.1vw));
  font-weight: 400;
  margin: 0;
  line-height: 1;
  letter-spacing: -4px;
  color: #ffffff;
}
.right-bar .date-heading span {
  letter-spacing: -21px;
}
.right-bar .date-subline.mobile {
  display: none;
}
.right-bar .date-subline.desktop {
  display: block;
}

/* Tablet Landscape*/
@media (max-width: 1024px) {
  #mobile-nav nav {
    margin-top: 0 !important;
  }
  #mobile-nav nav ul {
    padding-left: 20px;
  }
  header #main-nav ul li a {
    font-size: 12vw;
  }
  .left-bar.active .left-bar-footer {
    margin-top: auto;
  }
  .left-bar .wrapper h1 {
    margin: 20px 0 20px !important;
  }
  body {
    overflow: initial;
  }
  header {
    padding: 50px 40px;
  }
  .imprint {
    position: absolute;
    width: 100%;
    left: -100%;
  }
  .intro-anim {
    display: none;
  }
  .video-background {
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    padding: 10px;
    padding-right: 40px;
    min-height: 100vh;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height: fill-available;
  }
  .video-background .video-desktop {
    display: none;
  }
  .video-background .video-mobile {
    display: block;
  }
  .left-bar {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    height: auto;
  }
  .left-bar .wrapper {
    height: 100%;
    padding: 0 20px;
  }
  .left-bar .wrapper .logo {
    width: 55%;
  }
  .left-bar .wrapper h1 {
    font-size: 8vw;
    margin: 30px 0;
    letter-spacing: 0;
  }
  .left-bar .wrapper .subtext {
    font-size: 1rem;
    line-height: 1.3;
  }
  .left-bar .wrapper .subtext.desktop {
    display: none;
  }
  .left-bar .wrapper .subtext.mobile {
    display: block;
  }
  .left-bar .wrapper .subtext.part2 {
    margin-top: 20px;
  }
  .left-bar .wrapper .small-text {
    font-size: 0.8rem;
  }
  .left-bar .wrapper .small-text.imprint-trigger {
    font-size: 0.8rem;
  }
  .left-bar .wrapper .logo-container .twofold-logo {
    width: 45px;
  }
  .left-bar .wrapper .logo-container .sulser-logo {
    width: 130px;
  }
  .left-bar .wrapper .logo-container .logo-heading {
    top: -15px;
  }
  .left-bar .wrapper .left-bar-footer {
    flex-flow: row;
    align-items: flex-end;
    margin-top: auto;
  }
  .right-bar {
    padding-bottom: 0;
    padding-left: 20px;
  }
  .right-bar .date-heading {
    font-size: 12vw;
    letter-spacing: 0;
    margin-bottom: 20px;
  }
  .right-bar .sub-heading {
    font-size: 1.2rem;
  }
  .right-bar .date-heading span {
    letter-spacing: -3px;
  }
}
/* Overwrites */
#mobile-nav-trigger {
  width: 45px !important;
}
#mobile-nav-trigger span {
  border-radius: 0 !important;
  height: 5px !important;
}

#mobile-nav {
  margin: 10px !important;
}

@media (max-width: 425px) {
  #mobile-nav nav ul li a {
    font-size: 14vw !important;
  }
}
/* Overwrites End*/

/* Tablet Portrait*/
@media (max-width: 768px) {
  /* Delete when Js */
  .video-background {
    padding: 0 !important;
  }
  .page-home .video-background {
    padding: 10px !important;
    padding-right: 40px !important;
  }
  #nav-r-speaker .speaker-line span:first-child {
    white-space: pre-wrap !important;
  }
  div[class|=nav-desc] {
    padding-left: 0 !important;
  }
  div[class|=nav-desc] .box {
    gap: 0 !important;
  }
  div[class|=nav-desc] .box p {
    font-size: 0.8rem;
  }
  .location-text.mobile {
    font-size: 0.8em !important;
    padding-top: 30px;
    width: 100%;
  }
  #nav-r-location .location-footer {
    margin-top: 30px !important;
  }
  #nav-r-location .location-footer a {
    font-size: 0.8em !important;
  }
  div[id=nav-r-timetable] {
    flex-grow: 0 !important;
  }
  .right-bar {
    max-height: initial !important;
  }
  #nav-r-timetable .timetable-line span:last-child {
    font-size: 8vw;
  }
  #nav-r-timetable .timetable-line span:first-child {
    font-size: 8vw;
  }
  #nav-r-speaker .speaker-line.mobile.show {
    border-bottom: 0 !important;
  }
  div[class|=nav-desc].show {
    padding-top: 0 !important;
  }
  .main-heading {
    font-size: 12vw !important;
    letter-spacing: 0 !important;
    color: black !important;
    margin-bottom: 0 !important;
  }
  #nav-r-timetable .timetable-line.mobile {
    display: flex;
    flex-flow: column-reverse;
    gap: 0;
  }
  #nav-r-speaker .speaker-line span:last-child {
    text-align: left !important;
    font-size: 0.8rem;
  }
  #nav-r-speaker .speaker-line.mobile {
    flex-flow: column;
    display: flex;
    align-items: flex-start;
    gap: 0;
  }
  .custom-scrollbar {
    overflow: visible !important;
  }
  #nav-r-speaker .speaker-line {
    font-size: 9vw !important;
  }
  div[id=nav-r-speaker], div[id=nav-r-timetable], div[id=nav-r-news] {
    padding-left: 30px !important;
    padding-right: 20px !important;
  }
  .video-background {
    padding: 0;
  }
  body {
    overflow: initial;
  }
  a.nav-r-home.nav-l-home.normal {
    padding-top: 0;
    width: 70% !important;
    max-width: 70%;
  }
  header {
    padding: 35px 30px 0;
    padding-right: 20px;
    padding-left: 30px;
  }
  .imprint {
    position: absolute;
    width: 100%;
    left: -100%;
  }
  .intro-anim {
    display: none;
  }
  .video-background {
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    padding: 10px;
    padding-right: 40px;
    min-height: 100vh;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height: fill-available;
  }
  .video-background .video-desktop {
    display: none;
  }
  .video-background .video-mobile {
    display: block;
  }
  .left-bar {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    height: auto;
  }
  .left-bar.active .wrapper .left-bar-footer {
    margin-top: auto;
  }
  .left-bar .wrapper {
    height: 100%;
    padding: 0 20px;
  }
  .left-bar .wrapper .logo {
    width: 55%;
  }
  .left-bar .wrapper h1 {
    font-size: 8vw;
    margin: 30px 0;
    letter-spacing: 0;
  }
  .left-bar .wrapper .subtext {
    font-size: 1rem;
    line-height: 1.3;
  }
  .left-bar .wrapper .subtext.desktop {
    display: none;
  }
  .left-bar .wrapper .subtext.mobile {
    display: block;
  }
  .left-bar .wrapper .subtext.part2 {
    margin-top: 20px;
  }
  .left-bar .wrapper .small-text {
    font-size: 0.8rem;
  }
  .left-bar .wrapper .logo-container .twofold-logo {
    width: 45px;
  }
  .left-bar .wrapper .logo-container .sulser-logo {
    width: 130px;
  }
  .left-bar .wrapper .logo-container .logo-heading {
    top: -15px;
  }
  .left-bar .wrapper .left-bar-footer {
    flex-flow: row;
    align-items: flex-end;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .right-bar {
    padding-bottom: 0;
    padding-left: 20px;
    padding-top: 30px;
  }
  .right-bar .date-heading {
    font-size: 12vw;
    letter-spacing: 0;
    margin-bottom: 20px;
  }
  .right-bar .sub-heading {
    font-size: 1.2rem;
  }
  .right-bar .date-heading span {
    letter-spacing: -3px;
  }
  .cursor{
    display: none;
  }
}
/* Mobile */
#main-nav-burger {
  padding: 0 !important;
}

@media (max-width: 480px) {
  .video-background {
    padding-bottom: 10px;
  }
  .video-background .video-background {
    padding: 0;
  }
  .left-bar .wrapper {
    height: 100%;
    padding: 0 20px;
  }
  .left-bar .wrapper h1 {
    font-size: 12vw;
    margin: 30px 0;
    margin-top: 5px;
  }
  .left-bar .wrapper .subtext {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 25px;
  }
  .left-bar .wrapper .logo-container .twofold-logo {
    width: 20px !important;
  }
  .left-bar .wrapper .logo-container .sulser-logo {
    width: 70px !important;
    margin-right: 10px;
  }
  .left-bar .wrapper .left-bar-footer {
    flex-flow: row;
  }
  .left-bar .wrapper .logo-heading {
    display: none;
  }
  .left-bar .wrapper .subtext {
    font-size: 0.8rem;
    margin-bottom: 13px;
  }
  .left-bar .wrapper .subtext.part2 {
    margin-top: 0;
  }
  .right-bar .sub-heading {
    font-size: 1.2rem;
  }
  .right-bar .sub-heading, .right-bar .date-subline {
    font-size: 0.8rem;
  }
  .right-bar .date-subline {
    padding-top: 0;
  }
  .right-bar .date-subline.mobile {
    display: block;
  }
  .right-bar .date-subline.desktop {
    display: none;
  }
  .right-bar .date-heading {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
@media (max-width: 360px) {
  .video-background {
    padding: 10px;
  }
  header {
    padding: 25px 30px;
  }
  .right-bar {
    padding-left: 20px;
    padding-right: 20px;
  }
  .left-bar .wrapper .logo {
    margin-top: 25px;
  }
}
@media (max-width: 375px) {
  .page-home .video-background {
    padding-right: 0 !important;
  }
}
/* Desktop large screens *//*# sourceMappingURL=main.css.map */