@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: default;
  /* cursor: none; */
}
html a {
  cursor: pointer;
  /* cursor: none; */
}

:root {
  --barWidth: 45%;
}

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

#background-gabrielle{
  height: 100%;
  width: 55%;
  position: absolute;
  bottom: 0;
  left: 45%;
  z-index: -99;
}

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

/** Header / Navigation */
header {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  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 {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
}
header #main-nav ul li {
  display: block;
}
header #main-nav ul li a {
  font-family: "Helvetica Neue LT Pro";
  font-weight: normal;
  text-decoration: none;
  font-size: 1.8vmin;
  color: #ffffff;
  background-color: #2C272D;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  padding: 0.5rem 2rem;
}
header #main-nav ul li a:hover {
  color: #2C272D;
  background-color: #fff;
}
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;
}
#locationNav{
  background-color: #2C272D;
}

/* Logo */
a.nav-r-home.nav-l-home.normal {
  width: 15%;
  max-width: 30%;
  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;
    object-position: right;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  transition: opacity 0.75s;
}
#background-video{
  display: block;
}
#background-video-mobile{
  display: none;
}

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

.main-heading {
  color: #2C272D !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: transparent;
  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;
}
.subtitle-subtext-wrapper{
  display: flex;
  overflow: hidden;
  align-items: center;
  width: 100%;
  transition: none;
}
.subtext-wrapper{
  display: flex;
  flex-direction: column;
  height: max-content;
  width: 100%;
  min-width: 100%;
}
.left-bar .wrapper h1 {
  font-weight: 400;
  line-height: 1;
  color: #2C272D;
  font-size: calc(0.5 * (7vh + 8.6vw));
  margin: 0px;
  letter-spacing: -3px;
}
.left-bar .wrapper h3 {
  font-weight: 400;
  line-height: 1.1;
  color: #2C272D;
  font-size: 50px;
}
.left-bar .wrapper .subtext {
  font-size: 1.8vmin;
  line-height: 1.35;
  color: #231F20;
  margin-left: 5%;
  /* font-weight: 500; */
}
.left-bar .wrapper h3.mobile {
  display: none;
}
.left-bar .wrapper .subtext.mobile {
  display: none;
}
.left-bar .wrapper .subtext.part3 {
  margin-top: 15px;;
}
.left-bar .wrapper .subtext a {
  color: #231F20;
}
.small-text {
  font-size: 0.7rem;
}
.logo-container {
  display: flex;
  position: relative;
  align-items: center;
  z-index: 1;
}
.logo-container a{
  width: 160px;
}
.logo-container .logo-heading {
  position: absolute;
  top: -25px;
  left: 0;
}
.logo-container .both-logos {
  height: auto;
  width: 160px;
  margin-right: 20px;
}
.logo-container .twofold-logo-link {
  width: 60px;
  height: 30px;
  margin-left: -59px;
}
.logo-container .sulser-logo {
  height: auto;
  width: 138px;
  margin-right: 20px;
}
.logo-container .twofold-logo {
  height: auto;
  width: 45px;
}
.left-bar-footer {
  align-items: baseline;
  justify-content: space-between;
  margin-top: auto;
  margin-bottom: 1.9vw;
}
.left-bar .wrapper .left-bar-footer {
  display: flex;
}
.left-bar-footer {
  display: none;
}

.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: #2C272D;
  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: #2C272D;
  text-decoration: none;
}
.imprint .imprint-content span a:hover {
  color: #C69C6D;
}
.imprint .icon-back {
  margin-top: 50px;
}

.imprint-trigger {
  color: #231F20;
}

