@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat.eot");
    src: url("../fonts/Montserrat.eot") format("embedded-opentype"),
        url("../fonts/Montserrat.woff2") format("woff"),
        url("../fonts/Montserrat.svg") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat-Medium";
    src: url("../fonts/Montserrat-Medium.eot");
    src: url("../fonts/Montserrat-Medium.eot") format("embedded-opentype"),
        url("../fonts/Montserrat-Medium.woff2") format("woff"),
        url("../fonts/Montserrat-Medium.svg") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat-Bold";
    src: url("../fonts/Montserrat-Bold.eot");
    src: url("../fonts/Montserrat-Bold.eot") format("embedded-opentype"),
        url("../fonts/Montserrat-Bold.woff2") format("woff"),
        url("../fonts/Montserrat-Bold.svg") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Dellanor-Script";
    src: url("../fonts/Dellanor-Script.eot");
    src: url("../fonts/Dellanor-Script.eot") format("embedded-opentype"),
        url("../fonts/Dellanor-Script.woff2") format("woff"),
        url("../fonts/Dellanor-Script.svg") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --pale-purple: #F2D9D0;
    --dark-purple: #d2a9a5;
    --light-purple: #efc3ba;
    --blue-purple: #fdf3f4;
    --pale_dark: #734838;
    --yellow-creme: #F2CDA0;
    --rose-red: #A62E4E;
    --rose: #f2b6c1;
    --night: #00100bff;
    --white: #ffffff;
    --creme: #fffaf1;
    --gray_light: #9fa0a0;
    --line-color: #d3d3d3;
    --border-color: #b3b3b3;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --button-color: #fdd2c4;
    --16px: 1rem;
    --24px: 1.5rem;
    --32px: 2rem;
    --300px: 18.75rem;
}

html {
    scroll-behavior: smooth;
    font-size: 10px;
}

body {
    width: 100%;
    height: 100vh;
    background-color: var(--creme);
    line-height: 1.5;
}

header,
nav,
section,
article,
hgroup,
figure {
    display: block;
}


ul>* {
    list-style: none;
}

li a * {
    text-decoration: none;
}

a {
    text-decoration: none;
}

p {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
}

.logo_desktop {
    width: 130px;
    height: 90px;
    padding: 10px 5px;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
}

.scroll-up {
    display: block;
    position: fixed;
    bottom: 2rem !important;
    right: 0;
    width: 4rem !important;
    height: auto;
    transform: translateX(100%);
    transition: transform 0.6s ease-in-out;
}

.scroll-up.show {
    transform: translateX(100%);
    transition: transform 0.6s ease-in-out;
    z-index: 999999 !important;
}

.main_bg {
    display: flex;
    max-width: 100%;
    max-height: 100%;
    margin: 90px auto 20rem auto;
    z-index: -1;
    position: relative !important;
}

.main_bg img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    z-index: -1 !important;
}

.main_bg::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: '';
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
}

.book_container {
    margin: 20dvh auto;
}

.container_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 2rem;
    width: 100%;
    height: fit-content;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    margin: 0 auto 20rem auto !important;
    perspective: 1000px;
}

.container_box .text_box,
.container_box .pic_box {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50rem;
    width: 100%;
    max-height: 50rem;
    height: 100%;
    position: relative;
}

.container_box .autor_pic {
    padding: 0;
}

.container_box .pic_box::before,
.container_box .book_pic::before,
.container_box .autor_pic::before {
    position: absolute;
    content: '';
    background-color: var(--button-color) !important;
    top: -2em;
    left: 4.5rem;
    display: block !important;
    width: 95%;
    height: 90%;
    border: none !important;
}

.container_box .book_pic,
.container_box .autor_pic {
    border: none !important;
}

/* Amazon-Button */
.container_full .amazon_box,
.container_full .amazon_box:visited {
    display: flex;
    width: fit-content;
    flex-direction: row;
    justify-content: center !important;
    align-items: center;
    margin: 15rem auto 6rem auto;
    text-align: center !important;
    background-color: var(--rose-red);
    padding: 2.5rem 2rem;
    box-shadow: 10px 10px 15px #b5b5b5,
        17px 17px 15px #ffffff;
    transition: 0.4s all ease-in-out;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: 0.4s all ease-in-out;
    z-index: 1;
}

.container_full .amazon_box p {
    font-family: "Montserrat-Medium", sans-serif;
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    font-weight: 600;
    text-align: center;
    color: var(--button-color);
    transition: 0.4s all ease-in-out;
}

