* {
    box-sizing: border-box;
}

img, svg {
    max-width: 100%;
}

@media (min-width: 36em) {}
@media (min-width: 48em) {}
@media (min-width: 62em) {}
@media (min-width: 75em) {}
@media (min-width: 87.5em) {}

html {
    font-size: 1em;
    overflow-x: hidden;
}

body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
}

::selection {
    color: #014153;
    background-color: #ED6A4E;
}

.container {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 62em) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.tour__card {
    border-radius: 0.4rem;
    position: relative;
    height: 27rem;
    overflow: hidden;
    flex: 0 0 min(20rem, 85vw);
    margin-top: 2rem;
    transform: scale(1);
    transition: transform 0.25s ease-in-out;
}

.tour__card:hover {
    transform: scale(1.1);
    box-shadow: 0 0.5rem 1rem rgba(25, 20, 20, 0.65);
    z-index: 1;
}

@media (min-width: 74em) {
    .tour__card {
        flex: 0 0 20%;
        height: 24rem;
        margin-top: 3rem;
    }
    .tour__card:hover {
        transform: scale(1.25);
    }
}

.flex__button {
    display: flex;
}

.button1 {
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    display: inline-block;
    color: white;
    padding: 0.6rem 1.15rem;
    border-radius: 0.7rem;
    border: none;
    background-color: cornflowerblue;
    letter-spacing: 0.01em;
    font-size: 0.98rem;
    font-weight: 600;
    text-decoration: none;
    text-shadow: 0 0.06rem 0.35rem rgba(0, 20, 80, 0.45);
    box-shadow: 0 0.2rem 0.9rem rgba(0, 0, 202, 0.35);
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
                background-color 0.25s ease,
                box-shadow 0.25s ease,
                border-color 0.25s ease;
    will-change: transform;
}

.button1:hover {
    background-color: rgb(93, 143, 236);
    transform: translateY(-0.12rem);
}

.button1:active {
    transform: translateY(0);
}

.button1--primary {
    background-color: #014153;
}

.button1--primary:hover {
    background-color: #002d3a;
}

.button1--transparent {
    -webkit-backdrop-filter: blur(0.6rem);
    backdrop-filter: blur(0.6rem);
    background-color: rgba(255, 255, 255, 0.08);
    border: 0.09rem solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 0.15rem 0.7rem rgba(0, 0, 0, 0.18),
                inset 0 0 0 rgba(255, 255, 255, 0);
    overflow: hidden;
}

.button1--transparent::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0.45rem;
    width: 0;
    height: 0.11rem;
    border-radius: 0.11rem;
    background-color: #ffffff;
    box-shadow: 0 0 0.35rem rgba(255, 255, 255, 0.8);
    transform: translateX(-50%);
    transition: width 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.button1--transparent:hover {
    background-color: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0.3rem 1rem rgba(119, 154, 218, 0.28),
                inset 0 0 1.2rem rgb(203, 211, 228);
    transform: translateY(-0.12rem);
}

.button1--transparent:hover::after {
    width: 55%;
}

