@import url('https://fonts.verwaltungsportal.de/import/?family=Open+Sans:400,600,700,800,400i,600i,700i,800i');

:root {
    --main-color: #9100ff;
    --text-color: #313131;
    --highlight: #eefdff;
    --highlight2: #bbe8ef;

    --weight-normal: 400;
    --weight-bold: 700;

    --shadow: 0 3px 6px rgba(0, 0, 0, 0.16);

    --distance-min: 40px;
    --distance-small: clamp(var(--distance-min), 4vw, 60px);
    --distance-medium: clamp(var(--distance-min), 6vw, 80px);
    --distance-large: clamp(var(--distance-min), 6vw, 120px);

    --gradient: linear-gradient(to right, #ff58d4, var(--main-color));
}

html {
    max-width: 1930px;
    margin-left: auto;
    margin-right: auto;
    background: #d4f7fd;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    scrollbar-color: var(--main-color) #eefdff;
}

body {
    font-family: "Open Sans", sans-serif;
    font-weight: var(--weight-normal);
    color: var(--text-color);
    background: #fff;
    line-height: 1.5;
}

body,
.small-text {
    font-size: 1rem;
}

@media (min-width: 992px) {
    body {
        font-size: 1.0625rem;
    }

    .large-text {
        font-size: 1.125rem;
    }
}

@media (min-width: 1200px) {
    .large-text {
        font-size: 1.25rem;
    }
}

a,
a:is(:hover, :focus) {
    color: var(--main-color);
}

a:is(:hover, :focus) {
    text-decoration: underline;
}

b,
strong {
    font-weight: 600;
}

hr {
    opacity: 1;
    background: rgba(48, 48, 48, 0.3);
}

#overflow {
    overflow: clip;
}

nav.horizontally .row {
    max-width: 1560px;
}

.col {
    padding-left: 15px;
    padding-right: 15px;
}

.soft-background {
    background-color: var(--highlight);
}

.soft-background+.soft-background {
    margin-top: 4px;
}

/* -------------------------------------------- logo -------------------------------------------- */

#logo {
    display: inline-block;
    margin-top: -2px;
    margin-bottom: -6px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    #logo img {
        max-width: 18vw;
    }
}

#logo img {
    display: block;
}

@media (max-width: 991px) {
    #logo img {
        max-width: 68vw;
        width: 100%;
    }
}

/* #region ---------------------------------- navigation ---------------------------------------- */

nav.horizontally {
    padding: 21px 0;
    background: rgba(255, 255, 255, 0.85);
}

/* burgermenu for tablet */

@media (max-width: 991px) {
    #burgerButton {
        font-size: 0;
        display: block;
        height: 50px;
        width: 60px;
        border-radius: 2px;
        padding: 6px 8px;
        cursor: pointer;
        background: var(--main-color) var(--gradient);
        border: none !important;
        box-shadow: none;
    }

    #burgerButton::before,
    #burgerButton::after,
    #burgerButtonInner {
        background-color: #fff;
        border-radius: 2px;
        position: absolute;
        width: 40px;
        height: 3px;
        left: 10px;
        transition: transform 200ms linear, opacity 200ms linear;
        display: block;
    }

    #burgerButton[aria-expanded="true"] #burgerButtonInner {
        transform: rotate(-45deg) translate(-6px, 6px);
    }

    #burgerButton[aria-expanded="true"]::before {
        opacity: 0;
    }

    #burgerButton[aria-expanded="true"]::after {
        transform: rotate(45deg) translate(-4px, -6px);
    }

    #burgerButtonInner {
        top: 16px;
    }

    #burgerButton::before {
        top: 24px;
        content: "";
    }

    #burgerButton::after {
        top: 32px;
        content: "";
    }

    .navbar-nav {
        padding: 20px 15px;
    }

    .navbar-collapse {
        width: calc(100% - 90px);
        max-width: 300px;
        top: 0;
        background: #fff;
        position: fixed;
        left: -100%;
        bottom: 0;
        z-index: 1001;
        height: auto !important;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        overflow-y: auto;
        transition: opacity 300ms linear, box-shadow 600ms linear;
        box-shadow: 250px 0 50vw 50vw rgba(255, 255, 255, 0);
    }

    .navbar-collapse:is([aria-expanded="true"], .in) {
        left: 0;
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        box-shadow: 250px 0 50vw 50vw rgba(0, 0, 0, 0.6);
    }

    .navbar-header {
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 1002;
    }
}

/* menu desktop */

