/* ------------------------------------------
  custom properties
--------------------------------------------- */
:root {
    --color-1: #c71ea6;
    --color-2: #fdb400;
    --color-3: #ce1970;
    --color-4: #ec4016;
    --color-5: #faae1d; /*#fcf1dd*/
    --color-6: #4a154b;
    --c-light: #ef4ac5;
    --c-standard: var(--color-1);
    --c-pro: #7f0f68;
    --c-partner: #c88d00;
    --bg-color: #ffffff;
    --bg-color-1: #f4f4f4;
    --bg-color-2: #ffe9b3; /*#FCF3E3*/
    --bg-color-3: #f8e4ec; /*#FDF4F6 */
    --bg-color-5: #fcf1dd;
    --bg-dark: #444444;
    --bg-footer: #434343;
    --navbar-text-color: #ffffff;
    --text-color: #333333;
    --text-color-light: #555555;
    --text-color-invert: #ffffff;
    --btn-border: #999999;
    --dark-gray: #555555;
    --gray: #777777;
    --border-radius-xs: 4px;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-xl: 50px;
    --navbar-height: 55px;
    --navbar-mobile-height: 55px;
    --font-size-base: 16px;
    --line-height-base: calc(var(--font-size-base) * 1.3);
    --logo-height: 45px; /* customer logos */
    /* spacing */
    --spacing-xs: .4rem;
    --spacing-sm: .8rem;
    --spacing-md: 1.2rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 8rem;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

/* ------------------------------------------
  Font-Einbindung
--------------------------------------------- */

/* Nunito */
@font-face {
    font-family: "Nunito";
    src: url("../fonts/Nunito/NunitoSans-VariableFont_YTLC\,opsz\,wdth\,wght.ttf");
    font-weight: 200 900;
}

/* cat iconfont integration */
@font-face {
    font-family: 'cat-icons';
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/cat/cat-icons.eot");
    src: url("../fonts/cat/cat-icons.eot?#iefix") format("embedded-opentype"), url("../fonts/cat/cat-icons.woff") format("woff"), url("../fonts/cat/cat-icons.ttf") format("truetype"), url("../fonts/cat/cat-icons.svg#cat") format("svg");
}

.iconfont {
    font-family: 'cat-icons', sans-serif;
}

/* -----------------------------------------
--- ENABLE ANIMATIONS
--------------------------------------------*/

.os-animation {
    opacity: 0;
}

.os-animation.animated {
    opacity: 1;
}

/* ------------------------------------------
 --- TYPO
--------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 200;
    margin: 0;
    margin-bottom: .4em;
}

p, li {
    font-size: 1.1em;
    font-weight: 200;
    line-height: 1.6em;
    margin-bottom: .2em;
}

p {
    margin: 0 0 1em 0;
}

.p-lg p {
    font-size: 1.1em;
}

.banner h1 {
    text-transform: none;
}

.banner p {
    font-size: 1.2em;
    line-height: 1.5em;
    font-weight: 300;
}

.banner h6 {
    font-size: 1.1em;
    line-height: 1.5em;
    font-weight: 300;
}

.invert {
    color: var(--text-color-invert);
}


h1 {
    font-size: 2em;
    line-height: 1.2em;
}

h2 {
    font-size: 32px;
    line-height: 40px;
}

h3 {
    font-size: 26px;
    line-height: 32px;
}

h4,
.tab-label {
    font-size: 21px;
    line-height: 27px;
    margin-bottom: .7em
}

h5 {
    font-size: 18px;
    line-height: 26px;
}

.textbreite {
    width: 85%;
}

.sidetext {
    border-top: 1px dotted #aaa;
    padding-top: 15px;
    font-size: 0.95em;
}

sup {
    font-size: 50%;
    top: -0.8em;
}

h1, h2, h3, h4, h5, h6 {
    sup {
        font-size: 45%;
        top: -1.2em;
    }
}

.small sup {
    font-size: 75%;
    top: -0.7em;
}

/* ------------------------------------------
--- GENERAL ELEMENTS
--------------------------------------------- */

body {
    font-family: 'Nunito', sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.5em;
    color: var(--text-color);
    font-weight: 300;
    letter-spacing: 0.25px;
}

.scroll-area {
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-behavior: smooth; /*for scrolling to page anchors*/
    height: 100vh;

}

/* spacing */
.spacer-xsmall { margin: 5px 0; }
.spacer-small { margin: 10px 0; }
.spacer-medium { margin: 20px 0; }
.spacer-large { margin: 40px 0; }
.spacer-xs { height: 10px; }
.spacer-sm { height: 20px; }
.spacer-md { height: 50px; }
.spacer-lg { height: 100px; }
.spacer-xl { height: 200px; }

/* utility classes */
.mb-0 { margin-bottom: 0; }
.mb-xs { margin-bottom: 5px; }
.mb-sm { margin-bottom: 10px; }
.mb-md { margin-bottom: 20px; }
.mb-lg { margin-bottom: 40px; }
.left { text-align: left; }
.right { text-align: right; }

.center {
    margin: 0 auto;
    text-align: center;
    justify-content: center;
}

.flex, .flex-row { display: flex; }
.align-center { align-items: center; }
.flex-end { justify-content: flex-end; }
.fullsize { width: 100%; }

.logo-only {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-only img:hover {
    transform: scale(1.3);
    transition: all .5s;
}

/* ------------------------------------------
 --- BACKGROUNDS
-------------------------------------------- */

.bg { background-color: #ffffff; }
.bg-1 { background-color: var(--bg-color-1); }
.bg-2 { background-color: var(--bg-color-2); }
.bg-3 { background-color: var(--bg-color-3); }

.bg-dark {
    background-color: var(--dark-gray);
    color: var(--text-color-invert);
}

.bg-rainbow {
    background-image: linear-gradient(90deg, rgba(202, 19, 124, 1) 0%, rgba(221, 44, 69, 1) 35%, rgba(241, 105, 25, 1) 70%, rgba(250, 171, 29, 1) 100%);
}

.bg-cate {
    background-image: url("../images/banner-bg-polygon-fill.png");
    background-repeat: no-repeat;
    background-position: bottom right;
}

.glass {
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, .05);
    padding: 30px;
    border-radius: 8px;
}

.sectionshadow {box-shadow: inset 0 100px 150px rgba(0, 0, 0, .4); }

.shadow-box { box-shadow: 0px 0px 30px -20px rgba(0, 0, 0, .3); }

.innerspace { padding: 80px 0; }
.innerspace-top { padding-top: 80px; }
.innerspace-sm { padding: 40px 0; }
.innerspace-xs { padding: 20px 0; }
.margin-bottom { margin-bottom: 100px; }

/*
------------------------------------------
  MENU STYLES
------------------------------------------
*/
.slide-nav {
    background: var(--bg-footer);
    background-image: url("../images/banner-bg-polygon-fill.png");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 150%;
    box-shadow: 0 0 100px rgba(0, 0, 0, .5);
    height: 100%;
    width: 400px;
    top: 0;
    left: -500px;
    padding: 40px 45px 0;
    position: fixed;
    z-index: 9999;
    transition: all 500ms ease-in-out;

    .head { align-items: center; }
    .logo { height: auto; }
    .logo img { height: 60px; }

    ul {
        list-style: none;
        font-size: 140%;
        padding-inline-start: 0;
        margin-top: 20px;
        text-align: left;
        width: 100%;
    }

    ul.subnav { margin-top: auto; }

    a {
        color: var(--text-color-invert);
        font-size: 20px;
        transition: all 300ms;

        &:hover {
            color: var(--color-2);

            & .nav-item.icon:after {
                right: -5px;
                transform: scale(1);
            }
        }
    }

    .nav-item {
        margin: 20px 0;
        position: relative;
    }

    .nav-item.icon {
        &:after {
            content: "\e907";
            font-family: 'cat-icons';
            font-size: 24px;
            position: absolute;
            color: rgba(255, 255, 255, 0.4);
            right: 0;
            transition: all 300ms;
        }

        &.new:before {
            display: inline-block;
            color: var(--color-4);
            content: "NEU";
            position: absolute;
            top: -18px;
            font-size: .5em;
            font-weight: 900;
            left: -20px;
            padding: 0;
        }
    }

    .nav-item.btn {
        width: 100%;
    }

    .nav-item.small {
        margin: 10px;
        text-align: center;

        a {
            font-size: .8em;
        }
    }
}

.nav-icon {
    filter: invert(1);
    margin-left: .5rem;
    transition: transform 300ms ease;
    transform: rotateY(180deg);
    width: 2rem;
}

.close-btn {
    color: rgba(255, 255, 255, .5);
    font-size: 150%;
    font-weight: 300;
    position: relative;
    text-align: right;

    span { cursor: pointer; }
}

header, .header {
    background: rgba(255, 255, 255, 0.95);
    height: 80px;
    position: fixed; /* fix for scrolling behaviour ".scroll-area" */
    left: 0;
    right: 0;
    z-index: 101;
    width: 100%;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    top: 0;
}

header {
    box-shadow: 3px 1px 100px 0.01px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
}

.nav-btn {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: var(--border-radius-md);
    color: var(--text-color-invert);
    cursor: pointer;
    display: flex;
    font-size: 0.8rem;
    font-weight: 400;
    height: 40px;
    justify-content: center;
    align-items: center;
    padding: 1px 15px;
    margin-left: .5rem;
    position: relative;
    transition: transform 300ms ease;

    &:hover {
        transform: scale(1.1);
    }
}

.header.transparent {
    background: linear-gradient(90deg, rgba(202, 19, 124, 0) 0%, rgba(221, 44, 69, 0) 35%, rgba(241, 105, 25, 0) 70%, rgba(250, 171, 29, 0) 100%);
    box-shadow: none;
    top: 30px;

    .navbar { }

    &.open {
        .logo {
            filter: brightness(1);
            img { height: 30px }
        }
        .navbar {
            box-shadow: 0 2px 3px rgba(0,0,0,.2);
            background-color: rgba(255,255,255,.9);
            backdrop-filter: blur(4px);
            border-radius: var(--border-radius-md);
            padding: 0 15px;
            overflow: hidden;
            @media only screen and (max-width: 767px) {
                margin-left: -15px;
                margin-right: -15px;
            }
        }
        .nav-item a { color: var(--color-1) }
        .nav-item a:hover:after { background-color: var(--color-1) }
        .nav-btn {
            background-color: var(--color-1);
            border: 0;
            @media only screen and (max-width: 768px) {
                background-color: transparent;
                color: var(--color-1);
                font-size: .9rem;
                .nav-icon { filter: invert(15%) sepia(97%) saturate(4406%) hue-rotate(302deg) brightness(91%) contrast(85%) }
            }
        }

    }
}

.navbar.transparent {
    background-color: transparent;
    box-shadow: none;
}

.banner.sticky {
    position: sticky;
    top: 0;
}

.logo {
    height: var(--navbar-height);
    padding: 0;
    flex: 1;
}

.header.transparent .logo {
    filter: brightness(100);
}

.nav a:active,
.nav .active a {
    color: var(--color-3);
}

nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0 10px 0 0;
    list-style: none;
}

.nav-item {
    margin: 15px;

    a {
        color: var(--navbar-text-color);
        font-size: 0.95em;
        font-weight: 200;
        position: relative;
    }

    a:hover {
        color: var(--text-color-invert);
        transition: all 0.3s;
        transform: scale(1);
    }

    /* animated underline effect */

    a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: var(--text-color-invert);
        transform: scale(0);
        transform-origin: center;
        transition: opacity 300ms, transform 300ms;
    }

    a:hover::after,
    a:focus::after {
        opacity: .7;
        transform: translate3d(0, 0.2em, 0);
        transform: scale(1);
    }
}