/* Right Bar */
.right-bar {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  padding-left: 5%;
  padding-bottom: 3.4vw;
  width: 100%;
  margin-bottom: 40px;
}
.right-bar .sub-heading {
  font-size: 20px;
  color: #231F20;
}
.right-bar .date-heading {
  font-size: calc(0.5 * (11.5vh + 6.1vw));
  font-weight: 400;
  margin: 0;
  line-height: 1;
  letter-spacing: -4px;
  color: #2C272D;
}
.right-bar .date-heading span {
  letter-spacing: -21px;
}
.right-bar .date-subline.mobile {
  display: none;
}
.right-bar .date-subline.desktop {
  display: block;
}
.right-bar .location-travel{
  display: flex;
  justify-content: flex-end;
  align-items: end;
  margin-right: 5%;
  margin-top: 10%;
  height: 150px;
}
.right-bar .location-travel-info{
  display: flex;
  flex-direction: column;
  width: 400px;
  background: #FAC92C;
  border-radius: 5px;
  padding: 5px;
  transition: all 0.4s;
  position: relative;
}
.right-bar .location-travel-info:hover{
  background: #2C272D;
  color: #fff;
  cursor: pointer;
  fill: #fff;
}
.right-bar .location-travel-info:hover .small-arrow.right{
  transform: rotate(180deg);
}
.right-bar .location-travel-info .travel{
  font-size: 13px;
}
.right-bar .location-travel-info a{
  margin: 0;
  padding: 5px;
  font-size: 24px;
}
.right-bar .location-travel-info .small-arrow{
  position: absolute;
  inset: auto 10px 10px auto;
}
.arrow{
  height: 50px;
  width: 50px;
  margin-bottom: -45px;
}
.right-bar .arrow-head-right{
  width: 13px;
  height: 13px;
  border: 2px solid #2C2C27;
  border-bottom: none;
  border-left: none;
  margin-top: -23px;
  margin-bottom: 5px;
  margin-left: 380px;
  transition: all 0.4s;
}
.right-bar .arrow-diagonal-right{
  width: 23px;
  height: 17px;
  border-top: 2px solid #2C2C27;
  margin-top: -14px;
  margin-bottom: 0px;
  margin-left: 380px;
  transform: rotate(-45deg);
  transition: all 0.4s;
}
.right-bar .arrow-head-left{
  width: 13px;
  height: 13px;
  border: 2px solid #2C2C27;
  border-bottom: none;
  border-right: none;
  margin-top: 20px;
  margin-left: 4px;
  margin-bottom: 5px;
  transition: all 0.4s;
  transform: rotate(-45deg);
}
.right-bar .arrow-diagonal-left{
  width: 23px;
  height: 17px;
  border-top: 2px solid #2C2C27;
  margin-top: -14px;
  margin-bottom: 0px;
  margin-left: 4px;
  /* transform: rotate(45deg); */
  transition: all 0.4s;
}
/* .right-bar .arrow:hover .arrow-head-left{
  border-color: #fff;
  transform: rotate(-45deg);
}
.right-bar .arrow:hover .arrow-diagonal-left{
  border-color: #fff;
  transform: none;
  margin-left: 4px;
} */

.small-arrow{
  width: 25px;
  height: 25px;
  stroke: none;
  flex-shrink: 0;
}
.small-arrow.right{
  transform: rotate(135deg);
  transition: transform 0.4s;
}