@media (min-width: 992px) {
    nav.horizontally {
        padding: 20px 0 15px 0;
        position: sticky;
        top: 0;
        z-index: 1010;
        box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.04);
    }

    nav.horizontally .navbar-nav {
        display: flex;
        justify-content: space-between !important;
        align-items: center !important;
    }

    nav.horizontally .navbar-nav ul {
        position: absolute;
        top: 100%;
        left: -29px;
        z-index: 1000;
        display: block !important;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 300ms linear;
    }

    nav.horizontally .navbar-nav [class*="secondlevel"]>ul {
        top: 0;
        left: 100%;
    }

    nav.horizontally .navbar-nav li {
        position: relative;
    }

    nav.horizontally .navbar-nav li:is(.open, :hover)>ul,
    nav.horizontally .navbar-nav li.open:focus-within>ul,
    nav.horizontally .navbar-nav li[class*="secondlevel"]>ul[style*="block"] {
        pointer-events: auto !important;
        opacity: 1 !important;
        visibility: visible;
    }

    nav.horizontally .navbar-nav li.open>ul {
        pointer-events: none !important;
        opacity: 0 !important;
        visibility: hidden;
    }

    nav.horizontally .navbar-nav li:is(:hover, :focus)>ul {
        z-index: 1003;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    nav.horizontally .navbar-nav {
        margin-top: 10px;
    }
}

@media (min-width: 1200px) {
    nav.horizontally {
        padding: 25px 0;
    }

    nav.horizontally .navbar-nav {
        justify-content: end !important;
    }
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
    color: var(--text-color);
    font-weight: 600;
    text-align: left;
    padding: 11px 15px;
    position: relative;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
    border-radius: 2px;
}

nav.horizontally a[class*="toplevel"][href*="demo"] {
    color: #fff;
    background: var(--main-color) var(--gradient);
    border-color: transparent;
}

@media (min-width: 992px) {
    nav.horizontally a[class*="toplevel"][href*="demo"] {
        padding: 13px 7px;
    }
}

@media (min-width: 1200px) {
    nav.horizontally a[class*="toplevel"][href*="demo"] {
        padding: 11px clamp(7px, 1.2vw, 18px);
    }
}

@media (max-width: 991px) {
    nav.horizontally li[class*="toplevel"]+li {
        margin-top: 10px;
    }

    nav.horizontally li[class*="toplevel"]>a.dropdown-toggle {
        padding-right: 35px;
    }
}

@media (min-width: 992px) {
    nav.horizontally li[class*="toplevel"]+li {
        margin-left: 8px;
    }

    nav.horizontally li[class*="toplevel"]>a {
        padding: 12px 0;
    }
}

@media (min-width: 1300px) {
    nav.horizontally li[class*="toplevel"]+li {
        margin-left: clamp(8px, 1vw, 20px);
    }
}

@media (min-width: 1400px) {
    nav.horizontally a[class*="toplevel"] {
        font-size: 1.0625rem;
    }
}

/* toplevel-over */

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within)>a,
nav.horizontally li[class*="toplevel"]>a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"].open>a,
nav.horizontally li[class*="toplevel"].open>a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"][class*="_over"]>a,
nav.horizontally li[class*="toplevel"][class*="_over"]>a:is(:hover, :focus) {
    color: var(--main-color);
}

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within)>a[href*="demo"],
nav.horizontally li[class*="toplevel"]>a[href*="demo"]:is(:hover, :focus),
nav.horizontally li[class*="toplevel"].open>a[href*="demo"],
nav.horizontally li[class*="toplevel"].open>a[href*="demo"]:is(:hover, :focus),
nav.horizontally li[class*="toplevel"][class*="_over"]>a[href*="demo"],
nav.horizontally li[class*="toplevel"][class*="_over"]>a[href*="demo"]:is(:hover, :focus) {
    color: #fff;
}

/* secondlevel + thirdlevel dropdown-box */

@media (max-width: 991px) {
    nav.horizontally [class*="toplevel"] ul>ul {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    nav.horizontally [class*="toplevel"] ul {
        border-radius: 2px;
        padding: 18px 0;
        background-color: #fff;
        box-shadow: var(--shadow);
    }

    nav.horizontally [class*="toplevel"] ul::before {
        content: "";
        position: absolute;
        display: block;
    }

    nav.horizontally [class*="toplevel"]>ul {
        margin-top: 15px;
    }

    nav.horizontally [class*="toplevel"]>ul::before {
        height: 15px;
        left: 0;
        right: 0;
        top: -15px;
    }

    nav.horizontally [class*="toplevel"] [class*="secondlevel"]>ul {
        margin-top: -18px;
        margin-left: 15px;
    }

    nav.horizontally [class*="toplevel"] [class*="secondlevel"]>ul::before {
        width: 15px;
        left: -15px;
        bottom: 0;
        top: 0;
    }
}

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
    color: var(--text-color);
    font-weight: var(--weight-normal);
    text-align: left;
    padding: 8px 25px;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
}

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]).dropdown-toggle2 {
    padding-right: 35px;
}

/* secondlevel + thirdlevel over */

nav.horizontally li:is(:hover, :focus-within)>a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])>a:is(:hover, :focus),
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a:is(:hover, :focus),
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class$="_over"]>a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class$="_over"]>a:is(:hover, :focus) {
    color: var(--main-color);
}

/* #endregion -------------------------------- navigation --------------------------------------- */

/* #region ----------------------------------- buttons ------------------------------------------ */

summary {
    display: block;
}

summary>span {
    cursor: pointer;
}

