@font-face {
  font-family: 'TimesNow';
  src: url('../fonts/JHA_Times_Now_Light.woff2') format('woff2');
  font-style: normal;
}
@font-face {
  font-family: 'TimesNow';
  src: url('../fonts/JHA_Times_Now_Light_Italic.woff2') format('woff2');
  font-style: italic;
}

  @font-face {
    font-family: Univers;
    src: url('../fonts/UniversLTStd-Light.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }

html, body {
    position: relative;
    height: 100%;
}

html::-webkit-scrollbar {
display: none;
}

html {
-ms-overflow-style: none;
scrollbar-width: none;
}

body {
margin: 0;
padding: 0;
font-family: 'TimesNow', serif;
color: black;
overflow-x: hidden;
font-size: calc(22px + 0.390625vw);
  word-break: break-word; 

}


h1 {
  font-weight: normal;
  font-size: inherit;
  padding-left: 4rem;
  padding-right: 5rem;
  hyphens: auto;           
}

h2 {
  font-weight: normal;
font-size: calc(22px + 0.390625vw);
  line-height: 1.3rem;
}

h3 {
  font-family: Univers, sans-serif;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.3rem;
}

a,
a:link,
a:visited,
a:active {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  transition: all 0.3s ease;
}
a:hover {
  -webkit-filter: blur(1px);
  filter: blur(1px);
}

a:hover .slide-media {
  -webkit-filter: none;
  filter: none;
}



figure {
  all: unset;
  display: block;
  margin: 0;
  padding: 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
    
li {
    list-style: none;
    margin: 0;
    padding: 0;
    word-break: break-word;
}

table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

svg {
  margin: 0;
}

.u_line {
  text-decoration: underline;
}

.upper-c {
  text-transform: uppercase;
}

* {box-sizing:border-box}


.hide {
  display: none;
}

main {
  position: relative;
}

.disable-select {
  -webkit-user-select: none;  
  -moz-user-select: none;    
  -ms-user-select: none;      
  user-select: none;
}


/* HEADER ELEMENT*/



/* NAVI */

.nav-link {
  filter: blur(1.5px);
-webkit-filter: blur(1.5px);
  transition: all 0.4s ease;
  opacity: 0.4;
}


.nav-link.active {
  filter: blur(0px);
-webkit-filter: blur(0px);
  opacity: 1;
}

.nav-link:hover {
  filter: blur(0px);
-webkit-filter: blur(0px);
  opacity: 1;
}

/*
  .navigation {
    position: fixed;
    padding: 20px;
    width: 100vw;
    z-index: 100;
  }

  .navigation a{
    color: black;
 }

 */

  .nav-menu a:hover{
    color: inherit;
  }

  .logo_container {
    position: absolute;
  }

  .burger-container  a{
    color: black;
  }
  
  .burger-container {
    position: fixed;
    top: 42px;
    right: 42px;
    z-index: 300;
    display: none;
  }
  
  /* Phone burger */
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 18px;
    height: 14px;
    background: none;
    border: none;
    padding: 0;
    z-index: 301;
  }
  
  .burger span {
    display: block;
    height: 1.5px;              
    width: 100%;
    background: black;
    border-radius: 1.5px;       
    transform-origin: center; 
    transform: scaleY(0.5);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .burger span:first-child,
.burger span:last-child {
  opacity: 1;
}

.burger.visible span:first-child,
.burger.visible span:last-child {
  opacity: 0;
}
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: 40px;
    padding: 40px 0 20px 20px;
    display: flex;
    flex-direction: row; 
    gap: 3rem;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    -webkit-backdrop-filter: blur(10px); 
    backdrop-filter: blur(10px);
    pointer-events: none;
    transition: all 0.4s ease;
    z-index: 30000;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    font-family: univers, times, serif;
    font-size: 1rem;
  }

  .nav-menu::before {
    content: "";
    position: absolute;
    top: -20px;    
    right: -20px;
    bottom: -20px;
    left: -20px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px); 
    filter: blur(10px);
-webkit-filter: blur(10px);                
    z-index: -1;                       
    border-radius: inherit;     
  }



  .nav-menu.visible {
    opacity: 1;
    pointer-events: auto;
  }
  
  .nav-menu.open {
    opacity: 1;
    filter: blur(0);
    pointer-events: auto;
    background-color: white;
    pointer-events: auto;
  }
  
  
  

  /* Hidden Blur*/



  .behind {
    top: 0;
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 0;
    -webkit-filter: blur(5px);
    filter: blur(5px);
    transition: opacity 0.5s ease, filter 0.5s ease;
    overflow: hidden;
    pointer-events: none;        
    user-select: none;           
    touch-action: none;  
  }

  .behind.visible {
    opacity: 0.2;
  }

.behind.noblur {
  filter: none !important;
  -webkit-filter: none !important;
}


  .fade-out {
    opacity: 0;
    transition: opacity 0.5s ease;
  }


/* Home*/
  .home-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }


  
  .fade-container {
    opacity: 0.2;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    transition: opacity 0.5s ease, filter 0.5s ease;
  }
  
  .fade-container.loaded {
    opacity: 1;
    filter: blur(0);
    -webkit-filter: blur(0);
  }