.container_full .amazon_box:hover p {
    color: var(--white);
}

.container_full .amazon_box img {
    margin: 4rem auto 1rem auto;
}

/* Ende Amazon-Button */

.container_box .text_box {
    display: block;
    margin-top: 6rem;
    color: var(--light-purple);
    font-size: clamp(1.5rem, 5vw, 1.8rem);
    flex-direction: column;
    min-height: 16rem !important;
    max-height: 1500px;
    height: 100%;
    max-width: 950px;
    width: 100%;
    padding: 2rem 0;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    z-index: 1000;
}

.container_box .highlight {
    animation: none;
    margin: 0 auto;
    font-size: clamp(4rem, 5vw, 8rem);
}

.container_box .text_box p {
    font-family: "Montserrat-Medium", sans-serif;
    width: 100%;
    text-align: left;
    font-weight: bold;
    line-height: 2;
    color: var(--white);
}

.container_box .book_info p {
    color: var(--night);
}

/* Buch-Container Startseite */
.book_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    margin: 15rem auto 0 auto;
    gap: 2rem;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 6rem;
    z-index: 1 !important;
}

.book_container .box:not(.collage .box) {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    box-shadow: none;
    border: 1px solid transparent;
    border-radius: 15px;
    max-width: 550px;
    width: 100%;
    height: 100%;
    padding: 2rem 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.book_container .box .book_picture {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 450px;
    width: 100%;
}

@media screen and (max-width: 1500px) {
    .main_bg {
        margin: 120px auto 0 auto;
    }

    .reverse {
        flex-wrap: wrap-reverse !important;
        margin-top: 6rem;
    }

    .col_full_dp {
        width: 100% !important;
    }

    .double_box {
        display: flex;
        margin: 0 auto !important;
    }

    .double_box .col_pic {
        max-width: 75rem !important;
    }

    .double_box .col_label {
        min-width: 15rem !important;
        max-width: 60rem !important;
        width: 100% !important;
        min-height: 60rem !important;
        height: 100% !important;
        margin: -8rem auto 0 auto !important;
        padding: 2rem 20px;
    }

    .label_left .col_label {
        transform: none !important;
    }
}

@media screen and (max-width: 992px) {
    #site-nav {
        margin-left: 0 !important;
        flex-direction: column !important;
    }

    #site-nav .col {
        padding: 0.5rem !important;
        max-width: 100% !important;
    }

    .nav_container {
        box-shadow: 0 0 25px var(--night) !important;
        z-index: 2 !important;
    }

    .main_bg {
        margin: 100px auto 0 auto;
    }

    .book_container .box a {
        width: 100% !important;
    }

    .book_container .box {
        min-width: 100% !important;
    }

    .container_full,
    .container_full .media-container .advent_book,
    .leserstimmen,
    .notiz,
    .box_neutral {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 10px;
        padding-right: 10px;
    }

    .container_box,
    .media-container {
        padding: 0 !important;
    }

    .container_box .pic_hf {
        margin-bottom: 10rem;
    }

    .container_full .media-container .advent_book {
        border-radius: 0 !important;
        padding: 1rem 10px 4rem 10px !important;
    }

    .container_full .media-container .advent_book p {
        width: 100% !important;
        padding: 0 !important;
    }

    .container_full .media-container .advent_book_bt {
        width: 80% !important;
    }

    .leserstimmen {
        margin-top: 6rem !important;
    }

    .container_box .text_box {
        padding-left: 10px;
        padding-right: 10px;
    }

    .container_box .autor_pic,
    .collage .box {
        max-width: 100% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        max-height: 100% !important;
    }

    .collage .box {
        margin: 2rem 0 !important;
    }

    .container_box .autor_pic {
        margin-top: 4rem;
        padding-left: 10px;
        padding-right: 10px;
    }

    .container_box .autor_pic::before,
    .container_box .pic_box::before {
        display: none !important;
    }

    .double_box {
        width: 100% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .double_box .miniatur {
        border: 0.5rem ridge var(--white);
        min-width: 25rem !important;
        overflow: hidden;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .double_box .miniatur img {
        max-width: 70% !important;
        max-height: 70% !important;
    }

    .container_full .schnipsel_box {
        padding: 6rem 0 4rem 0 !important;
        border-radius: 2rem;
    }

    .double_box .schnipsel_content {
        margin: auto !important;
    }

    footer #footer_desktop {
        display: none !important;
    }

    footer #footer_mobil {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(10rem, 50%));
        grid-template-rows: repeat(auto-fit, minmax(10rem, 50%));
        place-items: center;
        grid-template-areas: "insta pinterest"
            "mail_legal logo"
            "copyright copyright";
        background-color: var(--light-purple) !important;
    }

    footer #footer_mobil .col_footer {
        display: flex !important;
        width: 100%;
        height: 100%;
        justify-content: center;
        align-items: center;
        padding: 1.5rem .5rem;
        margin-bottom: 0;
    }

    footer #footer_mobil img {
        border-radius: 0;
    }

    footer #footer_mobil .col1 {
        width: 100%;
        display: grid;
        grid-area: insta;
        border-bottom: 4px solid var(--creme);
    }

    footer #footer_mobil .col2 {
        width: 100%;
        display: grid;
        grid-area: pinterest;
        border-bottom: 4px solid var(--creme);
    }

    footer #footer_mobil .col3 {
        width: 100%;
        display: grid;
        grid-area: mail_legal;
        flex-direction: column;
        row-gap: 1rem;
    }

    footer #footer_mobil .col3 a:not(:first-child) {
        margin-left: 1.5rem;
    }

    footer #footer_mobil .col3 a:hover {
        color: var(--white);
    }

    footer #footer_mobil .col3 .legal a {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin-left: 0 !important;
    }

    footer #footer_mobil .col4 {
        display: grid;
        grid-area: logo;
        max-width: 12rem !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 0% !important;
        background-color: var(--light-purple) !important;
    }

    footer #footer_mobil .col3 img,
    footer #footer_mobil .col4 img {
        border-radius: 0%;
    }

    footer #footer_mobil .copyright {
        width: 100%;
        display: grid;
        grid-area: copyright;
        text-align: center;
        background-color: var(--creme);
    }

    footer #footer_mobil .col3 img:hover,
    footer #footer_mobil .col4 img:hover {
        pointer-events: none;
    }
}

