@charset "UTF-8";
/*
$colorpalette-1-darkest: #09122C;
$colorpalette-1-dark: #872341;
$colorpalette-1-medium: #BE3144;
$colorpalette-1-light: #E17564;
$colorpalette-1-lightest: #d9a29a;
*/
/*
$breakpoint: 
1em = 16px
smaller1 => 840px => 
*/
*,
*::after,
*::before {
  /* Keine lücken*/
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-family: "300";
  font-size: 62.5%; /*Standard ist 16px -> Damit User die Schriftgrösse im Browser ändern kann, relativ darstellen -> 100%/16px -> für 10px als basis. 1rem = 10px hier*/
  /*Also  1rem= 10px*/
  background-color: #EEEEEE;
  width:100%;
  overflow-x:hidden;
  
}
body{
  width:100%;
  overflow-x: hidden;
}
@media only screen and (max-width: 52.5em) {
  html {
    font-size: 56%;
  }
}
@media only screen and (max-width: 41.25em) {
  html {
    font-size: 56%;
  }
}

body {
  box-sizing: border-box;
}
.container{
  min-height:100vh;
}
.heading-head {
  color: white;
  text-transform: uppercase;
  backface-visibility: hidden;
}
.heading-head--titel {
  display: block;
  font-family: "400";
  font-size: 6rem;
  letter-spacing: 1rem;
  animation-name: moveInBottom;
  animation-duration: 1s;
  animation-timing-function: ease-out; /*schneller am Anfang, längsemer am Ende*/
}
@media only screen and (max-width: 52.5em) {
  .heading-head--titel {
    letter-spacing: 0.8rem;
  }
}
@media only screen and (max-width: 41.25em) {
  .heading-head--titel {
    font-size: 4.7rem;
    letter-spacing: 0.4rem;
  }
}
.heading-head--untertitel {
  display: block;
  font-size: 2.2rem;
  letter-spacing: 1.4rem;
  font-family: "500";
  animation: moveInBottom 1s ease-out;
}
@media only screen and (max-width: 52.5em) {
  .heading-head--untertitel {
    letter-spacing: 0.7rem;
  }
}
@media only screen and (max-width: 41.25em) {
  .heading-head--untertitel {
    font-size: 2rem;
    letter-spacing: 0.4rem;
  }
}

.heading-1 {
  color: #777;
  text-transform: uppercase;
  backface-visibility: hidden;
}
.heading-1--titel {
  display: block;
  font-family: "400";
  font-size: 6rem;
  letter-spacing: 1rem;
  animation-name: moveInBottom;
  animation-duration: 1s;
  animation-timing-function: ease-out; /*schneller am Anfang, längsemer am Ende*/
}
@media only screen and (max-width: 52.5em) {
  .heading-1--titel {
    letter-spacing: 0.8rem;
  }
}
@media only screen and (max-width: 41.25em) {
  .heading-1--titel {
    font-size: 4.7rem;
    letter-spacing: 0.4rem;
  }
}
.heading-1--titel__small {
  overflow-wrap: break-word;
  display: block;
  font-family: "400";
  font-size: 4rem;
  letter-spacing: 1rem;
  animation-name: moveInBottom;
  animation-duration: 1s;
  animation-timing-function: ease-out; /*schneller am Anfang, längsemer am Ende*/
}
@media only screen and (max-width: 52.5em) {
  .heading-1--titel__small {
    letter-spacing: 0.8rem;
  }
}
@media only screen and (max-width: 41.25em) {
  .heading-1--titel__small {
    font-size: 3rem;
    letter-spacing: 0.4rem;
  }
}
.heading-1--untertitel {
  display: block;
  font-size: 2.2rem;
  letter-spacing: 1.4rem;
  font-family: "500";
  animation: moveInBottom 1s ease-out;
}
@media only screen and (max-width: 52.5em) {
  .heading-1--untertitel {
    letter-spacing: 0.7rem;
  }
}
@media only screen and (max-width: 41.25em) {
  .heading-1--untertitel {
    font-size: 2rem;
    letter-spacing: 0.4rem;
  }
}

.heading-2 {
  position: relative;
  color: #1D1616;
  font-family: "400";
  font-size: 3.5rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
  padding-top:5rem;
}
.heading-2-light {
  color: #EEEEEE;
}