/* ABOUT SECTION */

.about-upcoming {
  position: fixed;
  top: 0%;
  left: 40px;
  width: calc(20% - 40px);
  padding-right: 2rem;
  padding-top: 20%;
  font-weight: normal;
  font-size: 1.4rem;
  overflow: scroll;
  height: calc(var(--real-vh, 1vh) * 100);
    -ms-overflow-style: none;
  scrollbar-width: none;
}

.about-highlite {
  position: relative;
  border: 1px solid black;
  margin-bottom: 1rem;
  font-family: Univers, sans-serif;
  font-size: 1rem;
}

.about-highlite p{
    margin-top: 0;
    margin-bottom: 0;
    padding: 1rem 1rem 0 1rem;
  }

.about-highlite img, .about-highlite video{
  width: 100%;
  margin: 0;
  padding: 1rem;
}

.about-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--real-vh, 1vh) * 100);
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 20%;
}

.about-wrap a{
  color: inherit;
  -webkit-filter: blur(1px);
  filter: blur(1px);
  transition: all 0.4s ease;
  opacity: 0.7;
}

.about-wrap a:hover {
  color: inherit;
  -webkit-filter: blur(0px);
  filter: blur(0px);
  opacity: 1;
}

.about-text p{
  margin-top: 0;
}

.about-upcoming p{
margin-top: 0.3rem;
}

.about-text img,
.about-text video {
  position: relative;
  max-width: 100%;
  left: 50%;
  transform: translateX(-50%);
}


.about-bracket-wrap {
  position: relative;
  height: auto;
  width: 90%;
  padding-left: 5%;
}

.about-extra {
  text-align: center;
  display: flex;
  align-items: center;
  padding: 0 7% 0 7%;
  margin-bottom: 2rem;
}

.about-bracket {
  position: absolute;
  height: 80%;
  width: auto;
}

.about-bracket-left {
  left: 6%;
}

.about-bracket-right {
  right: 1%;
}

.about-toggle-icon {
  position: relative;
  height: 1rem;
  width: auto;
  cursor: pointer;
  z-index: 300;
  color: #1d1d1b;      
  transition: all 0.2s ease;
  padding-left: 1rem;
}
.about-toggle-icon:hover {
  -webkit-filter: blur(2px);
  filter: blur(2px);
}
.about-toggle-icon img {
  width: auto;
  height: 100%;
}

.contact-filler {
  border-top: 1px solid black;
  margin: 3rem 10% 0rem 10%;
}

.about-text-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.about-text-contact p {
  width: calc(50% - 0.25rem); 
  margin-bottom: 0rem;
  text-align: left;
}


/* WRITING SECTION */


.writing-wrap {
  position: absolute;
  padding: 20%;
}

.writing-wrap a{
  color: inherit;
  -webkit-filter: blur(1px);
  filter: blur(1px);
  transition: all 0.4s ease;
  opacity: 0.7;

}

.writing-wrap a:hover {
  color: inherit;
  -webkit-filter: blur(0px);
  filter: blur(0px);
    opacity: 1;

}

.writing-section-title {
  font-style: italic;
}

.writing-list {
  width: 100%;
  padding-bottom: 2rem;
}

.writing-list p{
  width: 100%;
}

.writing-list li {
  position: relative;
  padding-left: 1.2em;
    display: flex;
  align-items: flex-start;
  gap: 0rem;
  width: 100%;
}

.writing-list li p{
  margin: 0 0 1.5rem 0;
}