.button-style *:not(form span)>a:not(.has-image):not(.slick-arrow):not([href*="tel:"]):not([href*="mailto:"]),
form[id^="form"] input[type="submit"]:not([value="Filtern"]),
#demo-formular summary>span {
    color: #fff;
    background: var(--main-color) var(--gradient);
    padding: 8px 12px;
    display: inline-block;
}

form[id^="form"] input[type="submit"]:not([value="Filtern"]) {
    background-image: var(--gradient) !important;
    background-position: unset !important;
}

@media(min-width: 768px) {

    .button-style *:not(form span)>a:not(.has-image):not(.slick-arrow):not([href*="tel:"]):not([href*="mailto:"]),
    form[id^="form"] input[type="submit"]:not([value="Filtern"]),
    #demo-formular summary>span {
        padding-left: 20px;
        padding-right: 20px;
    }
}

nav.horizontally a[class*="toplevel"][href*="demo"],
.button-style *:not(form span)>a:not(.has-image):not(.slick-arrow):not([href*="tel:"]):not([href*="mailto:"]),
form[id^="form"] input[type="submit"]:not([value="Filtern"]),
#demo-formular summary>span {
    text-decoration: none;
    border-radius: 2px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    z-index: 1;
    box-shadow: 1px 3px 2px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    font-size: 1rem;
}

@media (min-width: 992px) {

    nav.horizontally a[class*="toplevel"][href*="demo"],
    .button-style *:not(form span)>a:not(.has-image):not(.slick-arrow):not([href*="tel:"]):not([href*="mailto:"]),
    form[id^="form"] input[type="submit"]:not([value="Filtern"]),
    #demo-formular summary>span {
        font-size: 1.0625rem;
    }
}

nav.horizontally a[class*="toplevel"][href*="demo"]::after,
.button-style *:not(form span)>a:not(.has-image):not(.slick-arrow):not([href*="tel:"]):not([href*="mailto:"])::after,
#demo-formular summary>span::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: -15px;
    width: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: skew(-15deg);
    transition: width 200ms linear;
}

nav.horizontally a[class*="toplevel"][href*="demo"]:hover::after,
.button-style *:not(form span)>a:not(.has-image):not(.slick-arrow):not([href*="tel:"]):not([href*="mailto:"]):hover::after,
#demo-formular[open] summary>span::after,
#demo-formular summary>span:is(:hover, :focus)::after {
    width: calc(100% + 25px);
}

.button-style .button-multi a:not(.has-image):not(.slick-arrow):not([href*="tel:"]):not([href*="mailto:"]):nth-of-type(2n+2),
.button-style .button-style-2 *:not(form span)>a:not(.has-image):not(.slick-arrow):not([href*="tel:"]):not([href*="mailto:"]) {
    color: #38466d;
    background: var(--highlight2);
    border: 1px solid rgba(56, 70, 109, 0.4);
}

.button-style .button-multi a+a {
    margin-left: 10px;
}