.button1--icon {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.button1__icon {
    width: 1.1rem;
    height: 1.1rem;
    flex: 0 0 auto;
}

.header__nav-li:last-child .button1--transparent {
    background-color: rgba(29, 149, 219, 0.85);
    border-color: rgba(255, 255, 255, 0.75);
}

.header__nav-li:last-child .button1--transparent:hover {
    background-color: rgb(33, 149, 216);
    box-shadow: 0 0.3rem 1.1rem rgba(118, 210, 247, 0.5);
}

.button {
    -webkit-appearance: none;
    appearance: none;
    display: inline-block;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999999px;
    border: none;
    background-color: cornflowerblue;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
}

.button:hover {
    text-decoration: underline;
    background-color: rgb(93, 143, 236);
}

.button--primary {
    background-color: #014153;
}

.button--primary:hover {
    background-color: #002d3a;
}

.button--transparent {
    -webkit-backdrop-filter: blur(0.5rem);
    backdrop-filter: blur(0.5rem);
    background-color: transparent;
    border: 0.125rem solid white;
}

.button--transparent:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.button--icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.button__icon {
    width: 1.15rem;
    height: 1.15rem;
    flex: 0 0 auto;
}

.text-primary {
    color: #4e9bed;
}

.desktop-only {
    display: none;
}

@media (min-width: 62em) {
    .desktop-only {
        display: initial;
    }
}

input.form__input[type="text"],
input.form__input[type="email"],
input.form__input[type="password"],
textarea.form__input {
    -webkit-appearance: none;
    appearance: none;
}

.form__input {
    margin: 0;
    font-family: inherit;
    font-size: 1rem;
    padding: 0.5rem;
    background-color: white;
    border: 0.125rem solid rgb(200, 200, 200);
    border-radius: 0.5rem;
    resize: none;
    width: 100%;
}

.form__input:focus {
    border: 0.125rem solid rgb(150, 150, 150);
    outline: none;
}

.form__input--textarea {
    height: 6rem;
}

.form__input-container {
    padding-bottom: 1rem;
    text-align: center;
}

.logo__Animation {
    animation: fadeInLogo 2s ease-in-out forwards;
    opacity: 0;
}

@keyframes fadeInLogo {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.ul__Animation {
    animation: fadeInUl 2.5s ease-in-out forwards;
    opacity: 0;
}

@keyframes fadeInUl {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media (min-width: 62em) {
    .header__nav-ul.ul__Animation {
        position: absolute;
        top: 50%;
        right: 4rem;
        transform: translateY(-50%);
        gap: 0.9rem;
        animation: none;
        opacity: 1;
    }
}

.header {
    padding-bottom: 0rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 80%;
    background-image: url("../images/sonstige/Haeder12.webp");
}

@media (min-width: 62em) {
    .header--startseite {
        padding-top: calc(8.61rem - 48px);
    }

    .header--startseite > .container {
        padding-bottom: 2.1525rem;
    }

    .header {
        background-image: linear-gradient(184deg, rgba(0, 19, 66, 0.4) 0%, transparent 10%, transparent 100%, rgba(0, 0, 0, 0.5) 100%), url("../images/sonstige/Header13.webp");
    }
}

header::after {
    content: "";
    display: block;
    width: 7.5rem;
    height: 0.25rem;
    background-color: #db1d1d;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 0.25rem rgba(211, 12, 12, 0.5);
}

@media (min-width: 62em) {
    .header::after {
        width: 12.5rem;
    }
}

.header__logo-link {
    position: absolute;
    top: 50%;

    left: 0;
    display: block;
    width: min(22rem, 88vw);
    transform-origin: left center;
    will-change: transform;
    animation: shrinkLogoMobile linear both;
    animation-timeline: scroll(root);
    animation-range: 0px 150px;
}

@media (min-width: 62em) {
    .header__logo-link {
        max-width: 20rem;
        max-width: 59vw;
        left: 0;
        transform: translate(20%, -50%) scale(0.5);
        animation: none;
    }
}

.header__logo {
    width: 100%;
    filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.5));
}

.header__nav-ul {
    margin: 0;
    padding: 0;
    text-align: center;
}

@media (min-width: 62em) {
    .header__nav-ul {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.6rem;
    }
}

.header__nav-li {
    display: inline-block;
    list-style-type: none;
}

.header__nav-li--desktop-only {
    display: none;
}

@media (min-width: 62em) {
    .header__nav-li--desktop-only {

        display: inline-flex;
    }
}

@media (min-width: 62em) and (max-width: 75em) {
    .header__nav-li .button1 {
        padding-block: 0.6rem;
        padding-inline: clamp(0.55rem, 4.615vw - 2.31rem, 1.15rem);
        font-size: clamp(0.85rem, 1vw + 0.23rem, 0.98rem);
    }
}

.header__nav-link {
    font-weight: bold;
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 1rem 1rem;
    text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
}

.header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding-left: 1rem;
    padding-right: 1rem;
    min-height: 61.2px;
    animation: navBackgroundMobile linear both;
    animation-timeline: scroll(root);
    animation-range: 0px 150px;
    height: 61.2px;
    padding-top: 0;
    padding-bottom: 0;
}

@media (min-width: 62em) {
    .header__nav {
        --nav-pad-r: 2rem;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        padding-left: 2rem;
        padding-right: var(--nav-pad-r);
        height: 72px;
        min-height: 80px;
        background-color: rgba(99, 121, 223, 1);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
        box-shadow: 0 0.2rem 1.1rem rgba(0, 0, 0, 0.35);
        animation: none;
    }
}

@media (min-width: 75rem) {
    .header__nav {
        --nav-pad-r: calc((100% - 75rem) / 2 + 2rem);
        padding-left: calc((100% - 75rem) / 2 + 2rem);
        padding-right: var(--nav-pad-r);
    }
}

.header__heading {
    font-size: 2rem;
    color: white;
    margin: 0;
    text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
}

@media (min-width: 36em) {
    .header__heading {
        font-size: 3rem;
    }
}

@media (min-width: 62em) {
    .header__heading {
        padding-top: 35rem;
    }
}

.header__sub-heading {
    font-size: 1rem;
    color: white;
    margin: 0;
    padding-top: 0.3rem;
    padding-bottom: 39rem;
    text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
}

@media (min-width: 36em) {
    .header__sub-heading {
        font-size: 1.25rem;
    }
}

@media (min-width: 62em) {
    .header__sub-heading {
        padding-bottom: 7.5rem;
    }
}

@media (min-width: 97.5em) {


    .header--startseite > .container {
        padding-bottom: 2.6275rem;
    }

    .header__sub-heading {
        padding-bottom: 17rem;
    }
}

.header__button-container {
    display: flex;
    justify-content: center;
    padding-bottom: 1.5rem;
}

@media (min-width: 62em) {
    .header__button-container {
        display: none;
    }
}

.heading {
    color: #014153;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 2.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 2rem 0;
    overflow-wrap: break-word;
}

.heading__tour {
    color: #014153;
    background-color: #8ea1c6;
    margin-top: 0rem;
    margin-bottom: 0;
    font-size: 2.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 2.5rem 0;
}

.heading2 {
    color: #014153;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 2.25rem;
    letter-spacing: 0.09em;
    padding: 2rem 0;
}

.heading__Parts {
    color: #014153;
    margin-top: 0;
    margin-bottom: 3rem;
    font-size: 2.25rem;
    letter-spacing: 0.05em;
    padding: 2rem 0;
}

.heading--white {
    color: white;
    text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5);
}

.heading--white-tour {
    color: white;
    text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5);
}

.heading--centered {
    text-align: center;
}