.writing-list li::before {
  content: "–";
  position: absolute;
  left: 0;
}



.entry-info-icon {
  margin-left: 0.5em;
  cursor: pointer;
  position: relative;
  transition: all 0.4s ease;
}

.entry-info-icon img{
  position: absolute;
  width: auto;
  height: 1.2rem;
  transition: all 0.4s ease;
  filter: blur(0px);
-webkit-filter: blur(0px);
  top: 0.4rem;
}

.entry-info-icon img:hover{
  width: auto;
  filter: blur(2px);
-webkit-filter: blur(2px);
}


.entry-tooltip {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64%;
  height: 60%;
  background-color: rgba(255, 255, 255, 0.5);  
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1.2px solid black;
  color: black;
  padding: 1.5rem 2rem;
  z-index: 999;
  opacity: 0;
  transition: all 0.8s ease;
  pointer-events: none;
  overflow-y: auto;
  text-align: left;
}


.entry-tooltip img,
.entry-tooltip video {
  width: 100%;
  margin-top: 1rem;
}

.entry-tooltip a{
  color: inherit;
  transition: all 0.4s ease;
  -webkit-filter: blur(1px);
  filter: blur(1px);
}

.entry-tooltip a:hover{
  color: inherit;
  -webkit-filter: blur(0px);
  filter: blur(0px);
}


.entry-tooltip p{
  margin: 1rem 0 0 0;
}

.entry-tooltip.visible {
  opacity: 1;
  pointer-events: auto;
}


/*teaching section*/
.teaching-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--real-vh, 1vh) * 100);
}

@supports (height: 100dvh) {
  .teaching-wrap {
    height: 100dvh;
  }
}


.swiper-teaching {
  width: calc(100% + 2px);
  height: calc(var(--real-vh, 1vh) * 100);
}

.swiper-slide-teaching {
  position: relative;
  border-right: 1px solid black;
}

.swiper-inhalt {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 22px 0 20px;
  height: 30vh;
}

.swiper-slide img,
.swiper-slide video {
  height: 30vh;
  max-width: calc(50vw - 44px);
}


.slide-media {
  position: absolute;
  top: 0;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s ease;
}

.slide-media:hover {
  transform: scale(1.01);
  -webkit-filter: blur(1px);
  filter: blur(1px);
}

.teaching-headline {
  position: absolute;
  top: -50vh;
  padding-bottom: 2rem;
  height: 50vh;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.teaching-headline a,
.teaching-year {
  display: block;
}


.teaching-subhead {
  position: relative;
  font-family: Univers, times, serif;
  font-size: 1rem;
  line-height: 1.3rem;
  top: calc(30vh + 0rem);
}

.swiper-button-next,
.swiper-button-prev {
  position: fixed;
  font-size: 2rem;
  z-index: 30001;
  top: calc(var(--real-vh, 1vh) * 100 - 60px);
  height: auto;
  width: 22px;  
  cursor: pointer;
  margin: 0;
  padding: 0 ;
  transition: all	0.3s ease;
  }

  .swiper-button-next:hover,
  .swiper-button-prev:hover{
    color: inherit;
    -webkit-filter: blur(2px);
    filter: blur(2px);
  }

  .swiper-button-prev {
    left: 24px;
  }
  .swiper-button-next {
    right: 24px;
  }

  .swiper-button-prev.research-prev {
    left: 44px;
    top: 120px;
  }
  .swiper-button-next.research-next{
    right: 44px;
    top: 120px;
  }


  .swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  display: none;
}



/* Classes Section*/
.classes-wrap {
  position: absolute;
  margin: 10% 20% 20% 20%;
}

.classes-wrap a {
  color: inherit;
  -webkit-filter: blur(1px);
  filter: blur(1px);
  transition: all 0.4s ease;
  opacity: 0.7;
}

.classes-wrap a:hover {
  color: inherit;
  -webkit-filter: blur(0px);
  filter: blur(0px);
  opacity: 1;
}

.classes-media img,
.classes-media video {
  width: 100%;
}


.classes-nav {
  position: fixed;
  top: 24px;
  left: 30px;
  z-index: 2200000;
  padding-top: 0%;
}

.nav-back {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 18px;
  height: 14px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 301000;
}

.nav-back a {
  color: black;
}

