@font-face {
  font-family: "cinzel";
  font-style: normal;
  font-weight: 400, 1000;
  font-display: swap;
  src: url(../../fonts/Cinzel/static/Cinzel-Medium.ttf) format("truetype");
}
/* $offers_border-width*/
/** Breakpoints */
/*Larg*/
/*medium*/
/*small*/
/*extra small*/
/** 1200px oder schmaler */
/** 992px oder schmaler */
/** 768px oder schmaler */
/** 576px oder schmaler */
/*@mixin tours__heading-size(){

}*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/*font-family: 'cinzel', monospace;*/
html {
  font-size: 100%;
  font-family: "cinzel", sans-serif;
  text-transform: capitalize;
}

::-moz-selection {
  color: #00f2ff;
  background-color: rgba(10, 152, 74, 0.9254901961);
}

::selection {
  color: #00f2ff;
  background-color: rgba(10, 152, 74, 0.9254901961);
}

.icon {
  fill: currentColor;
  height: 2em;
  vertical-align: middle;
  position: relative;
}

.button {
  color: #fff;
  font-family: "../../../fonts/Cinzel";
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 10000rem;
  border: 1px solid #00f2ff;
  padding: 1rem 4rem;
  text-align: center;
  display: inline-block;
}
.button:hover {
  color: #009199;
}
@media (max-width: 48em) {
  .button {
    color: rgb(223, 223, 223);
  }
  .button:hover {
    border: 1px solid #00f2ff;
  }
}

.button-white {
  color: #fff;
}
.button-white:hover {
  color: rgb(223, 223, 223);
  background-color: #012936;
  /*border: 1px solid color.scale($color-secoundary-light, $blackness: 60%);*/
  border: 1px solid #b3fbff;
}
@media (max-width: 48em) {
  .button-white {
    background-color: #006166;
    border: 1px solid #b3fbff;
  }
  .button-white:hover {
    background-color: #022937;
    border: 1px solid #009199;
  }
}

.button-secoundary-hover {
  background-color: #011820;
  border: 1px solid #3abbcf;
}
.button-secoundary-hover:hover {
  mix-blend-mode: difference;
  background-color: #24666f;
  color: #ececec;
}

.button-slim-rm-padding {
  padding-left: 2rem;
  padding-right: 2rem;
}

.button-dark {
  color: #3dacbc;
}

.button-form {
  font-family: inherit;
  border: none;
  padding: 0.99rem 1.5rem;
  color: #00f2ff;
  background-color: #009da6;
  box-shadow: 0 0 0.4rem #011820;
}
.button-form:hover {
  color: rgba(1, 24, 32, 0.75);
}

.form_horizontal {
  display: flex;
  flex-wrap: wrap;
}

.form__group {
  position: relative;
  margin-bottom: 1rem;
}
.form_horizontal > .form__group {
  margin-right: 0.7rem;
  margin-bottom: 1rem;
}

.form__input {
  background: transparent;
  border: 0.02rem groove #006166;
  border-radius: 100px;
  color: #00f2ff;
  width: 12rem;
  padding: 0.8rem 1rem;
  font-size: 1.3rem;
  box-shadow: 0 0 0.35rem #011820;
}
.form__input:focus {
  outline: none; /*0.013rem solid color.scale($color-secoundary-light, $lightness: -55% );*/
}
.form__input::placeholder {
  color: transparent;
  text-shadow: none;
}

.form__label {
  position: absolute;
  top: 0.02rem;
  left: 0;
  margin: 0.8rem 1rem;
  font-size: 1.2rem;
  transform: scale(1) translate(0, 0);
  transform-origin: 0% 50%;
  will-change: transform;
  transition: transform 0.5s ease-in-out;
  /*class + ~ */
}
.form__input:focus ~ .form__label, .form__input[placeholder]:not(:placeholder-shown) ~ .form__label {
  transform: scale(0.6) translate(0.5rem, 4rem);
}

.form__radio-item-radio {
  display: inline-block;
  position: relative;
  top: -0.125rem;
}

.form__radio-item-label {
  display: inline-block;
  font-size: 1.1rem;
  padding-top: 0.4rem;
  color: #00a9b3;
  transition: color 0.3s ease-in-out;
  padding-left: 0.4em;
  /*    .form__radio-item-radio:checked ~ & {
          transform: scale(1.1);
          font-weight: bold;
          font-size: 1rem;
      }
  */
}

.form__radio-items-white .form__radio-item-radio {
  display: none;
}
.form__radio-items-white .form__radio-item-label::before {
  display: inline-block;
  position: relative;
  content: "";
  width: 1.2em;
  height: 1.2em;
  border: 0.1em solid #00f2ff;
  border-radius: 10000px;
  top: 0.45em;
  margin-right: 0.5em;
  background-image: radial-gradient(circle at center center, rgba(0, 189, 157, 0.925), 50%, transparent 50%);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 0 0;
  transition: background 0.5s ease-in-out, border 0.4s ease-in-out;
}
.form__radio-items-white .form__radio-item-radio:checked ~ .form__radio-item-label::before {
  background-size: 100% 100%;
}

