@font-face {
  font-family: GT Planar;
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/GT-Planar-Regular.woff2') format('woff2'), url('../fonts/GT-Planar-Regular.woff') format('woff'), url('../fonts/GT-Planar-Regular.ttf') format('truetype');
}

@font-face {
  font-family: GT Planar;
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/GT-Planar-Medium.woff2') format('woff2'), url('../fonts/GT-Planar-Medium.woff') format('woff'), url('../fonts/GT-Planar-Medium.ttf') format('truetype');
}

@font-face {
  font-family: GT Planar;
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/GT-Planar-Light.woff2') format('woff2'), url('../fonts/GT-Planar-Light.woff') format('woff'), url('../fonts/GT-Planar-Light.ttf') format('truetype');
}




html {
  min-height: 100%;
}

body {
  background-size: cover;
  overscroll-behavior-y: none;
}

/* All vendor prefixes for `font-feature-settings` */
h1, h2, h3, p {
-moz-font-feature-settings: "kern" 1;
-ms-font-feature-settings: "kern" 1;
-o-font-feature-settings: "kern" 1;
-webkit-font-feature-settings: "kern" 1;
font-feature-settings: "kern" 1;
font-kerning: normal;
}

*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, button {
  font-family: GT Planar, sans-serif;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #0D2131;
}



h1, h2, h3, h5, h6, .bold {
  font-weight: 500;
}


h1 {
  font-size: 36px;
  line-height: 36px;
  margin-bottom: 3px;
}

h2, .size-large {
  font-size: 30px;
  line-height: 32px;
  margin-bottom: 20px;
}

h3, .big {
  font-size: 20px;
  line-height: 22px;
  margin-bottom: 12px;
}

h4 {
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.32px;
  text-decoration: underline;
  text-underline-offset: 11px;
  margin-bottom: 50px;
  text-transform: uppercase;
}


p, li {
  font-size: 18px;
  line-height: 22px;

}



/* mobile font sizes */

@media screen and (max-width: 992px) {
  h1 {
    font-size: 30px;
    line-height: 32px;
  }

  h2, .size-large {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 16px;
  }

}




p {
  margin-bottom: 8px;
}

li {
  margin-bottom: 6px;
}

.main {
  margin-top: 150px;
}

section.intro {
  padding-bottom: 70px;
}


.half {
  width: 50%;
}

ul {
  margin-bottom: 16px;
}

.name {
  margin-bottom: 20px;
}
.brands {
  margin-bottom: 96px;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}




footer {
  background-color: hsla(44, 15%, 44%, 1);
  padding-top: 96px;
  padding-bottom: 96px;
}

.box {
  background-color: white;
  border: 1px solid #0D2131;
  padding: 3vh;
  max-width: 600px;
  height: fit-content;
}



.beforeOverlap {
  margin-bottom: 70px !important;
}

.overlap {
  position: relative;
  top: -50px;
  margin-bottom: -50px;
  left: -3vh;
}

.right {
  left: 0;
}

.shadow {
  box-shadow: 10px 10px 0 0 hsla(44, 15%, 44%, 1);
}

button {
  background-color: white;
  border: 1px solid #0D2131;
  color: #0D2131;
  padding: 15px 32px;
  text-align: center;
  width: 100%;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin-bottom: 14px;
}


.column2 {
  position: relative;
  top: -150px;
  left: 0;
  background-color: white;
  border: 1px solid #0D2131;
  padding: 5vh;
  width: auto;
}


.subline {
  font-weight: 300;
}


.icon {
  display: inline-block;
  height: 12px;
  margin-left: 12px;
}

.icon-back {
  margin-left: 0;
  margin-right: 12px;
}

/* Spacers */

.inner  {
  margin: 0 auto;
  padding: 0 10vw;
}

.smallVpadding {
  padding-bottom: 50px;
}

.smallVpaddingTop {
  padding-top: 50px;
}

.xSmallVpaddingTop {
  padding-top: 30px;
}

.xSmallVpadding {
  padding-bottom: 30px;
}

.smallVmargin {
  margin-bottom: 50px;
}

.largePaddingTop {
  padding-top: 96px;
}

.largePaddingBottom {
  padding-bottom: 96px;
}


/* mobile spacers */

@media screen and (max-width: 992px) {
  .smallVpadding {
    padding-bottom: 30px;
  }

  .smallVpaddingTop {
    padding-top: 30px;
  }

  .xSmallVpaddingTop {
    padding-top: 20px;
  }

  .xSmallVpadding {
    padding-bottom: 20px;
  }

  .smallVmargin {
    margin-bottom: 30px;
  }

  .largePaddingTop {
    padding-top: 50px;
  }

  .largePaddingBottom {
    padding-bottom: 50px;
  }

}



.grid {
  display: grid;
  align-content: space-between;
  grid-gap: 3rem;
  grid-auto-rows: minmax(min-content, max-content);
}

.grid > * {
  min-width: 0px;
}

.twoColumns {
  grid-template-columns: repeat(2, 1fr);
}


.threeColumns {
  grid-template-columns: repeat(3, 1fr);
}

.fourColumns {
  grid-template-columns: repeat(4, 1fr);
}

.grid23 {
  grid-template-columns: 2fr 1fr;
}


.grid12 {
  grid-template-columns: 1fr 2fr;
}







/* Slideshow container */
.slideshow-container {
  width: 100%;
  overflow: hidden;
   margin: 0 auto;

}

/* Hide the images by default */
.mySlides {
  width: 100%;
  height: auto; /* statt 50vh */
  display: flex;
  justify-content: center;
  align-items: center;

}


.mySlides img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 80vh; /* oder gewünschte maximale Höhe */
  object-fit: contain;
  display: block;
  margin: 0 auto;
}



/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 2s;
}

@keyframes fade {
  from {opacity: .3}
  to {opacity: 1}
}



/* agenda */
section#dates {
  margin-bottom: 96px;
}
.date {
  margin-bottom: 60px;
}

.time {
  margin-bottom: 16px;
}


/* mobile spacers agenda */

@media screen and (max-width: 992px) {
  section#dates {
    margin-bottom: 60px;
  }
  .date {
    margin-bottom: 10px;
  }

}



/* headings in text areas */
div.text h1, div.text h2, div.text h3 {
  font-size: 20px;
  line-height: 22px;
  margin-bottom: 10px;
  margin-top: 40px;
}


section {
  padding-bottom: 60px !important;
}

.verticalSpace {
  margin-top: 50px;
}

section.text h2 {
  margin-top: 36px;
  margin-bottom: 16px;
}



.dark {
  background-color: hsla(44, 15%, 44%, 1);
}

.pSpace {
  margin-bottom: 15px;
}


.small {
  font-weight: 400;
  font-size: 16px;
  line-height: 14px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
}

.brown {
    color: hsla(44, 15%, 44%, 1);
}



.list ul, .text ul {
  list-style-type: circle;
}


/* mobile */

@media screen and (max-width: 992px) {
  .fourColumns, .twoColumns, .threeColumns, .grid12, .grid23 {
    grid-template-columns: 1fr;
  }

  .half {
    width: 100%;
  }


  .box {
    max-width: 100%;
  }

}

a.anchor {
  display: block;
   position: relative;
   top: -130px;
   visibility: hidden;
}