/*************************** Ende Navigation ***************************/

/* Buch-Container Startseite */
.book_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    margin: 10rem auto;
    gap: 2rem;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 6rem;
}

.book_container .box:not(.collage .box) {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    box-shadow: none;
    border: 1px solid var(--rose-red);
    border-radius: 15px;
    max-width: 550px;
    width: 100%;
    height: 100%;
    padding: 2rem 1rem;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.5s ease-in-out;
}

.book_container .box:hover:not(.collage .box) {
    box-shadow: 0 0 6px var(--night) !important;
    transition: all 0.5s ease-in-out;
}

.book_container .box .book_picture {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 450px;
    width: 100%;
    margin: 0 auto 1rem auto;
}

.container_full .box_es_wird_einmal {
    padding: 6rem 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../img/linear_bg.webp") top no-repeat !important;
    background-size: cover !important;
    background-attachment: fixed !important;
    border-bottom: 1rem solid white;
}

.container_full .box_kurzgeschichten {
    padding: 6rem 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/roses-background.webp") center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    border-bottom: 1rem solid white;
}

.container_full .box_weihnachtsmomente {
    padding: 6rem 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/bg_zauberschoene_weihnachtsmomente.webp") center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    border-bottom: 1rem solid white;
}

.container_full .schnipsel_box .text_box {
    min-height: 20rem !important;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    padding: 2rem;
}

.container_full .schnipsel_box .miniatur,
.double_box .col_pic {
    justify-content: center;
    align-items: center;
    border: none !important;
    position: relative;
    z-index: 10;
}

.col_full_dp {
    width: 100dvw;
    background: linear-gradient(-60deg, var(--shadow-color), var(--creme));
    margin: 0 auto;
    padding: 4rem 10px;
}