.container {
  max-width: 75rem;
  margin: 0px auto;
  padding: 0 1rem;
}
.container::after {
  display: block;
  content: "";
  clear: both;
}
@media (max-width: 36em) {
  .container {
    padding: 0 1rem;
  }
}
@media (max-width: 75em) {
  .container {
    padding: 0 1rem;
  }
}
@media (max-width: 62em) {
  .container {
    padding: 0 1rem;
  }
}

.header {
  height: 35rem;
  min-height: calc(13rem + 32vw);
  overflow: hidden;
  position: relative;
  /*1200px oder schmaler */
}
@media (max-width: 75em) {
  .header {
    height: calc(18rem + 32vw);
  }
}

.header__slop {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10vw;
  background-image: linear-gradient(-5.7391704773deg, #fff 49.9%, transparent 50.1%);
  background-size: 100vw 10vw;
  background-repeat: no-repeat;
  background-position: center 100%;
  z-index: 1;
}

/** 992px oder schmaler */
.header__container {
  position: relative;
  max-width: 75rem;
  margin: 0px auto;
  padding: 0 2rem;
}
.header__container::after {
  display: block;
  content: "";
  clear: both;
}
@media (max-width: 36em) {
  .header__container {
    padding: 0 1rem;
  }
}

.header::before,
.header::after {
  content: "";
  position: absolute;
  width: 100vw;
  bottom: -10rem;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  /** 1200px oder schmaler */
}
@media (max-width: 75em) {
  .header::before,
  .header::after {
    bottom: 2rem;
  }
}

.header::before {
  top: 0;
  background-size: cover;
  background-image: url(../assets/images/A_HeaderMountain02.png);
}

.header::after {
  height: 33vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../assets/images/A_HeaderMountain01.png);
}

/** 992px oder schmaler */
@media (max-width: 62em) {
  .header::after {
    bottom: 4rem;
  }
  .header::before {
    bottom: -1rem;
    background-size: cover;
  }
}
@media (max-width: 36em) {
  .header::before {
    background-size: cover;
  }
  .header::after {
    display: none;
  }
}
.header__heading_container {
  clear: both;
}

.header__heading_main {
  padding-top: 15rem;
  font-size: 7rem;
  text-align: center;
  line-height: 85%;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 0.3rem black;
  animation-name: header__animation;
  animation-delay: 0.75s;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
  /** 992px oder schmaler */
}
@media (max-width: 62em) {
  .header__heading_main {
    font-size: 5rem;
    line-height: 90%;
    padding-top: 3.5rem;
  }
}
@media (max-width: 48em) {
  .header__heading_main {
    font-size: 2.4rem;
    line-height: 90%;
    padding-top: 3.5rem;
    animation-name: header_animation_small;
    animation-delay: 0.1s;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
  }
}
@media (max-width: 36em) {
  .header__heading_main {
    font-size: 2.2rem;
    line-height: 90%;
    padding-top: 3.5rem;
  }
}

/*header animation */
@keyframes header__animation {
  0% {
    font-weight: 400;
    opacity: 0;
  }
  50% {
    font-weight: 700;
    color: rgb(204, 200, 200);
  }
  100% {
    font-weight: 900;
    color: #fff;
  }
}
.header__heading_sub {
  margin-top: 1rem;
  font-size: 1.75rem;
  text-align: center;
  letter-spacing: 1rem;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 0.1rem rgb(31, 11, 11);
  z-index: 1;
  position: relative;
}

@media (max-width: 48em) {
  .header__heading_sub {
    font-size: 1rem;
    letter-spacing: 0.5rem;
    text-shadow: 2px 2px black;
  }
}
@keyframes header_animation_small {
  0% {
    font-weight: 200;
    opacity: 0;
  }
  50% {
    font-weight: 600;
    color: rgba(230, 236, 168, 0.8470588235);
    opacity: 10%;
  }
  80% {
    font-weight: 700;
    color: #b1cce2;
    opacity: 80%;
  }
  100% {
    font-weight: 900;
    color: #c2cad3;
    opacity: 100%;
  }
}
.navigation__list_items {
  list-style-type: none;
  display: block;
  float: left;
}
@media (max-width: 62em) {
  .navigation__list_items--mobile-hidden {
    display: none;
  }
}

.navigation__list_items_link {
  cursor: pointer;
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 0.25rem 0.25rem 0.25rem;
  margin-left: 2rem;
  margin-right: 2rem;
  margin-top: 2rem;
  display: block;
  text-shadow: 0 0 0.4rem black;
  letter-spacing: 0.1rem;
}
.navigation__list_items_link:hover {
  border-bottom: 0.21rem solid rgba(36, 255, 218, 0.925);
}

.navigation__list_items_logo {
  width: 4rem;
  height: 4rem;
}

.navigation__list_items_logo {
  fill: currentColor;
}

.navigation__list_items_link-logo {
  margin-top: 1rem;
  margin-left: 0;
  padding-left: 0;
}
.navigation__list_items_link-logo:hover {
  border-bottom: none;
}

.navigation_list_items--menu {
  float: right;
  font-size: 2rem;
}

.navigation_list_items--menu .navigation__list_items_link {
  margin-top: 1.5rem;
  margin-right: 0;
  padding-right: 0;
}
.navigation_list_items--menu .navigation__list_items_link:hover {
  border-bottom: none;
}

.footer {
  display: flex;
  background-color: #084f4f;
  font-family: Helvetica, sans-serif;
  align-items: center;
  flex-direction: column;
}

