/*/* CSS */
/* PAGE: Material Exchange */
/* AUTHOR: hyperstud.io */
@font-face {
  font-family: "Modern Gothic";
  src: url(/fonts/ModernGothic-Light.woff2?a74a0ef14d28ce95396b00c8479d87f8) format("woff2"), url(/fonts/ModernGothic-Light.otf?9722206854b5f145b7fed4ec816b5241) format("otf");
  font-weight: 500;
  font-style: normal;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: "Modern Gothic", Helvetica, Arial, Sans-serif;
  color: #111;
  font-size: 15px;
  font-weight: 500;
  width: 100%;
  height: 100%;
  background: #fff;
  position: relative;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

/* Table */
.table {
  display: table;
  width: 100%;
  height: 100%;
}

.table-row {
  display: table-row;
}

.table-cell {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center;
}

.onehalf, .onethird, .twothird,
.onefourth {
  display: inline-block;
  vertical-align: top;
  position: relative;
}

.onehalf {
  width: 50%;
}

.onethird {
  width: 33.33%;
}

.onefourth {
  width: 25%;
}

.onehalf.static.first {
  width: 35%;
}

.onehalf.static.second {
  width: 65%;
}

/* border-box */
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

/* Header */
header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 4.2vw;
  padding: 1vw 0 0 0;
  z-index: 100;
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: -webkit-transform 400ms;
  transition: -webkit-transform 400ms;
  -o-transition: transform 400ms;
  transition: transform 400ms;
  transition: transform 400ms, -webkit-transform 400ms;
}

header.out {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

header .logo,
header .logo:visited,
header .logo:focus {
  display: inline-block;
  vertical-align: top;
  background: #FFED00;
  padding: 0.53vw 0.7vw 0.52vw 0.7vw;
  border-radius: 0.4vw;
  border: 0.1vw solid #FFED00;
  font-size: 1.3vw;
}

header .logo-ar {
  position: relative;
  display: inline-block;
  vertical-align: top;
  top: 0.2vw;
  width: 0.55vw;
  height: 0.9vw;
  background-size: auto 100%;
  background-repeat: no-repeat;
}

header .logo-ar.left {
  background-image: url(/images/arrow-right.svg?e4646a461015a6382654adc5fe250103);
  margin-left: 0.1vw;
}

header .logo-ar.right {
  background-image: url(/images/arrow-left.svg?2d8608be349fbccfca958a4f3cf8268c);
  margin-left: -0.15vw;
}

header nav {
  display: inline-block;
  vertical-align: top;
  /*position: relative;*/
}

header nav a,
header nav a:visited,
header nav a:focus {
  display: inline-block;
  vertical-align: top;
  background: #fff;
  padding: 0.4vw 0.5vw 0.4vw 0.5vw;
  margin-left: 0.25vw;
  border-radius: 0.4vw;
  border: 0.1vw solid #000;
}

header nav a:hover,
header nav a.selected {
  background: #000;
  color: #fff;
}

header .btn-archive {
  position: absolute;
  top: 0px;
  right: 0.75vw;
}

/*
header .languages{
    position: absolute;
    top: 0px;
    right: 1vw;
}*/
/* Template */
#wrapper {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.wrapper {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0 1vw;
}

.wrapper.small {
  max-width: 1440px;
}

main {
  padding-top: 0px;
  min-height: 100%;
  opacity: 1;
  -webkit-transition: opacity 400ms ease-in-out;
  -o-transition: opacity 400ms ease-in-out;
  transition: opacity 400ms ease-in-out;
}

body:not(#home) main {
  padding-top: 4.5vw;
}

main.fadeout {
  opacity: 0;
}

/* Pages */
.page {
  display: block;
  padding-top: 70px;
}

/* Modules */
.module {
  position: relative;
  display: block;
  margin-top: 10vw;
}

.module:first-child {
  margin-top: 0px !important;
}

.module[data-margin="0"] {
  margin-top: 0px;
}

.module[data-margin="1"] {
  margin-top: 5vw;
}

.module[data-margin="3"] {
  margin-top: 20vw;
}

/* Module 1 > Title */
.module.style-1 .image {
  display: block;
}

/* Module 2 > Text */
.module.style-2 .read-more {
  display: inline-block;
  vertical-align: top;
  margin-top: 1vw;
  cursor: pointer;
}

.module.style-2 .onehalf.second .subtitle {
  display: block;
  margin-bottom: 1vw;
}

.module.style-2 .onehalf.second .wysiwyg {
  width: 80%;
}

.module.style-2 .onehalf.second .wysiwyg.dropdown {
  display: none;
}

.module.style-2 .onehalf.second .wysiwyg.dropdown:before {
  content: "";
  display: block;
  width: auto;
  height: 1vw;
}

/* Module 3 > Image */
.module.style-3 .image img {
  width: 100%;
  height: auto;
}

/* Module 4 > Images */
/* Module 5 > Feature */
.module.style-5 {
  margin-top: 5vw;
}

.module.style-5 .onehalf.first {
  width: 35%;
}

.module.style-5 .onehalf.second {
  width: 65%;
}

.module.style-5 .onehalf.second .inner {
  width: 60%;
}

.module.style-5 .onehalf.second .logo-title {
  position: relative;
  margin-bottom: 1vw;
}

.module.style-5 .onehalf.second .logo-title img.icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 3vw;
  height: 3vw;
  -o-object-fit: contain;
     object-fit: contain;
  top: 0vw;
}

.module.style-5 .onehalf.second .logo-title h3 {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5vw;
  white-space: nowrap;
}

/* Module 6 > Lectures */
.module.style-6 {
  display: block;
  overflow: hidden;
}

.module.style-6 .lectures {
  margin-top: 2vw;
}

/* Module 7 > Timetable */
/* Module 8 > Tickets */
.module.style-8 .tickets {
  display: block;
  width: 80%;
}

.module.style-8 .tickets .ticket {
  position: relative;
  display: block;
  padding: 1vw 1vw 1vw 1vw;
  border-radius: 0.4vw;
  border: 0.1vw solid #000;
  margin-bottom: 1vw;
  min-height: 6vw;
  cursor: default;
}

.module.style-8 .tickets a.ticket {
  cursor: pointer;
}

.module.style-8 .tickets .ticket .subtitle {
  display: block;
  width: 70%;
  margin-top: 0.7vw;
}

.module.style-8 .tickets .ticket .price {
  position: absolute;
  top: 1vw;
  right: 1vw;
}

/* Module 9 > Newsletter */
.module.style-9 #mc_embed_signup {
  display: block;
  width: 80%;
}

.module.style-9 .btn-mailchimp {
  margin-top: 0px;
  margin-left: 2vw;
}

.module.style-9 .btn-mailchimp a {
  text-decoration: underline;
}

.module.style-9 .input {
  display: block;
}