.double_box {
    display: flex;
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 6rem;
    width: 80%;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.double_box .col_label {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    max-width: 60rem !important;
    width: 100%;
    flex-direction: column;
    margin-left: -8rem;
    padding: 2rem 2rem;
    z-index: 999999 !important;
    position: relative;
}

.book_button {
    padding: 1rem 2rem;
    background-color: var(--rose-red);
    color: var(--white);
    margin: 4rem auto;
    font-size: clamp(1.5rem, 4vw, 2rem);
    position: relative;
    z-index: 1;
}

.book_button::before {
    position: absolute !important;
    content: '' !important;
    background-color: var(--button-color) !important;
    top: 0 !important;
    right: 0 !important;
    width: 0 !important;
    height: 100% !important;
    transition: 0.5s all ease-in-out !important;
}

.book_button:hover::before {
    z-index: -1;
    width: 100% !important;
}

.book_button:hover span {
    z-index: 100 !important;
    color: var(--night) !important;
}

.double_box .miniatur {
    min-width: 50rem;
    min-height: 50rem;
    border: 0.5rem ridge var(--white) !important;
    backdrop-filter: blur(15px);
}

.double_box .miniatur img {
    display: block;
    max-width: 40%;
    max-height: 40%;
    object-fit: cover;
    filter: drop-shadow(0 0 10px var(--white));
}

.double_box .schnipsel_content {
    width: 100%;
    min-height: 40rem !important;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background-color: var(--white);
}

.label_left {
    flex-direction: row-reverse;
}

.label_left .col_label {
    transform: translateX(8rem);
}

.double_box .col_pic {
    display: flex;
    max-width: 65rem !important;
    width: 100%;
    max-height: 65rem !important;
    height: 100%;
    z-index: -1 !important;
}

.double_box .col_label p {
    width: fit-content;
    color: var(--border-color);
    font-size: clamp(1.5rem, 4vw, 2rem);
    mix-blend-mode: difference;
}

.book_container .box .book_picture img,
.container_full .container_box .pic_box img,
.container_box .autor_pic img,
.container_full .schnipsel_box .miniatur img,
.comic img,
.container_full .media-container img,
.collage .box img,
.double_box .col_pic img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.book_container .box .book_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: first baseline;
    min-height: 310px !important;
    margin: 0 auto;
    padding: 0.5rem 10px;
    position: relative;
    width: 100%;
}

.book_container .box .book_text h2 {
    position: absolute;
    top: 4rem;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100%;
    display: inline-block;
    font-size: clamp(1.8rem, 5vw, 2rem);
    text-align: center;
    color: var(--rose-red);
}

.book_container .box .book_text p {
    display: flex;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-weight: bolder;
    text-align: center;
    line-height: 1.5;
    color: var(--pale_dark);
    position: absolute;
    top: 14rem;
    left: 50% !important;
    transform: translateX(-50%) !important;
    padding: 0 1rem;
    transition: all 0.3s ease-in-out;
}

.book_container .box a {
    width: 80%;
    max-width: 60%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    background-color: var(--rose-red);
    padding: 1rem 0.2rem;
    margin: 0 auto 4rem auto;
    transition: all 0.4s ease-in-out;
    position: relative;
}

.book_container .box a .out_link {
    display: flex;
    align-items: center;
    font-family: "Montserrat-Bold", sans-serif;
    font-weight: 200;
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    color: var(--white);
    border: 1px solid transparent;
}

.comic {
    display: flex;
    max-width: 1570px;
    width: 100%;
    height: auto;
    margin: 0 auto 100px auto;
    padding-left: 10px;
    padding-left: 10px;
    position: relative;
    z-index: -2 !important;
}

.collage {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 6rem auto;
    padding: 5rem 0;
    position: relative;
    z-index: -10 !important;
}

.collage .box {
    display: flex;
    align-items: center;
    max-width: 500px;
    width: 100%;
    max-height: 500px;
    height: 100%;
}

.highlight,
.second_highlight,
.third_highlight {
    font-family: "Dellanor-Script", serif !important;
    font-weight: bold;
    color: var(--rose-red);
    margin: 200px auto 4rem auto;
    text-align: center;
    position: relative;
}

.second_highlight {
    font-size: clamp(4rem, 6vw, 6rem);
    margin: 12rem auto 4rem auto !important;
}

.highlight {
    display: flex;
    width: 100%;
    justify-content: center;
    font-size: clamp(4rem, 5vw, 10rem);
    margin: 200px auto 6rem auto;
    background: linear-gradient(to left, var(--rose-red), var(--white), var(--rose-red));
    background-size: 300% 50%;
    background-clip: text;
    color: transparent;
    animation: glow 6s linear infinite;
}

.third_highlight {
    font-size: clamp(5rem, 5vw, 6rem);
    margin: auto;
    color: var(--rose-red);
}

.schnipsel_highlight {
    color: var(--white);
}

.label_design_content {
    color: var(--rose-red);
    font-size: clamp(2rem, 3vw, 2.25rem) !important;
    margin-bottom: 2rem;
}

@keyframes glow {
    0% {
        background-position: 100% 0%;
        animation-delay: 1s;
    }

    50% {
        background-position: 100% 50%;
        animation-delay: 5s;
    }

    100% {
        background-position: 0% 100%;
        animation-delay: 9s;
    }
}