.nav-back span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: black;
  border-radius: 1.5px;
  transition: all 0.3s ease;
}

.nav-back:hover span {
  -webkit-filter: blur(2px);
  filter: blur(2px);
}

.nav-back span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 3px);
}

.nav-back span:nth-child(2) {
  transform: rotate(-45deg) translate(6px, -4px);
}

.nav-next {
position: fixed;
padding-top: 10%;
right: 30px;
z-index: 301;
}

.nav-prev {
  position: fixed;
  padding-top: 10%;
  left: 30px;
  z-index: 301;
}

/* Speaking Section */

.overview-toggle {
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300000;
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: Univers, sans-serif;
  font-size: 1rem;
  height: 60px;
  width: 66%;
  text-align: center;
  padding-top: 15px;
}


.overview-toggle:hover {
  -webkit-filter: blur(2px);
  filter: blur(2px);
}

.speaking-wrap {
position: relative;
top: 0;
left: 0;
width: 100%;
height: 100vh;
}

.speaking-list-wrap {
  position: fixed;
  padding: 20%;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);  
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
  overflow: scroll;
}

.speaking-list-wrap-wrap {
  border: black 1px solid;
  padding: 1rem;
}

.speaking-list-wrap.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hidden {
  display: none;
}

.speaking-section-title p {
  margin: 0;
  font-family: Univers, sans-serif;
    font-weight: normal;
  font-size: 1rem;
  line-height: 1.3rem;
}

.entry-main{
  width: 100%;
}

.entry-main h3 {
  margin: 0;
  padding: 0.2rem 2rem;
}
.entry-main p {
  margin: 0;
  padding: 0;
}

.speaking-list {
  padding-bottom: 2rem;
}

.speaking-list ul {
    padding: 1rem 1rem 0 0rem;
    margin: 0;
}

.speaking-list li {
  position: relative;
  padding-left: 0rem;
  padding-bottom: 1rem;
}

.speaking-list li span {
  font-size: 1.5rem;
  margin: 0 0 1.5rem 0;
}

/* .speaking-list li::before {
  content: "–";
  position: absolute;
  left: 0;
}
 */

.swiper-speaking {
  width: 150%;
  height: 100vh;
  left: -25%;
}

.swiper-slide-speaking {
  position: relative;
}

.swiper-inhalt-speaking {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  height:50%;
  padding: 2rem;
}

.speaking-headline {
  position: relative;
  overflow: hidden;
  border: 1.8px solid black;
  text-align: center;
  width: 500px;
  height: 400px;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  z-index: 1;
}

.speaking-subhead {
  position: relative;
  font-family: Univers, times, serif;
  font-size: 1rem;
  line-height: 1.3rem;

}

.bracket-wrap {
  display: flex;
  align-items: center;
  height: 70%;
  width: 100%;
  text-align: center;
}

.bracket {
  height: 75%;
  width: auto;
  text-align: center;
}


.bracket-text {
  width: 100%;
  align-items: center;
  padding: 0rem;
  text-align: center;
}

.speaking-category {
  font-family: Univers;
  font-size: 1rem;
  line-height: 1.3rem;
  margin-bottom: 0.8rem;
}




.blob {
  position: absolute;
  width: 200px;
  height: 400px;
  pointer-events: none;
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 80%);
  filter: blur(30px);
  opacity: 0.3;
  transition: opacity 1.5s ease;
  z-index: 0;
  mix-blend-mode:exclusion;
}

.blob.visible {
  opacity: 0.6;
}







/* Research Section */

.research-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 200;
} 


.research-wrap a {
  color: inherit;
  -webkit-filter: blur(1px);
  filter: blur(1px);
  transition: all 0.4s ease;
  opacity: 0.7;
}