.speaker-wrapper{
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.speaker-link{
  border-bottom: solid 2px #000;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
  color: #000;
  text-decoration: none;
}
.hide-overflow{
  overflow: hidden;
}
.speaker-link:hover .small-arrow{
  transform: rotate(180deg);
}
.speaker-link .name{
  font-size: 1.5rem;
}
.speaker-description{
  display: flex;
  gap: 2rem;
}
.speaker-link .description{
  font-size: 1.0rem;
  text-align: end;
}
.talker-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.small-title{
  font-weight: normal;
  margin-bottom: 0;
}
.big-title{
  margin-top: 0;
  font-weight: normal;
  font-size: 3em;
}
.talker-excerpt{
  margin-bottom: 2rem;
  max-width: 70ch;
}
.talker-socials{
  display: flex;
  gap: 1.5rem;
}
.talker-socials a{
  text-decoration: none;
  color: #000;
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.talker-socials .small-arrow{
  width: 15px;
  height: 15px;
}

.talker-page{
  position: relative;
  display: flex;
  flex-flow: column;
  padding: 100px 2rem 100px 5%;
  width: 100%;
  margin-bottom: 0;
  justify-content: center;
}
.talker-page .arrow{
  margin-bottom: 1rem;
}
.mobile-back-arrow{
  display: none;
}
.mobile-back-arrow{
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.mobile-back-arrow a{
  display: block;
}
.talker-excerpt{
  line-height: 1.4;
}
.programm-item{
  font-size: 1.5em;
  border-bottom: solid 2px #000;
  padding-bottom: 0.25em;
  margin-top: 1em;
}
















/* Laptop or BIGGER*/
@media (min-width: 1025px) {
  .handle-overflow{
    margin: 0 !important;
    box-sizing: border-box;
    padding-top: 160px;
    max-height: 100vh;
  }
  .handle-overflow > *{
    overflow-y: auto;
  }
  .handle-overflow2{
    margin: 0 !important;
    box-sizing: border-box;
    padding-top: 160px;
    max-height: 100vh;
    padding-bottom: 3.4vw;
  }
  .handle-overflow2 .custom-scrollbar{
    overflow-y: auto;
    height: 100%;
  }
}




/* 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;
  }
  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;
  }
  .subtitle-subtext-wrapper{
    display: flex;
  }
  .left-bar .wrapper .logo {
    width: 55%;
  }
  .left-bar .wrapper h1 {
    font-size: 8vw;
    margin: 30px 0;
    letter-spacing: 0;
  }
  .left-bar .wrapper h3 {
    width: 35%;
  }
  .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.part3 {
    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 .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;
  }
  .right-bar .location-travel{
    margin-top: 0px;
    margin-right: 0px;
  }
  .arrow{
    display: none;
  }
  .programm-follow-img-wrap,
  .speaker-follow-img-wrap{
    display: none !important;
  }
}
/* 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;
  }
  .video-background video{
    object-position: center;
  }
  .page-home .video-background {
    padding: 10px !important;
    padding-right: 40px !important;
  }
  #background-video{
    display: none;
  }
  #background-video-mobile{
    display: block;
  }
  .hide #background-video-mobile{
    display: none;
  }
  #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: 1rem !important;
    padding-top: 30px;
    width: 100%;
  }
  #nav-r-location .location-footer {
    margin-top: 30px !important;
  }
  
  #nav-r-location .location-footer a {
    font-size: 1rem !important;
    font-weight: 600;
  }
  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: 10vw !important;
    letter-spacing: 0 !important;
    color: #2C272D !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: 20px !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: 20px;
    align-items: flex-start;
  }
  .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; */
    /* min-width: 100%; */
    /* max-width: 100%; */
    width: auto;
    /* min-height: 100%;
    max-height: 100%; */
    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 10px;
  }
  .left-bar .wrapper .logo {
    width: 55%;
  }
  .left-bar .wrapper h1 {
    font-size: 8vw;
    margin: 30px 0;
    margin-top: 60px;
    letter-spacing: 0;
  }
  .left-bar .wrapper h3 {
    display: none;
  }
  .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.part3 {
    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;
  }
  .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;
  }
  .right-bar .location-travel {
    display: none;
  }

  .speaker-wrapper {
    padding-right: 0;
  }

  .speaker-link .name {
    font-size: 2rem;
  }

  .speaker-description {
    padding-bottom: 10px;
  }

  #logo-animated {
    width: 170px;
  }

  div[id="nav-r-home"] {
    padding-left: 10px !important;
  }

  .left-bar-footer {
    left: 20px !important;
  }

  .left-bar .wrapper h1 {
    padding-left: 10px;
  }

  #nav-l-home .wrapper h1 {
    padding-left: 0;
  }

  #mobile-nav nav ul {
    padding-left: 10px;
  }

  #mobile-nav nav ul li {
    padding-bottom: 20px;
  }

  body[class|="page-talker"] #logo-animated {
    width: 170px !important;
  }


}
/* 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 10px;
  }
  .left-bar .wrapper h1 {
    font-size: 12vw;
    margin: 25px 0;
    margin-top: 60px;
  }
  .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;
  }
  .subtitle-subtext-wrapper{
    flex-direction: column;
    align-items: baseline;
  }
  .left-bar .wrapper h3{
    display: none;
  }
  .left-bar .wrapper .subtext {
    font-size: 1rem;
    margin-bottom: 13px;
  }
  .left-bar .wrapper .subtext.part3 {
    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: 0px;
    margin-bottom: 20px;
  }
  .right-bar .location-travel{
    justify-content: center;
    margin-left: 15px;
  }
  .right-bar .location-travel-info{
    width: 320px;
  }
  .right-bar .arrow-head-right{
    margin-left: 300px;
  }
  .right-bar .arrow-diagonal-right{
    margin-left: 300px;
  }
  .right-bar .location-travel-info:hover .arrow-diagonal-right{
    margin-left: 294px;
  }
}
@media (max-width: 360px) {
  .video-background {
    padding: 10px;
  }
  header {
    padding: 25px 20px;
  }
  .right-bar {
    padding-left: 20px;
    padding-right: 20px;
  }
  .left-bar .wrapper .logo {
    margin-top: 25px;
  }
  .right-bar .location-travel-info{
    width: 220px;
  }
  .right-bar .arrow-head-right{
    margin-left: 205px;
  }
  .right-bar .arrow-diagonal-right{
    margin-left: 205px;
  }
  .right-bar .location-travel-info:hover .arrow-diagonal-right{
    margin-left: 199px;
  }
}
@media (max-width: 375px) {
  .page-home .video-background {
    padding-right: 0 !important;
  }
}
/* Desktop large screens *//*# sourceMappingURL=main.css.map */