:is(#advantage-slider, .smartphone-mockup .nivo-directionNav, .arrow-design) .slick-arrow,
.smartphone-mockup~.slick-arrow {
    z-index: 11;
    font-size: 0;
    padding: 0;
    display: inline-block;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 2px;
}

:is(#advantage-slider, .smartphone-mockup .nivo-directionNav, .arrow-design) .slick-arrow {
    color: var(--text-color);
    background: var(--highlight2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 16'%3E%3Cpath d='M7.135,1.491a1,1,0,0,1,1.73,0l6.264,10.8a1,1,0,0,1-.865,1.5H1.736a1,1,0,0,1-.865-1.5Z' transform='translate(0 16) rotate(-90)' fill='%23313131'/%3E%3C/svg%3E%0A") center / 18px auto no-repeat;
    background-position: center !important;
    position: absolute;
    border: 1px solid rgba(56, 70, 109, 0.4);
    box-shadow: var(--shadow);
}

.smartphone-mockup~.slick-arrow {
    position: relative;
    color: var(--main-color);
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 16'%3E%3Cpath d='M7.135,1.491a1,1,0,0,1,1.73,0l6.264,10.8a1,1,0,0,1-.865,1.5H1.736a1,1,0,0,1-.865-1.5Z' transform='translate(0 16) rotate(-90)' fill='%23122568'/%3E%3C/svg%3E%0A") center / 18px auto no-repeat;
    background-position: center !important;
}

#advantage-slider .slick-arrow {
    bottom: 0;
}

.slick-arrow:is(.slick-next, .nivo-nextNav) {
    transform: scaleX(-1);
}

#advantage-slider .slick-arrow:is(:hover, :focus),
form[id^="form"] input[type="submit"]:not([value="Filtern"]):is(:hover, :focus),
.smartphone-mockup .nivo-directionNav .slick-arrow:is(:hover, :focus) {
    background-color: color-mix(in srgb, var(--main-color) 65%, #000);
}

.smartphone-mockup~.slick-arrow:is(:hover, :focus) {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 16'%3E%3Cpath d='M7.135,1.491a1,1,0,0,1,1.73,0l6.264,10.8a1,1,0,0,1-.865,1.5H1.736a1,1,0,0,1-.865-1.5Z' transform='translate(0 16) rotate(-90)' fill='%23196155'/%3E%3C/svg%3E%0A");
}

:is(#advantage-slider, #feedback-slider, .common-slider, .smartphone-slider) .slick-arrow.slick-next {
    right: 0;
}

:is(#advantage-slider, #feedback-slider, .common-slider, .smartphone-slider) .slick-arrow.slick-prev {
    left: 0;
}

@media (min-width: 768px) {

    :is(#advantage-slider, .smartphone-mockup .nivo-directionNav) .slick-arrow {
        top: calc(50% - 21px);
        bottom: auto;
    }

    :is(#feedback-slider, .common-slider, .smartphone-slider) .slick-arrow {
        top: calc(50% - 42px);
    }

    :is(#advantage-slider, #feedback-slider, .common-slider, .smartphone-slider) .slick-arrow.slick-next {
        right: -50px;
    }

    :is(#advantage-slider, #feedback-slider, .common-slider, .smartphone-slider) .slick-arrow.slick-prev {
        left: -50px;
    }

    #advantage-slider>.slick-list {
        margin-left: -50px;
        margin-right: -50px;
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (min-width: 1200px) {
    :is(#feedback-slider, .common-slider, .smartphone-slider) .slick-arrow.slick-next {
        right: -70px;
    }

    :is(#feedback-slider, .common-slider, .smartphone-slider) .slick-arrow.slick-prev {
        left: -70px;
    }
}

@media (min-width: 1400px) {
    #feedback-slider .slick-arrow.slick-prev {
        left: -120px;
    }

    #feedback-slider .slick-arrow.slick-next {
        right: -120px;
    }
}

:is(#feedback-slider, .common-slider) {
    position: relative;
    z-index: 2;
}

:is(#feedback-slider, .common-slider) .slick-dots {
    text-align: center;
    display: flex !important;
    column-gap: 15px;
    justify-content: center;
    margin: 10px 0 0 0;
}

:is(#feedback-slider, .common-slider) .slick-dots button {
    font-size: 0;
    border-radius: 50px;
    padding: 0;
    width: 15px;
    height: 15px;
    border: 2px solid var(--text-color);
    background: transparent;
}

:is(#feedback-slider, .common-slider) .slick-dots .slick-active button,
:is(#feedback-slider, .common-slider) .slick-dots button:is(:hover, :focus) {
    color: #fff;
    background: var(--text-color);
}

.common-slider .slick-slide img {
    margin-left: auto;
    margin-right: auto;
}

/* #endregion -------------------------------- buttons ------------------------------------------ */

/* ------------------------------------------- stoerer ------------------------------------------ */

.stoerer,
.stoerer :is(h1, h2, h3, h4, h5, h6, a) {
    color: inherit;
    margin: 0;
}

.stoerer :is(b, strong) {
    font-weight: 900;
}

.stoerer {
    font-size: 0.9375rem;
    text-align: center;
    position: relative;
    z-index: 3;
    display: inline-grid;
    place-items: center;
    padding: clamp(10px, 1.2vw, 15px);
    margin: 6px 8px;
    aspect-ratio: 1/1;
    background: #ffed00 radial-gradient(#fff, #ffed00);
    border-radius: 50%;
    box-shadow: var(--shadow);
    transform: rotate(-4deg);
    font-weight: 700;
}

.stoerer.stoerer-design-2 {
    background: #9100ff linear-gradient(to bottom, #9100ff, #ff58d4);
}

.stoerer.stoerer-design-2 * {
    color: #fff;
}

.stoerer .template-page+.cleaner {
    display: none;
}

/* --------------------------------------------- tab -------------------------------------------- */

.tab {
    position: relative;
    background: #fff;
    padding: 28px clamp(15px, 2vw, 25px);
    border-radius: 3px;
    box-shadow: var(--shadow);
    z-index: 2;
}

.tab :is(b, strong) {
    font-weight: 600;
}

.tab:not(.header-tab) {
    padding-left: clamp(15px, 2vw, 20px);
    padding-right: clamp(15px, 2vw, 20px);
}

.tab:not(.header-tab):not(.auto-height) {
    height: 100%;
    min-height: 100%;
}

.tab:not(.header-tab):not(.auto-height).icon-border {
    height: calc(100% - 30px);
    min-height: calc(100% - 30px);
}

.tab:not(.header-tab).icon-border {
    margin-top: 30px;
}

.tab:not(.header-tab).icon-border img {
    margin: -34px 0 -10px 0;
    position: relative;
    top: -30px;
}

.icon-border img {
    max-width: 73px;
    width: 73px !important;
    height: 73px !important;
}

@media (max-width: 991px) {
    .icon-border img {
        max-width: 58px;
        width: 58px !important;
        height: 58px !important;
    }
}

.tab.tab-2 {
    font-size: 0.875rem;
    padding-left: 75px;
    padding-top: 20px;
    padding-bottom: 15px;
}

.tab.tab-2 :is(h2, h3) {
    font-weight: var(--weight-bold);
    font-size: 0.875rem;
    border-bottom: 1px solid var(--text-color);
    margin-bottom: 3px;
    padding-bottom: 3px;
}

.tab.tab-2 .row,
.tab.tab-2 .row>* {
    position: static;
}

.tab.tab-2 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 65px !important;
    height: 58px !important;
    background: #e1fbff;
    object-fit: scale-down;
}

/* --------------------------------------------- list ------------------------------------------- */

.slick-dots li {
    display: block;
}

main ul:not(.slick-dots) {
    margin: 0 0 -8px 0 !important;
}

main ul:not(.slick-dots):has(p[style*="center"]) {
    width: max-content;
    margin: 0 auto !important;
}

main ul:not(.slick-dots):has(p[style*="center"]) li {
    width: max-content;
}

@media (min-width: 768px) {
    :is(header, main) .list-two-cols ul {
        column-count: 2;
        column-gap: 30px;
    }

    :is(header, main) .list-two-cols ul li {
        break-inside: avoid;
    }
}

:is(header, main) ul:not(.slick-dots) li {
    list-style: none;
    position: relative;
    padding-left: 28px;
    margin-bottom: clamp(4px, 0.6vw, 8px);
}

:is(header, main) ul:not(.slick-dots) li::after {
    content: "";
    display: block;
    position: absolute;
    top: 5px;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid var(--text-color);
    background: url('../img/check.png') center no-repeat;
}

main .small-list ul:not(.slick-dots) {
    margin: 0 0 -2px 0 !important;
}

main .small-list ul:not(.slick-dots) li {
    padding-left: 12px;
    margin-bottom: 2px;
}

main .small-list ul:not(.slick-dots) li::after {
    top: 10px;
    width: 4px;
    height: 4px;
    border: none;
    background: var(--text-color);
}

/* #region ------------------------------------ header ------------------------------------------ */

header {
    position: relative;
    z-index: 1;
}

header :is(h2, h2, h4, h5, h6) {
    font-weight: 700;
    font-size: 1.25rem;
}

@media (min-width: 1400px) {
    header.use-hyphens {
        -webkit-hyphens: unset;
        -moz-hyphens: unset;
        -ms-hyphens: unset;
        hyphens: unset;
    }
}

header .button-style a {
    margin-top: 10px;
}

/* #endregion --------------------------------- header ------------------------------------------ */

/* #region ------------------------------------ mockups ----------------------------------------- */

.laptop-mockup,
[class^="smartphone-mockup"],
.computer-mockup,
.laptop-mockup-3d,
.tablet-mockup {
    position: relative;
    display: block;
}

:is(.laptop-mockup, [class^="smartphone-mockup"], .computer-mockup, .laptop-mockup-3d, .tablet-mockup) img {
    width: 100%;
}

:is(.laptop-mockup, [class^="smartphone-mockup"], .computer-mockup, .laptop-mockup-3d, .tablet-mockup)::after,
:is(.laptop-mockup, .smartphone-mockup, .computer-mockup):not(.no-reflection)>.banner::after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
}