/* contact Highlight */
.nav-item.btn-invert {
    padding: 3px 20px;
}

.nav-item.btn-invert a {
    color: var(--text-color);
}

.nav-item.btn-invert a:hover {
    background: var(--color-2);

    &:after {
        opacity: 0;
        transform: scale(0);
    }
}

.navbar .nav-item a {
    font-weight: 400;
}


/* language switch */
.lang-select {
    position: relative;
    padding-right: 35px;
}

.dropdown-lang {
    position: absolute;
    display: none;
    min-width: 100px;
    background: #fff;
    border-radius: var(--border-radius-sm);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, .3);
    padding: 5px 40px;
    right: -20px;
    text-align: center;
    top: 35px;
}

.dropdown-lang.show {
    display: block;
}

.dropdown-lang a {
    display: block;
    margin: 10px 0;
    color: var(--text-color);
}

.dropdown-lang a.active {
    color: var(--color-1);
    cursor: default;
}

.drop-btn {
    background-image: url("../images/earth.png");
    background-color: transparent;
    background-size: cover;
    border: 0;
    border-radius: 50%;
    filter: invert(1);
    height: 22px;
    width: 22px;
}

.drop-btn:after {
    content: "\e908"; /* arrow */
    font-family: 'cat-icons';
    color: var(--text-color);
    padding-left: 22px;
    font-size: calc(var(--font-size-base) * 0.875);
}

/* ------------------------------------------
--- IMAGES
-------------------------------------------*/

img.rounded {
    border-radius: var(--border-radius-md);
}

img.full {
    width: 100%;
}

img.icon {
    width: 35%;
}

img.lang {
    max-height: 24px;
    clip-path: circle(12px at center);
}

.banner .icon {
    filter: opacity(.7);
    width: 100%;

    &.invert {
        filter: invert(1);
    }
}

.section.icon {
    filter: invert(0) opacity(.7);
    margin-bottom: 1em;
}

.section.icon.invert {
    filter: invert(1) opacity(.7);
}

.section.icon.h-100 {
    height: 100px;
}

/* ------------------------------------------
--- BUTTONS
--------------------------------------------- */

.button-container {
    margin-bottom: 20px;
}

.button-container a,
.button-container label {
    display: inline-block;
    font-weight: 400;
    text-align: center;

    &:nth-child(2) {
        margin-top: .5rem;
    }
}

.button-container label {
    display: inline;
}

.button-container a:hover {

}

.btn {
    padding: 8px 40px;
    border-radius: var(--border-radius-xl);
    background: var(--color-1);
    display: inline-block;
    color: var(--text-color-invert);
    cursor: pointer;
    font-size: 1em;
    font-weight: 400;
    text-align: center;
}

.btn:hover {
    transition: all .4s;
}

.btn:focus-visible {
    border: 0;
    outline: 0
}

.btn-lg {
    width: 100%;
}

.btn-sm {
    font-size: .9em;
    min-width: 130px;
}

.btn-close {
    padding: 8px 14px;
}

.btn-primary {
    background: var(--color-1);
    color: var(--text-color-invert);
}

.btn-primary:hover {
    background: var(--color-2);
    color: var(--text-color-invert);
}

.btn-invert {
    background: #ffffff;
    color: var(--color-1);
}

.btn-invert:hover {
    background: var(--color-2);
    color: var(--text-color-invert);
}

.btn-invert.btn-outline {
    border-color: var(--text-color-invert);
    color: var(--text-color-invert);
}

.btn-secondary,
.btn-contact {
    background: var(--color-2);
    color: var(--text-color);
}

.btn-secondary:hover,
.btn-contact:hover {
    background: var(--color-1);
    color: var(--text-color-invert);
}

.banner .btn-secondary:hover {
    background: white;
    color: var(--color-2);
}

.btn-download:after {
    content: "\e9c5";
    font-family: 'cat-icons';
    color: var(--dark-gray);
    opacity: 70%;
    padding-left: 10px;
}

.btn-download.btn-outline:after {
    color: var(--text-color);
}

.btn-download.btn-invert.btn-outline:after {
    color: var(--text-color-invert);
}

.btn-download.btn-outline:hover:after {
    color: var(--text-color);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--btn-border);
    color: var(--dark-gray);
}

.btn-outline:hover {
    background: var(--bg-color);
    border: 1px solid var(--btn-border);
    color: var(--text-color);
}

.banner .btn-outline {
    background: transparent;
    border: 1px solid white;
    color: white;
}

.banner .btn-outline:hover,
.btn-download.btn-outline:hover {
    background: white;
    color: var(--text-color);
    border-color: var(--text-color-invert)
}

.btn-failed {
    background: var(--color-4);
    color: var(--text-color-invert);
}

.btn-failed:hover {
    background: var(--color-2);
    color: var(--text-color-invert);
}

a {
    color: var(--color-1);
}

a:hover {
    color: var(--color-2);
}

.anchor {
    margin: 20px 0 40px;
}

.anchor a,
.anchor a:hover {
    color: var(--color-1);
    position: relative;
    text-align: left;
}

.anchor a,
.anchor a:hover,
.anchor a.invert,
.anchor a.invert:hover {
    background: none;
}

.anchor a:hover,
.anchor a:hover:after,
.anchor a.invert:hover,
.anchor a.invert:hover:after {
    transform: scale(1.3);
    transition: all .4s;
}

.anchor a:after {
    color: var(--color-1);
    content: "\ea43"; /*circle arrow */
    content: "\e908"; /* arrow */
    font-family: 'cat-icons';
    font-size: 26px;
    position: absolute;
    left: 43%;
    top: 21px;
    transition: all .4s;
}

.anchor a.invert,
.anchor a.invert:after {
    color: var(--text-color-invert);
}

/* invisible div-class for jumping to target anchor */
.anchor-target {
    visibility: hidden;
    height: 0px !important;
    position: absolute;
    margin: -100px;
}

/* ------------------------------------------
 --- LISTINGS
--------------------------------------------- */
ul {
    list-style-type: "+ ";
    padding-inline-start: 15px;
    margin-bottom: 20px;
    margin-top: 0px;
}