.heading-3 {
  position: relative;
  color: #1D1616;
  font-family: "400";
  font-size: 2.5rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0;
  margin-top: 10px;
}
.heading-3-light {
  color: #EEEEEE;
}

.heading-4 {
  color: #1D1616;
  font-family: "400";
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
  margin: 0;
}

.text {
  font-size: 1.6rem;
}
.text-normal{
  color:  #1D1616;
  text-decoration: none;
}
.text-bold {
  font-family: "700";
}
.text-center{
  text-align:center;
  padding-right: 10px; 
  padding-left: 10px; 
}
.text-red{
  color:red;
}

body {
  font-family: "400";
  line-height: 1.7;
  color: #777;
  box-sizing: border-box;
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@font-face {
  font-family: "300";
  src: url("fonts/Montserrat/Montserrat-Light.ttf") format("truetype");
}
@font-face {
  font-family: "200";
  src: url("fonts/Montserrat/Montserrat-ExtraLight.ttf") format("truetype");
}
@font-face {
  font-family: "400";
  src: url("fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "400I";
  src: url("fonts/Montserrat/Montserrat-Italic.ttf") format("truetype");
}
@font-face {
  font-family: "500";
  src: url("fonts/Montserrat/Montserrat-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "700";
  src: url("fonts/Montserrat/Montserrat-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Icon-Font";
  src: url("fonts/Icon/Icon-Font.ttf") format("truetype");
}
.btn, .btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 2rem;
  display: inline-block; /*immer wenn paddings oder höhe oder with verwendet wird*/
  border-radius: 20px;
  transition: all 0.2s;
  position: relative;
  font-size: 1.6rem;
  font-family: "500";
  border: none;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-0.3rem);
}
.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
.btn:active, .btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  outline: none;
}
.btn--white {
  background-color: white;
  color: #1D1616;
}
.btn--white:hover {
  color: white;
  background-color: #1D1616;
}
.btn--dark {
  background-color: #8E1616;
  color: #eee;
}
.btn--dark:hover {
  color: #eee;
  background-color: #1D1616;
}
.btn--col-light {
  background-color: #EEEEEE;
  color: #1D1616;
}
.btn--col-light:hover {
  color: #EEEEEE;
  background-color: #1D1616;
}
.btn--animated {
  animation: moveInBottom 0.5s ease-out 0.75s;
  animation-fill-mode: backwards; /*styles der animation vor dem styling anzeigen (Bsp. opacity -> Sonst ist der button bereits sichtbar)*/
}

.btn-text {
  color: #1D1616;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #1D1616;
  padding: 3px;
  font-size: 1.6rem;
  transition: all 0.2s;
}
.btn-text:hover {
  background-color: #1D1616;
  color: #EEEEEE;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.btn-text:active {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(0);
}
.btn-text-dark:hover {
  background-color: #8E1616;
}

.info-box {
  position: relative;
  background-color: white;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  text-align: center;
  padding: 8px;
}
.info-box__4{
  min-height:150px;

}
.info-box__heading-4{
  top:0;
}
.info-box__link-4{
  margin-top: 30px;
}
.info-box__icon {
  color: #8E1616;
  line-height: 0;
  font-size: 6rem;
}
.info-box__list {
  list-style: none;
}
.info-box__item {
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
}
.info-box__link {
  text-decoration: none;
  display: block;
  background-image: linear-gradient(to right, #1D1616, #8E1616);
  color: #EEEEEE;
  padding: 6px;
  font-size: 1.6rem;
  transition: all 0.2s;
}
.info-box__link:not(:last-child) {
  margin-bottom: 8px;
}
.info-box__link:hover {
  background-image: linear-gradient(to right, #1D1616, #1D1616);
  color: #EEEEEE;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.info-box__link:active {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(0);
  background-image: linear-gradient(to right, #1D1616, #1D1616);
}

/*
color: $colorpalette-1-darkest;
    display:inline-block;
    text-decoration:none;
    border-bottom: 1px solid $colorpalette-1-darkest;
    padding:3px;
    font-size:1.6rem;
    transition: all .2s;
    &:hover{
        background-color: $colorpalette-1-darkest;
        color: $colorpalette-1-lightest;
        box-shadow: 0 1rem 2rem rgba($color-black, .15);
        transform: translateY(-2px);

    }
    &:active{
        box-shadow: 0 .5rem 1rem rgba($color-black, .15);
        transform: translateY(0);
    }
*/
.icon-content {
  font-family: "Icon-Font";
}

.booking {
  position: relative;
  background-color: white;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  text-align: center;
  padding: 8px;
  padding-bottom: 14px;
  border-radius: 3px;
  overflow: hidden;
}
.booking__foto {
  background-size: cover;
  height: 20rem;
  background-blend-mode: screen;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border: solid #333 2px;
}
.booking__foto--1 {
  background-image: linear-gradient(to right bottom, rgba(142, 22, 22, 0.6) 90%, rgba(216, 64, 64, 0.6)), url(../img/Auto-1-bw.jpg);
  background-size: cover;
}
.booking__foto--2 {
  background-image: linear-gradient(to right bottom, rgba(142, 22, 22, 0.6) 90%, rgba(216, 64, 64, 0.6)), url(../img/Motorrad-1-bw.jpeg);
  background-size: cover;
}
.booking__foto--3 {
  background-image: linear-gradient(to right bottom, rgba(142, 22, 22, 0.6) 90%, rgba(216, 64, 64, 0.6)), url(../img/Anhaenger-1-bw.jpeg);
  background-size: cover;
  background-position: center;
}
.booking__title {
  font-size: 3rem;
  text-transform: uppercase;
  color: white;
  text-align: center;
  transform: translateY(-100%);
  background-color: rgba(0, 0, 0, 0.85);
}
.booking__details {
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-top: -8rem;
}
.booking__details ul {
  list-style: none;
  width: 90%;
  margin: 0 auto;
  padding: 0;
}
.booking__details ul li {
  text-align: center;
  font-size: 1.6rem;
  padding: 1rem;
}
.booking__details ul li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.booking__details ul li p {
  font-family: "700";
}
.booking__btn {

  margin-top: -3rem;
}

.bookingInfo-2and3{
  position:absolute;
  bottom:15px;
  width:100%;
}
.werdegang {
  position: relative;
  width: 30%;
  display: table-cell;
  /*box-shadow: 1rem 0 2rem -.5rem rgba($color-black, .15);*/
  border-right: 2px solid #999;
}
@media only screen and (max-width: 41.25em) {
  .werdegang {
    padding-bottom: 2rem;
    border-right: 0;
  }
}
@media only screen and (max-width: 41.25em) {
  .werdegang__section {
    margin-left: 50%;
    transform: translate(-50%);
  }
}
@media only screen and (max-width: 23.44em) {
  .werdegang__section {
    margin-left: 0;
    transform: none;
  }
}
.werdegang__section--year {
  position: relative;
  z-index: 20;
  margin-left: 4rem;
  font-family: "500";
  font-size: 5rem;
  z-index: 200;
  color: #1D1616;
}
.werdegang__section__info {
  position: relative;
  margin-left: 10rem;
  margin-top: -2rem;
}
.werdegang__section__info-title {
  font-family: "700";
  font-size: 2rem;
  color: #1D1616;
}
.werdegang__section__info-description {
  position: relative;
  font-family: "400";
  font-size: 1.6rem;
  color: #1D1616;
}

.stories {
  width: 50%;
  display: table-cell;
  position: relative;
  text-align: center;
  padding-bottom: 2rem;
  z-index: 10;
  transition: all 0.2s;
}
@media only screen and (max-width: 41.25em) {
  .stories {
    display: table-row;
    background-image: linear-gradient(to bottom, rgba(222, 145, 133, 0.8) 5%, rgba(238, 238, 238, 0.8) 50%, rgba(222, 145, 133, 0.8) 100%);
    width: 100%;
  }
}
.stories__section {
  text-align: left;
  position: relative;
}
.stories__section:not(:first-child) {
  padding-top: 2rem;
}
.stories__section-title {
  font-family: "700";
  font-size: 2rem;
  color: #1D1616;
  text-align: center;
  text-transform: uppercase;
}
.stories__section__imagebox {
  position: relative;
}
.stories__section__imagebox-image {
  overflow: hidden;
  background-size: cover;
  border-radius: 2px;
  background-blend-mode: screen;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.4);
  border: solid #1D1616 2px;
}
.stories__section__imagebox-image-1 {
  margin-top: 5%;
  margin-left: 2%;
  z-index: 20;
}
@media only screen and (max-width: 41.25em) {
  .stories__section__imagebox-image-1 {
    margin-left: 50%;
    margin-top: 0.4rem;
    transform: translate(-50%);
  }
}
.stories__section__imagebox-image-2 {
  margin-top: -50%;
  margin-left: 48%;
  z-index: 10;
}
@media only screen and (max-width: 41.25em) {
  .stories__section__imagebox-image-2 {
    margin-left: 50%;
    margin-top: 0.4rem;
    transform: translate(-50%);
  }
}
.stories__section__imagebox-image-3 {
  margin-top: -25%;
  margin-left: 15%;
  z-index: 30;
}
@media only screen and (max-width: 41.25em) {
  .stories__section__imagebox-image-3 {
    margin-left: 50%;
    margin-top: 0.4rem;
    transform: translate(-50%);
  }
}
.stories__section__imagebox-image-hoch {
  width: 50%;
  max-width: 38rem;
}
@media only screen and (max-width: 41.25em) {
  .stories__section__imagebox-image-hoch {
    width: 80%;
    max-width: 383px;
  }
}
.stories__section__imagebox-image-queer {
  width: 70%;
  max-width: 38rem;
}
@media only screen and (max-width: 41.25em) {
  .stories__section__imagebox-image-queer {
    width: 80%;
    max-width: 383px;
  }
}
.stories__section__imagebox-image:hover {
  transform: scale(1.08) translateY(-0.5rem);
  z-index: 99;
  border: solid #8E1616 3px;
}
@media only screen and (max-width: 41.25em) {
  .stories__section__imagebox-image:hover {
    transform: translate(-50%);
  }
}
.stories__button {
  margin-top: 2rem;
  font-size: 2rem;
}
@media only screen and (max-width: 41.25em) {
  .stories__button {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }
}

.header {
  position: relative;
  height: 85vh;
  background-image: linear-gradient(to right, rgba(29, 22, 22, 0.8), rgba(142, 22, 22, 0.8)), url(../img/Auto-1.jpg);
  background-size: cover;
  background-position: top;
}
@media only screen and (max-width: 41.25em) {
  .header {
    height: 75vh;
  }
}
.header__logo-box {
  position: absolute;
  top: 1rem;
  left: 1rem;
}
.header__logo {
  width: 20rem;
}
.header__text-box {
  width: 100%;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media only screen and (max-width: 41.25em) {
  .header__text-box {
    top: 45%;
  }
}
.header__button {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.header-small {
  position: relative;
  height: 10vh;
  background-image: linear-gradient(to right, rgba(29, 22, 22, 0.8), rgba(142, 22, 22, 0.8)), url(../img/Auto-1.jpg);
  background-size: cover;
  background-position: top;
}
@media only screen and (max-width: 41.25em) {
  .header-small {
    height: 10vh;
  }
}
.header-small__logo-box {
  position: absolute;
  top: 1rem;
  left: 1rem;
}
.header-small__logo {
  width: 20rem;
}

.row {
  max-width: 114rem;
  margin: 0 auto;
}
@media only screen and (max-width: 41.25em) {
  .row {
    max-width: 100%;
    padding: 1rem;
  }
}
.row:not(:last-child) {
  margin-bottom: 8rem;
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.row [class^=col-] {
  float: left;
}
.row [class^=col-]:not(:last-child) {
  margin-right: 2rem;
}
@media only screen and (max-width: 41.25em) {
  .row [class^=col-]:not(:last-child) {
    margin-right: 0;
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 41.25em) {
  .row [class^=col-] {
    width: 100% !important;
  }
}
.row .col-1-of-2 {
  width: calc((100% - 2rem) / 2);
}
.row .col-1-of-3 {
  width: calc((100% - 2 * 2rem) / 3);
}
.row .col-2-of-3 {
  width: calc(2 * (100% - 2 * 2rem) / 3 + 2rem);
}
.row .col-1-of-4 {
  width: calc((100% - 3 * 2rem) / 4);
}
.row .col-2-of-4 {
  width: calc(2 * (100% - 3 * 2rem) / 4 + 2rem);
}
.row .col-3-of-4 {
  width: calc(3 * (100% - 3 * 2rem) / 4 + 2 * 2rem);
}

.navigation {
  display: relative;
}
.navigation__checkbox {
  display: none;
}
.navigation__button {
  background-color: white;
  height: 7rem;
  width: 7rem;
  position: fixed;
  top: 4.5rem;
  right: 4.5rem;
  border-radius: 50%;
  z-index: 2000;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
}
@media only screen and (max-width: 41.25em) {
  .navigation__button {
    height: 6.5rem;
    width: 6.5rem;
    top: 3.5rem;
    right: 3.5rem;
  }
}
.navigation__background {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  position: fixed;
  top: 5rem;
  right: 5rem;
  background-image: radial-gradient(#8E1616, #D84040);
  z-index: 1000;
}
@media only screen and (max-width: 41.25em) {
  .navigation__background {
    height: 5rem;
    width: 5rem;
    top: 4rem;
    right: 4rem;
  }
}
.navigation__nav {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  width: 0;
  display: none;
}
.navigation__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-500%, -50%);
  list-style: none;
  text-align: center;
  width: 100%;
  transition: transform 3s;
}
.navigation__pos {
  margin: 4rem;
}
.navigation__link:link, .navigation__link:visited {
  display: inline-block;
  font-size: 3rem;
  font-weight: 300;
  padding: 1rem, 2rem;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #EEEEEE 50%);
  background-size: 220%;
  transition: all 0.4s;
}
@media only screen and (max-width: 41.25em) {
  .navigation__link:link, .navigation__link:visited {
    font-size: 2rem;
  }
}
.navigation__link:link span, .navigation__link:visited span {
  margin-right: 1.5rem;
  display: inline-block;
}
@media only screen and (max-width: 41.25em) {
  .navigation__link:link, .navigation__link:visited {
    border-bottom: solid #EEEEEE 1px;
  }
}
.navigation__link:hover, .navigation__link:active {
  background-position: 100%;
  color: #8E1616;
  transform: translateX(1rem);
}
.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(80);
}
.navigation__checkbox:checked ~ .navigation__nav {
  width: 100%;
  display: block;
}
.navigation__checkbox:checked ~ .navigation__nav > .navigation__list {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.navigation__icon {
  position: relative;
  margin-top: 3.5rem;
}
.navigation__icon, .navigation__icon::before, .navigation__icon::after {
  width: 3rem;
  height: 2px;
  background-color: #333;
  display: inline-block;
}
.navigation__icon::before, .navigation__icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.12s;
}
.navigation__icon::before {
  top: -0.8rem;
}
.navigation__icon::after {
  top: 0.8rem;
}
.navigation__button:hover .navigation__icon:before {
  top: -1rem;
}
.navigation__button:hover .navigation__icon:after {
  top: 1rem;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  top: 0;
  transform: rotate(135deg);
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  top: 0;
  transform: rotate(-135deg);
}

.footer {
  position: relative;
  background-color: #1D1616;
  text-align: center;
  padding-bottom: 3rem;
}
.footer__logo {
  text-align: center;
}
.footer__logo-img {
  width: 30%;
  max-width: 20rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.footer__navigation {
  margin-top: 3rem;
  border-top: 1px solid #EEEEEE;
  display: inline-block;
  padding-top: 1rem;
}
.footer__list {
  list-style: none;
}
.footer__pos {
  display: inline-block;
}
.footer__pos:not(:last-child) {
  margin-right: 1.5rem;
}
.footer__link {
  color: #EEEEEE;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.2s;
  font-family: "400";
  font-size: 1.7rem;
}
.footer__link:hover {
  background-color: #EEEEEE;
  color: #1D1616;
  transform: translateY(-0.5rem);
}

.section-infos {
  align-content: center;
  min-height:400px;
  padding-top: 2rem;
  padding-bottom: 4rem;
   background-color: GhostWhite;
}

.section-book {
  align-content: center;
  min-height:500px;
/* background-image: linear-gradient(to bottom, rgba(222, 145, 133, 0.5) 5%, rgba(238, 238, 238, 0.5) 50%, rgba(222, 145, 133, 0.5) 100%);
*/  background-color: MistyRose;
/*  box-shadow: 0 -1rem 2rem rgba(29, 22, 22, 0.4), 0 1rem 2rem rgba(29, 22, 22, 0.4);
  */padding-bottom: 4rem;
}

.section-about {
/*  background-image: linear-gradient(to bottom, rgba(222, 145, 133, 0.8) 5%, rgba(238, 238, 238, 0.8) 50%, rgba(222, 145, 133, 0.8) 100%);
*/
  background-color: MistyRose;
  padding-top: 3rem;
}
.section-about-content {
  display: table;
  border-spacing: 1rem;
}
@media only screen and (max-width: 41.25em) {
  .section-about-content {
    border-spacing: 0;
  }
}

.buchen {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}
.buchen__content {
  margin: auto;
  width: 100%;
  background-color: #EEEEEE;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  overflow: hidden;
}
.buchen__header {
  padding: 1rem 1rem;
}
.buchen__header-description {
  font-size: 1.6rem;
}
.buchen__header-introduction {
  font-size: 1.6rem;
}
.buchen__header-note {
  font-size: 1.6rem;
  font-family: "700";
}
.buchen__calendar {
  margin-top: 2rem;
  position: relative;
}
.buchen__calendar-title {
  margin-bottom: 1rem;
}
.buchen__calendar-row {
  margin-bottom: 1rem !important;
}

.calendar {
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 -1px 4px rgba(29, 22, 22, 0.4);
  overflow: hidden;
  width: 30rem;
  color: white;
  padding: 1rem;
  background-color: #333;
}
.calendar-btn {
  cursor: pointer;
  margin-top: -1rem;
  font-size: 4rem;
  line-height: 4rem;
}
.calendar-title {
  margin-top: -1rem;
  font-size: 2rem;
}
.calendar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calendar__weekdays, .calendar__days {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}
.calendar__wdTitle, .calendar__day {
  padding: 1rem;
  border-radius: 5px;
  width: 14.28%;
  padding: 10px 0;
  font-size: 1.6rem;
}
.calendar__day {
  cursor: pointer;
  transition: background-color 0.3s;
}
.calendar__day-lastMonth, .calendar__day-nextMonth {
  color: #999;
}
.calendar__day:hover {
  background-color: #EEEEEE;
  color: #D84040;
  transform: scale(1.1);
}
.calendar__day-clicked {
  background-color: #D84040 !important;
  transform: scale(1.1);
}
.calendar__heute {
  background-color: #1D1616;
}
.calendar__free {
  border: solid 2px rgba(216, 64, 64, 0.4);
  background-color: rgba(216, 64, 64, 0.1);
}
.bookingTimes {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: auto;
}
.bookingTimes-title {
  margin: auto;
}
.bookingTimes__error {
  text-align: center;
  font-size: 1.6rem;
  color: red;
  font-family: "700";
}
.bookingTimes__timeslot {
  text-align: center;
  width: 50%;
  background-color: #EEEEEE;
  color: black;
  border: solid 1px black;
  border-radius: 5px;
  margin: 1rem;
  padding: 0.6rem 1rem;
  font-size: 1.6rem;
  padding: 1rem;
  transition: background-color 0.3s;
  box-shadow: 0 1px 2px rgba(29, 22, 22, 0.4);
}
.bookingTimes__timeslot:hover {
  background-color: #1d1616;
  color: #EEEEEE;
  transform: scale(1.2);
}
.bookingTimes__timeslot-active {
  background-color: #1d1616;
  color: #EEEEEE;
}

.section-impressum {
	min-height: 70vh;
  padding-top: 3rem;
}

.page-title {
  text-align: center;
}

.impressum-content {
  padding: 3rem;
}
.impressum-bucket:not(:last-child){
  padding-bottom: 20px;
}
.section-datenschutz{
	min-height: 70vh;
}

.datenschutz-content {
  padding: 3rem;
}
.datenschutz-bucket:not(:last-child){
  padding-bottom: 20px;
}
.section-courses{
  background-color: GhostWhite;
 
}
.section-courses-content {
  display: table;
  width:100%;
  border-spacing: 1rem;
   min-height: 500px;
}
@media only screen and (max-width: 41.25em) {
  .section-courses-content {
    border-spacing: 0;
  }
}
.vku{
  position: relative;
  width:50%;
  display: table-cell;
  /*box-shadow: 1rem 0 2rem -.5rem rgba($color-black, .15);*/
  border-right: 2px solid #999;
}
@media only screen and (max-width: 41.25em) {
  .vku {
    padding-bottom: 2rem;
    border-right: 0;
    width:100%;
  }
}
.vku_section{
  position:relative; 
  margin-left: 20px;
  padding-top: 20px;
 
}
.vku_section--Image{
  position:absolute; 
  top: 5rem; 
  right: 1rem; 
box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  height:200px; 
  width:300px
}

@media only screen and (max-width: 80em) {
  .vku_section--Image {
    position:relative;
    top:0;
    left:50%;
    transform:translateX(-50%);
    height:200px; 
  width:300px
  }
 
}


.heading-courses{
  padding-top: 30px;
  font-family: "500";
  font-size: 1.6rem;
}
@media only screen and (max-width: 80em) {
  .heading-courses {
    padding-top:0;
  }
 
}
.heading-courses-center{
  text-align:center;
}
.vku_section--Datum{
  padding-top: 5px;
  min-height: 200px;
  padding-left: 20px;
}
.course_section--Datum-entry{
  font-size: 1.6rem;
}
.vku_section--Ort{
  font-size:1.6rem;
  padding-top: 5px;
  text-align:center;
 
}
.grundkurse {
 position: relative;
  display: table-cell;
  /*box-shadow: 1rem 0 2rem -.5rem rgba($color-black, .15);*/

}
@media only screen and (max-width: 41.25em) {
  .grundkurse {
    display: table-row;
    padding-bottom: 2rem;
    border-right: 0;
    width:100%;
  }
}
.section-buchungsdetail{
    display: table;
  width:100%;
  border-spacing: 1rem;
   min-height: 500px;
}
.buchungsinfo-fahrzeit{
  position:relative;
  display:table-cell;
  width: 33%;
  border-right: solid black 1px;
}
.fahrzeit-table{
  font-size:1.6rem;
  text-align:left;
  width:400px;
}
@media only screen and (max-width: 65em) {
  .buchungsinfo-fahrzeit {
    display: table-row;
    padding-bottom: 2rem;
    border-right: 0;
    width:100%;
  }
  .fahrzeit-table, .fahrzeit-infotext{
    padding-left:10px; 
    padding-top: 10px;
  }

}
.fahrzeit-table-head{
  font-family: "500";
  text-transform: uppercase;
}
.buchungsinfo-anfrage{
  position:relative;
  display:table-cell;
  width: 67%;
}
.anfrage-kontaktinfos{
  padding-bottom: 30px;
}
.kontaktinfos-buttonArea{
  padding-top: 15px;
  padding-bottom: 30px;
  display:flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 38em) {
  .kontaktinfos-buttonArea{
    flex-direction:column;
  }
  .text-center{
  text-align:center;
  padding-right: 40px; 
  padding-left: 10px; 
}

}


.button-contactinfo{
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
   border-radius: 30px; 
  background-color: white;
  border: solid black 1px;
  padding: 10px; 
  min-height: 82px;
  min-width: 194px;
}
.button-contactinfo-padding{
  padding-bottom: 15px; 
  padding-top: 15px;
}
.contactinfo-symbol-img{
  height: 30px; 
  width: 30px;
  
}
.contactinfo-symbol-text{
  font-size: 3rem;
  height: 30px; 
  width: 30px;
  color:black;
}
.contactinfo-text{
  text-align: center; 
  font-size: 1.6rem;
  color:black;
}
.button-contactinfo:hover{
  background-color: black;
  

}
.button-contactinfo:hover p{
  color: white;

}
.button-contactinfo:hover i{
  color: white;

}

.carousel {
    overflow: hidden;
    height: 808px; /* Höhe des Karussells */
    position: relative;
}

.image-container {
    display: flex;
    flex-direction: column; 
    gap: 10px; 
    transition: transform 0.5s ease;
    align-items: center;
}
.carousel-image{
  filter: grayscale(100%);
  opacity: .5; 
  height: 150px;
}
.carousel-image.active {
  filter: grayscale(0%);
  z-index: 50;
    opacity: 1; 
    transform: scale(1.6); /* Größeres Bild */
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}