.second_highlight {
    margin: 200px 0 6rem 0;
}

.text_box_highlight {
    font-size: clamp(6rem, 10vw, 8rem) !important;
}

.container_full {
    max-width: 100dvw;
    width: 100%;
    margin: 0 auto;
    position: relative;
    perspective: 1000px;
}

/* Video-Container */
.container_full .media-container {
    display: inline-block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
}

.container_full .media-container #myVideo {
    display: block;
    width: 100%;
    height: auto;
    z-index: 9999 !important;
}

.container_full .media-container .control-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    border: none;
    padding: 2rem 2.5rem;
    font-size: 2rem;
    cursor: pointer !important;
    border-radius: 100vw;
    opacity: 1;
    transition: opacity 0.3s;
    z-index: 999999 !important;
}

.container_full .media-container .control-button.pause {
    opacity: 0;
    z-index: 999999999 !important;
}

/* Ende Video-Container */

.container_full .media-container .advent_book {
    max-width: 50dvw;
    height: auto;
    padding: 2rem 4rem;
    background-color: var(--white);
    margin: 0 auto;
    border-radius: 50% 50% 0 0;
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    overflow: hidden;
    position: relative;
    z-index: -1;
}

.container_full .media-container .advent_book p {
    font-family: "Montserrat", sans-serif;
    width: fit-content;
    font-weight: 600;
    line-height: 1.5;
    color: var(--night);
    margin-top: 10rem;
    text-align: center;
    padding: 4rem;
}

.container_full .media-container .advent_book_bt {
    background-color: var(--rose-red);
    padding: 1rem 2rem;
    width: fit-content;
    margin: -2rem auto 0 auto;
    z-index: 100;
}


.container_full .media-container .advent_book_bt p {
    font-family: "Montserrat-Medium", sans-serif;
    width: 100%;
    font-weight: 700;
    line-height: 1.5;
    color: var(--white);
    text-align: center;
}

.box_neutral {
    max-width: 90vw;
    width: 100%;
    margin: 20vh auto 0 auto;
}

.box_neutral h1 {
    font-family: "Montserrat-Medium";
    font-weight: 100;
    font-size: clamp(1.5rem, 5vw, 3rem);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.box_neutral h2 {
    font-family: "Montserrat-Medium";
    font-weight: 700;
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.box_neutral h3 {
    font-family: "Montserrat-Medium";
    font-weight: 600;
    font-size: clamp(1.3rem, 4vw, 2rem);
    margin-bottom: 1rem;
}

.box_neutral .name_highlight {
    color: var(--rose-red);
    font-size: clamp(1.2rem, 6vw, 2rem);
}

.box_neutral p,
.box_neutral ul li {
    font-family: "Montserrat-Medium";
    font-weight: 100;
    font-size: clamp(1.125rem, 5vw, 2rem);
    margin-bottom: 1rem;
}

.box_neutral ul {
    margin: 4rem 0 4rem 2rem;
}

.box_neutral ul li::before {
    content: '\2712';
    font-size: clamp(1.125rem, 4vw, 2rem);
    margin-right: 1rem;
}

.box_neutral ul li,
.box_neutral ul li a {
    color: var(--night);
    transition: 0.3s all ease-in-out;
}

.box_neutral a {
    color: var(--gray_light);
    font-size: clamp(1.2rem, 6vw, 2rem);
    transition: 0.3s all ease-in-out;
}

.box_neutral a:hover {
    color: var(--night) !important;
}

.leserstimmen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60%;
    margin: 0 auto;
    padding: 6rem 2rem;
    position: relative;
}

.leserstimmen::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 10px;
    bottom: 0;
    display: block;
    background-color: transparent;
    border: 4px solid var(--rose);
    width: calc(100% - 10px);
    height: 100%;
    z-index: -1 !important;
    opacity: 0.6;
}

.leserstimmen p {
    color: var(--night);
    font-family: "Montserrat-Medium", sans-serif;
    font-weight: 100 !important;
    text-align: left;
    line-height: 2;
    position: relative;
}

.leserstimmen .quotes_top_left,
.leserstimmen .quotes_right_bottom {
    content: '';
    position: absolute;
    max-width: 10rem;
    width: 100%;
    max-height: 10rem;
    height: 100%;
    background: url('../img/double-quotes.jpg') center no-repeat;
    background-size: contain;
}