ul::marker {
    color: var(--color-1);
}

/* ------------------------------------------
---- Icons
--------------------------------------------*/
.pagetop {
    position: fixed;
    bottom: -60px;
    right: 5%;
    /*height: 100vh; */
    transition: all 400ms ease-in-out;
    z-index: 1;
}

.pagetop,
.back {
    .nav-btn {
        background-color: var(--color-2);
        border-radius: var(--border-radius-sm);
        color: var(--text-color-invert);
        display: flex;
        font-size: 1.8rem;
        align-items: center;
        justify-content: center;
        margin-bottom: 3px;
        height: 50px;
        width: 50px;
        transition: all .5s;

        &:hover {
            background-color: var(--color-3);
        }

        &:after {
            content: "\e928";
            font-family: 'cat-icons';
            font-size: 1.8rem;
            transform: rotate(180deg);
        }
    }
}

.back {
    .nav-btn {
        background-color: transparent;
        border: 2px dotted;
        color: var(--text-color);
        font-size: 1.8rem;
        height: 50px;
        width: 50px;
        margin-bottom: 20px;

        &:hover {
            background-color: var(--color-2);
            color: var(--text-color-invert);
        }

        &:after {
            font-size: 1.8rem;
            transform: rotate(90deg);
        }
    }
}

/* ------------------------------------------
  BANNER AREA
--------------------------------------------- */

.banner {
    background-color: transparent;
    background-image: url('../images/banner-bg-logo.png'), url('###/images/home-banner.png');
    background-position: bottom right, right top;
    background-repeat: no-repeat;
    background-size: 80%, cover;
    padding: 130px 0 20px;
    position: relative;
}

.banner.connect {
    padding-bottom: 80px;
}

.banner.featuring {
    background-image: url("../images/home-banner-bg-screens.png"), url("../images/banner-bg-logo.png");
    background-position: right bottom, left bottom;
    background-repeat: no-repeat;
    background-size: auto, 80%;
}

.banner.variants,
.banner.variantpage,
#download-comparison {
    background-image: url("../images/banner-bg-polygon-fill.png");
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 70%;
}

.banner.variantpage {
    animation: none;
    background-color: var(--bg-dark);
}

.banner.stories,
.banner.connect {
    background-image: url("../images/banner-bg-logo.png");
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 80%;
}

.banner.story {
    background: var(--color-3);
    background-image: none;
    animation: none;
    padding: 130px 0 0;
}

.banner.rainbow {
    animation: none;
    background-image: url("../images/banner-bg-polygons.png"), linear-gradient(90deg, rgba(202, 19, 124, 1) 0%, rgba(221, 44, 69, 1) 35%, rgba(241, 105, 25, 1) 70%, rgba(250, 171, 29, 1) 100%);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain, 100%;
}

.banner.shorts,
.fsplayer,
.banner.blog {
    background-image: linear-gradient(90deg, rgba(202, 19, 124, 1) 0%, rgba(221, 44, 69, 1) 35%, rgba(241, 105, 25, 1) 70%, rgba(250, 171, 29, 1) 100%);
    animation: none;
    background-position: left;
    background-size: 100%;
    padding-bottom: 20px;
    overflow: hidden;

    &:before {
        content: url('../images/play-button.svg');
        filter: invert(1);
        opacity: .1;
        position: absolute;
        width: 100%;
        height: 100%;
        display: block;
        right: -30%;
        top: -10%;
    }
}

.banner.blog {
    background-image: url("../images/feuerwerk.svg"), linear-gradient(90deg, rgba(202, 19, 124, 1) 0%, rgba(221, 44, 69, 1) 35%, rgba(241, 105, 25, 1) 70%, rgba(250, 171, 29, 1) 100%);
    background-blend-mode: overlay;
    background-size: 80%, auto;

    .banner-image {
        margin-bottom: 20px;
        width: 100%;
        max-width: 180px;
    }

    .banner-image.article {
        max-width: 140px;
    }
}

.banner.blog:before {
    content: "";
}

/* --- BG COLOR ANIMATION --- */

@keyframes bgcoloranimation-01 {
    0% {
        background-color: var(--color-3);
    }
    /* 25%{background-color:var(--color-4);} */
    50% {
        background-color: var(--color-1);
    }
    /* 75%{background-color:var(--color-4)} */
    100% {
        background-color: var(--color-3);
    }
}

@keyframes bgcoloranimation-02 {
    0% {
        background-color: var(--color-3);
    }
    50% {
        background-color: var(--color-5);
    }
    100% {
        background-color: var(--color-3);
    }
}

@keyframes bgcoloranimation-03 {
    0% {
        background-color: var(--color-3);
    }
    50% {
        background-color: var(--color-4);
    }
    100% {
        background-color: var(--color-3);
    }
}

.banner,
.banner.home,
.banner.interview {
    animation: bgcoloranimation-01 30s infinite;
}

.banner.featuring,
.banner.connect {
    animation: bgcoloranimation-02 60s infinite;
}

.banner.variants {
    animation: bgcoloranimation-03 60s infinite;
}

.banner h1,
.banner h2,
.banner h3,
.banner h4,
.banner h5,
.banner h6,
.banner p {
    color: var(--text-color-invert);
}

.banner h5 {
    margin-bottom: 1em;
}

.banner h5 + h1 {
    margin-bottom: .1em;
}

.banner p {
    color: var(--text-color-invert);
    padding: 0;
    margin-bottom: 1em;
}


/* ------------------------------------------
 --- Video
--------------------------------------------- */
.video-wrapper {
    box-sizing: border-box;
    position: relative;
    padding-top: 0;
    padding-bottom: 56.25%;
    height: 0;
}

.video-wrapper iframe {
    border: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#videosection h1 {
    padding-left: 6.5rem;
}

#videosection h1:before {
    content: "\e945";
    font-family: "cat-icons";
    font-size: 4.5rem;
    color: #777;
    margin-left: -6.5rem;
    position: absolute;
    top: 0rem;
}

.ico-video {
    font-size: 8rem;
    color: #777;
}

/* ------------------------------------------
 --- Modul- Alle
--------------------------------------------- */

span.line {
    height: 0;
    margin: 0;
}

[data-anchorjs-icon]::after {
    content: none;
}

/* ------------------------------------------
 --- MODUL-Info
--------------------------------------------- */


.highlights {
    background-image: url('../images/banner-bg-logo.png');
    background-position: bottom right;
    background-size: 40%;
    background-repeat: no-repeat;
}

/* ------------------------------------------
 --- MODUL-Workflow
--------------------------------------------- */

.path {
    background-size: 26%;
    background-repeat: no-repeat;
    background-position: 1em 2em;
}

/* ------------------------------------------
 --- MODUL-Contact
--------------------------------------------- */

.cat-logo {
    max-height: 50px;
    margin-bottom: 1em;
}

.contact-link {
    color: var(--color-1);
}

.contact-icon {
    margin-right: 0.5em;
}

.small {
    font-size: 80%;
}

/* ------------------------------------------
 --- MODUL-Testimonials
--------------------------------------------- */

.testimonials {
    background-image: url("../images/home-banner-bg-screens.png");
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 100%;
}

.testimonial-text {
    font-style: italic;
}

.testimonial-user {
    font-weight: 600;
}

/* ------------------------------------------
 --- Modul- Services
--------------------------------------------- */

.feature-image img,
.release-image img {
    width: 100%;
}

.featuring .row-1,
.featuring .row-3,
.featuring .row-5,
.featuring .row-7,
.featuring .row-9,
.featuring .row-11,
.featuring .row-13,
.featuring .row-15 {
    flex-direction: row-reverse;
}

.feature-image-1 {
    text-align: center;
}

.feature-image-1 img {
    width: auto;
    max-height: 450px;
}

/* release page styles */

.release-image {
    padding-inline: 20px;
    position: relative;
    text-align: right; /* for fullscreen icons */

    & span {
        position: absolute;
        bottom: 20px;
        left: 20px;
    }
}

.release-image .icon {
    width: 1.5em;
}

/* checklist */

.checklist.card {
    background: white;
    padding: 50px 70px 50px 40px;
    border-radius: var(--border-radius-md);
    box-shadow: 0px 1px 100px #ddd;
}

.checklist h3 {
    color: var(--color-1);
}

.checklist img {
    width: 60px;
    position: absolute;
    top: -26px;
    right: -12px;
}

@media only screen and (max-width: 768px) {
    .checklist img {
        right: 40px;
        top: 20px;
        width: 40px;
    }
}