.heading--top-box::before {
    content: "";
    display: block;
    height: 0.25rem;
    width: 7.5rem;
    background-color: transparent;
    margin-bottom: 2rem;
}

.heading--bottom-box::after {
    content: "";
    display: block;
    height: 0.25rem;
    width: 7.5rem;
    background-color: #db1d1d;
    margin-top: 2rem;
}

.heading--small {
    font-size: 1.5rem;
}

.heading__pre-text {
    display: block;
    font-size: 1.5rem;
}

.mainPages {
    padding-bottom: 7rem;
    background-color: rgb(221, 227, 233);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.mainPages .heading {
    text-transform: none;
    font-size: 2.375rem;
    letter-spacing: 0.01em;
    padding-bottom: 3.5rem;
}

.tour__Pages {
    padding-bottom: 7rem;
    background-color: rgb(221, 227, 233);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.tour__card__container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: -1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    margin-bottom: -1rem;
}

.pages__card-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    margin-top: -1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    margin-bottom: -1rem;
}

.pages__card {
    position: relative;
    text-align: center;
    background-color: rgb(255, 255, 255);
    flex: 0 0 min(22.333333rem, 80vw);
    margin: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
    will-change: transform;
    transform: scale(1);
    transition: transform 0.25s ease-in-out;
}

.pages__card:hover {
    transform: scale(1.05);
}

.pages__card-bottom {
    padding-bottom: 3rem;
    background-color: rgba(81, 82, 91, 1);
}

.pages__card-img {
    display: block;
    width: 100%;
    height: 14.5rem;
    object-fit: cover;
    object-position: 50% 50%;
}

.pages__card-heading {
    margin: 0;
    padding-top: 1.25rem;
    padding-bottom: 1rem;
    font-size: 1.25rem;
    color: white;
    text-transform: uppercase;
    text-align: center;
}

.pages__card-sub {
    color: white;
    text-transform: uppercase;
    text-align: center;
    font-size: 1rem;
    padding-bottom: 3rem;
    margin: 0;
}

.preorder {
    position: relative;
    display: inline-block;
}

