@media only screen and (min-width: 314px) and (max-width: 560px) {

    html {
        color: rgb(20, 20, 20);
        font-family: Spline Sans;
        font-size: 1vw;
        font-weight: 400;
        font-style: normal;
        user-select: none;
        scroll-behavior: smooth;
        overflow-x: hidden;
    }

    :root {
        --bluedefault: rgb(7, 110, 194);
        --minlightblue: rgb(30, 135, 222);
        --darkbluedefault: rgb(5, 76, 134);
        --orangedefault: rgb(247, 142, 5);
        --defaultwhite: rgb(255, 255, 255);
        --defaultblack: rgb(20, 20, 20);
        --defaultgrey: rgb(160, 160, 160);
        --lightgrey: rgb(200, 200, 200);
        --bannerheight: 700px;
        --contentwidth: 90%;
        --titlefontsize: 4rem;
        --titlefontweight: 600;
        --textfontsize: 2.75rem;
    }
    a {
        transition: 0.25s;
        cursor: pointer;
    }

    body {
        width: 100%;
        /*background-image: url("/assets/src/bgblue.png");*/
        background-size: 100% 70%;
        background-position: 0% 110%;
        background-repeat: no-repeat;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0px;
        margin: 0px;
    }
    .mobilemenu {
        width: 0%;
        height: 100%;
        position: fixed;
        background: rgb(5, 76, 134, 0.8);
        left: 0%;
        top: 0%;
        z-index: 95;
        margin-top: 10%;
        overflow: hidden;
    }
        .mobilemenu #mobilemenulink {
            padding-top: 35px;
            padding-left: 25px;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            gap: 15px;
        }
            .mobilemenu #mobilemenulink a {
                font-size: 4.5rem;
                font-weight: 400;
                color: var(--defaultwhite);
                text-decoration: none;
            }

    .navigation {
        width: 100%;
        /*box-shadow: 0px 0px 4px var(--bluedefault);*/
        box-shadow: 0px 0px 3px rgb(40, 40, 40, 0.5);
        background: var(--defaultwhite);
        position: fixed;
        left: 0%;
        top: 0%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        z-index: 100;
    }
    .navigation #navicontent {
        width: var(--contentwidth);
        padding-top: 15px;
        padding-bottom: 10px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        transition: 0.25s;
    }
    .navigation #navicontent .logo {
        width: 30% !important;
        transition: 0.25s;
    }
    .navigation #navicontent .logo img {
        width: 100%;
    }
    .navigation #navicontent #desktoplinks {
        display: none;
    }
    .navigation #navicontent #desktoplinks a {
        color: var(--bluedefault);
        text-decoration: none;
    }
    .navigation #navicontent #desktoplinks a:hover {
        color: var(--darkbluedefault);
        cursor: pointer;
    }
    .navigation #navicontent a#mobilemenulink {
        font-size: 4rem;
        display: block;
    }