.checklist ul {
    list-style-type: none;
    padding-inline-start: 30px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.checklist ul li {
    text-indent: -27px;
    font-size: calc(var(--font-size-base) * 1.1);
    line-height: calc(var(--line-height-base) * 1.2);
    margin-bottom: 9px;
}

.checklist ul li:before {
    font-family: "cat-icons";
    content: "\e970";
    margin-right: 10px;
}

.checklist h4 {
    font-size: calc(var(--font-size-base) * 2);
}

/* ------------------------------------------
 --- Modul- Services
--------------------------------------------- */

.services {
    background: var(--bg-color-2);
    color: var(--text-color);
}

.services h3 {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.5;
}

.divbutton {
    text-align: center;
    display: block;
}

/*
****************************************
cate pricing
****************************************
*/

.pricing .card {
    flex: 1;

    h2 {
        background-color: var(--bg-color-3);
        display: inline-block;
        padding: 5px 25px;
        border-radius: 50px;
        font-size: 1.5rem;
    }

    .product-info {
        flex: 1;
    }
}

/* pricing table */

.tbl-small {
    font-size: .85rem
}

.tbl-big {
    font-size: 1.15rem;
    background-color: var(--bg-color-3) !important;
}

.tbl-bold {
    font-weight: 700
}

.tbl-img {
    width: 70px
}

.col-10 {
    width: 10%
}

.col-20 {
    width: 20%
}

.table_component {
    overflow: auto;
    width: 100%;
    padding: 50px 0;
}

.table_component table {
    border: 0 solid #deddda;
    height: 100%;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 3px;
    text-align: center;
    box-shadow: 0 0 0 rgba(0, 0, 0, .2);
}

.table_component caption {
    caption-side: top;
    text-align: center;
}

.table_component th {
    border: 0 solid #deddda;
    background-color: #ffffff;
    color: #000000;
    font-weight: 300;
    padding: 1px 25px 5px;
    text-align: center;
}

.table_component tr:nth-child(odd) td {
    background-color: #f2f2f2;
}

.table_component td {
    border: 0 solid #deddda;
    background-color: #ffffff;
    color: #000000;
    padding: 1.25rem;
}


/********** Range Input Styles **********/
/*Range Reset*/
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    width: 100%;
    height: 44px;
}

/* Removes default focus */
input[type="range"]:focus {
    outline: none;
}

/***** Chrome, Safari, Opera and Edge Chromium styles *****/
/* slider track */
input[type="range"]::-webkit-slider-runnable-track {
    background-color: #ccc;
    border-radius: 0.5rem;
    height: 0.1rem;
}

/* slider thumb */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    margin-top: -12px; /* Centers thumb on the track */

    /*custom styles*/
    background-color: var(--color-1);
    border-radius: 1rem;
    height: 2rem;
    width: 1rem;
}

input[type="range"]:focus::-webkit-slider-thumb {
    border: 1px solid transparent;
    outline: 3px solid transparent;
    outline-offset: 0.125rem;
}

/******** Firefox styles ********/
/* slider track */
input[type="range"]::-moz-range-track {
    background-color: #ccc;
    border-radius: 0.5rem;
    height: 0.1rem;
}

/* slider thumb */
input[type="range"]::-moz-range-thumb {
    border: none; /*Removes extra border that FF applies*/
    border-radius: 0; /*Removes default border-radius that FF applies*/

    /*custom styles*/
    background-color: var(--color-1);
    border-radius: 1rem;
    height: 2rem;
    width: 1rem;
}

input[type="range"]:focus::-moz-range-thumb {
    border: 1px solid transparent;
    outline: 3px solid transparent;
    outline-offset: 0.125rem;
}

label.range {
    font-size: 90%;
    margin-bottom: 10px;
    text-align: center;
    width: 100%
}

datalist {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: -7px -5px 0 -5px;

    option {
        font-size: 70%;
        /* display: none; */

        &:first-child,
        &:last-child {
            display: inline-block;
            margin-left: 5px !important;
        }

        &.tag {
            margin-left: -18px;
        }
    }
}

.priceslider {
    background: white;
    border: 1px solid #ddd;
    padding: 40px 20px;
    border-radius: var(--border-radius-md);
    position: relative;
    margin: 70px 0 100px 0;

    &:after {
        position: absolute;
        bottom: -28px;
        width: 0;
        height: 0;
        -webkit-transform: rotate(360deg);
        border-style: solid;
        border-width: 30px 60px 0 60px;
        border-color: #fff transparent transparent transparent;
        filter: drop-shadow(0 1px 1px #ddd);
    }

    .paymentmode-container {
        margin-top: 25px;
        font-size: 1rem;
    }

    #accountQuantity {
        font-size: 1.1rem;
    }

    #paymentmode-label,
    .range,
    .account-number {
        color: var(--color-1);
        font-size: 1.1rem;
    }

    #paymentmode-label {
        margin-right: 5px;
    }

    .paymentmode-container label {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 5px 25px;
        margin: 5px;
        border-radius: 50px;
        &::before {
            content: "";
            display: inline-block;
            width: 15px;
            height: 15px;
            margin-right: 5px;
            border-radius: 100%;
            outline: 1px solid var(--color-1);
            border: 4px solid var(--bg-color);
            background-color: var(--bg-color);
        }
    }

    @media only screen and (max-width: 767px) {
        .paymentmode-container {
            width: 100%;
            margin-top: 15px;
            flex-direction: column;
            align-items: flex-start;

        }
    }

    .paymentmode-container label:has(input:checked) {
        background-color: var(--color-1);
        color: var(--bg-color);
        font-weight: bold;
        border-radius: 50px;
        &::before {
            outline: 1px solid var(--color-1);
            border: 4px solid var(--bg-color);
            background-color: var(--color-1);
        }
    }

    .paymentmode-container input[type="radio"] {
        -webkit-appearance: none;
        -moz-appearance: none;
        -ms-appearance: none;
        -o-appearance: none;
        appearance: none;
    }
}

.sliderbox {
    height: auto;
    justify-content: center;
}

.numberbox.tag {
    margin-top: auto;
    margin-bottom: auto;
    padding: 10px;
    font-size: 75%;
    min-width: 115px;
    @media only screen and (max-width: 767px) {
        margin-top: 15px;
        display: flex;
        flex-direction: row;
        align-items: center;
        .account-number {
            margin-left: 5px;
        }
    }
}

.productPrice {
    /* for pop out animation */
    display: inline-block;
}

.animate-scale-down {
    animation: scale-down;
    animation-duration: .7s;
    animation-timing-function: ease-in-out;
}

.priceAdditional {
    .yearlyInfo,
    .quarterlyInfo {
        display: none;
    }
}