.research-wrap a:hover {
  color: inherit;
  -webkit-filter: blur(0px);
  filter: blur(0px);
  opacity: 1;
}
  
  .swiper-research {
    width: 200%;
    height: 100vh;
    left: -50%;
    transition: left 1s ease-in-out;
  }
  
  .swiper-slide-research {
    position: absolute;
    border-right: 1px solid black;
  }
  
  .swiper-inhalt-research {
    position: relative;
    height:100%;
    overflow: scroll;
    margin-top: 60px;
    padding: 10% 20%	20% 20%;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .swiper-inhalt-research::-webkit-scrollbar {
    display: none;
    }
  
  .research-headline {
    text-align: center;
    width: 100%;
    height: auto;
    padding: 2rem;
    
    font-size: 2.3rem;
  }

    .research-headline p{
    margin: 0;
  }

  .research-text{
    width: 100%;
  }

  .research-text figure {
   display: block;
  margin: 0;
  max-width: 100%;
  text-align: center;
  }


  .research-text figure img{
  max-height: 55vh;
  max-width: 100%;
  height: auto;
  width: auto;
  display: inline-block;
  }

/* Imprint Section*/

.imprint-logo {
  position: fixed;
  top: 50vh;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 5%;
  z-index: 1;
}

.disclaimer {
  position: fixed;  
  top: -200px;
  right: 20px;
  width: calc(var(--real-vh, 1vh) * 100);
  height: 200px;
  transform: rotate(-90deg);
  transform-origin: bottom right;
  text-align: center;
  font-family: Univers, times;
  font-size: 1rem;
  line-height: 1.3rem;
  display: flex;
  justify-content: center;  
  align-items: flex-end;   
  z-index: 200; 
  cursor: pointer;
}

.disclaimer p {
  transition: all 0.3s ease;
}

.disclaimer p:hover {
  -webkit-filter: blur(2px);
  filter: blur(2px);
}


.imprint-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--real-vh, 1vh) * 100);
  overflow: scroll;
  -ms-overflow-style: none; 
  scrollbar-width: none; 
}

.imprint-wrap::-webkit-scrollbar {
  display: none;
}


.imprint-text {
  position: absolute;
  text-align: center;
  margin: 20%;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 400;
}

.imprint-text.opac {
  opacity: 1;
}



/* Media Querys */


@media screen and (max-width: 780px) {
    .swiper-speaking {
      width: 100%;
      height: calc(var(--real-vh, 1vh) * 100);
      left: 0%;
    }
}


@media only screen and (max-width: 520px) {


  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    padding: 0;
    display: flex;
    flex-direction: column; 
    gap: 3rem;
    align-items: center;
    justify-content: center;
    opacity: 0;
    backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); 
    pointer-events: auto;
    transition: all 0.4s ease;
    z-index: 200;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    font-family: univers, times, serif;
    font-size: 1rem;
    transform: translateX(120%);
  }

  .nav-menu.open-mobile {
    transform: translateX(0);
  }

  .nav-link {
    filter: blur(0px);
-webkit-filter: blur(0px);
    transition: all 0.4s ease;
    opacity: 1;
  }

  .nav-link.active {
    filter: blur(2px);
-webkit-filter: blur(2px);
    transition: all 0.4s ease;
    opacity: 0.4;
  }

  .burger-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 400;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4.5px);
  }
  
  .burger.open span:nth-child(2) {
    opacity: 0;
  }
  
  .burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -4px);
  }


  .about-wrap {
    padding: 40px 20px 20px 20px;
  }

  .about-wrap a{
  color: inherit;
  -webkit-filter: blur(0px);
  filter: blur(0px);
  transition: all 0.4s ease;
  text-decoration: underline;
}

.about-wrap a:hover {
  color: inherit;
  -webkit-filter: blur(0px);
  filter: blur(0px);
}

  .about-upcoming {
  position: relative;
  top: 0%;
  left: 0px;
  width: 100%;
  padding-right: 2rem;
  padding-top: 0;
  font-weight: normal;
  font-size: inherit;
  overflow: scroll;
  height: auto;
    -ms-overflow-style: none;
  scrollbar-width: none;
}

  .about-bracket-wrap {
    position: relative;
    height: auto;
    width: 100%;
    padding-left: 5%;
  }
  
  .about-extra {
    text-align: center;
    display: flex;
    align-items: center;
    padding: 0 15% 0 10%;
  }
  
  .about-bracket {
    position: absolute;
    height: 80%;
    width: auto;
  }
  
  .about-bracket-left {
    left: 0%;
  }
  
  .about-bracket-right {
    right: 0;
  }
  
  .writing-wrap {
    padding: 40px 40px 20px 20px;
  }

  .entry-tooltip {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100vw - 80px);
  height: calc(var(--real-vh, 1vh) * 100 - 80px);
  margin: 0;
  background-color: rgba(255, 255, 255, 0.5);  
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.2px solid black;
  color: black;
  padding: 20px;
  z-index: 999;
  opacity: 0;
  transition: all 0.8s ease;
  pointer-events: none;
  overflow-y: auto;
  text-align: left;
}