.preorder__trigger {
    -webkit-appearance: none;
    appearance: none;
    font-family: inherit;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.preorder.is-split .preorder__trigger {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}

.preorder__split {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    overflow: hidden;
    background-color: rgba(180, 210, 255, 0.35);
    -webkit-backdrop-filter: blur(0.6rem);
    backdrop-filter: blur(0.6rem);
    border: 0.09rem solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 0.3rem 1rem rgba(78, 144, 237, 0.45), 0 0 1.4rem rgba(120, 170, 255, 0.55);
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.preorder.is-split .preorder__split {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.preorder__half {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-weight: bold;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.preorder__half--phone {
    color: #2f6fed;
    border-right: 0.06rem solid rgba(255, 255, 255, 0.45);
}

.preorder__half--phone:active {
    background-color: rgba(47, 111, 237, 0.18);
}

.preorder__half--mail {
    color: #e23b3b;
}

.preorder__half--mail:active {
    background-color: rgba(226, 59, 59, 0.18);
}

.preorder__icon {
    width: 1.1rem;
    height: 1.1rem;
    flex: 0 0 auto;
}

.parts__paragraph {
    margin: 0;
    font-size: 1rem;
    color: #014153;
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
    line-height: 1.4em;
    max-width: 35rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.parts {
    padding-bottom: 0rem;
    background-color: rgb(140, 158, 177);
}

.parts_nav-menu {
    padding-bottom: 0rem;
    background-color: rgb(140, 158, 177);
}

.parts::after {
    content: "";
    display: block;
    height: 0rem;
    width: 7.5rem;
    background-color: #db1d1d00;
    margin-left: auto;
    margin-right: auto;
}

.guide {
    padding-top: 10rem;
    padding-bottom: 3rem;
    background-image:
        linear-gradient(90deg, #014153, #014153),
        url("../images/guide/pexels-kevin-menajang-982673.webp"),
        url("../images/guide/pexels-aron-visuals-1694621.webp");
    background-size:
        100% calc(100% - 10rem),
        100% calc(100% - 10rem),
        100% auto;
    background-position:
        50% 100%,
        50% 100%,
        50% calc(5rem - 60vw);
    background-repeat:
        no-repeat,
        no-repeat,
        no-repeat;
    background-blend-mode:
        multiply,
        normal;
}

.guide .heading__Parts {
    text-transform: none;
}

.guide .heading__pre-text {
    margin-bottom: 0.65rem;
}

@media (min-width: 62em) {
    .guide {
        padding-top: 0rem;
        background-size:
        calc(50% + 10rem) 100%,
        calc(50% + 10rem) 100%,
        calc(64% - 15rem) 110%;
        background-position:
        100% 50%,
        100% 50%,
        -5% 0%;
    }
}

@media (min-width: 62em) {
    .guide__container {
        padding-top: 1rem;
        padding-left: calc(50% - 7rem);
    }
}

.guide__paragraph {
    margin: 0;
    font-size: 1rem;
    color: white;
    padding-bottom: 1.5rem;
    line-height: 1.6em;
    text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5);
}

.road__Pages2 {
    padding-bottom: 7rem;
    padding-top: 3rem;
    background-color: rgb(221, 227, 233);
    background-image: radial-gradient(rgba(78, 144, 237, 0.18) 1.5px, transparent 1.5px);
    background-size: 1.75rem 1.75rem;
    background-position: 50% 50%;
}

.road__card-container2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-right: -1rem;
    margin-bottom: -1rem;
    margin-left: -1rem;
}

.road__card2 {
    position: relative;
    border-radius: 2rem;
    text-align: center;
    background-color: rgb(255, 255, 255);
    flex: 0 0 27rem;
    margin-top: 0rem;
    margin-right: 0.8rem;
    margin-bottom: 2rem;
    margin-left: 0.8rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
    animation: roadCardIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.road__card2--1 { animation-delay: 0s; }
.road__card2--2 { animation-delay: 0.12s; }
.road__card2--3 { animation-delay: 0.24s; }

@keyframes roadCardIn {
    0% {
        opacity: 0;
        transform: translateY(1.5rem) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.road__card2:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1.2rem 2.2rem rgba(0, 0, 0, 0.3);
}

.road__card2--1:hover { transform: translateY(-0.5rem) rotate(-1deg); }
.road__card2--2:hover { transform: translateY(-0.6rem) scale(1.015); }
.road__card2--3:hover { transform: translateY(-0.5rem) rotate(1deg); }

@media (max-width: 42em) {
    .road__card2 {
        flex: 0 0 83%;
    }
}

.road__card-bottom2 {
    padding-bottom: 3rem;
    margin-bottom: -2.5rem;
    background-color: rgba(81, 82, 91, 1);
}

.road__card-img2 {
    display: block;
    width: 100%;
}

.road__card-heading2 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    overflow: hidden;
    margin: 0;
    background-color: #4e90ed;
    padding-top: 1.25rem;
    padding-bottom: 1rem;
    font-size: 1.25rem;
    color: white;
    text-transform: uppercase;
    text-align: center;
}

.road__card-heading2::after {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
}

.road__card2:hover .road__card-heading2::after {
    left: 130%;
}

.road__card-icon {
    display: inline-flex;
    width: 1.6rem;
    height: 1.6rem;
    flex: 0 0 auto;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.road__card-icon svg {
    width: 100%;
    height: 100%;
}

.road__card2:hover .road__card-icon {
    transform: rotate(-14deg) scale(1.15);
}

.road__card-sub2 {
    color: white;
    line-height: 1.8em;
    text-align: left;
    font-size: 1.2rem;
    padding-bottom: 0rem;
    margin: 1rem;
    list-style: none;
    padding-left: 0;
}

.road__card-sub2 li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.3rem;
    border-bottom: 0.06rem solid rgba(255, 255, 255, 0.2);
    transition: padding-left 0.25s ease, color 0.25s ease;
}

.road__card-sub2 li:last-child {
    border-bottom: none;
}

.road__card-sub2 li::before {
    content: "";
    position: absolute;
    left: 0.1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #db1d1d;
    box-shadow: 0 0 0.4rem rgba(219, 29, 29, 0.7);
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.road__card-sub2 li:hover {
    padding-left: 1.6rem;
    color: #ffe9e9;
}

.road__card-sub2 li:hover::before {
    background-color: #ffffff;
    box-shadow: 0 0 0.5rem rgba(255, 255, 255, 0.9);
}

.road__attention {
    font-size: 1.05rem;
    padding: 1rem;
    margin: 0.7rem;
}

.road__notice {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    flex: 1 1 100%;
    background-color: #ffffff;
    border-left: 0.3rem solid #db1d1d;
    border-radius: 0.4rem;
    padding: 1.25rem 1.5rem;
    margin: 0.5rem auto 0;
    font-size: 1.05rem;
    line-height: 1.6em;
    color: #333;
    max-width: 55rem;
    animation: roadNoticeGlow 3s ease-in-out infinite;
}

@keyframes roadNoticeGlow {
    0%, 100% {
        box-shadow: 0 0.3rem 0.9rem rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 0.3rem 0.9rem rgba(0, 0, 0, 0.1), 0 0 1.1rem rgba(219, 29, 29, 0.35);
    }
}

.road__notice-icon {
    flex: 0 0 auto;
    width: 1.6rem;
    height: 1.6rem;
    color: #db1d1d;
    margin-top: 0.15rem;
}

.road__notice-icon svg {
    width: 100%;
    height: 100%;
}

.road__notice strong {
    color: #db1d1d;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.road__container2 {
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 62em) {
    .road__card-container2 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.story {
    background-image: linear-gradient(180deg, rgba(2, 15, 29, 0.9) 0%, transparent 150%, transparent 90%, rgba(0, 0, 0, 0.5) 100%), url("../images/story/BlurGeschichte.webp");
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 5rem;
    padding-top: 4rem;
}

.story .heading {
    text-transform: none;
}

.story .heading__pre-text {
    margin-bottom: 0.65rem;
}

@media (min-width: 62em) {
    .story {
        background-image:
            linear-gradient(270deg, rgba(2, 15, 29, 0.9) 0%, transparent 90%, transparent 90%, rgba(0, 0, 0, 0.5) 100%),
            url("../images/story/GeschichteBearbeitet.webp");
        background-size: 100% 100%, 110% auto;
        background-position: center center, 100% 50%;
        background-attachment: local, fixed;
        background-repeat: no-repeat, no-repeat;
    }
}

@media (min-width: 62em) {
    .story__inner {
        padding-left: 50%;
    }
}

.story__paragraph {
    margin: 0;
    font-size: 1rem;
    color: white;
    padding-bottom: 1.5rem;
    line-height: 1.4em;
    text-shadow: 0 0 1rem rgba(0, 0, 0, 0.8);
}

.story__paragraph2 {
    margin: 0;
    font-size: 1rem;
    color: white;
    padding-bottom: 1.5rem;
    line-height: 1.4em;
    text-shadow: 0 0 1rem rgba(0, 0, 0, 0.8);
    mask-image: linear-gradient(to bottom, black 24%, transparent 85%);
}

.quote {
    background-color: #d6defbdb;
    color: #202c44;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.quote__figure {
    margin: 0;
}

.quote__blockquote {
    margin: 0;
    font-weight: bold;
    padding-bottom: 1.5rem;
    font-size: 2rem;
    text-transform: none;
    text-align: center;
    letter-spacing: 0.075em;
}

.quote__figcaption {
    font-size: 1.25rem;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.075em;
}

.quote__paragraph {
    margin: 0;
}

.quote__paragraph::before {
    content: "„";
}

.quote__paragraph::after {
    content: "“";
}

.service {
    background-color: #ffffff;
    padding: 4rem 0;
}

.service .heading {
    text-transform: none;
    font-size: 2.375rem;
}

.service .heading__pre-text {
    margin-bottom: 0.65rem;
}

.road__Pages2 .heading__Parts {
    font-size: 2.375rem;
}

.service__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (min-width: 62em) {
    .service__cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.service__card {
    background-color: #eef3fb;
    border-radius: 0.8rem;
    padding: 2rem 1.75rem;
    text-align: center;
    box-shadow: 0 0.3rem 0.9rem rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}

.service__card:hover {
    transform: translateY(-0.4rem);
    box-shadow: 0 0.6rem 1.4rem rgba(0, 0, 0, 0.15);
}

.service__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: #4e90ed;
    color: white;
    margin-bottom: 1.25rem;
    box-shadow: 0 0.3rem 0.7rem rgba(78, 144, 237, 0.45);
}

.service__icon svg {
    width: 2rem;
    height: 2rem;
}

.service__card-heading {
    color: #014153;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0 0 0.75rem;
}

.service__card-text {
    font-size: 0.95rem;
    line-height: 1.6em;
    color: #333;
    margin: 0;
}

.service__note {
    margin: 2.5rem auto 0;
    max-width: 55rem;
    background-color: #f7f9fc;
    border-left: 0.3rem solid #4e90ed;
    border-radius: 0.4rem;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    line-height: 1.6em;
    color: #444;
}

.terms {
    background-color: rgba(66, 89, 126, 1);
    padding: 4rem 0 6rem;
}

.terms .heading {

    text-transform: none;
    overflow-wrap: normal;
    font-size: clamp(1.3rem, 7vw, 2.25rem);
}

.terms .heading .heading__pre-text {
    text-transform: none;
    margin-bottom: 0.65rem;
}

.terms__widget {
    margin-top: 2.5rem;
    position: relative;
}

.terms__radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.terms__widget-body {
    display: grid;
    grid-template-columns: 1fr;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 0.8rem;
    overflow: hidden;
}

@media (min-width: 62em) {
    .terms__widget-body {
        grid-template-columns: 20rem 1fr;
    }
}

.terms__tabs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem;
    background-color: rgba(0, 0, 0, 0.2);
}

@media (min-width: 62em) {
    .terms__tabs {
        gap: 0.15rem;
        padding: 1.5rem 1rem;
    }
}

.terms__tab {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.75);
    transition: background-color 0.2s ease, color 0.2s ease;
    min-width: 0;
    flex: 1 1 auto;
}

.terms__tab:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.terms__tab-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: #7fb3ef;
    min-width: 1.5rem;
}

.terms__panels {
    position: relative;
    padding: 2rem 1.75rem;
}

@media (min-width: 62em) {
    .terms__panels {
        padding: 2.5rem 3rem;
    }
}

.terms__panel {
    display: none;
    animation: termsFadeIn 0.3s ease;
}

.terms__panel h3 {
    margin-top: 0;
    color: #ffffff;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding-bottom: 0.75rem;
    border-bottom: 0.15rem solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

.terms__panel p {
    font-size: 0.95rem;
    line-height: 1.7em;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1rem;
}

.terms__panel ul {
    font-size: 0.95rem;
    line-height: 1.7em;
    color: rgba(255, 255, 255, 0.9);
    padding-left: 1.2rem;
    margin: 0 0 1rem;
}

.terms__panel li {
    margin-bottom: 0.4rem;
}

.terms__panel p:last-child,
.terms__panel ul:last-child {
    margin-bottom: 0;
}

@keyframes termsFadeIn {
    from {
        opacity: 0;
        transform: translateY(0.5rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#terms-tab-1:checked ~ .terms__widget-body .terms__tabs label[for="terms-tab-1"],
#terms-tab-2:checked ~ .terms__widget-body .terms__tabs label[for="terms-tab-2"],
#terms-tab-3:checked ~ .terms__widget-body .terms__tabs label[for="terms-tab-3"],
#terms-tab-4:checked ~ .terms__widget-body .terms__tabs label[for="terms-tab-4"],
#terms-tab-5:checked ~ .terms__widget-body .terms__tabs label[for="terms-tab-5"],
#terms-tab-6:checked ~ .terms__widget-body .terms__tabs label[for="terms-tab-6"],
#terms-tab-7:checked ~ .terms__widget-body .terms__tabs label[for="terms-tab-7"] {
    background-color: #4e90ed;
    color: white;
}

#terms-tab-1:checked ~ .terms__widget-body .terms__tabs label[for="terms-tab-1"] .terms__tab-num,
#terms-tab-2:checked ~ .terms__widget-body .terms__tabs label[for="terms-tab-2"] .terms__tab-num,
#terms-tab-3:checked ~ .terms__widget-body .terms__tabs label[for="terms-tab-3"] .terms__tab-num,
#terms-tab-4:checked ~ .terms__widget-body .terms__tabs label[for="terms-tab-4"] .terms__tab-num,
#terms-tab-5:checked ~ .terms__widget-body .terms__tabs label[for="terms-tab-5"] .terms__tab-num,
#terms-tab-6:checked ~ .terms__widget-body .terms__tabs label[for="terms-tab-6"] .terms__tab-num,
#terms-tab-7:checked ~ .terms__widget-body .terms__tabs label[for="terms-tab-7"] .terms__tab-num {
    color: white;
}

#terms-tab-1:checked ~ .terms__widget-body .terms__panels #terms-panel-1,
#terms-tab-2:checked ~ .terms__widget-body .terms__panels #terms-panel-2,
#terms-tab-3:checked ~ .terms__widget-body .terms__panels #terms-panel-3,
#terms-tab-4:checked ~ .terms__widget-body .terms__panels #terms-panel-4,
#terms-tab-5:checked ~ .terms__widget-body .terms__panels #terms-panel-5,
#terms-tab-6:checked ~ .terms__widget-body .terms__panels #terms-panel-6,
#terms-tab-7:checked ~ .terms__widget-body .terms__panels #terms-panel-7 {
    display: block;
}

.contact {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: rgb(149, 189, 234);
}

.contact::selection,
.contact ::selection {
    color: #ed4e4e;
    background-color: #011853;
}

@media (min-width: 62em) {
    .contact::after {
        content: "";
        display: block;
        background-color: #db1d1d;
        width: 7.5rem;
        height: 0.25rem;
        margin-top: 3rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.contact__logo {
    display: block;
    width: 18rem;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.contact__cta {
    margin: 0;
    font-weight: normal;
    padding-top: 2rem;
    padding-bottom: 1rem;
    font-size: 1.5rem;
    color: white;
    text-align: center;
}

.contact__phone-container {
    text-align: center;
}

.contact__phone {
    display: inline-block;
    color: #3735a9;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 1.75rem;
    text-decoration: none;
}

.contact__phone:hover {
    text-decoration: underline;
}

.contact__info::after {
    content: "";
    display: block;
    width: 7.5rem;
    height: 0.25rem;
    background-color: #014153;
    margin: 3rem auto;
}

@media (min-width: 62em) {
    .contact__info::after {
        display: none;
    }
}

@media (min-width: 62em) {
    .contact__row {
        display: flex;
        flex-direction: row;
        padding-top: 1rem;
        padding-bottom: 1rem;
        background-image: linear-gradient(90deg,
            transparent calc(50% - 0.125rem),
            rgba(255, 255, 255, 0.5) calc(50% - 0.125rem),
            rgba(255, 255, 255, 0.5) calc(50% + 0.125rem),
            transparent calc(50% + 0.125rem));
    }
}

@media (min-width: 62em) {
    .contact__info {
        flex: 0 0 50%;
    }
}

.contact__form {
    max-width: 25rem;
    margin-left: auto;
    margin-right: auto;
    scroll-margin-top: 6rem;
    text-align: center;
}

.kontakt__schaltflaeche {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22rem;
    max-width: 100%;
}

.kontakt__botschaft {
    color: white;
    width: 22rem;
    max-width: 100%;
    margin: 3rem auto;
    font-size: clamp(1.75rem, 2vw, 2rem);
    font-weight: 700;
    line-height: 1.12;
    text-align: center;
}

@media (min-width: 62em) {
    .contact__form {
        flex: 0 0 50%;
        padding-left: 2rem;
        padding-right: 2rem;
        max-width: initial;
        margin-left: initial;
        margin-right: initial;
        scroll-margin-top: 5.5rem;
    }
}

.contact__form-submit-container {
    text-align: center;
}

@media (min-width: 62em) {
    .contact__form-submit-container {
        text-align: right;
    }
}

.footer {
    background-color: #014153;
    color: rgba(255, 255, 255, 0.85);
    padding: 3.5rem 0 1.5rem;
}

.footer::selection,
.footer ::selection {
    color: #ffffff;
    background-color: #4e90ed;
}

.footer__top {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    padding-bottom: 2rem;
}

.footer__col {
    flex: 1 1 14rem;
}

.footer__brand {
    margin: 0 0 0.6rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer__address {
    margin: 0;
    font-style: normal;
    line-height: 1.6;
}

.footer__heading {
    margin: 0 0 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer__contact-list,
.footer__legal-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer__icon {
    width: 1.05rem;
    height: 1.05rem;
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.6);
}

.footer__text-inline {
    color: rgba(255, 255, 255, 0.85);
}

.footer__text {
    margin: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
}

.footer__link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__link:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

.footer__bottom {
    border-top: 0.06rem solid rgba(255, 255, 255, 0.15);
    padding-top: 1.25rem;
    text-align: center;
}

.footer__copyright {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.tours {
    background-color: rgb(221, 227, 233);

    background-image: radial-gradient(rgba(78, 144, 237, 0.18) 1.5px, transparent 1.5px);
    background-size: 1.75rem 1.75rem;
    background-position: 50% 50%;
    position: relative;
    padding-bottom: 0;
}

.tours__container {
    position: relative;
    z-index: 1;
    max-width: 98rem;
    margin: 0px auto;
    padding: 0 3rem;
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.tours::before,
.tours::after {
    top: 0;
    left: 0;
    right: 0;
    position: absolute;
    content: "Top Reisen";
    text-transform: uppercase;
    color: rgb(221, 227, 233);
    font-size: min(calc(100vw / 6.5), 10rem);
    z-index: 0;
    overflow: hidden;
    text-shadow: 0 0 0.6rem rgb(162, 176, 204);
    text-align: center;
    white-space: nowrap;
}

.tour__card-icon {
    width: 3rem;
    color: rgb(248, 247, 247);
    display: block;
}

.icon__cont {
    position: absolute;
    top: 0rem;
    left: 40%;
    width: 100%;
}

@media (min-width: 74em) {
    .icon__cont {
        position: absolute;
        top: 0rem;
        left: 0rem;
        width: 100%;
    }
    .tour__card:hover .icon__cont {
        transform: translateX(calc(50% - 1.5rem));
        transition: transform 0.25s ease-in-out;
        z-index: 1;
    }
}

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

.icon__card-2 {
    font-size: 1.8rem;
    padding-right: 0.5rem;
}

.tour__cards {
    padding-top: 12rem;
}

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

@media (min-width: 74em) {
    .tour__card-top {
        background-color: #4e90ed;
        position: absolute;
        top: 0rem;
        left: 0rem;
        width: 100%;
        height: 3rem;
        transform: translateX(calc(-100% + 3rem));
    }
    .tour__card:hover .tour__card-top {
        transform: translateX(0%);
        transition: transform 0.25s ease-in-out;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
    }
}

.tour__card-top {
    background-color: #4e90ed;
    position: absolute;
    top: 0rem;
    left: 0rem;
    width: 100%;
    height: 3rem;
}

.tour__content {
    position: absolute;
    bottom: -3.6rem;
    left: 0rem;
    right: 0rem;
    color: white;
    font-size: 1.0rem;
    text-shadow: 0 0 0.125rem rgba(0, 0, 0, 1.5);
    padding: 0 1.3rem;
    background-image: linear-gradient(180deg, transparent 5%, rgba(52, 60, 84, 1) 29%);
}

@media (min-width: 74em) {
    .tour__content {
        position: absolute;
        bottom: 0rem;
        left: 0rem;
        right: 0rem;
        color: white;
        font-size: 1.0rem;
        text-shadow: 0 0 0.125rem rgba(0, 0, 0, 1.5);
        padding: 1.3rem;
        background-image: linear-gradient(180deg, transparent 20%, rgba(52, 60, 84, 1) 49%);
        transform: translateY(calc(100% - 5rem));
    }
    .tour__card:hover .tour__content {
        transform: translateY(0%);
        transition: transform 0.25s ease-in-out;
    }
}

.tour__card-location {
    font-size: 1.4rem;
    margin-bottom: -4.5rem;
    display: flex;
    line-height: 1.9rem;
}

@media (min-width: 74em) {
    .tour__card-location {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
        display: flex;
        line-height: 1.9rem;
    }
}

.tour__card-desc {
    font-size: 1rem;
    padding: 5rem 0;
}

@media (min-width: 74em) {
    .tour__card-desc {
        font-size: 0.8rem;
        text-transform: initial;
        line-height: 1.4rem;
        padding: 1rem 0;
        background-image: linear-gradient(90deg, #4e90ed 60%, transparent 60%);
        background-repeat: no-repeat;
        background-size: 100% 4px;
    }
}

.tour__card-img {
    width: auto;
    max-width: none;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(80%);
}

.tours__cta {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 0.09rem solid rgba(1, 65, 83, 0.15);
}

.tours__cta-text {
    color: #384457;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1.25rem;
}

@keyframes navBackgroundDesktop {
    from {
        background-color: transparent;
        backdrop-filter: blur(0px);
        height: 90px;
    }
    to {
        background-color: rgba(99, 121, 223, 1);
        backdrop-filter: blur(8px);
        height: 72px;
        box-shadow: 0 0.2rem 1.1rem rgba(0, 0, 0, 0.35);
    }
}

@keyframes shrinkLogoDesktop {
    from {
        left: 50%;
        transform: translate(-170%, 0%) scale(1);
    }
    to {
        left: 0;
        transform: translate(20%, -50%) scale(0.5);
    }
}

@keyframes navBackgroundMobile {
    from {
        background-color: transparent;
    }
    to {
        background-color: rgba(99, 121, 223, 1);
        box-shadow: 0 0.2rem 1.1rem rgba(0, 0, 0, 0.35);
    }
}

@keyframes shrinkLogoMobile {
    from {
        transform: translate(calc(50vw - 45%), 62.69%) scale(0.9);
    }
    to {
        transform: translate(10%, -50%) scale(0.378);
    }
}

.header__burger {
    position: fixed;

    top: calc((61.2px - 1.44rem) / 2);
    right: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 2.025rem;
    height: 1.44rem;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 2100;
}

.header__burger-bar {
    display: block;
    width: 100%;
    height: 0.225rem;
    border-radius: 0.225rem;
    background-color: #ffffff;
    box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.4s ease, box-shadow 0.4s ease;
}

.header__burger.is-active .header__burger-bar:nth-child(1) {
    transform: translateY(0.6075rem) rotate(45deg);
}
.header__burger.is-active .header__burger-bar:nth-child(2) {
    opacity: 0;
}
.header__burger.is-active .header__burger-bar:nth-child(3) {
    transform: translateY(-0.6075rem) rotate(-45deg);
}

.header__burger.is-active .header__burger-bar {
    background-color: #ff3b3b;
    box-shadow: 0 0 0.5rem rgba(255, 59, 59, 0.9), 0 0 1rem rgba(255, 59, 59, 0.6);
}

@media (min-width: 62em) {
    .header__burger {
        display: none;
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -22rem;
    height: 100%;

    max-width: 20rem;
    background-color: rgba(99, 121, 223, 1);
    box-shadow: -0.2rem 0 1.5rem rgba(0, 0, 0, 0.4);
    z-index: 2000;
    padding: 7rem 1.5rem 2rem;
    transition: right 0.32s ease;
    overflow-y: auto;
}

.mobile-menu.is-open {
    right: 0;
}

body:has(.mobile-menu.is-open) .header__nav {
    box-shadow: none !important;
}

.mobile-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu__list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.mobile-menu__link {
    display: block;
    padding: 1rem 0.25rem;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.15rem;
    text-decoration: none;
    text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.4);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-menu__link:hover {
    color: #ffd5d5;
    padding-left: 0.75rem;
}

.mobile-menu__link--icon {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.mobile-menu__icon {
    width: 1.15rem;
    height: 1.15rem;
    flex: 0 0 auto;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1500;
}

.mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 62em) {
    .mobile-menu,
    .mobile-menu-overlay {
        display: none;
    }
}

.mobile-fab {
    position: fixed;
    right: 1rem;
    bottom: 2rem;
    z-index: 2200;
    display: flex;
    flex-direction: column;
    border-radius: 2rem;
    overflow: hidden;
    background-color: rgba(180, 210, 255, 0.35);
    -webkit-backdrop-filter: blur(0.6rem);
    backdrop-filter: blur(0.6rem);
    border: 0.09rem solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 0.3rem 1rem rgba(78, 144, 237, 0.45), 0 0 1.4rem rgba(120, 170, 255, 0.55);
    opacity: 0;
    transform: translateY(1rem) scale(0.9);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, width 0.35s ease, right 0.35s ease, border-radius 0.35s ease;
}

.mobile-fab.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.mobile-fab__half {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.4rem;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.mobile-fab__half svg {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-fab__half--phone {
    color: #2f6fed;
    border-bottom: 0.06rem solid rgba(255, 255, 255, 0.45);
}

.mobile-fab__half--phone:active {
    background-color: rgba(47, 111, 237, 0.18);
}

.mobile-fab__half--mail {
    color: #e23b3b;
}

.mobile-fab__half--mail:active {
    background-color: rgba(226, 59, 59, 0.18);
}

.mobile-fab__label {
    max-width: 0;
    margin-left: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 700;
    transition: max-width 0.3s ease, margin-left 0.3s ease, opacity 0.2s ease;
}

.mobile-fab.is-menu-expanded {
    border-radius: 1rem;
}

.mobile-fab.is-menu-expanded .mobile-fab__half {
    width: 100%;
}

.mobile-fab.is-menu-expanded .mobile-fab__label {
    max-width: 6rem;
    margin-left: 0.45rem;
    opacity: 1;
}

@media (min-width: 62em) {
    .mobile-fab {
        display: none;
    }
}

.form__privacy {
    margin-top: 0.25rem;
    margin-bottom: 1rem;
}

.form__privacy-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: #ffffff;
    font-size: 0.85rem;
    line-height: 1.5;
    cursor: pointer;
}

.form__privacy-checkbox {
    flex: 0 0 auto;
    width: 1.15rem;
    height: 1.15rem;
    margin-top: 0.15rem;
    accent-color: #db1d1d;
    cursor: pointer;
}

.form__privacy-label a {
    color: #ffffff;
    text-decoration: underline;
}

.form__privacy-label a:hover {
    color: #ffd5d5;
}

.form__honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    left: -9999px;
}

.form__status {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    min-height: 1.2em;
}

.form__status--success {
    color: #ffffff;
}

.form__status--error {
    color: #ffd5d5;
}

.contact__mail-container {
    text-align: center;
    margin-top: 0.25rem;
}

.contact__mail {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #3735a9;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    text-decoration: none;
}

.contact__mail:hover {
    text-decoration: underline;
}

.contact__mail-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex: 0 0 auto;
}

.header__burger,
.mobile-menu__link,
.mobile-fab__half {

    touch-action: manipulation;
}

@media (max-width: 61.99em) {
    html {
        background-color: rgb(99, 121, 223);
    }

    .footer {
        padding-bottom: calc(3rem + env(safe-area-inset-bottom, 0px));
    }
}

@media (max-width: 61.99em) and (orientation: landscape) {
    html {
        background-color: rgb(221, 227, 233) !important;
    }
}