.module.style-9 input[type=email],
.module.style-9 input[type=text] {
  width: 100%;
  border: 0.1vw solid #000;
  border-radius: 0.4vw;
  background: #fff;
  padding: 0.6vw 1.2vw;
  font-family: "Modern Gothic", Helvetica, Arial, Sans-serif;
  font-size: 1.3vw;
  font-weight: 500;
  margin-bottom: 1vw;
}

.module.style-9 input[type=submit] {
  display: inline-block;
  vertical-align: top;
  width: 8vw;
  border: none;
  border-radius: 0.4vw;
  background: #000;
  padding: 0.4vw 1vw;
  color: #fff;
  font-family: "Modern Gothic", Helvetica, Arial, Sans-serif;
  font-size: 1.3vw;
  margin-top: 0px;
  cursor: pointer;
}

.module.style-9 .content__gdprBlock {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 8vw);
  padding-top: 0.5vw;
}

.module.style-9 .content__gdprLegal {
  display: block;
  margin-top: 0.3vw;
}

.module.style-9 #mce-responses {
  display: block;
  margin-top: 1vw;
}

.module.style-9 #mce-success-response {
  padding: 0px;
}

.module.style-9 .content__gdprBlock label.p2 {
  display: block;
}

.module.style-9 .content__gdprBlock .mc_fieldset {
  display: block;
  position: relative;
}

.module.style-9 .content__gdprBlock .mc_fieldset a {
  display: inline;
}

.module.style-9 div.mce_inline_error {
  background: #fff !important;
  color: #000 !important;
  font-size: 1.3vw;
  font-weight: 500;
  padding: 0.7vw 1.2vw 0.7vw 1.2vw !important;
  margin: 0 0 1vw 0 !important;
}

.module.style-9 .onethird div.mce_inline_error {
  border-radius: 0px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.module.style-9 .onethird div.mce_inline_error:before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0px;
  width: 100%;
  height: 7px;
  background: #fff;
}

.module.style-9 .read-more {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
}

.module.style-9 .content .read-more {
  margin-top: 20px;
  margin-bottom: 10px;
}

.module.style-9 input[type=checkbox] {
  position: absolute;
  left: 0;
  opacity: 0;
}

.module.style-9 input[type=checkbox] + label {
  display: block;
  margin-left: 2vw;
  margin-bottom: 1vw;
  cursor: pointer;
}

.module.style-9 input[type=checkbox] + label:before {
  content: "";
  position: absolute;
  top: 0.05vw;
  left: 0px;
  width: 1.2vw;
  height: 1.2vw;
  border-radius: 100%;
  border: 0.1vw solid #000;
  background-color: transparent;
}

.module.style-9 input[type=checkbox]:checked + label:before {
  background-color: #fff;
  background-image: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9JzMwMHB4JyB3aWR0aD0nMzAwcHgnICBmaWxsPSIjMGYyNzZkIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOmNjPSJodHRwOi8vY3JlYXRpdmVjb21tb25zLm9yZy9ucyMiIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIgeG1sbnM6c3ZnPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczpzb2RpcG9kaT0iaHR0cDovL3NvZGlwb2RpLnNvdXJjZWZvcmdlLm5ldC9EVEQvc29kaXBvZGktMC5kdGQiIHhtbG5zOmlua3NjYXBlPSJodHRwOi8vd3d3Lmlua3NjYXBlLm9yZy9uYW1lc3BhY2VzL2lua3NjYXBlIiB2ZXJzaW9uPSIxLjEiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCwtOTUyLjM2MjE4KSI+PHBhdGggc3R5bGU9InRleHQtaW5kZW50OjA7dGV4dC10cmFuc2Zvcm06bm9uZTtkaXJlY3Rpb246bHRyO2Jsb2NrLXByb2dyZXNzaW9uOnRiO2Jhc2VsaW5lLXNoaWZ0OmJhc2VsaW5lO2NvbG9yOiMwMDAwMDA7ZW5hYmxlLWJhY2tncm91bmQ6YWNjdW11bGF0ZTsiIGQ9Im0gNzAuOTIwMTY2LDk4MS4zNDEwMyBhIDYuMDAwNiw2LjAwMDYgMCAwIDAgLTQuMTI1LDEuODEyNSBjIC05LjM2MTY4LDkuMzgyIC0xNi41NzksMTcuMjQ4NjcgLTI1LjE1NjI1LDI2LjAzMTI3IGwgLTguNzE4NzUsLTcuMzc1IGEgNi4wMDA2LDYuMDAwNiAwIDEgMCAtNy43NSw5LjE1NjIgbCAxMywxMSBhIDYuMDAwNiw2LjAwMDYgMCAwIDAgOC4xMjUsLTAuMzQzNyBjIDEwLjc5MDYsLTEwLjgxMzggMTguNDU3MjgsLTE5LjQzNDUgMjksLTI5Ljk5OTk3IGEgNi4wMDA2LDYuMDAwNiAwIDAgMCAtNC4zNzUsLTEwLjI4MTMgeiIgZmlsbD0iIzBmMjc2ZCIgZmlsbC1vcGFjaXR5PSIxIiBtYXJrZXI9Im5vbmUiIHZpc2liaWxpdHk9InZpc2libGUiIGRpc3BsYXk9ImlubGluZSIgb3ZlcmZsb3c9InZpc2libGUiPjwvcGF0aD48L2c+PC9zdmc+);
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
}

.module.style-9 .content__gdprBlock .mc_fieldset {
  margin-bottom: 0px;
}

.module.style-9 #mce-success-response {
  display: block;
  background: #fff;
  padding: 0vw;
}

.module.style-9 .mc_fieldset div.mce_inline_error {
  margin-top: 10px;
}

/* Module 10 > Map */
/* Module 11 > Header */
.module.style-11 {
  height: 58vw;
  cursor: pointer;
}

.module.style-11 .background {
  position: absolute;
  width: 100%;
  height: 100%;
}

