:root {
    --content_col_1: black;
    --content_col_2: #0f497e;
    --content_col_3: #231F20; 
    --content_col_4: white;
    --content_col_5: rgb(250, 250, 250);
    --content_col_6: #2acba6;
}

* {
    font-family: 'Encode Sans Semi Condensed', sans-serif;
    font-style: normal;    
    font-weight: 400;
    scroll-behavior: smooth;
}

#wrapper {
    width: 100%;
    max-width: 100%;
    position: relative; 
}

body { 
    font-size: 1.2rem;
    margin: 0;
    overflow-x: hidden;
}

p, pre, li {
    line-height: 1.8rem;
} 

a {
    color: var(--content_col_4);
}

body::-webkit-scrollbar {
    display: none;
}

h1, h2, h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--content_col_2);
}

h1 {
    /*font-family: "Pacifico";*/
    font-size: 3rem;
    margin: 2rem auto 4rem;
    text-align: center;
}

h2 {
    font-size: 2.2rem;
}


h3 {
    margin: 0;
}

.no_display {
    display: none !important;
}

.privacy_color {
    color: var(--content_col_2)
}

.privacy_color li {
    color: var(--content_col_1)
}

/*++++++++++++HEADER++++++++++++++*/
/* #region */
#header {
    display: flex;
    justify-content: space-between;
    top: 0;
    width: 100%;
    height: 4rem;
    position: fixed;    
    z-index: 100;
    background-color: transparent;
    transition: background-color 0.4s ease-in-out;
}

.header_scrolled {
    background-color: var(--content_col_4) !important;
}

.header_scrolled a {
    font-weight: 500;
    color: var(--content_col_2);
}

#menu {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

#menu2 {
    flex-direction: column;
    position: absolute;
    padding: 0;
    margin-top: 1.3rem;
    margin-left: -9.8rem;
    list-style-type: none;
    /* background: var(--content_col_4); */
    transform-origin: 0% 0%;
    left: 0;    
    transform: translate(calc(100% + .3rem), 0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), background-color 0.4s ease-in-out;
}

#burger_menutoggle {
    display: none;
}

.header_logo {
    margin-left: 2.5rem;
}

.header_logo img {
    position: relative;
    height: 100%;
}

.header-link {
    display: inline-block;
    /*width: 10rem;*/
    margin: 0 2rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    transform-origin: center;    
    text-align: center;
}

.header-link:hover {
    transform: scale(1.1);
}

#burger_input {
    display: none;
}

.burger_stroke {
    display: none;
    background-color: var(--content_col_4);
}

.burger_scrolled {
    background-color: var(--content_col_2) !important;
}

/* #endregion */

/*********** Cookie Banner ***********/
/* #region */

#mid_window_cookie_banner {
    position: fixed;
    display: flex;
    z-index: 40;
    transform: translateX(-100%);
    bottom: 4%;
    width: 100%;
    justify-content: center;
    opacity: 0;
}

.cookie_container {
    border-radius: 0;
    max-height: 50vh;
    width: 70vw;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--content_col_4);
}

.cookie_banner_head {
    position: relative;
    display: flex;
    height: 3.5rem;
    padding: 0 1rem;
    
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.cookie_banner_body {
    position: relative;
    padding-top: .5rem;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    flex: 1 1 auto;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 20px 1rem 1rem;
}

.cookie_text_container {
    width: 100%;
    padding-bottom: .5rem;
    border-bottom: 1px solid #eee;
}

.cookie_text_container p {
    font-weight: 400;
}

.cookie_checkbox_container {
    display: flex;
    margin: 1rem 0;
    padding-bottom: 1rem;
    width: 100%;
    border-bottom: 1px solid #eee;
    justify-content: space-evenly;
}

.cookie_link_container {
    width: 100%;
    padding-top: 1rem;
}

.cookie_link {
    text-decoration: underline;
    color: var(--content_col_2);
    cursor:pointer;
}

.cookie_checkbox {
    width: 26%;
}

.cookie_checkbox label {
    font-weight: 400;
}

.cookie_button_container {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}

.cookie_button { 
    border:none; 
    width: 26%;
    padding:10px 0px; 
    font-size: 1rem;
    font-weight: 700;
    background-color: var(--content_col_2);
    color: var(--content_col_5);
    cursor:pointer;
    border: black solid 2px;
    border-radius: 4px;
}

.accept_button {
    background-color: var(--content_col_4);
}

.cookie_button:hover {
    background: #d8d8d8;
}

/* #endregion */

/*++++++++++++BODY++++++++++++++*/

/* #region */

#black_overlay {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: black;
    opacity: .5;
    z-index: 5;
    overflow-y: auto;
    overscroll-behavior-y: contain;
}