.navigation #navicontent a#mobilemenulinkcls {
    display: none;
    font-size: 4rem;
}
    .accordionwrapper {
        width: 100%;
        position: relative;
        margin-top: 5%;
        margin-bottom: 2%;
    }
    .accordionwrapper #acctitle {
        width: 100%;
        font-size: var(--titlefontsize);
        font-weight: var(--titlefontweight);
        margin-bottom: 2%;
    }
    .accordionwrapper .accordion {
        background-color: var(--darkbluedefault);
        color: var(--defaultwhite);
        cursor: pointer;
        padding: 18px;
        width: 100%;
        border: none;
        text-align: left;
        outline: none;
        font-size: 15px;
        transition: 0.4s;
    }
    .accordionwrapper .active, .accordion:hover {
        background-color: var(--bluedefault);
    }
    .accordionwrapper .accordion::after {
        content: '\002B';
        color: var(--defaultwhite);
        font-weight: bold;
        float: left;
        margin-right: 5px;
    }
    .accordionwrapper .active::after {
        content: "\2212";
    }
    .accordionwrapper .panel {
        padding: 0 18px;
        background-color: var(--defaultwhite);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.2s ease-out;
    }


    #eventextra {
        width: 120px;
        height: 120px;
        overflow: hidden;
        position: fixed;
        right: 2%;
        bottom: 2%;
        z-index: 210;
    }
    #eventextra #close {
        width: 100%;
        position: absolute;
        z-index: 300;
    }
    #eventextra #close span {
        width: 100%;
        text-align: right;
        display: block;
    }
    .eventcover {
        width: 0%;
        height: 100%;
        position: fixed;
        left: 0%;
        top: 0%;
        background: rgb(25, 25, 25, 0.75);
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        overflow: hidden;
    }
    .eventcover .eventbox {
        width: 95%;
        background: var(--defaultwhite);
        position: absolute;
        border-radius: 12.5px;
    }
    .eventcover .eventbox #eventboxcontent {
        padding: 3.15rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 3.75rem;
    }
        .eventcover .eventbox #eventboxcontent #eventtitle {
            width: 100%;
            text-align: center;
            font-size: 6rem;
            font-weight: 500;
        }
        .eventcover .eventbox #eventboxcontent #eventtext {
            width: 100%;
            text-align: center;
            font-size: 3.5rem;
        }
        .eventcover .eventbox #eventboxcontent a {
            width: 100%;
            display: block;
            transition: 0.25s;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }
            .eventcover .eventbox #eventboxcontent a button {
                width: 75%;
                padding: 15px;
                border: none;
                background: var(--darkbluedefault);
                color: var(--defaultwhite);
                text-decoration: none;
                font-weight: 400;
                font-size: 3.5rem;
                border-radius: 10px;
                transition: 0.25s;
            }
                .eventcover .eventbox #eventboxcontent a button:hover {
                    background: var(--bluedefault);
                    cursor: pointer;
                }
                .eventcover .eventbox #eventboxcontent p {
                    font-size: 3rem;
                    width: 100%;
                    text-align: center;
                    padding: 0px;
                    margin: 0px;
                }

    .main {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin-top: 3%;
        gap: 0px;
    }
    .main a#next {
        margin-bottom: 50px;
    }
    .main .lawbox {
        width: var(--contentwidth);
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 15px;
        margin-top: 75px;
        margin-bottom: 50px;
    }
    .main .lawbox #lawbigtitle {
        width: 100%;
        font-size: 7rem;
        font-weight: 600;
    }
    .main .lawbox #lawmidtitle {
        width: 100%;
        font-size: 5rem;
        font-weight: 500;
    }
    .main .lawbox #lawinfobox {
        flex-grow: 1;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: flex-start;
        gap: 10px;
    }
    .main .lawbox #lawinfobox #infolaw {
        width: 100%;
        background: rgba(201, 231, 255, 0.25);
        border: 1px solid rgb(15, 45, 68);
        border-radius: 15px;
    }
    .main .lawbox #lawinfobox #infolaw #content {
        width: unset;
        padding: 10px;
        margin: 0px;
    }
    .main .lawbox #lawinfobox #infolaw #content #infotitle {
        font-size: 3rem;
        font-weight: 500;
        margin-bottom: 1%;
    }
    .main .lawbox #lawinfobox #infolaw #content #text {
        font-size: 2.25rem
    }
    .main .lawbox #lawboxide {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 10px;
    }
    .main .lawbox #lawboxide #lawtitle {
        width: 100%;
        font-size: 4.1rem;
        font-weight: 400;
    }
    .main .lawbox #lawboxide #lawdesc {
        width: 100%;
        font-size: 3rem;
        font-weight: 300;
    }
    .main .lawbox #lawboxide #lawdesc a {
        color: var(--bluedefault);
        font-weight: 400;
        text-decoration: none;
        transition: 0.25s;
    }
    .main .lawbox #lawboxide #lawdesc a:hover {
        color: var(--orangedefault);
    }
    .main .banner {
        width: 100%;
        min-height: var(--bannerheight);
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    .main .banner#defaultbg {
        background: unset;
    }
    .main .banner#bkvbg {
        background-image: url("/assets/src/young-business-people-standing-in-a-row-together-2026-01-08-05-44-14-utc.jpg");
        background-size: 115%;
        background-attachment: scroll;
        background-repeat: no-repeat;
        background-position: 0% 30%;
    }
    .main .banner #cover {
        display: none !important;
    }
    .main .bannerhomepage #textwraphomepage {
        width: var(--contentwidth);
        padding-top: 25px;
        padding-bottom: 25px;
        color: var(--defaultwhite);
        z-index: 1;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
    }
    .main .banner #textwrapextra {
        width: var(--contentwidth);
        padding-top: 25px;
        padding-bottom: 25px;
        color: var(--defaultwhite);
        z-index: 1;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row-reverse;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
    }
    .main .banner #textwrapextra #descr {
        width: 25%;
        font-size: var(--titlefontsize);
        font-weight: var(--titlefontweight);
    }
    .main .banner #textwrapextra #calender {
        width: 70%;
    }
    .main .banner #textwrapextra #calender .calendly-inline-widget {
        padding: 0px;
        margin: 0px;
    }
    .main .banner #textwrapextra #calender iframe {
        width: 100%;
        min-height: 700px;
        margin: 0px;
        padding: 0px;
    }
    .main .bannerhomepage {
        width: 100%;
        overflow: hidden;
        min-height: 325px !important;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin-top: 7.5%;
    }
    .main .bannerhomepage#defaultbg {
        background-image: url("/assets/src/concentrated-businessman-making-presentation-at-wh-2024-11-19-17-48-54-utc.jpg");
        background-size: 155%;
        background-attachment: scroll;
        background-repeat: no-repeat;
        background-position: 0% 30%;
    }
    .main .bannerhomepage#defaultbg #cover {
        width: 100%;
        min-height: 325px !important;
        background: rgb(5, 76, 134, 0.5);
        position: absolute;
        z-index: 0 !important;
        overflow: hidden;
    }
    .main .bannerhomepage #textwraphomepage #title {
        width: 50%;
        font-size: 4rem;
        font-weight: var(--titlefontweight);
    }
    .main .bannerhomepage #textwraphomepage #text {
        width: 60%;
        font-size: var(--textfontsize);
        font-weight: 300;
        line-height: 1.25;
    }
    .main .bannerhomepage #textwraphomepage #text a.infobutton {
        max-width: 100%;
        background: var(--darkbluedefault);
        color: var(--defaultwhite);
        text-decoration: none;
        font-weight: 400;
        padding: 15px;
        border-radius: 15px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-top: 15px;
    }
    .main .bannerhomepage #textwraphomepage #text a.infobutton:hover {
        background: var(--bluedefault);
    }
    .main .bannerhomepage #textwraphomepage #text a.infobutton #content {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .main .bannerhomepage #textwraphomepage #text a.infobutton #content svg {
        font-size: 2.25rem;
        padding: 0px;
        line-height: unset;
    }
    .main .bannerhomepage #textwraphomepage #text a.infobutton #content span {
        font-size: 2.5rem;
        padding: 0px;
        line-height: unset;
    }
    .main .banner #textwrap {
        width: 100%;
        padding-top: 0px;
        padding-bottom: 25px;
        margin-top: 15%;
        color: var(--defaultwhite);
        z-index: 1;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
    .main .banner #textwrap #title {
        padding-top: 0px;
        margin-top: 5%;
        margin-bottom: -3.5%;
        font-size: 6.5rem;
        font-weight: var(--titlefontweight);
        color: var(--defaultblack);
    }
    .main .banner #textwrap #calender {
        width: 100% !important;
    }
    .main .banner #textwrap #calender iframe {
        width: 100%;
        min-height: 900px;
        margin: 0px;
        padding: 0px;
    }
    .main .banner #textwrap #calender html {
        box-sizing: unset !important;
    }
    .main .banner #textwrap #text {
        width: 55%;
        font-size: var(--textfontsize);
        font-weight: 300;
        line-height: 1.75rem;
    }
    .main .banner #textwrap #text a.infobutton {
        max-width: 50%;
        background: var(--darkbluedefault);
        color: var(--defaultwhite);
        text-decoration: none;
        font-weight: 400;
        padding: 15px;
        border-radius: 15px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-top: 35px;
    }
    .main .banner #textwrap #text a.infobutton:hover {
        background: var(--bluedefault);
    }
    .main .banner #textwrap #text a.infobutton #content {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .main .banner #textwrap #text a.infobutton #content svg {
        font-size: 0.9rem;
        padding: 0px;
        line-height: unset;
    }
    .main .banner #textwrap #text a.infobutton #content span {
        font-size: 1rem;
        padding: 0px;
        line-height: unset;
    }

    .main .gkvvergleichad {
        width: 100%;
        min-height: 200px;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 5rem;
    }
    .main .gkvvergleichad#defaultbg {
        /*background-image: url("") !important; /* hide this to show the background image  */
        background-image: url("/assets/src/desk-office-business-financial-accounting-calculat-2026-01-08-05-58-15-utc.jpg");
        background-size: 100%;
        background-attachment: scroll;
        background-repeat: no-repeat;
        background-position: 0% 0%;
    }
    .main .gkvvergleichad#defaultbg #cover {
        width: 100%;
        min-height: var(--bannerheight);
        background: rgb(5, 76, 134, 0.5);
        position: absolute;
        z-index: 0;
        display: none; /* can be set to none or default */
    }
    .main .gkvvergleichad #cont {
        width: var(--contentwidth);
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .main .gkvvergleichad #cont .gkviframe {
        width: 100%;
        border: none;
        padding: 0px;
        display: block;
        overflow: unset;
    }
    .main .gkvvergleichad #cont #textwrap {
        width: 60%;
        padding-top: 25px;
        padding-bottom: 25px;
        color: var(--defaultblack);
        z-index: 1;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 5px;
    }
    .main .gkvvergleichad #cont #textwrap #title {
        font-size: var(--titlefontsize);
        font-weight: var(--titlefontweight);
    }
    .main .gkvvergleichad #cont #textwrap #calender {
        width: 50%;
        background: white;
    }
    .main .gkvvergleichad #cont #textwrap #text {
        width: 100%;
        font-size: var(--textfontsize);
        font-weight: 300;
        line-height: 1.25;
    }
    .main .gkvvergleichad #cont #textwrap #text a.infobutton {
        max-width: 100%;
        background: var(--darkbluedefault);
        color: var(--defaultwhite);
        text-decoration: none;
        font-weight: 400;
        padding: 15px;
        border-radius: 15px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-top: 15px;
    }
    .main .gkvvergleichad #cont #textwrap #text a.infobutton:hover {
        background: var(--bluedefault);
    }
    .main .gkvvergleichad #textwrap #text a.infobutton #content {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .main .gkvvergleichad #cont #textwrap #text a.infobutton #content svg {
        font-size: 2.25rem;
        padding: 0px;
        line-height: unset;
    }
    .main .gkvvergleichad #cont #textwrap #text a.infobutton #content span {
        font-size: 2.5rem;
        padding: 0px;
        line-height: unset;
    }

    .main .allproducts {
        width: 100%;
        padding-bottom: 65px;
        color: var(--darkbluedefault);
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin-bottom: 100px;
    }
    .main .allproducts #titleproducts {
        width: 100%;
        text-align: center;
        font-size: var(--titlefontsize);
        font-weight: var(--titlefontweight);
        color: var(--defaultblack);
        padding-bottom: 50px;
        padding-top: 35px;
    }
    .main .allproducts #allproductsbox {
        width: var(--contentwidth);
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 50px;
    }
    .main .allproducts #allproductsbox .product {
        flex-grow: 1;
        height: 200px;
        max-width: 30%;
        min-width: 30%;
        border: 0px solid var(--minlightblue);
        border-bottom-style: inset;
        border-right-style: inset;
        border-left-style: outset;
        border-top-style: outset;
        text-decoration: none;
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
        border-radius: 25px;
        /* border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px; */
        transition: 0.25s;
        overflow: hidden;
        box-shadow: inset 0px 0px 0px 2.5px var(--minlightblue);
    }
    .main .allproducts #allproductsbox .product span {
        width: 100%;
        text-align: center;
        font-size: var(--textfontsize);
        font-weight: 500;
        color: var(--darkbluedefault);
        z-index: 90;
    }
    .main .allproducts #allproductsbox .product #coverproducts {
        height: 200px;
        position: absolute;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        z-index: 80;
        opacity: 0;
        transition: 0.25s;
    }
    .main .allproducts #allproductsbox .product #coverproducts svg {
        width: 100%;
        text-align: center;
        color: var(--darkbluedefault);
        font-size: 5rem;
        opacity: 0.5;
    }
    .main .allproducts #allproductsbox .product:hover #coverproducts {
        opacity: 1;
    }
    /* .main .allproducts #allproductsbox .product:hover {
        box-shadow: inset 0px 0px 15px 0px var(--minlightblue);
    } */
    .main .ourservice {
        width: 100%;
        min-height: 550px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 25px;
        margin-bottom: 100px;
    }
    .main .ourservice#defaultbg {
        background-image: url("/assets/src/euro-money-on-a-light-background-close-up-2026-01-07-23-22-31-utc.jpg");
        background-size: 120%;
        background-attachment: scroll;
        background-repeat: no-repeat;
        background-position: 40% 15%;
    }
    .main .ourservice #textbox {
        width: var(--contentwidth);
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 25px;
    }
    .main .ourservice #textbox #ourservicetext {
        width: 55%;
        font-size: var(--textfontsize);
        font-weight: 300;
    }
    .main .ourservice #textbox span {
        font-size: var(--titlefontsize);
        font-weight: var(--titlefontweight);
    }
    .main .ourservice #imgwrap {
        width: 50% !important;
    }
    .main .ourservice #contentbox {
        width: 100%;
        max-width: 48%;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 5px;
    }
    .main .ourservice #contentbox #service {
        flex-grow: 1;
        max-width: 45%;
        padding: 15px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
    }
    .main .ourservice #contentbox #service #icon {
        flex-grow: 1;
        max-width: 5%;
        color: var(--bluedefault);
    }
    main .ourservice #contentbox #service #icon svg {
        font-size: 2rem;
    }
    .main .ourservice #contentbox #service span {
        font-size: 1.05rem;
    }
    .calendly-inline-widget {
        width: 100% !important;
        background: transparent !important;
        position: unset !important;
    }
    .main .allproductstwo {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: center;
        gap: 0px;
        margin-bottom: 50px;
    }
    .main .allproductstwo #title {
        width: 100%;
        background: var(--darkbluedefault);
        color: var(--defaultwhite);
        text-align: center;
        font-size: var(--titlefontsize);
        font-weight: var(--titlefontweight);
        padding-bottom: 25px;
        padding-top: 25px;
    }
    .main .allproductstwo a {
        width: 50%;
        min-height: 50px;
        height: 150px;
        display: block;
        transition: 0.25s;
    }
    .main .allproductstwo a:hover .product #cover {
        opacity: 0.5;
        transition: 0.25s;
    }
    .main .allproductstwo a .product {
        width: 100%;
        min-height: 50px;
        height: 150px;
        background-size: 120%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        transition: 0.4s;
    }
    .main .allproductstwo a .product:hover {
        background-size: 135%;
    }
    .main .allproductstwo a .product #cover {
        width: 100%;
        min-height: 150px;
        background: var(--bluedefault);
        opacity: 0.35;
        transition: 0.25s;
    }
    .main .allproductstwo a .product #text {
        font-size: 3rem;
        font-weight: var(--titlefontweight);
        color: var(--defaultwhite);
        position: absolute;
    }
    /* backgrounds */
    #brillebg {
        background-position: center;
        background-repeat: no-repeat;
        background-image: url("/assets/src/shot-of-a-young-woman-buying-a-new-pair-of-glasses-2023-11-27-05-10-14-utc.jpg");
    }
    #ambulantbg {
        background-position: center;
        background-repeat: no-repeat;
        background-image: url("/assets/src/doctor-measuring-blood-pressure-of-overweight-woma-2026-01-26-17-05-05-utc.jpg");
    }
    #stationaerbg {
        background-position: center;
        background-repeat: no-repeat;
        background-image: url("/assets/src/family-visiting-senior-patient-in-hospital-2026-01-05-01-17-42-utc.jpg");
    }
    #pflegebg {
        background-position: center;
        background-repeat: no-repeat;
        background-image: url("/assets/src/asian-young-caregiver-nurse-support-senior-older-m-2026-01-09-11-33-57-utc.jpg");
    }
    #ktgbg {
        background-position: center;
        background-repeat: no-repeat;
        background-image: url("/assets/src/stethoscope-on-eu-and-us-dollar-banknotes-finance-2026-01-08-22-37-35-utc.jpg");
    }
    #pkvbg {
        background-position: center;
        background-repeat: no-repeat;
        background-image: url("/assets/src/male-hands-with-paper-cut-family-house-model-and-2026-03-13-01-12-46-utc.jpg");
    }
    #optionbg {
        background-position: center;
        background-repeat: no-repeat;
        background-image: url("/assets/src/business-people-group-assembling-jigsaw-puzzle-2026-03-17-04-39-52-utc.jpg");
    }
    #zahnbg {
        background-position: center;
        background-repeat: no-repeat;
        background-image: url("/assets/src/close-up-of-hand-dentist-is-holding-dentures-jaw-s-2026-03-13-04-14-09-utc.jpg");
    }
    .main .beratungpage {
        margin-top: 4% !important;
        flex-direction: row-reverse !important;
        align-content: center !important;
        justify-content: center !important;
    }
    .main .beratungpage #textwrap {
        width: 50% !important;
    }
    .main .beratungpage #imgwrap {
        border-radius: 35px;
    }
    .main .familyservice {
        min-height: 350px;
        flex-direction: column-reverse !important;
        justify-content: flex-start !important;
        align-items: center !important;
    }
    .main .familyservice#familyservicebg {
        background-image: url("/assets/src/smiling-parents-piggybacking-happy-children-isolat-2026-01-06-00-34-25-utc.jpg");
        background-size: 110%;
        background-attachment: scroll;
        background-repeat: no-repeat;
        background-position: 100% 35%;
    }
    .main .familyservice #familycalendly, .main .beratungpage #familycalendly {
        flex-grow: 1;
        max-height: 9999px;
        height: 0px;
        overflow: hidden;
    }
    .main .familyservice #familycalendly iframe, .main .beratungpage #familycalendly iframe {
        width: 100%;
        border: none;
    }
    .main .familyservice #textwrap {
        width: 100% !important;
        padding-top: 15px;
        background: var(--defaultwhite);
    }
    .main .beratungpage #textwrap #buttons {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 15px;
    }
    .main .familyservice #textwrap a, .main .beratungpage #textwrap #buttons a {
        display: block;
    }
    .main .familyservice #textwrap a button, .main .beratungpage #textwrap #buttons a button {
        padding: 15px;
        padding-left: 25px;
        padding-right: 25px;
        border-radius: 15px;
        background: var(--darkbluedefault);
        color: var(--defaultwhite);
        border: none;
        font-size: var(--textfontsize);
        font-weight: 400;
        cursor: pointer;
        transition: 0.25s;
    }
    .main .beratungpage #textwrap #buttons a button#hidebtncal {
        background: var(--defaultgrey) !important;
        color: var(--defaultblack) !important;
        display: none;
    }
    .main .familyservice #textwrap a:hover button, .main .beratungpage #textwrap #buttons a:hover button {
        background: var(--bluedefault);
    }
    .main .beratungpage #textwrap #buttons a:hover button#hidebtncal {
        background: var(--lightgrey) !important;
    }
    .main .familyservice #imgwrap, .main .beratungpage #imgwrap, .main .ourservice #imgwrap {
        display: none;
        width: 40%;
        height: 400px;
        background-image: url("/assets/src/smiling-parents-piggybacking-happy-children-isolat-2026-01-06-00-34-25-utc.jpg");
        background-size: cover;
        background-position: center 25%;
        background-repeat: no-repeat;
    }
    #imgwrap.imgbrille {
        background-image: url("/assets/src/shot-of-a-young-woman-buying-a-new-pair-of-glasses-2023-11-27-05-10-14-utc.jpg") !important;
    }
    #imgwrap.homepageservice {
        background-position: center center !important;
        background-image: url("/assets/src/wooden-figures-of-little-men-a-family-the-docto-2025-03-24-03-21-54-utc.jpg") !important;
    }
    .main .productswrap, .main .familyservice, .main .beratungpage {
        width: var(--contentwidth);
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 25px;
        margin-bottom: 50px;
    }
    .main .productswrap #textwrap, .main .familyservice #textwrap, .main .beratungpage #textwrap {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 10px;
    }
    .main .productswrap #textwrap #title, .main .familyservice #textwrap #title, .main .beratungpage #textwrap #title {
        font-size: var(--titlefontsize);
        font-weight: var(--titlefontweight);
    }
    .main .productswrap #textwrap #undertitletext, .main .familyservice #textwrap #undertitletext, .main .beratungpage #textwrap #undertitle {
        font-size: var(--textfontsize);
        font-weight: 300;
    }
    .main .productswrap #vorsorgepakethomepage {
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        align-content: flex-end;
        gap: 40px;
    }
    .main .productswrap #vorsorgepakethomepage #contentvorsorgepaket {
        width: 100%;
        padding: 0px;
        padding-top: 30px;
        padding-bottom: 30px;
        box-shadow: 0px 0px 5px var(--bluedefault);
        color: var(--bluedefault);
        text-decoration: none;
        transition: 0.25s;
        border-radius: 15px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .main .productswrap #vorsorgepakethomepage #contentvorsorgepaket:hover {
        padding: 30px;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .main .productswrap #vorsorgepakethomepage #contentvorsorgepaket:hover #text {
        font-size: 3.05rem !important;
    }
    .main .productswrap #vorsorgepakethomepage #contentvorsorgepaket #icon {
        flex-grow: 1;
        max-width: 10%;
        text-align: center;
    }
    .main .productswrap #vorsorgepakethomepage #contentvorsorgepaket #icon svg {
        font-size: 6rem;
        padding-left: 10px;
    }
    .main .productswrap #vorsorgepakethomepage #contentvorsorgepaket #text {
        flex-grow: 1;
        font-size: 3.05rem;
        max-width: 85%;
        transition: 0.25s;
    }
    @keyframes shaking {
        0% {transform: rotate(0deg);}
        25% {transform: rotate(10deg);}
        50% {transform: rotate(0deg);}
        75% {transform: rotate(-10deg);}
        100% {transform: rotate(0deg);}
    }
    .notificationbutton {
        width: 120px;
        height: 120px;
        overflow: hidden;
        position: fixed;
        right: 2%;
        bottom: 2%;
        z-index: 210;
    }
    .notificationbutton a {
        width: 100%;
        height: 100%;
    }
    .notificationbutton img {
        width: 75%;
        animation: shaking;
        animation-delay: 2s;
        animation-duration: 1s;
        animation-iteration-count: infinite;
    }
    .notificationbutton #close {
        font-size: 4rem;
        position: absolute;
        top: 0.5%;
        right: 3.5%;
    }
    .main .reviews {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        flex-display: row;
        justify-content: space-evenly;
        align-items: center;
        row-gap: 15px;
        margin-bottom: 50px;
    }
    .main .reviews img {
        width: 10%;
    }
    .main .reviews #reviewbox {
        width: 45%;
        background: var(--darkbluedefault);
        color: var(--defaultwhite);
    }
    .main .reviews #reviewbox #reviewcontent {
        padding: 10px;
        padding-top: 20px;
        padding-bottom: 20px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        gap: 10px;
    }
    .main .reviews #reviewbox #reviewcontent #platformname, .main .reviews #reviewbox #reviewcontent #stars, .main .reviews #reviewbox #reviewcontent #amountreviews, .main .reviews #reviewbox #reviewcontent #link {
        width: 100%;
        text-align: center;
    }
    .main .reviews #reviewbox #reviewcontent #platformname {
        font-size: 3.65rem;
        font-weight: 600;
    }
    .main .reviews #reviewbox #reviewcontent #stars {
        font-size: 3rem;
        font-weight: 500;
        color: rgb(255, 205, 10);
    }
    .main .reviews #reviewbox #reviewcontent #amountreviews {
        font-size: 2.5rem;
        font-weight: 400;
    }
    .main .reviews #reviewbox #reviewcontent #link {
        font-weight: 400;
        padding-top: 15px;
    }
    .main .reviews #reviewbox #reviewcontent #link a {
        color: var(--defaultwhite);
        text-decoration: none;
        font-size: 3.15rem;
        font-weight: 500;
    }
    #contactswrap {
        width: 100%;
        height: 0%;
        background: rgb(20, 20, 20, 0.5);
        position: fixed;
        left: 0%;
        top: 0%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        z-index: 210;
    }
    #contactswrap #contactbox {
        padding: 35px;
        padding-top: 0px;
        background: rgb(255, 255, 255);
    }
    #contactswrap #contactbox #title {
        font-size: 4rem;
        font-weight: var(--titlefontweight);
        padding-top: 10px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10rem;
    }
    #contactswrap #contactbox #title #clsbtn {
        flex-grow: 1;
        font-size: 3.2rem;
        cursor: pointer;
        transition: 0.25s;
    }
    #contactswrap #contactbox #title #clsbtn:hover {
        color: var(--orangedefault);
    }
    #contactswrap #contactbox #title #clsbtn svg {
        float: right;
    }
    #contactswrap #contactbox #locations {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 30px;
        margin-top: 4%;
    }
    #contactswrap #contactbox #locations #locationbox {
        width: 100%;
    }
    #contactswrap #contactbox #locations #locationbox #title {
        font-size: 3.3rem;
        margin: 0px;
    }
    #contactswrap #contactbox #locations #locationbox #cont {
        font-size: 2.9rem;
        font-weight: 300;
    }

    .bottom {
        width: 100%;
        background: var(--darkbluedefault);
        color: var(--defaultwhite);
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        z-index: 90;
    }
    .bottom #copyright {
        width: 100%;
        text-align: center;
        font-size: 3rem;
        font-weight: 300;
        padding-top: 15px;
    }
    .bottom #bottomlinks {
        width: var(--contentwidth);
        padding-bottom: 15px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        align-content: flex-start;
        row-gap: 25px;
    }
    .bottom #bottomlinks #section {
        max-width: 50%;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 5px;
    }
    .bottom #bottomlinks #section span {
        width: 100%;
        font-size: 3rem;
        font-weight: 500;
        padding-bottom: 5px;
    }
    .bottom #bottomlinks #section a {
        font-size: 2.85rem;
        color: var(--defaultwhite);
        text-decoration: none;
        font-weight: 300;
    }
    .bottom #bottomlinks #section a:hover {
        color: var(--orangedefault);
    }
}