.module.style-11 .background img {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.module.style-11 .overlay {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 2;
}

.module.style-11 .overlay .wrapper {
  padding-top: 4.5vw;
}

.module.style-11 .overlay .wrapper .highlight {
  display: block;
  width: 30%;
}

.module.style-11 .overlay .logo {
  display: block;
  font-size: 5vw;
  padding: 1vw 2vw;
  line-height: 0.9em;
  text-align: center;
  background: #FFED00;
  border-radius: 1vw;
}

.module.style-11 .overlay .title {
  position: relative;
  position: block;
  font-size: 5vw;
  background: #000;
  color: #fff;
  border-radius: 1vw;
  margin-top: 1vw;
  padding: 1vw 2vw;
  text-align: center;
}

.module.style-11 .overlay .title:before,
.module.style-11 .overlay .title:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  width: 5vw;
  height: 5vw;
  margin: auto 0;
  background: #fff;
  -webkit-mask-size: auto 70%;
          mask-size: auto 70%;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.module.style-11 .overlay .title:before {
  left: 0px;
  -webkit-mask-image: url(/images/arrow-right.svg?e4646a461015a6382654adc5fe250103);
          mask-image: url(/images/arrow-right.svg?e4646a461015a6382654adc5fe250103);
}

.module.style-11 .overlay .title:after {
  right: 0px;
  -webkit-mask-image: url(/images/arrow-left.svg?2d8608be349fbccfca958a4f3cf8268c);
          mask-image: url(/images/arrow-left.svg?2d8608be349fbccfca958a4f3cf8268c);
}

.module.style-11 .overlay .text {
  display: block;
  background: #000;
  color: #fff;
  border-radius: 1vw;
  margin-top: 1vw;
  padding: 1vw 2vw;
  text-align: center;
}

.module.style-11 .logo .logo-ar {
  position: relative;
  display: inline-block;
  vertical-align: top;
  top: 0.5vw;
  width: 2vw;
  height: 3.5vw;
  background-size: auto 100%;
  background-repeat: no-repeat;
}

.module.style-11 .logo .logo-ar.left {
  background-image: url(/images/arrow-right.svg?e4646a461015a6382654adc5fe250103);
}

.module.style-11 .logo .logo-ar.right {
  background-image: url(/images/arrow-left.svg?2d8608be349fbccfca958a4f3cf8268c);
  left: -0.4vw;
  margin-left: 0vw;
}

.module.style-11 .tum {
  position: absolute;
  right: 1vw;
  bottom: 1vw;
  z-index: 3;
}

/* Module 12 > Section */
.module.style-12 {
  display: block;
  height: 0px;
  margin-top: 0px !important;
}

/*
.module.style-12 .wrapper{
    position: relative;
    height:3vw;
}

.module.style-12 .wrapper:before,
.module.style-12 .wrapper:after{
    content:"";
    position: absolute;
    top:0px;
    width:2vw;
    height:3vw;
    background-size:contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.module.style-12 .wrapper:before{
    left:$gap;
    background-image:url(../img/arrow-right.svg);
}

.module.style-12 .wrapper:after{
    right:$gap;
    background-image:url(../img/arrow-left.svg);
}

.module.style-12 .wrapper .title{
    padding:0 $gap * 3;
    text-align: center;
}*/
/* Lecture */
/*
body#lecture section{
    overflow-x: hidden;
}*/
body#lecture section#slideshow {
  overflow: hidden;
}

body#lecture section#slideshow .slideshow .image {
  position: relative;
  width: auto;
  height: 100%;
  margin-right: 1vw;
  overflow: hidden;
  border-radius: 0.4vw;
  cursor: pointer;
}

body#lecture section#slideshow .slideshow .image img {
  width: auto;
  height: 100%;
}

.copyright {
  position: absolute;
  right: 1vw;
  bottom: 1vw;
  color: #fff;
  opacity: 0.7;
  width: auto;
  height: auto;
}

.copyright.visible {
  opacity: 1;
}

.copyright .owner {
  /*
  position: absolute;
  top:0px;
  right:0px;
  pointer-events:none;*/
  display: none;
}

.copyright.visible .symbol {
  display: none;
}

.copyright.visible .owner {
  display: block;
}

body#lecture section#slideshow .overlay {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  padding: 1vw 1vw 1vw 2vw;
  pointer-events: none;
}

body#lecture section#slideshow + section#details {
  margin-top: 5vw;
}

body#lecture section#details .onehalf.second .content-wrapper {
  display: block;
  width: 80%;
}

body#lecture section#details .onehalf.second .name {
  display: block;
}

body#lecture section#details .onehalf.second .title {
  display: block;
  margin-top: 2vw;
}

body#lecture section#details .onehalf.second .wysiwyg {
  margin-top: 5vw;
}

body#lecture section#timetable {
  margin-top: 5vw;
}

body#lecture section#recommended {
  margin-top: 5vw;
  overflow: hidden;
}

body#lecture section#recommended .slideshow {
  margin-top: 2vw;
}

section#back {
  display: block;
  margin-top: 5vw;
}

section#back .wrapper {
  text-align: center;
}

/* timetable */
.events {
  display: block;
  width: 80%;
}

.event {
  padding: 1vw 1vw 1vw 1vw;
  border-radius: 0.4vw;
  border: 0.1vw solid #000;
  margin-bottom: 1vw;
  cursor: pointer;
}

section#timetable .events .event {
  cursor: default;
}

.event.last {
  margin-bottom: 0px;
}

.event:not(.selected) .dropdown {
  display: none;
}

.event .dropdown:before {
  content: "";
  display: block;
  height: 1vw;
}

.event .topic {
  display: block;
  text-transform: uppercase;
  margin-top: 2vw;
  margin-bottom: 1vw;
}

.event .event-lecture {
  position: relative;
  display: block;
  padding: 0;
  margin-bottom: 1vw;
}

.event .event-lecture.last {
  margin-bottom: 0px !important;
}

/*
.event .event-lecture.hidetime{
    margin-top:1.5vw;
}*/
.event a.event-lecture:after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 1vw;
  height: 1.5vw;
  margin: auto 0;
  background-image: url(/images/arrow-right-mobile.svg?50e89597c50133b1023cc5feb0a39bad);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transform: translateX(0vw);
      -ms-transform: translateX(0vw);
          transform: translateX(0vw);
  -webkit-transition: -webkit-transform 400ms ease-in-out;
  transition: -webkit-transform 400ms ease-in-out;
  -o-transition: transform 400ms ease-in-out;
  transition: transform 400ms ease-in-out;
  transition: transform 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
}

.event .event-lecture .onehalf.first {
  width: 8vw;
}

.event .event-lecture .onehalf.second {
  width: calc(100% - 8vw);
}

.event .event-lecture .onehalf.second .event-name,
.event .event-lecture .onehalf.second .event-title {
  padding-right: 2vw;
}

/*
.event .event-lecture .onehalf.second .event-title{
    overflow: hidden;
    text-overflow:ellipsis;
    height:2vw;
    white-space: nowrap;
}*/
/* Slideshow Full */
.slideshow {
  position: relative;
  width: 100%;
  height: auto;
  /*overflow: hidden;*/
  font-size: 0px;
  margin-bottom: 3vw;
}

.slideshow .flickity-viewport {
  overflow: visible;
}