:is(.laptop-mockup, .smartphone-mockup, .computer-mockup):not(.no-reflection)>.banner::after {
    height: 20%;
    opacity: 0.4;
    transform: scaleY(-1);
    mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 210%);
}

.laptop-mockup {
    z-index: 1;
    max-width: 554px;
    width: 100%;
}

.laptop-mockup::after {
    top: -8%;
    left: -21%;
    right: -21%;
    bottom: -14%;
    background: url('../img/mockups/laptop-mockup.webp') center / contain no-repeat;
}

.laptop-mockup-3d {
    z-index: 1;
    max-width: 326px;
    width: 100%;
    perspective: 55vw;
    perspective-origin: bottom left;
    width: 50vw;
    margin: 10px clamp(90px, 22vw, 150px) clamp(55px, 12vw, 80px) 10px;
}

@media (min-width: 768px) {
    .laptop-mockup-3d {
        perspective: 350px;
    }
}

@media (min-width: 992px) {
    .laptop-mockup-3d {
        max-width: 400px;
        perspective: 400px;
    }
}

.laptop-mockup-3d.flip {
    transform: scaleX(-1);
    transform-origin: clamp(130px, 34vw, 276px);
}

.laptop-mockup-3d::after {
    top: -7%;
    left: -10%;
    right: -53%;
    bottom: -40%;
    background: url('../img/mockups/laptop-mockup-3d.webp') center / contain no-repeat;
}

.laptop-mockup-3d .banner {
    transform: rotateX(2deg) rotateY(6deg) rotateZ(-3.5deg);
}

.laptop-mockup-3d.flip .banner {
    transform: rotateX(2deg) rotateY(6deg) rotateZ(-3.5deg) scaleX(-1);
}

.laptop-mockup>.banner::after {
    left: -21%;
    right: -21%;
    bottom: -31.4%;
    background: url('../img/mockups/laptop-mockup.webp') bottom / 100% no-repeat;
}

:is(.laptop-mockup, .laptop-mockup-3d, .tablet-mockup) img:not([src*="global/"]):not([src*=".png"]):not([src*=".PNG"]):not(.no-style) {
    border-radius: 0 !important;
}