#calendar_container {
    position: fixed;
    display: flex;
    width: 100%;
    height: 100vh;
    z-index: 6;
    transform: translateX(-100%);
    opacity: 0;
    justify-content: center;
    align-items: center;
    transition: all 0.6s ease-out;
}

.calendar_container_show {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

#calender_time_goback {
    display: none;
}

.calendar {    
    width: 60rem;
    height: 44rem;
    border-radius: 20px;
    background: var(--content_col_4);    
}

.calendar_header {
    display: flex;;
    width: 100%;
}

.calendar_titel {
    width: 93%;
}

.calendar_close {
    position: relative;
    width: 7%;
    right: 0;
    text-align: center;
    cursor: pointer;
}

.calendar_close p {
    color: var(--content_col_2);
    margin: 1rem 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.calendar_close:hover {
    scale: 1.1;
}

#calander_overlay {
    position: absolute;
    display: flex;
    top: 0;
    width: 100%;
    height: 89%;
    z-index: 4;
    background: var(--content_col_4);
    justify-content: center;
    align-items: center;
}

#calander_overlay p {
    font-size: 1.4rem;
    font-weight: 600;
}

.calendar_ovText_green {color: green;}
.calendar_ovText_red {color: red;}

.calendar_body {
    position: relative;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    margin: 0;

    width: 100%;
    text-align: center;
}

.calender_textbox {
    position: relative;
    width: 50%;
    height: 100%;
    margin: 0 .5rem;
    top: 4.5rem;
}

.calender_textbox p {
    margin: 0;
}

.calender_wrapper {
    position: relative;
    width: 50%;
    height: 100%;
    top: 5rem;
}

.calender_time_wrapper {
    display: flex;
}

#time-slots {
    width: 9rem;
    margin-right: 1rem;
}

.grid {
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    overflow-y: auto;
}

.time-btn {
    font-size: 1.2rem;
    background: transparent;
    border: var(--content_col_2) solid 2px;
    color: var(--content_col_2);
    margin-bottom: .3rem;
}

.time-btn:hover {
    background: var(--content_col_2);
    color: var(--content_col_4);
}

.time-btn-active {
    background: var(--content_col_2) !important;
    color: var(--content_col_4) !important;
}

.calender_textbox_title {

}

.calender_textbox_text {
    margin-left: 1rem;
    text-align: left;
}

#calendar_marker {
    margin-bottom: 1.5rem;
}

/* Removes the default border from the inline calendar */
.flatpickr-calendar.inline {
    box-shadow: none;
    border: none;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.flatpickr-calendar, 
.flatpickr-calendar * {
    font-size: 1rem !important;
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
    background: var(--content_col_2) !important;
    border-color: var(--content_col_2) !important;
}

.confirm_btn {
    
    background: var(--content_col_2);
    border-radius: 20px;
    text-decoration: none;

    border: none;
    padding: 0 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;

    
}

.confirm_btn p {
    color: var(--content_col_4);
    margin: 1rem;
    font-size: 1.2rem;
    user-select: none;
}


.confirm_btn:hover {
    scale: 1.03;
}


/**********/

.hidden_ele {
    opacity: 0 !important;
}

#scroll_top_btn {
    position: fixed;
    z-index: 99;
    bottom: 4rem;
    width: 3.5rem;
    height: 3.5rem;
    right: 1.5rem;
    border-radius: 1rem;
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
}

#scroll_top_btn:hover {
    width: 4rem;
    height: 4rem;
    right: 1.25rem;
    bottom: 3.75rem;
}

.banner {
    background: #081b2b;
    height: 100vh;
    height: 100svh;
}

.segment1 {
    position: relative;
    display: flex;    
    flex-wrap: wrap;
    align-content: center
}

.segment1 img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.seg1_box {
    position: absolute;
    background: rgba(0, 0, 0, 0.247);
    height: 60%;
    width: 30rem;
    right: 2rem;
    bottom: 2rem;

    opacity: 0;
    transform: translateX(100%); 
    transition: all 0.6s ease-out; 
}