.leserstimmen .quotes_top_left {
    top: -5.5rem;
    left: 4rem;
    z-index: 1 !important;
}

.leserstimmen .quotes_right_bottom {
    bottom: -6rem;
    right: 4rem;
    transform: rotate(-180deg);
}

.cursiv {
    display: block;
    width: 100%;
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    font-style: italic;
    color: var(--rose-red) !important;
    margin-top: 1rem;
}

.notiz {
    width: 80%;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 8px var(--shadow-color);
    position: relative;
}

.myParagraph {
    color: var(--night);
    font-family: "Montserrat-Medium", sans-serif;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 100;
    text-align: left;
    line-height: 2;
    padding: 1rem 2rem;
    border-top: 1px solid var(--border-color);
    border-left: 8px solid var(--rose-red);
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    margin: 0 0 1rem 0;
    position: relative;
}

.myParagraph::before {
    position: absolute;
    content: '';
    background-color: var(--rose-red);
    left: 0;
    top: 0;
    width: 1rem;
    height: 100%;
}

/* Footer Desktop */
footer #footer_desktop {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
    grid-auto-rows: 15rem;
    width: 100vw;
    position: relative !important;
    box-shadow: none;
    overflow: hidden;
    margin-top: 20rem;
    background-color: var(--light-purple) !important;
}

footer #footer_desktop .col_footer {
    display: grid;
    place-items: center;
    padding: 2rem 1.5rem;
    width: 100% !important;
    height: 100% !important;
    row-gap: 1.5rem !important;
}

footer #footer_desktop .col1 {
    background-color: var(--light-purple);
    margin-bottom: 1.5rem;
}

footer #footer_desktop .col2 {
    margin-bottom: 1.5rem;
}

footer #footer_desktop .col3 {
    display: flex;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    background-color: var(--light-purple);
    padding: 0.5rem !important;
}

footer #footer_desktop .col3 p {
    color: var(--night);
    margin-left: 2rem;
    letter-spacing: 2px;
    font-size: clamp(1.25rem, 3vw, 1.8rem);
    pointer-events: none;
}

footer #footer_desktop .col4 {
    height: 100%;
    justify-self: end;
}

footer #footer_desktop .col4 a,
footer #footer_mobil .col3 a,
footer #footer_mobil .col3 p {
    font-size: clamp(1.125rem, 4vw, 2rem);
    color: var(--night);
    cursor: pointer !important;
    z-index: 100000 !important;
    transition: 0.3s all ease-in-out;
}

footer #footer_desktop .col4 a:hover {
    color: var(--white);
}

.icon_footer {
    max-width: 5rem;
    width: 100%;
    height: auto;
}

footer #footer_desktop img,
footer #footer_mobil img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 50%; */
    transition: 0.5s all ease-in-out;
}

footer #footer_desktop img:hover,
footer #footer_mobil img:hover {
    cursor: pointer !important;
    border-radius: 50%;
    background-color: var(--rose);
}

/* footer #footer_desktop .col_footer:nth-child(3) img {
    border-radius: 0% !important;
} */

footer #footer_desktop .col_footer:nth-child(1) img:hover {
    mix-blend-mode: normal !important;
    pointer-events: none !important;
    cursor: default !important;
}

footer #footer_desktop .logo_footer {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -25%);
    max-width: 15rem;
    width: 100%;
    pointer-events: none;
    cursor: normal !important;
}

footer #footer_desktop .logo_footer img {
    border-radius: 0% !important;
}

.copyright {
    display: block;
    width: 100vw;
    padding: 1rem 10px;
    background-color: var(--pale-purple);
    pointer-events: none;
}

.copyright p {
    font-size: "Roboto-Regular", sans-serif;
    text-align: center;
    font-size: clamp(1.25rem, 3vw, 1.8rem);
}

footer #footer_mobil {
    display: none;
}

/* Footer Desktop Ende */

img {
    filter: saturate(110%) contrast(112%);
    -webkit-filter: saturate(110%) contrast(112%);
    -moz-filter: saturate(110%) contrast(112%);
}

/* Nach-Oben-Button */
.scroll-up {
    display: block;
    position: fixed;
    bottom: 4rem;
    right: 0;
    width: 60px;
    height: auto;
    border-radius: 0;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    opacity: 1;
}

.scroll-up.show {
    transform: translateX(calc(100% - 5rem));
}

.scroll-up.hidden {
    opacity: 0;
    pointer-events: none;
}