header .laptop-mockup {
    margin-left: -100px;
    max-width: 299px;
}

@media (min-width: 768px) {
    header .laptop-mockup {
        margin: 0 -60px 0 0;
    }
}

@media (max-width: 991px) {
    main .laptop-mockup {
        margin-left: auto;
        margin-right: auto;
    }

    header .laptop-mockup {
        width: 90vw;
    }
}

@media (min-width: 992px) {
    header .laptop-mockup {
        margin: 0;
    }
}

.smartphone-mockup {
    z-index: 2;
    max-width: 240px;
    width: 100%;
}

.smartphone-mockup::after {
    top: -2.5%;
    left: -6.5%;
    right: -6.5%;
    bottom: -3%;
    background: url('../img/mockups/smartphone-mockup.webp') center / contain no-repeat;
}

.smartphone-mockup>.banner::after {
    left: -6.5%;
    right: -6.5%;
    bottom: -23%;
    background: url('../img/mockups/smartphone-mockup.webp') bottom / 100% no-repeat;
}

.smartphone-mockup.small-smartphone {
    max-width: 132px;
}

.smartphone-mockup img:not([src*="global/"]):not([src*=".png"]):not([src*=".PNG"]):not([src*="logo"]):not(.no-style) {
    border-radius: 11%/6%;
    filter: none !important;
}

@media (max-width: 991px) {
    header .smartphone-mockup {
        max-width: 140px;
    }

    main .smartphone-mockup {
        max-width: 160px;
    }
}

.smartphone-mockup.smartphone-mockup-3d {
    transform: perspective(80px) rotateY(2deg);
}

.computer-mockup {
    z-index: 1;
    filter: drop-shadow(30px 15px 10px rgba(0, 0, 0, 0.16));
    max-width: 564px;
    width: 100%;
}

@media (max-width: 991px) {
    .computer-mockup {
        max-width: 400px;
    }
}

.computer-mockup img:not([src*="global/"]):not([src*=".png"]):not([src*=".PNG"]):not(.no-style) {
    border-radius: 2px !important;
}

.computer-mockup::after {
    top: -4.6%;
    left: -3%;
    right: -3%;
    bottom: -33.2%;
    background: url('../img/mockups/computer-mockup.webp') center / contain no-repeat;
}

.tablet-mockup {
    z-index: 2;
    max-width: 275px;
}

.tablet-mockup::after {
    top: -11%;
    left: -10%;
    right: -10%;
    bottom: -12%;
    background: url('../img/mockups/tablet-mockup.webp') center / contain no-repeat;
}

/* #endregion --------------------------------- mockups ----------------------------------------- */

/* #region ------------------------------------- content ----------------------------------------- */

main img:not([src*="global/"]):not([src*=".png"]):not([src*=".PNG"]):not([src*="logo"]):not(.no-style),
main .icon-border img:not([src*="global/"]):not(.no-style) {
    border-radius: 5px;
}

main img:not([src*="global/"]):not([src*=".png"]):not([src*=".PNG"]):not([src*="logo"]):not(.no-style) {
    box-shadow: var(--shadow);
}

@media (min-width: 768px) {

    main .color-shadow-img img:not([src*="global/"]):not([src*=".png"]):not([src*=".PNG"]):not([src*="logo"]):not(.no-style),
    main .color-shadow-banner::after,
    .drop-shadow {
        filter: drop-shadow(-12px -12px 0 var(--highlight2));
    }
}

main .icon-border img:not([src*="global/"]):not(.no-style) {
    padding: 7px;
    background: #fff;
    box-shadow: var(--shadow);
    object-fit: scale-down;
}

.no-style img:not([src*="global/"]):not([src*=".png"]):not([src*=".PNG"]):not([src*="logo"]):not(.no-style) {
    border-radius: 0;
    box-shadow: none;
}

*:not(.icon-border) .banner img {
    display: block;
}

main .btgrid>.row {
    row-gap: 30px;
}

#content:not(.no-padding) {
    padding-top: var(--distance-small);
}

form[id^="form"] .formgen_row :is(.subfield, select, textarea),
form[id^="form"] .formgen_row input:is([type="text"], [type="file"], [type="tel"], [type="email"], [type="number"]) {
    padding: 6px 10px;
    background: transparent;
}

#contentbottom_left {
    display: none;
}

#content_footer {
    margin: 0;
}

table th {
    vertical-align: top;
}

#safety,
#demo {
    padding: var(--distance-small) 0;
}

@media (max-width: 767px) {
    #safety img {
        max-width: 160px;
    }
}

#demo-formular {
    margin-top: 20px;
}

#demo-formular[open]>div {
    margin-top: 30px;
}

#demo-formular-success {
    margin-top: 30px;
    display: grid;
    gap: 30px;
}

@media (min-width: 768px) {
    #demo-formular-success {
        grid-template-columns: 1fr 1fr;
    }
}

#demo-formular-success a {
    text-decoration: underline;
}

#demo-formular-success section {
    box-shadow: var(--shadow);
    border-radius: 5px;
    background: #ffffff;
    padding: clamp(30px, 3vw, 40px);
}