.speaking-list-wrap {
  padding: 40px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100vw - 0px);
  height: calc(var(--real-vh, 1vh) * 100 - 0px);
  margin: 0;
  background-color: rgba(255, 255, 255, 0.5);  
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
  overflow: scroll;
}

.speaking-list-wrap.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


.entry-tooltip a{
  color: inherit;
  -webkit-filter: blur(0px);
  filter: blur(0px);
  text-decoration: underline;
}

  .swiper-slide img,
.swiper-slide video {
    height: 30vh;
    max-width: calc(100vw - 40px);
}

.slide-media:hover {
  transform: none;
  -webkit-filter: blur(0px);
  filter: blur(0px);
}

  .classes-wrap {
    position: absolute;
    margin: 100px 20px 20px 20px;
  }

  .classes-wrap a {
  -webkit-filter: blur(0px);
  filter: blur(0px);
text-decoration: underline;}


  .classes-nav {
    position: fixed;
    top: 22px;
    left: 20px;
    z-index: 2200000;
    padding-top: 0%;
  }
  
  .nav-back {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 18px;
    height: 14px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 301000;
  }

  .nav-next {
    position: fixed;
    padding-top: 50px;
    right: 20px;
    z-index: 301;
    }
    
    .nav-prev {
      position: fixed;
      padding-top: 50px;
      left: 20px;
      z-index: 301;
    }

    .swiper-speaking {
      width: 100%;
      height: calc(var(--real-vh, 1vh) * 100);
      left: 0%;
    }

    .speaking-headline {
      border: 1px solid black;
      text-align: center;
      width: 100%;
      height: 80%;
      padding: 2rem;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: 'TimesNow', serif;
    }

    .swiper-inhalt-speaking {
      position: relative;
      top: 50%;
      transform: translateY(-60%);
      height:50%;
      padding: 2rem;
    }

    .speaking-headline p {
      margin: 20px;
      font-size: 1.5rem;
}

    .blob {
      display: none;
}

    .swiper-button-prev {
      left: 20px;
    }
    .swiper-button-next {
      right: 20px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        position: fixed;
        color: black;
        font-size: 2rem;
        z-index: 30001;
        top: calc(var(--real-vh, 1vh) * 100 - 50px);
        height: auto;
        width: 22px;  
        cursor: pointer;
        margin: 0;
        padding: 0 ;
        transition: all	0.3s ease;
      }

      .swiper-button-prev.research-prev {
        left: calc(50% - 44px);
        top: 40px;
      }
      .swiper-button-next.research-next{
        right: calc(50% - 45px);
        top: 40px;
      }

      .swiper-research {
        width: 100%;
        height: 100vh;
        left: 0%;
        transition: left 1s ease-in-out;
      }

      .swiper-inhalt-research {
        position: relative;
        height: 100%;
        overflow: scroll;
        margin-top: 0;
        padding: 100px 20px 20px 20px;
        -ms-overflow-style: none;
        scrollbar-width: none;
      }

      .research-wrap a {
  color: inherit;
  -webkit-filter: blur(0px);
  filter: blur(0px);
  transition: all 0.4s ease;
  text-decoration: underline;
}

.research-wrap a:hover {
  color: inherit;
  -webkit-filter: blur(0px);
  filter: blur(0px);
}

      .imprint-logo {
        position: fixed;
        top: 50vh;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 20%;
      }

    
      body.teaching .nav-menu::before,
      body.research .nav-menu::before {
        background-color: rgba(255, 255, 255, 1);
        backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px); 
        filter: blur(0px);
-webkit-filter: blur(0px);  
      }
      
      body.teaching .nav-menu,
      body.research .nav-menu {
        background-color: rgba(255, 255, 255, 1);
        backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px); 
        filter: blur(0px);
-webkit-filter: blur(0px);  
      }

      .nav-menu {
        background-color: rgba(255, 255, 255, 1);
      }

      .disclaimer {
        font-size: 0.8rem;
        right: 0px;
      }

      .imprint-text {
    margin: 40px 40px 20px 20px;
      }

      .about-text-contact p {
  width: 100%; 
  margin-bottom: 0rem;
  text-align: left;
}

    
} 



/* Tryout Area*/