.footer__container {
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-bottom: 0.2rem solid rgba(135, 182, 151, 0.5764705882);
}
@media (max-width: 48em) {
  .footer__container {
    flex-direction: column;
    padding: 0rem 1rem;
  }
}
@media (max-width: 36em) {
  .footer__container {
    flex-direction: column;
    padding: 0rem 1rem;
  }
}

.footer__container-text {
  flex: 0 0 auto;
}
@media (max-width: 48em) {
  .footer__container-text {
    order: 2;
  }
}

.footer__logo-column {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 7rem;
}
@media (max-width: 75em) {
  .footer__logo-column {
    margin-left: 6rem;
  }
}
@media (max-width: 48em) {
  .footer__logo-column {
    order: 1;
    justify-content: start;
    margin-right: 0rem;
  }
}
@media (max-width: 36em) {
  .footer__logo-column {
    order: 1;
    justify-content: start;
    margin-left: 0rem;
  }
}

.footer__container-heading {
  color: #53a6a2;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1em;
  text-transform: uppercase;
  max-width: 30rem;
  text-shadow: 0 0 0.12rem #163653;
}
@media (max-width: 75em) {
  .footer__container-heading {
    font-size: 3rem;
  }
}
@media (max-width: 62em) {
  .footer__container-heading {
    font-size: 3rem;
  }
}

.footer__container-paragraph {
  color: #53a6a2;
  padding: 1rem 0;
  font-size: 0.7em;
}

.footer__container-contact {
  position: relative;
  margin-bottom: 0.5rem;
}

.footer__container-contact-link {
  position: absolute;
  white-space: nowrap;
  z-index: 1;
  background-color: #1f8051;
  align-items: center;
  padding: 1.5rem 2rem;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  color: #fff;
  text-decoration: none;
  left: 2rem;
  top: 0.4rem;
  width: 18rem;
  text-align: center;
  overflow: hidden;
}
.footer__container-contact-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  bottom: 0;
  background-color: #1fbf72;
  z-index: -1;
  transition: transform 0.5s ease-in-out;
}
.footer__container-contact-link:hover::after {
  transform: translate(100%, 0);
}

.footer__container-contact-logo {
  position: relative;
  z-index: 3;
  height: 5rem;
  width: 5rem;
  background-color: #1fb36b;
  border-radius: 1000px;
  text-align: center;
  font-size: 1.6rem;
  color: #084f4f;
}
.footer__container-contact-logo-mail {
  line-height: 2.9em;
}
.footer__container-contact-logo-phone {
  line-height: 3.4em;
}