.slideshow .slide {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  font-size: 0px;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.slideshow.slideshow-lectures .lecture {
  width: 32vw;
  margin-right: 1vw;
}

.lectures:not(.slideshow) {
  display: block;
  margin-left: -1vw;
}

.lectures:not(.slideshow) .lecture {
  /*width:calc( (100% - $gap * 3) / 4);*/
  width: 25%;
  margin-bottom: 1vw;
}

.lectures:not(.slideshow) .lecture .inner {
  position: relative;
  display: block;
  margin-left: 1vw;
}

.lecture .background {
  position: relative;
  display: block;
  padding-top: 156%;
  background: #ccc;
  border-radius: 0.8vw;
  overflow: hidden;
}

.lecture .background img {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lecture .overlay {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  padding: 0.5vw;
  pointer-events: none;
}

.flickity-page-dots {
  display: block !important;
}

.flickity-page-dots .dot:hover:before {
  background: #000;
  color: #fff;
}

.slideshow.lessthanthree .flickity-page-dots,
.slideshow.lessthanthree .flickity-prev-next-button {
  display: none !important;
}

.tag {
  display: inline-block;
  vertical-align: top;
  background: rgb(255, 255, 255);
  padding: 0.5vw 0.5vw 0.5vw 0.5vw;
  border-radius: 0.4vw;
  margin-bottom: 0.5vw;
}

.tag.blurry {
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.arrowbefore {
  display: inline-block;
  vertical-align: top;
  position: relative;
}

.arrowbefore:before {
  content: "";
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 1vw;
  height: 1.8vw;
  left: 0px;
  top: 0.4vw;
  background: url(/images/arrow-right.svg?e4646a461015a6382654adc5fe250103);
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 0.5vw;
}

.btn {
  display: inline-block;
  vertical-align: top;
  background: #fff;
  padding: 0.4vw 0.5vw 0.4vw 0.5vw;
  border-radius: 0.4vw;
  border: 0.1vw solid #000;
}

.btn.black {
  background: #000;
  color: #fff;
  font-size: 1.3vw;
  text-decoration: none;
}

.btn:hover {
  background: #000;
  color: #fff;
}

.btn.ics {
  margin-top: 1vw;
  padding-right: 0.7vw;
}

.btn.ics:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 2.2vw;
  height: 1vw;
  margin-left: 0.7vw;
  background: #000;
  -webkit-mask-image: url(/images/download.svg?d53543c387bb1a37924d35e3e6d5beea);
          mask-image: url(/images/download.svg?d53543c387bb1a37924d35e3e6d5beea);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.btn.ics:hover:after {
  background: #fff;
}

img.blurry {
  -webkit-filter: scale(1.1) blur(10px);
          filter: scale(1.1) blur(10px);
}

@-webkit-keyframes blurOut {
  0% {
    -webkit-filter: scale(1.1) blur(10px);
            filter: scale(1.1) blur(10px);
  }
  100% {
    -webkit-filter: scale(1.1) blur(0px);
            filter: scale(1.1) blur(0px);
  }
}

@keyframes blurOut {
  0% {
    -webkit-filter: scale(1.1) blur(10px);
            filter: scale(1.1) blur(10px);
  }
  100% {
    -webkit-filter: scale(1.1) blur(0px);
            filter: scale(1.1) blur(0px);
  }
}
img.blurry.loaded {
  -webkit-animation: blurOut 400ms forwards;
          animation: blurOut 400ms forwards;
}

/* General */
* {
  outline: none;
}

/* WYSIWYG */
.wysiwyg .block {
  display: block;
  margin-left: 85px;
  margin-bottom: 40px;
}

.wysiwyg .wysiwyg-column {
  display: inline-block;
  vertical-align: top;
  width: 49%;
  padding-right: 40px;
}

.wysiwyg ul {
  margin: 0;
  padding: 0;
}

.wysiwyg ul li {
  position: relative;
}

.wysiwyg ul li:before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0px;
  width: 12px;
  height: 2px;
  background: #111;
  -webkit-transform: rotate(-10deg);
  -ms-transform: rotate(-10deg);
      transform: rotate(-10deg);
}

.wysiwyg a,
.wysiwyg a:visited,
.module.style-9 input[type=checkbox] + label a {
  text-decoration: underline;
}

.wysiwyg.p3 a,
.wysiwyg.p3 a:visited,
.module.style-9 input[type=checkbox] + label a {
  text-underline-offset: 0.2vw;
}

/* Footer */
footer {
  margin-top: 10vw;
  background: #EDEDED;
  padding: 1vw 0 1vw 0;
}

footer .row {
  display: block;
}

footer .onehalf.first a {
  margin-right: 20px;
}

footer .onehalf.second nav a {
  display: inline-block;
  vertical-align: top;
}

footer .row.second {
  margin-top: 3vw;
}

footer .row.second .onehalf.first {
  padding-top: 2.7vw;
}

footer .row.second span,
footer .row.second a {
  margin-right: 1vw;
}

footer .row.second .partners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .row.second .partners .partner {
  width: 16%;
  margin-top: 1vw;
}

footer .row.second .partners .partner img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

footer .tum {
  position: absolute;
  left: 0px;
  top: -3.3vw;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

.tum img {
  width: 5vw;
  height: auto;
}

/* Video Background */
.video-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.video-background video {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  margin: auto;
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Youtube */
.video {
  position: relative;
}

.responsive-video {
  position: relative;
  padding-bottom: 56.25%; /* Default for 1600x900 videos 16:9 ratio*/
  padding-top: 0px;
  height: 0;
  overflow: hidden;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.responsive-video video,
.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.responsive-video.on-demand {
  background-color: #ccc;
  cursor: pointer;
}

.responsive-video.on-demand:after {
  content: " ";
}

.responsive-video.on-demand .overlay {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

.responsive-video.on-demand .guideline {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding: 20px;
  margin: 0 auto;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
}

.responsive-video.on-demand .guideline a,
.responsive-video.on-demand .guideline a:visited {
  color: #fff;
  text-decoration: underline;
}

/* General */
.hidden {
  display: none !important;
}

.overflowhidden {
  overflow: hidden !important;
}

/* Fonts */
.zfs {
  font-size: 0px;
}

.h1, .h2 {
  font-family: "Modern Gothic", Helvetica, Arial, Sans-serif;
  font-weight: 500;
}

.h1 {
  font-size: 2.5vw;
}

.h2 {
  font-size: 2vw;
}

.wysiwyg h2 {
  font-family: "Modern Gothic", Helvetica, Arial, Sans-serif;
  font-weight: 500;
  font-size: 2em;
  line-height: 1em;
  margin-top: 5vw;
  margin-bottom: 1.7vw;
}

.wysiwyg > h2:first-child {
  margin-top: 0px;
}

.p1, .p2, .p3, .p4 {
  font-family: "Modern Gothic", Helvetica, Arial, Sans-serif;
  font-weight: 500;
  line-height: 1.2em;
}

.p1 {
  font-size: 2.5vw;
}

.p2 {
  font-size: 1.7vw;
  font-weight: 500;
}

.p3 {
  font-size: 1.3vw;
  font-weight: 500;
}

.p4 {
  font-size: 1vw;
  font-weight: 500;
}

a, a:focus, a:visited, img {
  outline: none;
}

a {
  position: relative;
  display: inline-block;
}

a, a:visited {
  text-decoration: none;
  color: #111;
}

.italic, em {
  font-style: italic;
}

.bold, strong {
  font-weight: 700;
}

.light {
  font-weight: 400;
}

.uppercase {
  text-transform: uppercase;
}

.blue {
  color: blue;
}

#mobile, .no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
  outline-width: 0;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #888;
  opacity: 1;
}

input:-moz-placeholder, textarea:-moz-placeholder { /* Firefox 18- */
  color: #888;
  opacity: 1;
}

input::-moz-placeholder, textarea::-moz-placeholder { /* Firefox 19+ */
  color: #888;
  opacity: 1;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #888;
  opacity: 1;
}

.white, a.white, a.white:focus, a.white:visited {
  color: #fff;
}

.mobile-only {
  display: none;
}

/* > iPhone */
@media (min-width: 768px) {
  body#lecture section#slideshow .slideshow {
    height: 44.1vw;
  }
  body#lecture section#slideshow .slideshow .flickity-viewport {
    height: 100% !important;
  }
  header #selektor {
    display: none;
  }
  .flickity-prev-next-button {
    display: inline-block !important;
  }
  /* Animations */
  .module.style-11 .background,
  .module.style-11 .tum {
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in-out;
    -o-transition: opacity 400ms ease-in-out;
    transition: opacity 400ms ease-in-out;
  }
  .module.style-11.intro .background,
  .module.style-11.intro .tum {
    opacity: 1;
  }
  .module.style-11 .overlay .logo,
  .module.style-11 .overlay .title,
  .module.style-11 .overlay .text {
    -webkit-transform: translateY(2vw);
        -ms-transform: translateY(2vw);
            transform: translateY(2vw);
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
    transition: opacity 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
    -o-transition: transform 400ms ease-in-out, opacity 400ms ease-in-out;
    transition: transform 400ms ease-in-out, opacity 400ms ease-in-out;
    transition: transform 400ms ease-in-out, opacity 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
  }
  .module.style-11 .overlay .logo {
    -webkit-transition-delay: 400ms;
         -o-transition-delay: 400ms;
            transition-delay: 400ms;
  }
  .module.style-11 .overlay .title {
    -webkit-transition-delay: 800ms;
         -o-transition-delay: 800ms;
            transition-delay: 800ms;
  }
  .module.style-11 .overlay .text {
    -webkit-transition-delay: 1200ms;
         -o-transition-delay: 1200ms;
            transition-delay: 1200ms;
  }
  .module.style-11.intro .overlay .logo,
  .module.style-11.intro .overlay .title,
  .module.style-11.intro .overlay .text {
    -webkit-transform: translateY(0vw);
        -ms-transform: translateY(0vw);
            transform: translateY(0vw);
    opacity: 1;
  }
  .module.style-11 .logo .logo-ar.right {
    margin-left: 1.2vw;
    /*
    animation: anilogo 800ms ease-in-out 2 alternate both;
    animation-delay:1600ms;*/
    -webkit-transition: margin-left 800ms ease-in-out;
    -o-transition: margin-left 800ms ease-in-out;
    transition: margin-left 800ms ease-in-out;
    -webkit-transition-delay: 800ms;
         -o-transition-delay: 800ms;
            transition-delay: 800ms;
  }
  .module.style-11.intro .logo .logo-ar.right {
    margin-left: 0vw;
  }
  .module.style-11.intro .overlay .title:before {
    -webkit-animation: anititleleft 800ms ease-in-out 2 alternate both;
            animation: anititleleft 800ms ease-in-out 2 alternate both;
    -webkit-animation-delay: 1400ms;
            animation-delay: 1400ms;
  }
  .module.style-11.intro .overlay .title:after {
    -webkit-animation: anititleright 800ms ease-in-out 2 alternate both;
            animation: anititleright 800ms ease-in-out 2 alternate both;
    -webkit-animation-delay: 1400ms;
            animation-delay: 1400ms;
  }
  /*
  @keyframes anilogo {
      0% {
          margin-left:0vw;
      }
      100% {
          margin-left:1.2vw;
      }
  }*/
  @-webkit-keyframes anititleleft {
    0% {
      left: 0vw;
    }
    100% {
      left: 0.6vw;
    }
  }
  @keyframes anititleleft {
    0% {
      left: 0vw;
    }
    100% {
      left: 0.6vw;
    }
  }
  @-webkit-keyframes anititleright {
    0% {
      right: 0vw;
    }
    100% {
      right: 0.6vw;
    }
  }
  @keyframes anititleright {
    0% {
      right: 0vw;
    }
    100% {
      right: 0.6vw;
    }
  }
  /* Animations Trans */
  .trans .arrowbefore {
    color: rgba(0, 0, 0, 0);
    -webkit-transition: color 400ms ease-in-out;
    -o-transition: color 400ms ease-in-out;
    transition: color 400ms ease-in-out;
    -webkit-transition-delay: 200ms;
         -o-transition-delay: 200ms;
            transition-delay: 200ms;
  }
  .trans.ani .arrowbefore {
    color: rgb(0, 0, 0);
  }
  .trans .arrowbefore:before {
    -webkit-transform: translateX(-0.5vw);
        -ms-transform: translateX(-0.5vw);
            transform: translateX(-0.5vw);
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
    transition: opacity 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
    -o-transition: transform 400ms ease-in-out, opacity 400ms ease-in-out;
    transition: transform 400ms ease-in-out, opacity 400ms ease-in-out;
    transition: transform 400ms ease-in-out, opacity 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
  }
  .trans.ani .arrowbefore:before {
    -webkit-transform: translateX(0vw);
        -ms-transform: translateX(0vw);
            transform: translateX(0vw);
    opacity: 1;
  }
  .module.style-2.trans .onehalf.second,
  .module.style-5.trans .onehalf.second,
  .module.style-6 .lectures .lecture.trans,
  .module.style-9.trans .onehalf.second,
  body#lecture section#details .trans .onehalf.second,
  .events.trans .event,
  .tickets.trans .ticket {
    -webkit-transform: translateY(1.1vw);
        -ms-transform: translateY(1.1vw);
            transform: translateY(1.1vw);
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
    transition: opacity 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
    -o-transition: transform 400ms ease-in-out, opacity 400ms ease-in-out;
    transition: transform 400ms ease-in-out, opacity 400ms ease-in-out;
    transition: transform 400ms ease-in-out, opacity 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
    -webkit-transition-delay: 400ms;
         -o-transition-delay: 400ms;
            transition-delay: 400ms;
  }
  .module.style-2.trans.ani .onehalf.second,
  .module.style-5.trans.ani .onehalf.second,
  .module.style-6 .lectures .lecture.trans.ani,
  .module.style-9.trans.ani .onehalf.second,
  body#lecture section#details .trans.ani .onehalf.second,
  .events.trans.ani .event,
  .tickets.trans.ani .ticket {
    -webkit-transform: translateY(0vw);
        -ms-transform: translateY(0vw);
            transform: translateY(0vw);
    opacity: 1;
  }
  /*
  .module.style-5.trans .onethird.first img{
      transform:scale(1.2);
      opacity: 0;

      transition: transform 400ms ease-in-out, opacity 400ms ease-in-out;
  }

  .module.style-5.trans.ani .onethird.first img{
      opacity: 1;
      transform:scale(1);
  }

  .module.style-5.trans .onethird.second .title{
      opacity: 0;

      transition: opacity 400ms ease-in-out;
      transition-delay:200ms;
  }

  .module.style-5.trans.ani .onethird.second .title{
      opacity: 1;
  }

  .module.style-5.trans .onethird.third .wysiwyg{
      transform:translateY(1.1vw);
      opacity: 0;

      transition: transform 400ms ease-in-out, opacity 400ms ease-in-out;
      transition-delay:400ms;
  }

  .module.style-5.trans.ani .onethird.third .wysiwyg{
      transform:translateY(0vw);
      opacity: 1;
  }*/
  .slideshow.trans .slide,
  .slideshow.trans .flickity-page-dots {
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in-out;
    -o-transition: opacity 400ms ease-in-out;
    transition: opacity 400ms ease-in-out;
  }
  .slideshow.trans.ani .slide,
  .slideshow.trans.ani .flickity-page-dots {
    opacity: 1;
  }
  body#lecture section#slideshow.trans .overlay {
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in-out;
    -o-transition: opacity 400ms ease-in-out;
    transition: opacity 400ms ease-in-out;
    -webkit-transition-delay: 200ms;
         -o-transition-delay: 200ms;
            transition-delay: 200ms;
  }
  body#lecture section#slideshow.trans.ani .overlay {
    opacity: 1;
  }
  .event a.event-lecture:hover:after {
    -webkit-transform: translateX(0.3vw);
        -ms-transform: translateX(0.3vw);
            transform: translateX(0.3vw);
  }
  .btn.trans {
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in-out;
    -o-transition: opacity 400ms ease-in-out;
    transition: opacity 400ms ease-in-out;
  }
  .btn.trans.ani {
    opacity: 1;
  }
  .lecture .background img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    -webkit-transition: -webkit-transform 400ms ease-in-out;
    transition: -webkit-transform 400ms ease-in-out;
    -o-transition: transform 400ms ease-in-out;
    transition: transform 400ms ease-in-out;
    transition: transform 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
  }
  .lecture .background img:hover {
    -webkit-transform: scale(1.03);
        -ms-transform: scale(1.03);
            transform: scale(1.03);
  }
}
/* iPhone */
@media (max-width: 768px) {
  .iphone-only {
    display: block;
  }
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: inline-block !important;
  }
  .wrapper {
    padding: 0 10px;
  }
  #blender {
    display: none;
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin: auto;
    background: #fff;
    opacity: 0.2;
    z-index: 1000;
    cursor: pointer;
  }
  header {
    top: auto;
    right: 10px;
    bottom: 20px;
    left: 10px;
    width: calc(100% - 40px);
    height: 50px;
    margin: 0 auto;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    z-index: 1001;
    -webkit-transition: width 400ms ease-in-out;
    -o-transition: width 400ms ease-in-out;
    transition: width 400ms ease-in-out;
  }
  header.nan {
    width: 57px;
  }
  header.nan #selektor {
    color: rgba(255, 255, 255, 0);
  }
  header.back {
    width: 155px !important;
  }
  header.back #selektor {
    padding-right: 10px;
    text-align: right;
  }
  header.back #selektor:before {
    left: 5px !important;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  header.back #selektor:after {
    display: none !important;
  }
  header.back #selektor {
    color: rgb(255, 255, 255) !important;
  }
  header .wrapper {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    padding: 5px 10px;
  }
  header .logo {
    display: none;
  }
  header nav {
    position: relative;
    display: block;
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in-out;
    -o-transition: opacity 400ms ease-in-out;
    transition: opacity 400ms ease-in-out;
  }
  header nav.visible {
    opacity: 1;
  }
  header nav a,
  header nav a:visited,
  header nav a:focus {
    display: block;
    width: auto;
    border: none;
    background: none;
    border-radius: 0px;
    padding: 0px 10px;
    font-size: 40px !important;
    line-height: 1em !important;
    margin-left: 0px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap !important;
  }
  header nav a.invisible {
    opacity: 0;
  }
  header .btn-archive {
    position: relative;
    top: auto;
    right: auto;
    height: 40px !important;
  }
  header #selektor {
    position: absolute;
    bottom: 5px;
    right: 0px;
    left: 0px;
    width: 100%;
    height: 40px;
    margin: 0 auto;
    text-align: center;
    font-size: 40px;
    line-height: 1em !important;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    -webkit-transition: color 400ms ease-in-out;
    -o-transition: color 400ms ease-in-out;
    transition: color 400ms ease-in-out;
  }
  header #selektor:before,
  header #selektor:after {
    content: "";
    position: absolute;
    top: 5px;
    width: 30px;
    height: 30px;
    background: #fff;
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-position: center center;
            mask-position: center center;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
  }
  header #selektor:before {
    left: 7px;
    -webkit-mask-image: url(/images/arrow-right.svg?e4646a461015a6382654adc5fe250103);
            mask-image: url(/images/arrow-right.svg?e4646a461015a6382654adc5fe250103);
  }
  header #selektor:after {
    right: 7px;
    -webkit-mask-image: url(/images/arrow-left.svg?2d8608be349fbccfca958a4f3cf8268c);
            mask-image: url(/images/arrow-left.svg?2d8608be349fbccfca958a4f3cf8268c);
  }
  header.open #selektor {
    pointer-events: none;
  }
  body:not(#home) main {
    padding-top: 40px;
  }
  .module {
    margin-top: 80px;
  }
  .module[data-margin="0"] {
    margin-top: 0px;
  }
  .module[data-margin="1"] {
    margin-top: 40px;
  }
  .module[data-margin="3"] {
    margin-top: 160px;
  }
  .module.style-2 .onehalf.first {
    display: block;
    width: auto;
    text-align: center;
  }
  .module.style-2.mobile-hide-title .onehalf.first {
    display: none;
  }
  .module.style-2.mobile-center .onehalf.second {
    text-align: center;
  }
  .module.style-2 .onehalf.first .title {
    font-size: 17px;
  }
  .module.style-2 .onehalf.second {
    display: block;
    width: auto;
  }
  .module.style-2 .onehalf.second .subtitle {
    display: block;
    text-align: center;
    font-size: 17px;
    margin-bottom: 0px;
  }
  .module.style-2 .onehalf.second .wysiwyg {
    display: block;
    width: auto;
  }
  .module.style-2 .onehalf.second .wysiwyg:not(.dropdown) {
    margin-top: 40px;
  }
  .module.style-2 .onehalf.second .wysiwyg.dropdown:before {
    height: 10px;
  }
  .module.style-2 .read-more {
    margin-top: 10px;
  }
  .module.style-5 {
    margin-top: 80px;
  }
  .module.style-5 .onehalf.first {
    display: none;
  }
  .module.style-5 .onehalf.second {
    display: block;
    width: auto;
  }
  .module.style-5 .onehalf.second .inner {
    width: auto;
  }
  .module.style-5 .onehalf.second .logo-title {
    margin-bottom: 20px;
  }
  .module.style-5 .onehalf.second .logo-title img.icon {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto 0;
    width: 55px;
    height: 55px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .module.style-6 .wrapper > .title {
    display: none;
  }
  .module.style-6 .lectures {
    margin-top: 0px;
  }
  .lectures:not(.slideshow) .lecture {
    width: calc((100% - 1vw) / 2);
    margin-bottom: 10px;
  }
  .module.style-7 .wrapper > .onehalf.first {
    display: none;
  }
  .module.style-7 .wrapper > .onehalf.second {
    display: block;
    width: auto;
  }
  .module.style-8 .wrapper > .onehalf.first {
    display: none;
  }
  .module.style-8 .wrapper > .onehalf.second {
    display: block;
    width: auto;
  }
  .module.style-8 .tickets {
    width: auto;
  }
  .module.style-8 .tickets .ticket {
    padding: 10px;
    border: 1px solid #000;
    border-radius: 10px;
    margin-bottom: 10px;
    min-height: 120px;
  }
  .module.style-8 .tickets .ticket .subtitle {
    width: 80%;
    margin-top: 10px;
  }
  .module.style-8 .tickets .ticket .price {
    top: 10px;
    right: 10px;
  }
  .module.style-9 .wrapper > .onehalf.first {
    display: block;
    width: auto;
    text-align: center;
  }
  .module.style-9 .wrapper > .onehalf.first .title {
    font-size: 17px;
    text-transform: uppercase;
  }
  .module.style-9 .wrapper > .onehalf.second {
    display: block;
    width: auto;
    margin-top: 20px;
  }
  .module.style-9 #mc_embed_signup {
    width: auto;
  }
  .module.style-9 input[type=email],
  .module.style-9 input[type=text] {
    border: 1px solid #000;
    border-radius: 10px;
    padding: 10px;
    font-size: 17px;
    margin-bottom: 10px;
  }
  .module.style-9 .content__gdprBlock {
    width: calc(100% - 100px);
    padding-right: 20px;
    padding-top: 10px;
  }
  .module.style-9 .content__gdprBlock .mc_fieldset {
    position: relative;
    top: 3px;
  }
  .module.style-9 .content__gdprLegal {
    margin-top: 15px;
  }
  .module.style-9 input[type=submit] {
    width: 100px;
    font-size: 17px;
    padding: 10px;
    border-radius: 7px;
  }
  .module.style-9 input[type=checkbox] + label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 22px;
    margin-left: 30px;
    margin-bottom: 10px;
    font-size: 12px;
  }
  .module.style-9 input[type=checkbox] + label:before {
    top: 0px;
    width: 20px;
    height: 20px;
    border: 1px solid #000;
  }
  .module.style-9 .btn-mailchimp {
    display: block;
    margin-left: 30px;
    font-size: 12px;
  }
  .module.style-9 div.mce_inline_error {
    padding: 10px !important;
    margin: 0 0 10px 0 !important;
    font-size: 17px;
  }
  .module.style-9 #mce-responses {
    margin-top: 10px;
  }
  .module.style-11 {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100vh;
  }
  .module.style-11 .overlay {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }
  .module.style-11 .overlay .wrapper {
    padding: 10px;
  }
  .module.style-11 .overlay .wrapper .highlight {
    width: auto;
  }
  .module.style-11 .overlay .logo {
    padding: 13px 20px;
    font-size: 17vw;
    border-radius: 10px;
    line-height: 0.8em;
  }
  .module.style-11 .logo .logo-ar {
    top: 0.9vw;
    width: 7vw;
    height: 11.8vw;
  }
  .module.style-11 .logo .logo-ar.right {
    left: -1.5vw;
  }
  .module.style-11 .overlay .title {
    font-size: 58px;
    margin-top: 10px;
    border-radius: 10px;
  }
  .module.style-11 .overlay .title:before,
  .module.style-11 .overlay .title:after {
    width: 50px;
    height: 50px;
  }
  .module.style-11 .overlay .text {
    display: block;
    width: auto;
    margin-top: 10px;
    border-radius: 10px;
  }
  .module.style-11 .background {
    position: relative;
    display: block;
    width: 100%;
    margin: 0px;
    border-radius: 0px;
  }
  .module.style-11 .background img,
  .module.style-11 .video-background {
    width: calc(100% - 20px);
    height: calc(100% - 10px);
    right: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    border-radius: 10px;
  }
  .module.style-11 .tum {
    display: none;
  }
  body#lecture section#slideshow .slideshow {
    height: calc((100vw - 20px) * 0.64);
  }
  body#lecture section#slideshow .slideshow .flickity-viewport {
    height: 100% !important;
  }
  body#lecture section#slideshow .slideshow .image {
    margin-right: 10px;
    border-radius: 10px;
  }
  body#lecture section#slideshow .overlay {
    padding: 10px 0 10px 20px;
  }
  body#lecture section#slideshow + section#details {
    margin-top: 40px;
  }
  body#lecture section#details .wrapper > .onehalf.first {
    display: none;
  }
  body#lecture section#details .wrapper > .onehalf.second {
    display: block;
    width: auto;
  }
  body#lecture section#details .onehalf.second .content-wrapper {
    width: auto;
  }
  body#lecture section#details .onehalf.second .title {
    margin-top: 20px;
  }
  body#lecture section#details .onehalf.second .wysiwyg {
    display: block;
    margin-top: 40px;
  }
  body#lecture section#timetable {
    margin-top: 80px;
  }
  body#lecture section#timetable .wrapper > .onehalf.first {
    display: none;
  }
  body#lecture section#timetable .wrapper > .onehalf.second {
    display: block;
    width: auto;
  }
  body#lecture section#recommended {
    margin-top: 80px;
  }
  body#lecture section#recommended .wrapper .title {
    display: block;
    text-align: center;
    font-size: 17px;
    text-transform: uppercase;
  }
  body#lecture section#recommended .slideshow {
    margin-top: 20px;
  }
  .copyright {
    right: 10px;
    bottom: 10px;
    width: auto;
    height: auto;
    font-size: 17px !important;
  }
  .slideshow {
    margin-bottom: 50px;
  }
  .slideshow.slideshow-lectures .lecture {
    width: calc((100vw - 20px) * 0.9);
    margin-right: 10px;
  }
  .lecture .background {
    border-radius: 10px;
  }
  .lecture .overlay {
    padding: 10px;
  }
  .tag {
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
  }
  .flickity-page-dots {
    margin: 20px 0 0 0;
  }
  .flickity-page-dots .dot {
    width: 20px;
    height: 20px;
  }
  .flickity-page-dots .dot:before {
    width: 10px;
    height: 10px;
    border: 1px solid #000;
  }
  .flickity-prev-next-button {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: none;
  }
  .flickity-prev-next-button.previous {
    left: 10px;
  }
  .flickity-prev-next-button.next {
    right: 10px;
  }
  .btn {
    padding: 10px;
    font-size: 20px;
    border: 1px solid #000;
    border-radius: 10px;
  }
  .btn.black {
    font-size: 17px;
  }
  .btn.ics {
    padding-right: 10px;
    margin-top: 10px;
  }
  .btn.ics:after {
    margin-left: 10px;
    width: 30px;
    height: 15px;
  }
  .events {
    display: block;
    width: auto;
  }
  .event {
    padding: 10px;
    border: 1px solid #000;
    margin-bottom: 10px;
    border-radius: 10px;
  }
  .event .dropdown:before {
    height: 10px;
  }
  .event .topic {
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .event .event-lecture {
    margin-bottom: 10px;
  }
  .event .event-lecture:last-child {
    margin-bottom: 0px !important;
  }
  .event .event-lecture .onehalf.first {
    width: 70px;
  }
  .event .event-lecture .onehalf.second {
    width: calc(100% - 70px);
  }
  .event .event-lecture .onehalf.second .event-name,
  .event .event-lecture .onehalf.second .event-title {
    padding-right: 20px;
  }
  .event a.event-lecture:after {
    /*background-image:url(../img/arrow-right-mobile.svg);*/
    width: 20px;
    height: 20px;
    -webkit-transform: translateY(-1px);
        -ms-transform: translateY(-1px);
            transform: translateY(-1px);
  }
  footer {
    margin-top: 80px;
    padding: 20px 0 125px 0;
  }
  footer .row {
    text-align: center;
  }
  footer .row > .onehalf {
    display: block;
    width: auto;
  }
  footer .row.first > .onehalf.second {
    display: none;
  }
  footer .row.second {
    margin-top: 40px;
  }
  footer .row.second .onehalf.first {
    padding-top: 0px;
    margin-top: 40px;
  }
  footer .row.second span,
  footer .row.second a {
    margin-right: 5px;
  }
  footer .row.second .partners {
    display: block;
    width: auto;
    margin-top: 30px;
  }
  footer .row.second .partners .partner {
    display: block;
    width: 170px;
    margin: 0 auto;
    margin-top: 20px;
  }
  footer .row.second .partners .partner img {
    width: 100%;
    height: auto;
    max-height: 30px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  footer .tum {
    position: relative;
    left: auto;
    top: auto;
    -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
            transform: translateY(0%);
    margin-bottom: 50px;
  }
  footer .tum img {
    width: 70px;
  }
  footer .onehalf.first a {
    margin-right: 5px;
  }
  .arrowbefore:before {
    display: none;
  }
  /* Animations */
  .module.style-11 .overlay .logo,
  .module.style-11 .overlay .title,
  .module.style-11 .overlay .text,
  .module.style-11 .background {
    -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
    transition: opacity 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
    -o-transition: transform 400ms ease-in-out, opacity 400ms ease-in-out;
    transition: transform 400ms ease-in-out, opacity 400ms ease-in-out;
    transition: transform 400ms ease-in-out, opacity 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
  }
  .module.style-11 .overlay .logo {
    -webkit-transition-delay: 100ms;
         -o-transition-delay: 100ms;
            transition-delay: 100ms;
  }
  .module.style-11 .overlay .title {
    -webkit-transition-delay: 200ms;
         -o-transition-delay: 200ms;
            transition-delay: 200ms;
  }
  .module.style-11 .overlay .text {
    -webkit-transition-delay: 300ms;
         -o-transition-delay: 300ms;
            transition-delay: 300ms;
  }
  .module.style-11 .background {
    -webkit-transition-delay: 400ms;
         -o-transition-delay: 400ms;
            transition-delay: 400ms;
  }
  .module.style-11.intro .overlay .logo,
  .module.style-11.intro .overlay .title,
  .module.style-11.intro .overlay .text,
  .module.style-11.intro .background {
    -webkit-transform: translateY(0vw);
        -ms-transform: translateY(0vw);
            transform: translateY(0vw);
    opacity: 1;
  }
  /* intro animation */
  .module.style-11 .logo .logo-ar.right {
    margin-left: 10px;
    -webkit-transition: margin-left 800ms ease-in-out;
    -o-transition: margin-left 800ms ease-in-out;
    transition: margin-left 800ms ease-in-out;
    -webkit-transition-delay: 800ms;
         -o-transition-delay: 800ms;
            transition-delay: 800ms;
  }
  .module.style-11.intro .logo .logo-ar.right {
    margin-left: 0vw;
  }
  .module.style-11.intro .overlay .title:before {
    -webkit-animation: anititleleft 800ms ease-in-out 2 alternate both;
            animation: anititleleft 800ms ease-in-out 2 alternate both;
    -webkit-animation-delay: 1600ms;
            animation-delay: 1600ms;
  }
  .module.style-11.intro .overlay .title:after {
    -webkit-animation: anititleright 800ms ease-in-out 2 alternate both;
            animation: anititleright 800ms ease-in-out 2 alternate both;
    -webkit-animation-delay: 1600ms;
            animation-delay: 1600ms;
  }
  @-webkit-keyframes anititleleft {
    0% {
      left: 0vw;
    }
    100% {
      left: 10px;
    }
  }
  @keyframes anititleleft {
    0% {
      left: 0vw;
    }
    100% {
      left: 10px;
    }
  }
  @-webkit-keyframes anititleright {
    0% {
      right: 0vw;
    }
    100% {
      right: 10px;
    }
  }
  @keyframes anititleright {
    0% {
      right: 0vw;
    }
    100% {
      right: 10px;
    }
  }
  .wysiwyg h2 {
    font-size: 17px;
    text-transform: uppercase;
    margin-top: 80px;
    margin-bottom: 20px;
  }
  .wysiwyg.p3 a,
  .wysiwyg.p3 a:visited,
  .module.style-9 input[type=checkbox] + label a {
    text-underline-offset: 2px;
  }
  .h1 {
    font-size: 32px;
  }
  .p1 {
    font-size: 32px;
  }
  .p2 {
    font-size: 20px;
  }
  .p3 {
    font-size: 17px;
  }
  .p4 {
    font-size: 12px;
  }
}
@media (max-width: 640px) {
  .lectures .lecture {
    width: 100%;
  }
}