.seg1_box_show {
    opacity: 1;
    transform: translateY(0);
}

.seg1_box h2 {
    padding: 0 1rem;
    color: var(--content_col_6);
}

.seg1_box p {
    padding: 0 1rem;
}

.seg1_box p, li {
    font-size: 1.3rem;
    color: var(--content_col_4);
}

.inquiry_btn_wrapper {
    position: absolute;
    display: flex;
    height: 5rem;
    width: 100%;
    margin-top: 1.5rem;
    justify-content: center;
    align-items: center;
}

.inquiry_btn {
    background: var(--content_col_6);
    border-radius: 20px;
    text-decoration: none;
    user-select: none;
}

.inquiry_btn p {
    text-align: center;
}

.inquiry_btn:hover {
    scale: 1.03;
}

#benefits_wrapper {
    position: relative;
    background-color: white;
    padding-bottom: 5rem;
    padding-top: 2rem;
}


.benefits_title {
    display: flex;
    justify-content: center;
}

.benefits_details {
    display: flex;
    justify-content: center;
}

.benefits_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.benefits_card {
    flex: 0 1 15rem;
}

.benefits_card_icon {
    display: flex;
    justify-content: center;
    /* color: #22c69e; */
    /*filter: invert(42%) sepia(93%) saturate(1352%) hue-rotate(190deg) brightness(103%) contrast(100%);*/
}

.benefits_card_icon img{
    width: 5rem;
}