.footer__logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #42b09e;
  font-size: 10rem;
  background-image: linear-gradient(120deg, rgba(36, 179, 154, 0.925) 0%, #011820 100%);
  padding: 0.1em;
  box-shadow: 0 0 0.03em #546d5c;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 75em) {
  .footer__logo-container {
    font-size: 9rem;
  }
}
@media (max-width: 62em) {
  .footer__logo-container {
    font-size: 7rem;
  }
}
@media (max-width: 48em) {
  .footer__logo-container {
    font-size: 4rem;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 36em) {
  .footer__logo-container {
    font-size: 3rem;
    justify-content: center;
    align-items: center;
  }
}

.footer__logo-single-border {
  display: flex;
  justify-content: center;
  padding: 0.2em;
  border: 0.03em solid #4ca161;
  border-radius: 50%;
}

.footer-svg-logo {
  color: #18a49b;
  transition: color 0.5s ease-in-out;
}
.footer-svg-logo:hover {
  color: #4ca161;
}

.footer__footer-liste {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__footer-links {
  display: block;
  color: rgba(145, 202, 164, 0.5764705882);
  padding: 0.5rem 0.9rem;
  text-decoration: none;
}
.footer__footer-links:hover {
  color: rgba(178, 231, 196, 0.7803921569);
}

.sidenav {
  font-family: Helvetica;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 600;
  /*    pointer-events: none;
      .sidenav__opened:checked ~ &  {
          pointer-events: all;
      }
      */
  width: 1px;
  height: 1px;
  overflow: hidden;
  transition: width 0s linear 1s, height 0s linear 1s;
}
.sidenav__opened:checked ~ .sidenav {
  transition: width 0s linear 0s, height 0s linear 0s;
  width: 100%;
  height: 100%;
}

.sidenav__background {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(19, 109, 127, 0.3764705882);
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
@supports (backdrop-filter: blur(1.5rem)) {
  .sidenav__background {
    backdrop-filter: blur(1.5rem);
    background-color: rgba(38, 150, 173, 0.1411764706);
  }
}
.sidenav__opened:checked ~ .sidenav .sidenav__background {
  opacity: 1;
}

.sidenav__container {
  position: absolute;
  right: 0rem;
  top: 0rem;
  bottom: 0;
  width: 20rem;
  max-width: 100vw;
  border-radius: 0.5rem 0rem 0rem 0.5rem;
  background-color: #011820;
  box-shadow: 0 0 0.7rem #084f5e;
  transform: translate(100%, 0);
  will-change: transform;
  transition: transform 1s ease-in-out;
}
.sidenav__opened:checked ~ .sidenav .sidenav__container {
  transform: translate(0, 0);
}

.sidenav__close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  display: block;
  cursor: pointer;
  color: transparent;
  z-index: 600;
  width: 1.5rem;
  height: 1.5rem;
  text-shadow: 0 0 1rem #15d8ff;
  border-radius: 50rem;
  background-image: linear-gradient(-45deg, transparent 40%, #00f2ff 45%, #00f2ff 55%, transparent 55%), linear-gradient(45deg, transparent 40%, #00f2ff 45%, #00f2ff 55%, transparent 55%);
}

.sidenav__nav {
  margin-top: 6rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  list-style-type: none;
}

.sidenav__nav-link {
  font-weight: 500;
  font-size: 1.6rem;
  display: block;
  text-decoration: none;
  padding: 0.5rem 0.5rem;
  color: #00b6bf;
  text-shadow: 0 0 0.1rem #04181d;
  transition: color 0.2s ease-in-out, font-weight 0.2s ease-in-out;
  border-bottom: 0.001rem solid rgba(82, 136, 147, 0.4039215686);
}
.sidenav__nav-link:hover {
  font-weight: 600;
  text-shadow: 0 0 0.3rem #000000;
  color: #009da6;
}

.sidenav__opened {
  display: none;
}
.sidenav__opened::after {
  content: "test branch master";
}

.motivation {
  margin-top: 2rem;
}
.motivation__text {
  font-family: Helvetica;
  color: #3d7a77;
  margin-top: 0.5rem;
  font-size: 1rem;
}
.motivation__text-heading {
  margin-top: 4rem;
  color: #3d7a77;
  font-weight: 600;
}
@media (max-width: 48em) {
  .motivation__text-heading {
    margin-top: 0.5rem;
  }
}
.motivation__text-heading::before {
  content: "";
  width: 4rem;
  height: 0.3rem;
  background-color: #00f2ff;
  display: block;
  margin-bottom: 0.5rem;
}
@media (max-width: 48em) {
  .motivation__text-heading::before {
    width: 6rem;
    height: 0.2rem;
    background-color: #00f2ff;
  }
}

.motivation__column-text {
  float: left;
  width: 33%;
  padding-right: 4.5rem;
  padding-top: 4rem;
}
@media (max-width: 62em) {
  .motivation__column-text {
    padding-right: 0.5rem;
    padding-top: 0;
  }
}
@media (max-width: 48em) {
  .motivation__column-text {
    width: 80%;
    float: none;
    padding-bottom: 3rem;
  }
}
@media (max-width: 36em) {
  .motivation__column-text {
    margin: 0 auto;
    float: none;
    width: 100%;
    padding-bottom: 3rem;
  }
}

.motivation__column-images {
  float: left;
  width: 66%;
  height: clamp(10rem, 35vw + 10rem, 36rem);
  position: relative;
}
@media (max-width: 62em) {
  .motivation__column-images {
    width: 67%;
  }
}
@media (max-width: 48em) {
  .motivation__column-images {
    margin: 0 auto;
    width: 80%;
    float: none;
    height: clamp(10rem, 37vw + 10rem, 36rem);
  }
}
@media (max-width: 36em) {
  .motivation__column-images {
    width: 95%;
    height: clamp(10rem, 41vw + 10rem, 36rem);
    float: none;
  }
}

/**
*@param $top: Position from top (in rem)
*@param $left: Position from left  (in % ) 
*/
.motivation__image {
  position: absolute;
  width: 50%;
  box-shadow: 0 0 1rem rgb(58, 56, 56);
  box-sizing: content-box;
  filter: grayscale(50%);
  transition: filter ease-in-out 0.2s, transform ease-in-out 0.3s;
  transform: scale(0.9);
}
.motivation__image--second {
  right: 0rem;
  width: 75%;
  z-index: 1;
  top: 0rem;
  left: 25%;
}
.motivation__image--second:hover {
  top: -0.66rem;
  left: calc(25% - 0.66rem);
}
.motivation__image--third {
  width: 33%;
  z-index: 2;
  top: 10rem;
  left: 10%;
}
.motivation__image--third:hover {
  top: 9.34rem;
  left: calc(10% - 0.66rem);
}
.motivation__image--first {
  width: 42%;
  z-index: 3;
  top: 5rem;
  left: 40%;
}
.motivation__image--first:hover {
  top: 4.34rem;
  left: calc(40% - 0.66rem);
}
.motivation__image:hover {
  transform: scale(1);
  filter: grayscale(0%);
  border: 0.33rem solid rgba(36, 255, 218, 0.925);
  padding: 0.33rem;
  z-index: 10;
}

.tours {
  background: #031627;
  position: relative;
  padding-bottom: 7rem;
}

.tours::after, .tours::before {
  bottom: 0;
  left: 0;
  right: 0;
  content: "Muster UI";
  position: absolute;
  text-transform: uppercase;
  text-align: center;
  /* Set the font size to be the minimum of 1/9the  of the viewport width or 10rem */
  font-size: min(11.1111111111vw, 10rem);
  font-weight: bold;
  color: #031627;
  text-shadow: 0 0 0.7px #fff;
  /* Prevent the text from wrapping */
  white-space: nowrap;
  /* hide any overflow */
  overflow: hidden;
}

.tours::before {
  /* Apply text stroke styles if supported by the browser  */
}
@supports (-webkit-text-stroke: 0.3px #1affe1) or (text-stroke: 0.3px #1affe1) {
  .tours::before {
    /* Apply text stroke to .tours::before pseudo-element */
    -webkit-text-stroke: 0.3px #1affe1;
    text-stroke: 0.3px #1affe1;
    text-shadow: none;
  }
}

.tours::after {
  /* Apply text stroke styles if supported by the browser  */
}
@supports (-webkit-text-stroke: 0.3px transparent) or (text-stroke: 0.3px transparent) {
  .tours::after {
    /* Apply text stroke to .tours::before pseudo-element */
    -webkit-text-stroke: 0.3px transparent;
    text-stroke: 0.3px transparent;
    text-shadow: none;
  }
}

.tours__container {
  position: relative;
  z-index: 10;
  /* padding variabl included from mixins */
  max-width: 75rem;
  margin: 0px auto;
  padding: 0 2rem;
}
.tours__container::after {
  display: block;
  content: "";
  clear: both;
}
@media (max-width: 36em) {
  .tours__container {
    padding: 0 1rem;
  }
}
@media (max-width: 62em) {
  .tours__container {
    padding: 0;
  }
}
@media (max-width: 36em) {
  .tours__container {
    padding: 0;
  }
}

.tours-heading {
  color: #fff;
  text-align: center;
  padding-top: 2rem;
  font-family: "../../../fonts/Cinzel";
  font-size: min(33.3333333333vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.2rem;
  background: linear-gradient(to right, #16ffff, #1a0947);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 62em) {
  .tours-heading {
    font-size: 2rem;
    font-weight: 600;
  }
}
@media (max-width: 48em) {
  .tours-heading {
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(to right, #690c69, #16ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.tours__card-icon {
  width: 3rem;
  display: block;
  color: #1affe1;
}

.tours__card-icon-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* Set the initial transformation */
  transform: translate(0, 0);
  transition: transform 0.3s ease-in-out;
  /* Apply the following styles when hovering over the parent element with the class .tours__card */
}
.tours__card:hover .tours__card-icon-container {
  /* Move the element horizontally using a calculated value */
  transform: translate(calc(50% - 1.5rem), 0);
}

.tours__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.tours__card {
  /* 0 0 mean whidth and heigh are not allowed to change */
  flex: 0 0 14.2rem;
  width: 20%;
  position: relative;
  height: 20rem;
  margin-top: 2rem;
  overflow: hidden;
  border-radius: 0.4rem;
  box-shadow: 0 0 0.7rem #4effe7 transparent;
  transform: scale(1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, z-index 0.3s linear;
  z-index: 0;
}
.tours__card:hover {
  transform: scale(1.1);
  z-index: 9999;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, z-index 0s linear;
  box-shadow: 0 0 0.25rem #1affe1;
}

.tours__cards-icon-background {
  background-color: #3ca7b8;
  /* Position the Element */
  position: absolute;
  top: 0;
  left: 0;
  height: 3rem;
  width: 100%;
  /* Initial transformation to move the element off the screeen */
  transform: translate(calc(-100% + 3rem), 0);
  transition: transform 0.3s ease-in-out;
}
.tours__card:hover .tours__cards-icon-background {
  /* Move the element back to its Original position */
  transform: translate(0, 0);
}

.tours__card-img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(80%);
}

.tours__card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  padding: 0.7rem 0.5rem 0 0.5rem;
  background-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.25) 20%);
  transition: transform 0.3s ease-in-out;
  transform: translate(0, calc(100% - 4.8rem));
}
.tours__card:hover .tours__card-content {
  transform: translate(0, 0);
}

.tours__card-heading {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-family: "../../../fonts/Cinzel";
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.tours__card-location {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  display: flex;
}

.tours__card-location-icon {
  font-size: 0.7rem;
  color: #1fff93;
}

.tours__card-location-text {
  font-family: Helvetica;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 2rem;
  padding-left: 0.5rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.tours__card-description {
  font-size: 0.6rem;
  font-family: Helvetica;
  font-weight: 100;
  background-image: linear-gradient(90deg, #3ca7b8 60%, transparent 60%);
  background-position-y: top;
  background-repeat: no-repeat;
  background-size: 100% 0.1rem;
  padding: 0.6rem 0rem;
}

.story {
  position: relative;
  overflow: hidden;
  /*padding: 3rem 0rem;*/
}

.story__video {
  z-index: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  background-color: #011820;
}
@supports (object-fit: cover) and (object-position: center) {
  .story__video {
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

.story__video-colorize {
  position: absolute;
  background-color: rgba(61, 122, 119, 0.15);
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 48em) {
  .story__video-colorize {
    position: absolute;
    background-color: transparent;
  }
}

.story__heading {
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-family: "../../../fonts/Cinzel";
  font-style: normal;
  text-transform: capitalize;
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.21rem;
  text-align: center;
  text-shadow: 0 0 0.1rem #000;
}
@media (max-width: 48em) {
  .story__heading {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 0 2rem 0;
  }
}

.story__container {
  max-width: 75rem;
  margin: 0px auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}
.story__container::after {
  display: block;
  content: "";
  clear: both;
}
@media (max-width: 36em) {
  .story__container {
    padding: 0 1rem;
  }
}

.story__description {
  margin: 0 auto;
  color: #fff;
  font-family: helvetica;
  font-size: 1rem;
  font-weight: 100;
  text-align: justify;
  column-count: 2;
  column-rule: 1px solid #00f2ff;
  column-gap: 4rem;
  padding-bottom: 3rem;
}
@media (max-width: 48em) {
  .story__description {
    column-count: 1;
    text-align: left;
    font-size: 0.6;
    padding: 0;
  }
}

.story__book {
  text-align: center;
  padding: 2rem 0;
}

.offers {
  min-height: 4rem;
}

.offers__container {
  display: flex;
  flex-wrap: wrap;
  flex: 1 0 0px;
  margin-left: -1rem;
  margin-right: -1rem;
  padding-top: 4rem;
  padding-bottom: 2rem;
  justify-content: center;
}
@media (max-width: 48em) {
  .offers__container {
    padding-top: 1rem;
  }
}

.offers__card-container {
  width: calc(33.3333333333% - 2rem);
}
@media (max-width: 75em) {
  .offers__card-container {
    margin-top: 0.5rem;
    width: calc(50% - 2rem);
  }
}
@media (max-width: 48em) {
  .offers__card-container {
    width: 100%;
    margin-top: 0.5rem;
  }
}

.offers__card {
  box-shadow: 0.5rem 0.5rem 1.9rem #67578b;
  /*  */
  margin: 0 1rem;
  border-top: 0.0625rem solid #00f2ff;
  border-left: 0.0625rem solid #00f2ff;
  border-right: 0.0625rem solid #00f2ff;
  position: relative;
}

.offers__card-primary {
  padding: 0 0 2rem 0;
}

.offers__card-primary::after {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: -0.0625rem;
  right: -0.0625rem;
  height: 0.8rem;
  background-color: #3ca7b8;
  border-left: 0.0625rem solid #3abbcf;
  border-right: 0.0625rem solid #3abbcf;
}

.offers__image-container {
  position: relative;
  margin-top: -0.0625rem;
  margin-left: -0.0625rem;
  margin-right: -0.0625rem;
  background-color: #3d7a77;
}

.offers__image-container::before {
  content: "";
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  position: absolute;
  border-right: 0.0625rem solid #3abbcf;
  border-left: 0.0625rem solid #3abbcf;
  border-top: 0.0625rem solid #3abbcf;
}

.offers__image-container::after {
  content: "";
  right: 0;
  left: 0;
  bottom: 0;
  height: 4rem;
  position: absolute;
  background-image: linear-gradient(-5.7391704773deg, white 49.8%, transparent 50.3%);
  background-repeat: no-repeat;
  background-position: 50% 100%;
}
@media (max-width: 62em) {
  .offers__image-container::after {
    height: 5rem;
  }
}

.offers__image {
  width: 100%;
  opacity: 70%;
  mix-blend-mode: hard-light;
}

.offers__content {
  padding: 0 1.5rem 0 1.5rem;
}

.offers__content-heading {
  font-size: 1rem;
  font-family: "helvatica";
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.offers__content-heading-description {
  font-size: 0.9rem;
  padding: 0.4rem 0 0.4rem 0;
  font-family: Arial, Helvetica;
  color: #3abbcf;
}

.offers__content-info {
  display: flex;
  margin-top: 1rem;
  border-top: 1px solid #3ca7b8;
  border-bottom: 1px solid #3ca7b8;
  background-image: linear-gradient(90deg, transparent calc(50% - 0.03125rem), #3abbcf calc(50% - 0.03125rem), #3abbcf calc( 50% - 0.03125rem), transparent calc(50% + 0.03125rem));
  background-repeat: no-repeat;
  background-size: 100% 75%;
  background-position: center center;
}

.offers__content-info-level, .offers__content-info-duration {
  font-family: Arial, Helvetica;
  flex: 1 1 50%;
  font-size: 0.8rem;
  color: #2d7f8b;
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.offers__content-info-duration-text {
  padding-left: 0.3rem;
}

.offers__content-price-container {
  padding-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  font-family: Arial, Helvetica;
  color: #3d7a77;
}

.offers__content-price {
  display: block;
  color: #2d7f8b;
  font-size: 2rem;
  line-height: 2.3rem;
  letter-spacing: 0.1rem;
}

.offers__card-hover {
  top: -0.0625rem;
  left: -0.0625rem;
  right: -0.0625rem;
  bottom: -0.0625rem;
  position: absolute;
  background-color: #011820;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  background-image: linear-gradient(90deg, transparent calc(50% - 0.03125rem), #3abbcf calc(50% - 0.03125rem), #3abbcf calc( 50% - 0.03125rem), transparent calc(50% + 0.03125rem)), linear-gradient(45deg, #011820 0%, #045d7d 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: center top, center center;
  background-size: 100% calc(50% - 4rem), 100% 100%;
  opacity: 0;
  transition: 1s ease-in-out;
}
.offers__card:hover .offers__card-hover {
  opacity: 1;
}

.offers__card-container--flip {
  perspective: 50rem;
}
.offers__card-container--flip .offers__card {
  transition: transform 1s ease-in-out;
  transform-style: preserve-3d;
}
.offers__card-container--flip:hover .offers__card {
  transform: rotateY(180deg);
}
.offers__card-container--flip .offers__card-primary {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: rotateY(0deg);
}
.offers__card-container--flip .offers__card-hover {
  transform: rotateY(180deg);
  opacity: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.offers__card-container-3d-hover, .offers__card-container-3d {
  perspective: 800px;
}
.offers__card-container-3d-hover .offers__card, .offers__card-container-3d .offers__card {
  transition: transform 0.5s ease-in-out;
  transform: rotateX(calc((var(--mouse-y, 0.5) - 0.5) * -20deg)) rotateY(calc((var(--mouse-x, 0.5) - 0.5) * 20deg));
}
.offers__card-container-3d-hover:hover .offers__card, .offers__card-container-3d:hover .offers__card {
  transition: transform 0.1s linear;
}

.offers__card-container-3d {
  /* Add the "mouse-position-css" class to the elements you want to apply this transformation */
}
.offers__card-container-3d .offers__card-hover {
  display: none;
}

.offers__card-container-3d-hover .offers__card-primary {
  transform-style: preserve-3d;
  filter: blur(0rem);
  transition: filter 0.9s ease-in-out;
}
.offers__card-container-3d-hover .offers__card {
  transform-style: preserve-3d;
}
.offers__card-container-3d-hover .offers__card-hover {
  background-color: transparent;
  background-image: linear-gradient(90deg, transparent calc(50% - 0.03125rem), #3abbcf calc(50% - 0.03125rem), #3abbcf calc( 50% - 0.03125rem), transparent calc(50% + 0.03125rem)), linear-gradient(45deg, rgba(1, 24, 32, 0.1) 0%, rgba(4, 93, 125, 0.1) 100%);
  transform: translateX(0.1rem);
}
.offers__card-container-3d-hover:hover .offers__card-primary {
  filter: blur(0.5rem);
}

.gallery {
  font-family: Helvetica, sans-serif;
  padding-bottom: 3rem;
}

.gallery__heading {
  color: #fff;
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-family: "../../../fonts/Cinzel";
  font-size: min(33.3333333333vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.2rem;
  background: linear-gradient(to right, #ac9be2, #1a0947);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 62em) {
  .gallery__heading {
    font-size: 2rem;
    font-weight: 600;
  }
}
@media (max-width: 48em) {
  .gallery__heading {
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(to right, #690c69, #16ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.gallery__container {
  max-width: 75rem;
  margin: 0px auto;
  padding: 0 2rem;
}
.gallery__container::after {
  display: block;
  content: "";
  clear: both;
}
@media (max-width: 36em) {
  .gallery__container {
    padding: 0 1rem;
  }
}

.gallery__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 14.2rem 14.2rem;
}
@media (max-width: 62em) {
  .gallery__list {
    grid-template-rows: 11.36rem 11.36rem;
  }
}
@media (max-width: 48em) {
  .gallery__list {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 14.2rem 14.2rem 14.2rem 14.2rem 14.2rem;
  }
}

.gallery__list-items {
  position: relative;
  display: block;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0);
  filter: sepia(0.25) contrast(1.5) brightness(0.9) hue-rotate(-15deg);
  transition: filter 0.5s, ease-in-out z-index 0.5s ease-in-out, opacity 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}
.gallery__list-items::before {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  background: radial-gradient(circle closest-corner, rgba(128, 78, 15, 0.5) 0, rgba(0, 0, 0, 0.65) 100%);
  content: "";
  mix-blend-mode: screen;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
.gallery__list-items:hover {
  box-shadow: 0 0 1rem rgb(0, 0, 0);
  transition: filter 0.5s ease-in-out, z-index 0s linear, transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
  filter: sepia(1) contrast(1) brightness(1) hue-rotate(1);
  transform: scale(1.1);
  z-index: 1000;
}
.gallery__list-items:hover::before {
  opacity: 0;
}
.gallery__list-items--first {
  grid-column-start: 1;
  grid-column-end: span 2;
  grid-row-start: 1;
  grid-row-end: span 2;
}
.gallery__list-items--last {
  grid-column-start: 4;
  grid-column-end: 6;
  grid-row-start: 1;
  grid-row-end: 3;
}
@media (max-width: 48em) {
  .gallery__list-items--last {
    grid-column-start: 1;
    grid-column-end: span 2;
  }
}

.gallery__list-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: scale 0.5s ease-in-out;
}

.gallery__list-cb-toggle {
  animation: Gallery__list-cb--toggle-animation 2s ease-in-out 0s 1;
}
.gallery_cb-toggle:not(:checked) ~ .gallery__list-cb-toggle {
  display: none;
}

@keyframes Gallery__list-cb--toggle-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.gallery_cb-toggle {
  display: none;
}

.gallery__cb-button-container {
  padding-top: 2rem;
  text-align: center;
}
.gallery_cb-toggle:checked ~ .gallery__cb-button-container {
  display: none;
}

.gallery__list-bg-image {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: scale 0.5s ease-in-out;
}

.about {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #011820;
  font-family: Helvetica;
}

.about__slideshow {
  position: relative;
}

.about__image-slideshow {
  position: absolute;
  top: 0;
  left: 0;
}

.about__image-slideshow-3 {
  animation: about__image-slideshow-3;
  animation-timing-function: ease-in-out;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}

@keyframes about__image-slideshow-3 {
  0% {
    opacity: 1;
  }
  22.5% {
    opacity: 1;
  }
  27.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.about__image-slideshow-1 {
  animation: about__image-slideshow-1;
  animation-timing-function: ease-in-out;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}

@keyframes about__image-slideshow-1 {
  0% {
    opacity: 1;
  }
  40.5% {
    opacity: 1;
  }
  70.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.about__image-slideshow-2 {
  animation: about__image-slideshow-2;
  animation-timing-function: ease-in-out;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}

@keyframes about__image-slideshow-2 {
  0% {
    opacity: 1;
  }
  80.5% {
    opacity: 1;
  }
  98.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.about__image {
  border-radius: 15rem;
  width: 30rem;
  height: 30rem;
  overflow: hidden;
  float: left;
  object-fit: cover;
  shape-outside: circle(50%);
  margin-right: 2rem;
  /** 992px oder schmaler */
  /** 768px oder schmaler */
  /** 576px oder schmaler */
}
@media (max-width: 75em) {
  .about__image {
    width: 24rem;
    height: 24rem;
  }
}
@media (max-width: 62em) {
  .about__image {
    width: 21rem;
    height: 21rem;
  }
}
@media (max-width: 48em) {
  .about__image {
    width: 12rem;
    height: 12rem;
  }
}
@media (max-width: 36em) {
  .about__image {
    width: 9rem;
    height: 9rem;
  }
}

.about__heading {
  margin-top: 1.5rem;
  padding-bottom: 1.5rem;
  color: #53a6a2;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
}
@media (max-width: 75em) {
  .about__heading {
    margin-top: 1rem;
    padding-bottom: 1rem;
    font-size: 2rem;
  }
}
@media (max-width: 62em) {
  .about__heading {
    margin-top: 0.7rem;
    padding-bottom: 0.7rem;
    font-size: 1.8rem;
  }
}

.about__text {
  padding-top: 2rem;
  color: #346865;
}
.about__text::before {
  display: inline-block;
  content: "";
  height: 0.25rem;
  width: 6rem;
  background-color: #5cada9;
  margin-left: 1rem;
}
@media (max-width: 75em) {
  .about__text {
    padding-top: 0.5rem;
  }
}
@media (max-width: 62em) {
  .about__text {
    padding-top: 1rem;
  }
}
@media (max-width: 48em) {
  .about__text::before {
    margin-left: 0.1rem;
    width: 4rem;
    background-color: #59f7ff;
  }
}

.about__description {
  font-weight: 200;
  margin-bottom: 1rem;
}

.about__quote::before {
  content: '"';
}
.about__quote::after {
  content: '"';
}

.booking__model {
  font-family: Helvetica;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(1, 24, 32, 0.92);
  color: aqua;
}
.booking__model:target {
  display: flex;
  justify-content: center;
  align-items: center;
}
@supports (backdrop-filter: blur(4rem)) {
  .booking__model {
    background-color: rgba(8, 74, 118, 0.2);
    backdrop-filter: blur(4rem);
  }
}

.booking__model-content {
  position: relative;
  background-color: rgb(52, 74, 74);
  width: 50rem;
  height: 25rem;
  max-width: 100vw;
  max-height: 100vh;
  overflow: auto;
  padding-left: calc(min(100vw, 50rem) * 0.48);
  background-image: linear-gradient(95.7391704773deg, transparent 45%, rgba(1, 24, 32, 0.85) 45.1%), linear-gradient(90deg, transparent 33%, rgba(16, 121, 154, 0.682) 100%), url(../../../assets/images/booking__model.jpg);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: center center, center center, center 30%;
  background-size: auto, auto, cover;
  box-shadow: 0 0 0.24rem #1affe0;
}
@media (max-width: 48em) {
  .booking__model-content {
    background-image: none;
    padding: 0.5rem 0.6rem;
    background-color: #011820;
  }
}

.booking__model-content {
  animation-name: booking__model-content-anim-fed-right-to-left;
  animation-timing-function: ease-in-out;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: both;
  animation-iteration-count: 1;
}

@keyframes booking__model-content-anim-fed-right-to-left {
  0% {
    transform: translate(calc(-50vh - 50rem), 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
.booking__model-close {
  display: block;
  position: absolute;
  right: 1rem;
  top: 1rem;
  border-radius: 1000px;
  height: 1rem;
  width: 1rem;
  color: transparent;
  background-image: linear-gradient(-45deg, transparent 40%, #00f2ff 45%, #00f2ff 55%, transparent 55%), linear-gradient(45deg, transparent 40%, #00f2ff 45%, #00f2ff 55%, transparent 55%);
}
.booking__model-close:hover {
  opacity: 0.6;
}

.booking__model-heading {
  padding-top: 3.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.66rem;
}
@media (max-width: 48em) {
  .booking__model-heading {
    padding-top: 1.5rem;
    font-size: 1.2rem;
    text-shadow: 0 0 0.2rem #000;
  }
}

.booking__model-form-submit-container {
  text-align: right;
  margin-right: 1.1rem;
  margin-top: 3rem;
}
@media (max-width: 48em) {
  .booking__model-form-submit-container {
    margin-top: 0;
  }
}

.booking__model-form-heading {
  font-size: 0.8rem;
  font-weight: 200;
  margin-bottom: 1rem;
  padding-right: 0.5rem;
}

/*# sourceMappingURL=main.css.map */