@keyframes scale-down {
    0% {
        transform: scale(1.4);
    }
    50% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

/*
PRICING OFFER FORM
 */
.pricing.form-switch {
    background-color: transparent;
    position: fixed;
    bottom: 50%;
    right: 44px;
    transform: rotate(270deg) translateY(50%);
    transform-origin: right center;
    z-index: 102;

    .switch {
        /* background: linear-gradient(180deg,rgba(50, 50, 50, .8) 50%, rgba(50, 50, 50, .85) 100%);*/
        background-color: var(--color-2);
        -webkit-border-top-left-radius: 12px;
        -webkit-border-top-right-radius: 12px;
        -moz-border-radius-topleft: 12px;
        -moz-border-radius-topright: 12px;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        box-shadow: 1px 0 1px rgba(0,0,0,.4);
        cursor: pointer;
        display: inline-block;
        padding: 10px 30px;
        color: var(--text-color-invert);
        font-weight: 600;
        transition: all 300ms ease;
        &:hover {
            transform: scale(1.1);
        }
    }
}

.pricing-form {
    position: fixed;
    bottom: 0;
    right: 30px;
    width: 100%;
    max-width: 400px;
    z-index: 101;
    @media only screen and (max-width: 767px) {
        max-width: 100%;
        right: 0;
    }

    .form {
        -webkit-border-top-left-radius: 12px;
        -webkit-border-top-right-radius: 12px;
        -moz-border-radius-topleft: 12px;
        -moz-border-radius-topright: 12px;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        background-color: rgba(50,50,50,.8);
        backdrop-filter: blur(4px);
        color: var(--text-color-invert);
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 500ms ease;

        &.open { grid-template-rows: 1fr; }

        input,textarea {
            background-color: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: var(--border-radius-md);
            padding: 10px;
            margin-bottom: 10px;
            &::placeholder { color: #ccc }
        }

        .grid {
            display: grid;
            grid-template-columns: auto auto;
        }
    }
    .form-wrapper {
        /*backdrop-filter: blur(4px);*/
        padding: 20px 30px 10px;
        overflow: hidden;
    }

    .form-img { width: 40px }

    label {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 5px 10px;
        margin: 5px;
        border-radius: 50px;
        &::before {
            content: "";
            display: inline-block;
            width: 15px;
            height: 15px;
            margin-right: 5px;
            border-radius: 100%;
            outline: 1px solid rgba(255,255,255,.4);
            border: 4px solid transparent;
            background-color: transparent;
        }
    }

    label:has(input:checked) {
        background-color: rgba(255,255,255,.2);
        border-radius: 50px;
        &:before { background-color: rgba(255,255,255,.3) }
    }

    input[type="radio"] {
        -webkit-appearance: none;
        -moz-appearance: none;
        -ms-appearance: none;
        -o-appearance: none;
        appearance: none;
        display: none;
    }

    input[type="submit"] {
        background-color: transparent;
        border: 1px solid rgba(255,255,255,.5);
        color: var(--text-color-invert);
        padding: 0;
        &:hover {
            background-color: rgba(255,255,255,.2);
        }
    }
    /* submit-feedback */
    .fb-successful,
    .fb-requesting {
        background-color: white;
        border-radius: var(--border-radius-md);
        padding: 10px
    }
}

/*
****************************************
 ---- STORYS
****************************************
*/

.home .story-logo {
    display: block;
}

.story-logo {
    display: inline-block;
    height: 150px;
    margin-bottom: 20px;
    transition: all .3s;
}

.story .story-logo {
    height: 120px;
}

.story-logo.superscript {
    margin-top: -40px;
}

.story-logo.superscript-sm {
    margin-top: -20px;
}

.story-logo.hover:hover {
    transform: scale(1.05);
}

.story-logo img {
    height: 100%;
    @media screen and (max-width:767px) {
        /*height:85%;*/
    }
}

.story-logo__label {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 2px 30px;
    margin-right: -30px;
    display: inline-block;
    @media screen and (max-width:767px) {
        position: absolute;
        bottom:0;
        left: 0;
    }
}

.story-card {
    background-size: cover;
    background: var(--bg-color);
    border-radius: var(--border-radius-sm);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
    margin-bottom: 50px;
    max-width: 457px;

    h1, h2, h3 {
        color: var(--color-1);
        line-height: 120%;
    }
}

.story-card.shadow {
    box-shadow: 0 0 20px rgba(0, 0, 0, .05);
}

.story-card.shadow:has(.card-link:hover) {
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    transform: scale(1.02);
    transition: all .2s ease-in-out;
}

.story-card__content div {
    margin-bottom: 30px;
}

.story-card__img,
.story-img {
    background-color: #fff;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: inset 1px 1px 100px rgba(0, 0, 0, .2);
    overflow: hidden;
    min-height: 240px;
    width: 100%;
}

.story-card__text {
    padding: 0 var(--spacing-lg);
    max-height: 248px;
    overflow: hidden;

    p {
        font-size: 1em;
        line-height: 1.6em;
    }
}

.story-card__btn {
    display: flex;
    justify-content: center;
    position: relative;

    a.btn {
        padding: 5px 30px;
        border-radius: var(--border-radius-xl);
    }

    &::before {
        content: "...";
        color: inherit;
        position: absolute;
        left: 30px;
        top: -27px;
    }
}

.story-grid {
    display: flex;
    align-items: center;
}

.story-img {
    border-radius: var(--border-radius-sm);
    margin-bottom: var(--spacing-md);
    min-height: 360px;
}

.story-portrait {
    background-size: contain;
    background-repeat: no-repeat;
    clip-path: circle(78px at center);
    width: 160px;

    & + .story-portrait {
        margin-top: 10px;
    }
}

.story-portrait-text {
    background: linear-gradient(90deg, rgb(254, 201, 60) 0%, rgb(254, 101, 0) 100%);
    box-shadow: 0 20px 30px #dedede;
    color: var(--text-color-invert);
    align-content: center;
    padding: 1.2em 2em 1.2em 8em;
    font-style: italic;
    font-size: .9em;
    background-color: var(--bg-color-3);
    margin-left: -90px;
    margin-right: 6ch;
    border-radius: var(--border-radius-sm);

    p {
        line-height: 1.4em;
        font-weight: 400;
    }

    strong {
        font-weight: 700;
    }
}

.banner h1.storytitle {
    font-size: 3.4em;
    font-weight: 700;
    margin: -.4em 0 0 0;
}

.story-btn {
    align-self: flex-start;
}

.story-intro {
    background: var(--color-3);

    p {
        color: var(--text-color-invert);
        font-size: 1.2em;
        font-weight: 300;
    }
}

.story-interview {
    max-width: 75ch;

    h3 {
        color: var(--color-1);
        font-size: 1.4em;
        margin-block: 2.5em 1em;
    }
}

.story-info {
    margin-bottom: 10px;
}

.story-info__person,
.story-info__company {
    background: var(--bg-color);
    border-radius: var(--border-radius-sm);
    padding: 3em;

    p {
        font-size: .95em;
    }

    h4 {
        color: var(--color-1);
    }
}

.story-info__person {
    background: var(--color-1);
    background: linear-gradient(90deg, rgba(199, 30, 166, 1) 0%, rgba(206, 25, 112, 1) 100%);
    color: var(--text-color-invert);

    p {
        font-weight: 400;
    }

    h4 {
        color: var(--text-color-invert);
        font-weight: 400;
    }
}

/*
--------------------------------
cards
--------------------------------
*/

.card {
    padding: 0;
    color: var(--text-color);
    cursor: pointer;
    border-radius: var(--border-radius-sm);
    background: var(--bg-color);
    box-shadow: 0 1px 50px rgba(00, 0, 0, .1);
    height: auto;
    transition: all .5s ease;
    min-width: 250px;
    margin: 0 -10px 35px -10px;

    &:hover {
        transform: scale(1.05);
    }

    > a {
        color: var(--text-color);
        margin-bottom: var(--spacing-md);
    }
}

.card-content {
    flex-grow: 1;
    padding: 0 35px;

    h5 {
        /* font-size: 1.3rem; */
    }

    p {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}

.card-link {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.card-footer {
    padding-block-end: 15px;
}

.card-bottom {
    margin-block: 1.5rem;
}

/* variant cards */
.variants .card h5 {
    font-size: 1.3em;
}

/*
--------------------------------
variants overview
--------------------------------
*/

.variants,
.pricing {
    text-align: center;
    background: var(--bg-color-1);
}

.variants {
    .variant {
        margin: 0 -10px 35px -10px;
    }

    .features {
        height: 420px;
        padding: 0;
        margin-top: 2.3em;

        h5 {
            font-size: 20px;
            margin: 0 0 1em 1em;
            text-align: left;
        }

        ul {
            margin-left: 1em;
        }
    }
}


/*
------------------------
variant page
------------------------
*/

.banner.variantpage .textblock {
    min-height: 305px;
}

.variant-features {
    background-color: var(--bg-color-1);
}

.variant-highlights {
    background-color: var(--bg-color);
    background-image: url("../images/home-banner-bg-screens.png");
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 70%;
}

.variant-nav {
    display: flex;
    justify-content: end;
    transition: all .3s ease;

    & span {
        font-size: 0.9rem;
    }

    img {
        filter: saturate(0.7);
        opacity: .7;
    }

    &:hover {
        transform: scale(1.05);

        img {
            filter: saturate(1);
            opacity: 1;
        }
    }
}

.variant-nav .arrow {
    margin: 0 0.5rem;
    opacity: .3;
    width: 2.5rem;

    &.invert {
        filter: invert(1);
    }
}

.variant-nav.back .arrow {
    transform: rotate(180deg);
}

/* invisible jump-back in Light variant */
a.variant-nav[href=" "] {
    opacity: 0;
}

.pagination {
    align-items: center;
}

.pagination-element {
    background-color: #aaa;
    border-radius: 2px;
    display: inline-block;
    opacity: .3;
    margin-inline: 1px;
    height: 3px;
    width: 50px;
}

.pagination.Light a:nth-child(1) span,
.pagination.Standard a:nth-child(2) span,
.pagination.Pro a:nth-child(3) span,
.pagination.Partner a:nth-child(4) span {
    padding-inline: 0px;
    opacity: 1;
}

.product-description p {
    font-size: 115%;
}

.product-features {

}

.product-features li {
    font-size: 110%;
    margin: 8px 0;
}

.card .product-icon {
    margin-left: auto;
    margin-right: auto;
    margin-top: -43px;
    margin-bottom: 10px;
    text-align: center;
    width: 100px;

    img {
        width: 100%;
    }
}

.product-icon-banner {
    width: max(160px, 8vw);
    margin-bottom: 3rem;
}

.product-icon-xs {
    width: 10vw;
    max-width: 70px;
    min-width: 50px;
}

.product-icon-sm {
    margin-right: -40px;
    width: 110px;
    transition: all .3s;
    cursor: pointer;

    h4 {
        color: var(--text-color-invert);
        opacity: 0;
        transition: all .3s;
    }

    &:last-child {
        margin-right: 0;
    }
}

.product-icon-sm.active,
.product-icon-sm:hover {
    margin-right: 0px;

    h4 {
        opacity: 1;
    }
}

.product-icon-sm img {
    margin-bottom: var(--spacing-sm);
    max-width: 100px;
    width: 100%;
}

.product-description {
    background-color: #fff;
    box-shadow: 0 0 50px #ddd;
    padding: 40px;
    border-radius: var(--border-radius-sm);
    margin-bottom: var(--spacing-md);
}

.Light {
    h2, h3, h4, .checklist ul li:before {
        color: var(--c-light);
    }

    .product-description:first-child {
        background-color: var(--c-light);

        h2, h3, h4, h5, p {
            color: var(--text-color-invert);
        }

        p {
            font-weight: 300;
        }
    }
}

.Standard {
    h2, h3, h4, .checklist ul li:before {
        color: var(--color-1);
    }

    .product-description:first-child {
        background-color: var(--color-1);

        h2, h3, h4, h5, p {
            color: var(--text-color-invert);
        }

        p {
            font-weight: 300;
        }
    }
}

.Pro {
    h2, h3, h4, .checklist ul li:before {
        color: var(--c-pro);
    }

    .product-description:first-child {
        background-color: var(--c-pro);

        h2, h3, h4, h5, p {
            color: var(--text-color-invert);
        }

        p {
            font-weight: 300;
        }
    }
}

.Partner {
    h2, h3, h4, .checklist ul li:before {
        color: var(--c-partner);
    }

    .product-description:first-child {
        background-color: var(--c-partner);

        h2, h3, h4, h5, p {
            color: var(--text-color-invert);
        }

        p {
            font-weight: 300;
        }
    }
}

/* hover product icon headline color inside product-strip */
.product-strip h4 {
    color: var(--text-color-invert) !important;
}

.variants .features {
    padding: 0 0 1em 0;
    text-align: left;
    line-height: 1.4em;
    margin-bottom: .7em;
}

.variants .features li {
    font-size: 0.95em;
    line-height: 1.3em;
    margin-bottom: 0.8em;
}

/*
****************************************
 ---- STORY CARDS
****************************************
*/

.story-container {
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
    margin-bottom: 50px;
    max-width: 457px;
}

.story-bg {
    background-position-x: center;
    background-size: cover;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, .2);
    height: 100%;
    position: absolute;
    filter: saturate(0);
    width: 100%;
    z-index: 1;
}

.story.shadow {
    box-shadow: 0 0 3px rgba(50, 50, 50, 0);
}

.story-content div {
    margin-bottom: 30px;
}

.story-img {
    background-color: #fff;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: var(--border-radius-sm);
    box-shadow: inset 1px 1px 100px rgba(0, 0, 0, .2);
    overflow: hidden;
    min-height: 240px;
    width: 100%;
}

.story-info {
    margin-bottom: 10px;
}

.story-container h1 {
    color: var(--color-1);
    line-height: 120%;
}

.story-container h3 {

}

.story-container p {
    font-size: 1em;
    line-height: 1.6em;
}

.story-container .btn {
    padding: 5px 30px;
    border-radius: var(--border-radius-xl);
}

.story-btn {
    align-self: flex-start;
}

/* ------------------------------------------
 --- Partner
--------------------------------------------- */
.linkpartner {
    color: var(--color-1);
}

.linkpartner:hover {
    color: var(--color-2);
    transition: all 0.5s;
}

/* ------------------------------------------
 --- Impressum & Datenschutz
--------------------------------------------- */
.impressum {
    text-align: center;
}

.impressum a {
    color: var(--color-1);
}

.impressum a:hover {
    color: var(--color-2);
    transition: all 0.5s;
}

.datenschutz {
    width: 60%;
}

.linkdatenschutz {
    color: var(--color-1);
}

.linkdatenschutz:hover {
    color: var(--color-2);
    transition: all 0.5s;
}


/* ------------------------------------------
 --- FOOTER
 --------------------------------------------- */

footer {
    padding: 55px 0;
    color: var(--text-color-invert);
    font-weight: 300;
    background: var(--bg-footer);
    background-image: url("../images/banner-bg-polygon-outline.png");
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain;
    font-size: 15px;
}

.footerblock {
    width: 100%;
}

.footerblock .contact-icon {
    filter: brightness(100);
}

div.rightside {
    text-align: left;
}

.footerinhalt {
    float: left;
}

.footer1 {
    padding-left: 120px;
}

.footer2 {
    padding-left: 80px;
}

.footer3 {
    padding-left: 80px;
}

footer a,
footer .contact-link {
    color: var(--text-color-invert);
}

footer a:hover {
    color: var(--color-2);
}

/* ------------------------------------------
 --- icons
--------------------------------------------- */
/* style for icon fullscreen view*/
.fullscreen {
    border-radius: 50%;
    background-color: var(--gray);
    display: inline-block;
    padding: 13px;
    margin-top: 10px;
    opacity: 0.4;

    .icon {
        filter: invert(1);
    }
}

.social-icon {
    margin-top: 5px;
}

.social-icon a {
    margin-right: 10px;
}

.social-icon img {
    filter: invert(1);
    height: 22px;
}


/* ------------------------------------------
 --- Buttons unsichtbar machen
--------------------------------------------- */

/* Accordion styles */

.tab input[type="checkbox"] {
    display: none;
}

input.accordion {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.tabs {
    border-radius: var(--border-radius-sm);
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.tab {
    background-color: var(--bg-color);
    border-radius: var(--border-radius-sm);
    box-shadow: 0px 1px 2px silver;
    width: 100%;
    color: var(--text-color);
    overflow: hidden;
    margin-bottom: 30px;
}

.tab-label {
    box-shadow: inset 0 0 0.01 var(--color-3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 70px;
    padding: 0 2em;
    position: relative;
    background: var(--bg-color);
    cursor: pointer;
    margin: 0;
}

.tab-label:hover {
    /* background: var(--color-3); */
    box-shadow: inset 700px 0 0 var(--color-3);
    color: var(--text-color-invert);
    transition: all .6s;
}

.tab-label::after {
    content: "\e928";
    font-family: 'cat-icons';
    width: 1em;
    height: 1em;
    position: absolute;
    top: 38%;
    right: 20px;
    text-align: center;
    transition: all .35s;
    transform: rotate(270deg);
}

.tab-content {
    background: var(--color-3);
    color: var(--text-color-invert);
    max-height: 0;
    padding: 0 2em;
    text-align: left;
    transition: all .35s;
}

.tab-text {
    display: block;
    padding: 0 0 2em 0;
}

/* :checked */
input:checked + .tab-label {
    background: var(--color-3);
    color: var(--text-color-invert);
}

input:checked + .tab-label::after {
    transform: rotate(180deg);
}

input:checked ~ .tab-content {
    border-bottom: 1px dotted rgba(255, 255, 255, .5);
    max-height: 100vh;
    opacity: 100%;
}


/* ------------------------------------------
 --- BXSLIDER Testimonials
--------------------------------------------- */

/* icon from iconfont
.bx-wrapper:before {
  content: "\e96d";
  color: var(--bg-color-1);
  font-family: 'cat-icons';
  font-size: 40px;
  left: -55px;
  position: absolute;
  top: 5px;
}
*/
.testimonials .bx-wrapper:before {
    content: url(../images/ico_comment.svg);
    left: -43px;
    position: absolute;
    top: -10px;
    width: 34px;
}

/* controls interview slider*/

.bx-controls-direction a {
    text-indent: 0 !important;
}

.bx-wrapper .bx-next {
    right: 10%;
}

.bx-prev:before,
.bx-next:before {
    content: "\e902";
    font-family: 'cat-icons';
    color: var(--text-color);
    font-size: 4em;
}

.bx-next:before {
    content: "\e903";
}

/* ------------------------------------------
 --- FORM CONTACT
--------------------------------------------- */

input:focus-visible {
    outline: 1px solid var(--color-1);
}
input:not(#accountNumberSlider) { max-width: 80vw; }

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="name"],
input[type="users"],
input[type="datetime-local"] {
    width: 100%;
    height: 44px;
    background-color: #FFF;
    border: 1px solid #DDDDDD;
    margin: 0 0 5px 0;
    padding: 0 15px;
    -webkit-appearance: none;
    border-radius: var(--border-radius-xl);
}

input[type='submit'] {
    padding: 0 5px;
    margin-top: 15px;
    cursor: pointer;
    height: 44px;
    line-height: 32px;
    width: 100%;
    background-color: var(--color-1);
    color: #FFF;
    -webkit-appearance: none;
    border-radius: var(--border-radius-xl);
    transition: background-color 300ms;
}

input.btn {
    border: 0;
}

input.btn-failed[type='submit'] {
    background-color: red;
    color: #FFF;
}

input.btn-failed:hover[type='submit'] {
    background-color: var(--color-2);
    color: #FFF;
}

.banner input {
    background-color: rgba(255, 255, 255, .4);
    border: 0;
    color: var(--text-color-invert);
}

.banner input[type='submit'] {
    background-color: var(--bg-color);
    color: var(--color-1);
}

.banner input[type='submit']:hover {
    background-color: var(--color-1);
    color: var(--text-color-invert);
}

.banner input:focus-visible {
    outline: 1px solid var(--text-color-invert);
}

.banner input::placeholder {
    color: var(--text-color-invert);
}

/* this inverts the date-time-picker-icon in date-input-fields */
::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

/* callback states */

.fb-requesting,
.fb-successful,
.fb-failed {
    display: none;
}

.requesting input[type="submit"],
.successful input[type="submit"],
.failed input[type="submit"] {
    display: none;
}

.requesting .fb-requesting,
.successful .fb-successful,
.failed .fb-failed,
.failed .fb-failed input {
    display: block;
}

.successful .fb-successful,
.requesting .fb-requesting {
    display: block;
    text-align: center;
    color: green;
    font-size: .9em;
    line-height: 1.3em;
    margin-top: 1em;
}

.requesting .fb-requesting {
    color: var(--color-1);
}

.banner .successful .fb-successful,
.banner .requesting .fb-requesting {
    color: var(--text-color-invert);
}

.failed .fb-failed,
.failed .fb-failed input {
    display: block;
}

/* feedback icons */

.fb-successful:before,
.fb-requesting:before {
    font-family: cat-icons;
    margin-right: 6px;
}

.fb-successful:before {
    content: "\ea10";
}

.fb-requesting:before {
    content: "\ea20";
}

/* zammad chat */

@media only screen and (max-width: 768px) {
    body .zammad-chat.zammad-chat-is-open {
        height: 94.5%;
    }
}

/*
swiper logo slider
*/

.swiper-slide {
    /* padding: 40px 0; */
}

.ref-logo {
    margin: 1.5em;
    display: flex;
    align-items: end;
    box-shadow: 0 0px 10px rgba(140, 140, 140, .1);
    background: #fff;
    border-radius: var(--border-radius-sm);
    height: 134px
}

.ref-logo a {
    margin: auto;
}

.ref-logo img {
    height: 34px;
}

/* ------------------------------------------
 --- REFERENZEN / Logos
 ------------------------------------------ */

/* imgs in slider */

#company .bx-wrapper {
    height: calc(var(--logo-height) * 2.5);
}

.ref-logo img.comd {
    height: calc(var(--logo-height) * 0.69);
    padding-top: 5px;
}

.ref-logo img.spx {
    height: calc(var(--logo-height) * 0.75);
}

.ref-logo img.dwd {
    height: calc(var(--logo-height) * 1.1);
}



/*
-----------------------
security blog
-----------------------
*/

.page-title {
    background-color: var(--color-3);
    font-size: 0.95em;
    margin-bottom: 0;
    border-radius: var(--border-radius-xl);
    color: white;
    display: inline-block;
    font-weight: 400;
    padding: 3px 40px;
}

.security {
    margin-top: var(--navbar-height);
}

.security-item {
    margin-bottom: 30px;
    background: var(--bg-color);
    border-radius: var(--border-radius-sm);
    padding: 40px 40px 30px 40px;
    box-shadow: 0 10px 16px -10px #ccc;
}

.security-container .flex-row {
    gap: 10px;
}

.security-wrapper h1::before {
    content: "\e98f";
    color: #666;
    font-family: 'cat-icons';
    font-size: 4rem;
}

.security-wrapper h3,
.security-wrapper h4 {
    color: #666;
    font-weight: 300;
}

.security-wrapper h4 {
    margin: 0.5em 0;
}

.security-item .flex-row {
    font-weight: 300;
    margin-bottom: 0.3em;
}

.flex-grow-1 {
    flex-grow: 1;
}

.key {
    font-weight: 300;
    font-size: .85em;
    color: #777;
}

.value {
    font-weight: 500;
}

.tag {
    background: #eee;
    margin-bottom: 0;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 80%;
}

.tag.outlined {
    background: transparent;
    border: 1px solid #ccc;
}

.high {
    background-color: #d13438;
    color: #fff;
}

.medium {
    background-color: orange;
}

.low {
    background-color: green;
    color: #fff;
}

.security-item .icon {
    height: 32px;
    width: 32px;
}

.security-item .icon img {
    width: 100%; /* or any custom size */
    height: 100%;
    object-fit: contain;
}

/*
--------------------
Tooltip
--------------------
*/

/* Tooltip container */
.tooltip {
    position: relative;
    cursor: pointer;
    display: inline-block;
    border-bottom: 1px dotted #777;
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 250px;
    background-color: #555;
    color: #fff;
    text-align: left;
    padding: 10px;
    border-radius: 6px;
    font-size: .87em;
    font-weight: 400;
    line-height: 1.5em;
    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
}

.tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 10%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.cookie-container {
    background: rgba(0, 0, 0, .5);
    border: 0;
    height: 100vh;
    max-height: 100vh;
    max-width: 100vw;
    overflow: visible;
    width: 100vw
}

.cookie-banner {
    background-color: white;
    border: 0;
    box-shadow: 0 0 50px rgba(0, 0, 0, .5);
    border-radius: 8px;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100vw;
}

.cookie-content {
    padding: 2rem;
    max-width: 90ch;
    margin: 0 auto;
}

.btn-cookie {
    border: 0;
    border-radius: var(--border-radius-xl);
    padding: 8px 30px;
    margin-right: 10px;
    margin-bottom: 10px;
}

/* Trackboxx switch */
.tb-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.tb-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.tb-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.tb-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .tb-slider { background-color: var(--color-1); }

input:focus + .tb-slider { box-shadow: 0 0 1px var(--color-1); }

input:checked + .tb-slider:before {
    -webkit-transform: translateX(22px);
    -ms-transform: translateX(22px);
    transform: translateX(22px);
}

/* Rounded sliders */
.tb-slider.tb-round {
    border-radius: 34px;
    margin-right: 5px;
}

.tb-slider.tb-round:before { border-radius: 50%; }

/*
*******************************
SHORTS/BLOG CARD SWIPER
*******************************
*/

.shorts .circle-mask {
    margin-bottom: 20px;
    width: 240px;
}

.blog {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    grid-gap: 20px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(350px, 100%), 1fr));
    grid-auto-flow: unset;
    grid-gap: 20px;
}


.cardSwiper,
.blog {
    a { color: var(--text-color);

        :hover { color: var(--text-color); }
    }

    .card {
        background-color: var(--bg-color);
        background-size: cover;
        border-radius: var(--border-radius-sm);
        height: 450px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
        position: relative;
        margin: 0;

        &:hover { transform: scale(1.0); }
    }

    .card.nav {
        height: auto;
        padding: 30px;

        .nav-list {
            list-style: none;
            padding-bottom: 15px;
            padding-inline-start: 0;
            margin: 0;
            border-bottom: 1px dotted #aaa;

            a:hover li,
            a.active li { color: var(--color-1); }
        }
    }

    .card-bg {
        /* background-color: var(--bg-color); */
        background-position-x: center;
        background-size: cover;
        /* box-shadow: inset -100px -100px 220px 30px rgba(0,0,0,0.2); */
        height: 100%;
        position: absolute;
        filter: saturate(0.7) opacity(1);
        transform: scale(1);
        width: 100%;
        z-index: 1;
    }

    .card-wrapper:hover img {
        transform: scale(1.05);
        transition: all .3s;
        filter: saturate(1);
    }

    .card.shadow {
        box-shadow: 0 0 3px rgba(50, 50, 50, 0.2);
    }

    .card-content {
        display: flex;
        flex-grow: 1;
        flex-direction: column;
        justify-content: start;
        z-index: 2;
    }

    .card-img {
        height: 45%;
        overflow: hidden;
        position: relative;
        margin-bottom: 25px;
    }

    .card-img img {
        object-fit: cover;
        object-position: left;
        height: 100%;
        width: 100%;
        transition: all .2s ease-in;
    }

    .card_off {
        background: var(--bg-color);
        box-shadow: 0px 1px 2px silver;
        color: var(--text-color);
        padding: 40px;
        margin: 5px;
    }
}

/* play btn over card img */
.cardSwiper .card-img:after {
    content: " ";
    background-size: 70px;
    background-image: url('../images/play-button.svg');
    background-repeat: no-repeat;
    background-position: left center;
    display: block;
    filter: invert(1) drop-shadow(0 0 70px #000);
    position: absolute;
    opacity: .7;
    width: 80px;
    height: 80px;
    top: calc(50% - 40px
    );
    left: calc(50% - 30px);
}

/* card-slider demo nav */
.video-swiper { padding-bottom: 100px !important; }

.card-slider { position: relative; }

.card-slider .page-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
}

.card-slider .page-nav.back { left: 20px; }

.card-slider .page-nav.forward { right: 20px; }

/*
swiper elements
*/

/* position outside swiper container */
.swiper-button-prev { left: calc(50% - 55px); }

.swiper-button-next { right: calc(50% - 55px); }

.swiper-button-next,
.swiper-button-prev {
    background-color: rgba(50, 50, 50, .3);
    border-radius: var(--border-radius-xl);
    color: #fff;
    display: flex;
    font-size: 1.8rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 3px;
    height: 50px;
    width: 50px;
    bottom: -80px;
    top: auto;
    transition: all .5s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(50, 50, 50, .6);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    content: "\e928";
    font-family: 'cat-icons';
    font-size: 1.8rem;
    transform: rotate(270deg);
}

.swiper-button-prev:after {
    transform: rotate(90deg);
}

.swiper-pagination-bullet {
    background: var(--bg-dark);
    opacity: .3;
    height: 15px;
    width: 15px;
}

.swiper-pagination-bullet-active {
    background: var(--bg-dark);
    opacity: .6;
}

/*
***********************
blog cards styles
***********************
 */

.blog {
    .card.feature { height: 100%; }

    .cardSwiper .card-img:after { display: none; }

    .card-main {
        flex: 1;
        padding-top: 40px;
    }
}

/*
*****************************
PRIVACY
*****************************
*/

.privacy {
    h3 { font-size: 1.5rem; }

    h4 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    h5 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    h3, h4, h5 { font-weight: 500; }

    h3 { margin-top: 3rem; }

    h3:first-child { margin-top: 0; }

    h4, h5 { margin-top: 1.25rem; }
}

/*
*****************************
OPEN PLAYER JS
*****************************
*/

.card-slider .op-player__media {
    height: 200px;
    object-fit: cover;
}

/* fullscreen videos */

.fsplayer {
    padding: 0;

    video { max-height: 100vh; }

    .btn-close {
        filter: drop-shadow(0 0 30px #333);
        position: absolute;
        top: 10px;
        right: 20px;
        z-index: 999;
    }
}

.op-player__play {
    border-width: 0;
    height: auto;
    &:before {
        content: " ";
        display: block;
        filter: invert(1) drop-shadow(0 0 70px #000);
        opacity: .7;
        width: 80px;
        height: 80px;
        background-size: 80px;
        background-image: url('../images/play-button.svg');
        background-repeat: no-repeat;
        background-position: left center;
        margin-left: -25px;
    }
}

/* only for embedded videos */
#trailer {
    .op-player__play {
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        &:before { background-image: none; }
    }
    .op-controls {
        background: rgba(0, 0, 0, 0.5);
        font-size: 0.75em;
    }
}

/*
*************************************************************************
lightbox css from:
https://github.com/lokesh/lightbox2/blob/dev/dist/css/lightbox.css
*************************************************************************
 */
body.lb-disable-scrolling { overflow: hidden; }

.lightboxOverlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: black;
    opacity: 0.8;
    display: none;
}

.lightbox {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10000;
    text-align: center;
    line-height: 0;
    font-weight: normal;
    outline: none;
}

.lightbox .lb-image {
    display: block;
    height: auto;
    max-width: inherit;
    max-height: none;
    border-radius: 3px;

    /* Image border */
    border: 4px solid white;
}

.lightbox a img { border: none; }

.lb-outerContainer {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 4px;

    /* Background color behind image.
       This is visible during transitions. */
    background-color: white;
}

.lb-outerContainer:after {
    content: "";
    display: table;
    clear: both;
}

.lb-loader {
    position: absolute;
    top: 43%;
    left: 0;
    height: 25%;
    width: 100%;
    text-align: center;
        line-height: 0;
    }

    .lb-cancel {
        display: block;
        width: 32px;
        height: 32px;
        margin: 0 auto;
        background: url(../images/icons/loading.gif) no-repeat;
    }

    .lb-nav {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 10;
    }

    .lb-container > .nav { left: 0; }

    .lb-nav a {
        outline: none;
        background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
    }

    .lb-prev, .lb-next {
        height: 100%;
        cursor: pointer;
        display: block;
    }

    .lb-nav a.lb-prev {
        width: 34%;
        left: 0;
        float: left;
        background: url(../images/icons/prev.png) left 48% no-repeat;
        opacity: 0;
        -webkit-transition: opacity 0.6s;
        -moz-transition: opacity 0.6s;
        -o-transition: opacity 0.6s;
        transition: opacity 0.6s;
    }

    .lb-nav a.lb-prev:hover { opacity: 1; }

    .lb-nav a.lb-next {
        width: 64%;
        right: 0;
        float: right;
        background: url(../images/icons/next.png) right 48% no-repeat;
        opacity: 0;
        -webkit-transition: opacity 0.6s;
        -moz-transition: opacity 0.6s;
        -o-transition: opacity 0.6s;
        transition: opacity 0.6s;
    }

    .lb-nav a.lb-next:hover { opacity: 1; }

    .lb-dataContainer {
        margin: 0 auto;
        padding-bottom: 10px; /* when container is sitting container is si on top */
        width: 100%;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
    }

    .lb-dataContainer:after {
        content: "";
        display: table;
        clear: both;
    }

    .lb-data {
        padding: 0 4px;
        color: #ccc;
    }

    .lb-data .lb-details {
        width: 85%;
        float: left;
        text-align: left;
        line-height: 1.1em;
    }

    .lb-data .lb-caption {
        font-size: 13px;
        font-weight: bold;
        line-height: 1em;
    }

    .lb-data .lb-caption a { color: #4ae; }

    .lb-data .lb-number {
        display: block;
        clear: left;
        padding-bottom: 1em;
        font-size: 12px;
        color: #999999;
    }

    .lb-data .lb-close {
        display: block;
        float: right;
        width: 30px;
        height: 30px;
        background: url(../images/icons/close.png) top right no-repeat;
        text-align: right;
        outline: none;
        opacity: 0.7;
        -webkit-transition: opacity 0.2s;
        -moz-transition: opacity 0.2s;
        -o-transition: opacity 0.2s;
        transition: opacity 0.2s;
    }

    .lb-data .lb-close:hover {
        cursor: pointer;
        opacity: 1;
    }

/*
--------------------------------------------
MOBILE LAYOUT RULES
--------------------------------------------
*/

@media only screen and (max-width: 1200px) {

}

@media only screen and (min-width: 992px) and (max-width: 1200px) {

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner.featuring { background-size: 100%, 100%; }
}

@media only screen and (max-width: 991px) {
    .banner .right { text-align: left; }
}

/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 991px) {

    .header.transparent.backcolor {
        background-color: rgba(50,50,50,.95);
        .navbar {
            display:block;
            height: 100vh;
        }
    }

    /* mobile menue bg-color is set here! */
    .backcolor {
        background: #333;
        box-shadow: 0 50px 150px rgba(0,0,0,.7);
    }

    /* no ornaments on small devices */
    .intro,
    .path { background-image: none; }

    /* navigation */
    .logo img { height: 30px; }

    .scroll-area {
        margin-top: var(--navbar-mobile-height);
        height: calc(100vh - var(--navbar-mobile-height));
    }
    .nav-toggle:before { font-size: 35px; }
    .nav-toggle.active:before {
        font-size: 30px;
        font-family: 'Nunito';
        content: "x";
        font-weight: 300;
        color: var(--text-color-invert);
    }

    nav.nav-collapse ul {
        display: flex;
        flex-direction: column;
        margin-bottom: 5em;
        padding-top: 1.5em;
    }

    nav.nav-collapse ul li { width: auto; }
    nav.nav-collapse ul li a { font-size: 1.1em; }

    /* center lang select list */
    .dropdown-lang { right: -60px; }

    /* spacing */
    .innerspace { padding: 50px 0; }

    /* banner */
    .banner { padding: 110px 0 0; }
    .banner.featuring { background-size: 100%, 100%; }
    .right { text-align: left; }

    /* specific areas */
    .testimonials .flex-row { display: block; }

    /* variant cards */
    .card {
        height: auto;
        min-height: 40vw;
        margin: 50px auto;
    }
}


/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 1px) and (max-width: 768px) {
    .banner.sticky { position: relative; }
    .banner.story { padding: 90px 0 20px; }

    /* feature */
    .featuring .flex-row { flex-direction: column; }

    .story-logo.superscript-sm {
        height: 110px;
        margin: 0 0 10px 0;
    }
    .story-portrait-text { margin-right: 0; }

    /* blog */
    .blog {
        display: block;
        & .card.feature {
            height: 100%;
            margin-bottom: 20px;
        }
        & .banner-image {
            width: 100%;
            max-width: 40vw;
        }
    }
    .release-image { padding-block: 20px; }

    /* pricing table */
    .table_component table {
        table-layout: auto;
        font-size: .85rem;
        min-width: 580px;
        .col-20 { width: 13%; }
        .tbl-big { font-size: .95rem }
        th { padding: 1px 5px 5px; }
    }
}

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {

    /* story */
    .story-grid { margin: 20px 0 0 -55px; }
    .story-img { min-height: 240px; }
    .story-info__person,
    .story-info__company { margin: -20px -45px; }

    /* security blog */
    .blog-item { padding: 20px; }

    .blog-item .flex-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin-bottom: .5em;
    }

    .blog-item .flex-row.head { margin: 0; }

    .head .date.key {
        order: 1;
        align-self:flex-end;
    }

    .head .icon { order: 2; }
    .head .key,
    .head .value { order: 3; }
}