.benefits_card_title {
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.benefits_card_text {
    text-align: center;

}

.segment2 {
    position: relative;
    height: 300vh;
}

.background_seg_2 {
    background-color: var(--content_col_5);
}

.seg2_row {
    display: flex;
    position: relative;
    justify-content: center;
    opacity: 0;
    
}

.seg2_row:nth-last-child(2) {
    bottom: -38rem;
    transition: bottom 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.seg2_row:nth-last-child(1) {
    bottom: -18rem;
    transition: bottom 0.5s ease-in-out 0.25s, opacity 0.5s ease-in-out 0.25s;
}

.seg2_show {
    bottom: 0 !important;
    opacity: 1;
}

.seg2_box_img_container {
    width: 40%;
}

.seg2_box_img_container img {
    width: 95%;
}

.seg2_box_h3_container {
    width: 60%;
}

.seg2_box_txt_container {
    
}

.seg2_box_txt_header {
    display: flex;
    align-items: flex-end;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.seg2_box_txt_content {
    padding-top: 1rem;
}

.seg2_box_txt_content p {
    margin: 0;
}

/* Testimonial-Sektion */

.testimonials-sticky {
    flex: 6;
    display: flex;
    padding-right: 1rem;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.testimonials-scroll {
    flex: 4;
    position: relative;
}

.testimonials-grid {    
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 2rem;
    will-change: transform;
}

.seg2_box_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 2rem;
    will-change: transform;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card .rating {
    color: #f39c12; /* Goldfarbe für Sterne */
    font-size: 1.3em;
    margin-bottom: 15px;
    letter-spacing: 1px; /* Für etwas mehr Abstand zwischen den Sternen */
}

.seg2_box_card {
    height: 27rem;
}

.segboxcontainer {
    max-width: 1200px;
    padding: 30px;
    /*background: #fff;*/
    /*border-radius: 10px;*/
    /*box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);*/
}

.seg2boxcontainer {
    position: sticky;
    display: flex;
    top: 0;
    height: 100vh;
    overflow: hidden;
    margin: 0 auto 3rem;
}

.seg4boxcontainer {
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 5rem;
}

.ticket_h2_container {
    display: flex;
    justify-content: center;
}

.ticket_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ticket_flex {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
}

.ticket_text {
    width: 60%;
}

.ticket_form_container {
    width: 60%;
}

.ticket_text pre {
    text-wrap: wrap;
}

.input_text_container {
    display: flex;
    justify-content: space-between;
}

.input_checkbox_container {
    display: flex;
    margin-bottom: .5rem;
    height: 2rem;
    align-items: center;
}

.input_checkbox_container input {
    appearance: none;
    position: relative;
    width: 1rem;
    height: 1rem;
    margin-right: .5rem;
    border: 1px solid black;
}

.input_checkbox_container input::after {
    content: '';
    position: absolute;
    display: none;    
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;    
    border: solid black;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.input_checkbox_container input:checked {

}

.input_checkbox_container input:checked::after {
    display: block;
    top: -.05rem;
    left: .25rem;
}

/*.input_checkbox input {
    position: relative;
    bottom: -.2rem;
    margin-right: .5rem;

}*/

.input_field {
    width: 49%;
    height: 2rem;
    font-size: 1.2rem;
    margin-bottom: .5rem;
    border: 1px solid black;
    border-radius: 10px;   
}

.input_dropdown {
    width: 100%;
    height: 2rem;
    font-size: 1.2rem;
    margin-bottom: .5rem;
    border: 1px solid black;
    border-radius: 10px;
}

.input_ticket {
    width: 100%;
    font-size: 1.2rem;
    resize: vertical;
    border: 1px solid black;
    border-radius: 10px;    
}

.input_submit_btn {
    margin-top: .5rem;
    height: 2rem;
    width: 15rem;
    font-size: 1.2rem;
    color: white;
    background-color: var(--content_col_2);
    border-radius: 10px;
    border: none;
}

.input_submit_btn:hover {
    color: black;
    background-color: #1dc89c;
}

.input_field_error {
    border: red solid 2px;
}

#errorContainer {
    margin-top: 1rem;
    overflow: hidden;
    background: white;
}

.error_col_green {
    color: green;
}

.error_col_red {
    color: red;
}

.error {
    width: 100%;
    font-weight: 600;
    text-align: center;
    color: red;
}

/* #endregion */
/*++++++++++++Kundenmeinungen++++++++++++++*/
/* #region */

.ratingwrapper {
    min-height: calc(100vh - 10rem);
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
}

.ratingcontainer {
    
    margin: 3rem auto 3rem;
    
}

.ratingcontainer h2 {
    margin-top: 0;
    margin-bottom: 2rem;
}

.rating-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote_collapsed {
    -webkit-line-clamp: initial !important; 
    line-clamp: initial !important;
}

.show_more_less_btn {
    border: none;
    background: transparent;
    font-style: italic;
    font-size: 1rem;
    padding: 0;
    text-align: start;
    color: #afafaf;
}

.show_more_less_btn:hover {
    text-decoration: underline;
}

.testimonial-card .quote {
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-clamp: 4;
    overflow: hidden;
    margin-bottom: 10px;
    color: #555;
    font-size: 1.2rem;
    flex-grow: 1; /* Lässt den Text den verfügbaren Platz einnehmen */
}

.testimonial-card .author-info {
    text-align: right;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
}

.testimonial-card .author-name {
    font-weight: 600;
    color: var(--content_col_2);
    display: block;
    margin-bottom: 5px;
}

.testimonial-card .author-title {
    font-size: 0.9em;
    color: #777;
}
/* #endregion */
/*++++++++++++FAQ++++++++++++++*/

.faq_card {
  margin: 6rem auto;
  overflow: hidden;
}

.faq_item {
}

/* Hide the actual checkbox */
.faq_input {
  display: none;
}

/* The Header/Question */
.faq_label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  font-size: 1.5rem;
  color: var(--content_col_2);
  cursor: pointer;
  border-bottom: 1px solid #eee;
  transition: background 0.3s ease;
}

.faq_label:hover {
  background: var(--content_col_2);
  color: white;
}

/* The Animated Icon */
.faq_label::after {
  content: '+';
  font-size: 3rem;
  font-weight: 100;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* The Content Wrapper (The Magic Part) */
.faq_content {
  display: grid;
  background: var(--content_col_5);
  grid-template-rows: 0fr; /* Collapsed state */
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Inner div needed for padding to animate correctly */
.faq_inner {
  overflow: hidden;
  padding: 0 1rem;
  color: #555;
  line-height: 1.6;
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq_input:checked + .faq_label {
    background: var(--content_col_2);
    color: white;
}

/* State: When Checked */
.faq_input:checked + .faq_label + .faq_content {
  grid-template-rows: 1fr; /* Expanded state */
}

/* Rotate the icon to an 'x' */
.faq_input:checked + .faq_label::after {
  transform: rotate(45deg);
}

.faq_input:checked + .faq_label + .faq_content .faq_inner {
  padding-top: 1rem;    /* This creates the space at the top */
  padding-bottom: 20px; /* This creates the space at the bottom */
}
/* #region */

/*++++++++++++impressum Datenschutz etc++++++++++++++*/
/* #region */

.information_text {
    margin: 1rem;
}

/* #region */

/*++++++++++++Footer++++++++++++++*/
/* #region */

.back_to_index_link {
    display: flex;
    height: 4rem;
    align-items: center;
}

.back_to_index_link a {
    margin-left: 1rem;
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--content_col_2);
}
.footer {
    height: 15rem;
    background-color: var(--content_col_2);
    position: relative;             
}

.footer p {
    font-size: .9rem;
}

.ft_row1 {
    height: 70%;
    display: flex;
    justify-content: flex-end;
}

.ft_h4 {
    color: white;
}

.ft_contact_container {
    margin-top: 1rem;
    margin-right: 1rem;
    margin-left: 1rem;
}

.ft_contact_container p {
    color: white;
    font-size: .9rem;
}

.ft_openingHours_container {
    margin-top: 1rem;
    margin-right: 2rem;    
}

.ft_openingHours_container table {
    margin-left: -0.15rem;
    font-size: .9rem;
}

.ft_openingHours_container td {
    color: white;
    font-size: .9rem;
}

.ft_row2 {
    height: 30%;
    display: flex;
}

.ft_copyright {
    position: relative;
    width: calc(100% - 22.4rem);
    display: flex;
    left: 1rem;
    color: white;
    align-items: center;
    pointer-events: none;
}

.ft_documents {
    display: flex;
}

.ft_agb {
    width: 4rem;
    display: flex;
    align-items: center;
}

.ft_impressum {
    width: 8rem;
    display: flex;
    align-items: center;
}

.ft_terms {
    display: flex;
    align-items: center;
}

.ft_link {
    color: white;
    font-size: .9rem;
    text-decoration: none;
}

.ft_link:hover {
    text-decoration: underline;
}



/* #endregion */
/*++++++++++++Mobile++++++++++++++*/
/* #region */

@media only screen and (max-width: 1280px) {
    
}

@media only screen and (max-width: 1024px) {

    #wrapper {
        overflow-x: hidden;
    }

    h3 {
        font-size: 1.8rem;
    }

    .calendar { 
        width: 99%;        
    }

    .calender_textbox {
        width: 40%;
        top: 5rem;
    }

    .calender_wrapper {
        width: 60%;
    }

    .segment1 {
        align-content: flex-start;
    }

    .segment2 {
        height: auto;
    }

    #menu {
        padding: 0;
    }

    .testimonials-sticky {
        flex: 0;
    }

    .testimonials-scroll {
        flex: 0;
    }

    .seg2_box_grid {
        display: flex;
        scroll-snap-type: x mandatory;
        overflow: auto;
        overflow-y: hidden;
        gap: 30px;
        padding-top: 1rem;
        -webkit-overflow-scrolling: touch;
    }

    .seg2_box_card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }

    .seg2_box_img_container {
        width: 25%;
    }

    .seg2boxcontainer {
        height: auto; 
        flex-direction: column;
    }

    .seg2_box_txt_content p {
        font-size: 1.5rem;
    }

    #burger-nav {
        height: 0;
    }

    #burger_menutoggle {
        display: block;
        position: relative;
        background: transparent;
        margin: 0;
        top: 1rem;
        left: -1rem;
        width: calc(50% - 1rem);

        z-index: 260;

        -webkit-user-select: none;
        user-select: none;
    }

    #burger_menutoggle li {
        text-decoration: none;
        color: var(--content_col_3);        
        transition: color 0.3s ease;
    }
    @media (hover: hover) {
        #burger_menutoggle li:hover {
            color: var(--content_col_2);
        }
    }

    #burger_menutoggle input {
        display: block;
        width: 2rem;
        height: 2rem;
        position: absolute;

        cursor: pointer;

        opacity: 0;
        z-index: 200;
    }

    #burger_menutoggle span {
        display: block;
        width: 33px;
        height: 4px;
        margin-bottom: 5px;
        position: relative;

        border-radius: 3px;

        z-index: 199;

        transform-origin: 4px 0px;

        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                opacity 0.55s ease;
    }

    #burger_menutoggle span:first-child {
        transform-origin: 0% 0%;
    }

    #burger_menutoggle span:nth-last-child(2) {
        transform-origin: 0% 100%;
    }

    #burger_menutoggle input:checked ~ span {
        opacity: 1;
        transform: rotate(45deg) translate(-2px, -1px);
    }

    #burger_menutoggle input:checked ~ span:nth-last-child(3) {
        opacity: 0;
        transform: rotate(0deg) scale(0.2, 0.2);
    }

    #burger_menutoggle input:checked ~ span:nth-last-child(2) {
        transform: rotate(-45deg) translate(0, -1px);
    }

    #menu {
        position: absolute;
        visibility: hidden;
        opacity: 0; 
    }

    #menu2 {/*
        flex-direction: column;
        position: absolute;
        padding: 0;
        margin-left: -1rem;
        list-style-type: none;
        background: var(--content_col_2);
        transform-origin: 0% 0%;*/
        
    }

    .header-link {
        font-weight: 600;
        text-align: center;
        background: transparent;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    #burger_menutoggle input:checked ~ ul {
        transform: none;
    }    

    #burger_input {
        display: block;
    }

    .burger_stricher {
        display: block;
    }
}