#demo-formular-success section:nth-child(1) h3 {
    position: relative;
    display: inline-block;
    width: auto;
    padding-left: 50px;
}

#demo-formular-success section:nth-child(1) h3::before {
    content: "";
    display: block;
    width: 37px;
    height: 37px;
    position: absolute;
    left: 0;
    top: calc(50% - 18px);
    background: url('../img/demo/haekchen.png') center no-repeat;
}

#demo-formular-success.loading section:nth-child(1) h3::before {
    background-image: url('../img/demo/ladestatus.png');
    animation: rotation 2s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#demo-formular-success section:nth-child(2) {
    background-image: url('../img/demo/support-mitarbeiter.webp'), radial-gradient(circle at 400px 0, #e0f6f8 500px, rgba(255, 255, 255, 0) 500px);
    background-position: center top 50px, top center;
    background-repeat: no-repeat;
    padding-top: 280px;
}

#demo-formular-success ol {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

#demo-formular-success li {
    position: relative;
    min-height: 90px;
    box-shadow: var(--shadow);
    border-radius: 3px;
    background: linear-gradient(to right, #fff1fd, #ffffff);
    padding: 18px clamp(15px, 2vw, 30px) 18px 140px;
}

#demo-formular-success li::after {
    content: "";
    display: block;
    position: absolute;
    left: 30px;
    top: calc(50% - 35px);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    box-shadow: var(--shadow);
    background: #ffffff url('../img/demo/brief.png') center no-repeat;
}

#demo-formular-success li:nth-child(2)::after {
    background-image: url('../img/demo/gluehbirne.png');
}

#demo-formular-success li:nth-child(3)::after {
    background-image: url('../img/demo/headset.png');
}

#demo-formular-success address {
    margin: 20px 0;
    font-weight: var(--weight-bold);
}

#demo-formular-success address p+p {
    margin-top: 15px;
}

#demo-formular-success address p::before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 26px;
    border: 5px solid #ffffff;
    box-shadow: var(--shadow);
    border-radius: 3px;
    margin-right: 10px;
    vertical-align: middle;
    background: #e9f0f5 url('../img/demo/telefon.png') center no-repeat;
}

#demo-formular-success address p:nth-child(2):before {
    background-image: url('../img/demo/mail.png');
}

#demo-formular-success address+p {
    font-size: smaller;
    margin-bottom: 15px;
}

#demo-formular-success li+li {
    margin-top: 22px;
}

#demo-formular-success :is(li span, p .block) {
    display: block;
    font-weight: var(--weight-bold);
}

#submit_form:disabled {
    transition: opacity 3ms;
    opacity: .8;
    cursor: default;
}

#formgen_error {
    color: #ff0000;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #aaaaaa;
    border-radius: 3px;
    text-align: center;
}

#ascii-captcha {
    width: 320px;
    margin: auto;
    position: relative;
}

#ascii-captcha .ascii-captcha-refresh {
    top: 0;
}

#ascii-captcha pre {
    display: block;
    padding: 10px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #333;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#ascii-captcha #recaptcha {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    min-height: unset;
}

#back-link {
    padding: var(--distance-small) 0;
}

#feedback {
    padding: var(--distance-small) 0 var(--distance-small) 0;
    background: url('../img/circle.svg') right calc(50% + 850px) top 320px / 70px auto no-repeat, url('../img/circle.svg') right calc(50% + 800px) top 300px / 30px auto no-repeat, url('../img/circle.svg') left calc(50% + 550px) top 150px / 60px auto no-repeat, url('../img/circle.svg') left calc(50% + 650px) top 40px / 120px auto no-repeat, url('../img/background.webp') bottom right no-repeat;
}

@media (min-width: 576px) {
    #feedback:not(.no-stars)>.row>*>.template-page::before {
        content: "";
        display: block;
        width: 300px;
        height: 48px;
        background: url('../img/star.svg?v=2') center repeat;
        margin: 0 auto 30px auto;
    }
}

#feedback-slider img {
    display: inline-block;
}

:is(#zeiterfassung-5, #demo) .template-page table :is(td, th) {
    padding: 0;
}

:is(#zeiterfassung-5, #demo) .template-page table :is(td, th)+ :is(td, th) {
    padding-left: 30px;
}

/* #endregion ---------------------------------- content ----------------------------------------- */

/* ------------------------------------------- slider ------------------------------------------- */

.slick-slider .row.slick-slide {
    margin: 0 !important;
    min-width: unset !important;
}

.slider-wrapper.theme-nivo :is(.slick-trigger, [data-slick]):not(.slick-initialized) {
    background-color: transparent;
}

:is(.icon-border, .second-advantage-slider) .slick-slide img {
    display: inline-block;
}

/* -------------------------------------- h1 - h6, newslink ------------------------------------- */

.h4link a:is(:link, :hover, :focus, :visited),
h6,
h5,
h4,
h3,
h2,
h1,
table th {
    color: var(--text-color);
    font-weight: 900;
    line-height: 1.2;
    font-family: "Open Sans", sans-serif;
}