@media only screen and (max-width: 768px) {

    body { 
        font-size: 1.5rem;
    }

    #scroll_top_btn {
        z-index: 4;
    }

    .benefits_card {
        flex: 0 1 20rem;
    }

    #calander_overlay {
        top: 3rem;
        height: 100%;
        z-index: 7;
    }

    .calendar h2 {
        margin-top: 0;
        font-size: 1.8rem;
    }

    .calendar {
        height: 100%;
        background: transparent;
    }

    .calendar_body {
        display: block;
    }

    .flatpickr-calendar.inline {
        top: 1.5rem !important;
    }

    #calendar_container {
        top: 4rem;
        height: calc(100% - 3rem);
        overflow-y: auto;
        overscroll-behavior-y: contain;
        &::-webkit-scrollbar {
            display: none;
        }
        scrollbar-width: none;
        -ms-overflow-style: none;
        background: var(--content_col_4);
    }

    #calender_time_goback {
        display: block;
        width: 2rem;
        padding: .5rem;
    }
    
    #calender_time_goback svg path {
        fill: var(--content_col_2);
        stroke: var(--content_col_2);
        stroke-width: 1.2px;
        stroke-linejoin: round;
    }

    .calendar_header {
        position: absolute;
        z-index: 5;
    }

    .calendar_close {
        right: .5rem;
    }

    .calendar_close p {
        margin: .1rem 0;
        font-size: 1.8rem;
    }

    .cookie_checkbox label {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .calender_textbox {
        width: 100%;
        height: auto;
        margin: 0;
        top: 0;
    }

    .calender_textbox_title {
        text-align: left;
        margin-left: .5rem;
    }

    .calender_textbox_text {
        margin: 0 .5rem;
    }

    .calender_wrapper {
        width: 100%;
        height: auto;
        top: 0;
    }

    #time-slots {
        position: absolute;
        height: 100%;
        width: auto;
        margin: 0 .5rem;
        left: 0;
        right: 0;
        top: 0;
        background: white;
        z-index: 5;
    }

    .grid {
        height: 100%;
    }

    .time-btn {
        padding: .5rem 0;
    }

    .segment1 img {
        bottom: 6rem;
    }

    .header_logo {
        margin-left: 0;
    }

    .seg1_box {
        height: 58%;
        width: auto;
        right: auto;
        margin: 0 1rem;
    }

    .banner_btn_wrapper {
        margin-top: 0;
        bottom: .5rem;
    }

    .inquiry_btn {
        width: 95%;
    }

    .ticket_text {
        width: 100%;
    }

    .ticket_form_container {
        width: 100%; 
    }

    .input_submit_btn {
        margin-top: 1.5rem;
        height: 3rem;
        width: 100%;
    }

    .ft_h4 {
        margin: 1rem 0;
    }

    .ft_row1 {
        justify-content: space-between;
    }

    .ft_row2 {
        font-size: .8rem;
    }

    .ft_copyright {
        width: calc(100% - 17.8rem);
    }

    .ft_agb {
        width: 2.5rem;
    }

    .ft_impressum {
        width: 5rem;
    }

    .ft_terms {
        width: 10rem;
    }
}

@media only screen and (max-width: 640px) {

    #header {
        height: 3rem;
    }

    #menu2 {
        margin-top: .3rem;
        margin-left: -8.7rem;
    }

    .header-link {
        margin: 0 1rem;
    }

    .cookie_container {
        max-height: none;
        width: auto;
    }    

    h1 {
        font-size: 2rem;
        margin: 1rem auto 1rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .seg1_box h2 {
        margin: .5rem 0;
    }

    #calendar_container {
        top: 3rem;
    }

    .seg1_box {
        height: 62%;
    }

    .seg1_box ul {
        margin: .5rem 0;
    }

    .benefits_details p{
        text-align: center;
        margin: 0 1rem;
    }

    .benefits_card_text {
        padding: 0 1rem;
    }

    .segboxcontainer {
        padding: 13px;
    }

    .seg2_box_grid {
        margin-top: 0rem;
    }

    .seg2_box_txt_content p {
        font-size: 1.5rem;
    }

    .testimonial-card {
        padding: 15px;
    }

    .seg2_box_card {
        height: 30rem;
    }

    .seg2_box_img_container {
        width: 35%;
    }

    .seg2_box_h3_container {
        width: 60%;
    }

    .seg2_box_h3_container h3{
        font-size: 1.8rem;
    }

    .testimonial-card .quote {
        font-size: 1.05rem;
    }

    .faq_card {
        margin: 3rem auto;
    }

    .faq_label {
        font-size: 1.5rem;
    }

    .input_text_container {
        flex-direction: column;
        align-items: center;
    }

    .input_field {
        width: 100%;
        font-size: 1.5rem;
    }

    .input_dropdown {
        font-size: 1.5rem;
    }

    .input_ticket {
        font-size: 1.5rem;
    }

    .input_submit_btn {
        font-size: 1.5rem;
    }

    .footer p {
        font-size: .8rem;
    }

    #scroll_top_btn {
        width: 3rem;
        height: 3rem;
        right: .5rem;
    }

    #scroll_top_btn:hover {
        width: 3.5rem;
        height: 3.5rem;
        right: .25rem;
    }

    .ft_openingHours_container {
        margin-top: .5rem;
        margin-right: .5rem;
    }

    .ft_openingHours_container table {
        font-size: .8rem;
    }

    .ft_openingHours_container td {
        font-size: .8rem;
    }

    .ft_contact_container {
        margin-top: .5rem;
        margin-left: .5rem;
    }

    .ft_contact_container p {
        font-size: .8rem;
    }

    .ft_row2 {
        flex-direction: column;
        align-items: center;
    }

    .ft_link {
        font-size: .8rem;
    }

    .ft_copyright {
        width: 100%;
        left: 0;
        justify-content: center;
    }

    .ft_documents {
        width: 100%;
        justify-content: space-around;
    }

    .ft_agb {
        width: auto;
    }

    .ft_impressum {
        width: auto;
    }

    .ft_terms {
        width: auto;
    }

}