:is(.h4link a:is(:link, :hover, :focus, :visited), h6, h5, h4, h3, h2, table th) :is(i, em) {
    color: var(--text-color);
    font-style: normal;
    font-weight: 800;
    font-size: 1.25rem;
    display: block;
    margin-top: 10px;
}

@media (max-width: 767px) {
    :is(.h4link a:is(:link, :hover, :focus, :visited), h6, h5, h4, h3, h2, h1, table th) br {
        display: none;
    }
}

@media (max-width: 1299px) {
    header :is(.h4link a:is(:link, :hover, :focus, :visited), h6, h5, h4, h3, h2, h1, table th) br {
        display: none;
    }
}

.headline-large-margin :is(h1, h2) {
    margin-bottom: clamp(25px, 3vw, 45px);
}

.icon-border :is(h2, h3, h4, h5, h6),
#index-6 :is(h3, h4, h5, h6) {
    margin-bottom: 2px;
}

main section:not(#safety, #demo, #app-5, #dokumente-2, #dokumente-3, #organisationshelfer-1, #organisationshelfer-1-1, #organisationshelfer-1-2, #organisationshelfer-2, #organisationshelfer-2-1, #organisationshelfer-3, #organisationshelfer-3-1) :is(p, .btgrid)+ :is(h1, h2, h3, h4, h5, h6) {
    margin-top: clamp(15px, 2vw, 25px);
}

h1,
.h1,
.legacy_h1 {
    font-size: clamp(2rem, 6vw, 3.125rem);
}

h2,
.h2,
.legacy_h2 {
    font-size: clamp(1.625rem, 4vw, 2.1875rem);
}

h3,
.h3,
.legacy_h3 {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
}

h4,
.h4,
.h4link a:is(:link, :hover, :focus, :visited),
.legacy_h4,
section[id*="app-"]~#demo h2.formtitle {
    font-size: clamp(1.375rem, 2.5vw, 1.625rem);
}

h5,
.h5,
.legacy_h5 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

h6,
.h6,
.legacy_h6,
table th,
.icon-border :is(h2, h3, h4, h5),
.tiny-headline-h3 :is(h3, h4, h5),
.tiny-headline-h2 :is(h2, h3, h4, h5) {
    font-size: 1.25rem;
    font-weight: var(--weight-bold);
}

.tiniest-headlines :is(h2, h3, h4, h5) {
    font-size: 1.0625rem;
    font-weight: var(--weight-bold);
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none
}

/* #region ------------------------------------ footer ------------------------------------------ */

main:not(.footer-no-divider)~footer>.row:first-child::before,
main~footer>.row:last-child::before {
    content: "";
    display: block;
    width: calc(100% - 30px);
    height: 2px;
    margin: 0 15px;
    background: #cecece;
}

footer {
    line-height: 1.7;
    margin-top: var(--distance-small);
}

.footer-row-1 {
    padding-bottom: 10px;
}

.footer-row-2 {
    padding-top: 30px;
    padding-bottom: 30px;
}

footer h2 {
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.appstores :is(img+img, a+a) {
    margin-left: 15px;
}

footer>.row {
    row-gap: 30px;
}

@media (min-width: 768px) {
    footer>.row.footer-row-1 {
        row-gap: 40px;
    }
}

footer>.row>*>* {
    width: 100%;
}

footer a {
    color: inherit;
    text-decoration: underline;
    display: inline-block;
}

footer :is(h1, h2, h3, h4, h5, h6) {
    color: inherit;
    margin-bottom: 20px;
}

footer.template-page>.row {
    row-gap: 20px;
}

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: block;
}

@media (min-width: 576px) {
    #innerfooter li {
        display: inline-block;
    }

    #innerfooter li+li {
        margin-left: 20px;
    }
}

@media (min-width: 992px) {
    #innerfooter li+li {
        margin-left: 30px;
    }
}

#innerfooter ul a {
    padding: 3px 0;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
}

#innerfooter ul a:is(:hover, :focus) {
    color: var(--main-color);
}

#scroll-top-btn {
    display: block;
    width: 34px;
    height: 34px;
    border: 2px solid var(--text-color);
    border-radius: 50%;
    font-size: 0;
    margin: 0 auto;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.992' height='7.402' viewBox='0 0 14.992 7.402'%3E%3Cpath id='Pfad_279' data-name='Pfad 279' d='M-21620-21035.219l6.086-4.994,6.09,4.994' transform='translate(21621.406 21041.213)' fill='none' stroke='%23313131' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E%0A");
    transition: background-color 300ms linear, color 300ms linear, border 300ms linear;
}

@media (min-width: 768px) {
    #scroll-top-btn {
        margin: 0 0 0 auto;
    }
}

#scroll-top-btn:is(:hover, :focus) {
    background-color: var(--main-color);
    border-color: var(--main-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.992' height='7.402' viewBox='0 0 14.992 7.402'%3E%3Cpath id='Pfad_279' data-name='Pfad 279' d='M-21620-21035.219l6.086-4.994,6.09,4.994' transform='translate(21621.406 21041.213)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E%0A");
}

/* #endregion --------------------------------- footer ------------------------------------------ */