@media only screen and (max-width: 500px) {

    p, pre, li {
        line-height: normal;
    }

    body { 
        font-size: 1.1rem;
    }

    #menu2 {
        margin-top: .3rem;
        margin-left: -7.7rem;
    }

    .header-link {
        font-size: 1.1rem;
        padding-top: .5rem;
        padding-bottom: 0.5rem;
    }

    .header-link:hover {
        font-weight: 600;
        font-size: 1.1rem;
    }

    .seg1_box h2 {
        font-size: 1.3rem;
    }

    .seg1_box p, li {
        font-size: .95rem;
    }

    .seg1_box ul {
        padding-left: 2rem;
    }

    .seg1_box {
        margin: 0;
        bottom: 0;
        height: 380px;
    }

    .faq_label {
        font-size: 1.1rem;
    }

    .seg2_box_card {
        height: 24rem;
    }

    .seg2_box_txt_content p {
        font-size: 1.05rem;
    }

    .seg2_box_grid {
        gap: 18px;
    }

    .testimonial-card {
        padding: 0.7rem;
    }

    .banner_btn_wrapper {
        bottom: 0;
    }

    .seg2_box_h3_container h3{
        font-size: 1.3rem;
    }

    .input_field {
        width: 100%;
        font-size: 1.1rem;
    }

    .input_dropdown {
        font-size: 1.1rem;
    }

    .input_ticket {
        font-size: 1.1rem;
    }

    .input_submit_btn {
        font-size: 1.1rem;
    }

}

@media only screen and (max-width: 380px) {     
    
    .seg1_box ul {
        padding-left: 1.5rem;
        padding-right: .5rem;
    }

    .seg1_box h2 {
        padding: 0 .5rem;
    }

    .seg1_box p {
        padding: 0 .5rem;
    }

}


/* #endregion */

