/**************************************************
Colors
**************************************************/
:root {
    --red: #E6182F;
    --blue: #0078B5;
    --light: #009FF0;
    --font: #4B4B4B;
}
/**************************************************
Fonts
**************************************************/
/*@font-face {
    font-family: 'Futura';
    font-style: normal;
    font-weight: 500;
    src: local('?'), url("/fonts/futuram-webfont.woff2") format('woff2'), url("/fonts/futuram-webfont.woff") format('woff'), url('/fonts/futuram-webfont.ttf') format('truetype');
}
@font-face {
    font-family: 'Futura';
    font-style: normal;
    font-weight: 700;
    src: local('?'), url("../fonts/futurah-webfont.woff2") format('woff2'), url("/fonts/futurah-webfont.woff") format('woff'), url('/fonts/futurah-webfont.ttf') format('truetype');
}
@font-face {
    font-family: 'Futura';
    font-style: normal;
    font-weight: 300;
    src: local('?'), url("/fonts/futuran-webfont.woff2") format('woff2'), url("/fonts/futuran-webfont.woff") format('woff'), url('/fonts/futuran-webfont.ttf') format('truetype');
}*/
@font-face {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 400;
    src: url("/fonts/MulishRegular.woff2") format('woff2'), url("/fonts/MulishRegular.woff") format('woff'), url('/fonts/MulishRegular.ttf') format('truetype');
}
@font-face {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 600;
    src: url("/fonts/MulishSemiBold.woff2") format('woff2'), url("/fonts/MulishSemiBold.woff") format('woff'), url('/fonts/MulishSemiBold.ttf') format('truetype');
}
@font-face {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 800;
    src: url("/fonts/MulishExtraBold.woff2") format('woff2'), url("/fonts/MulishExtraBold.woff") format('woff'), url('/fonts/MulishExtraBold.ttf') format('truetype');
}

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

html {
    font-size: 17px;
    scroll-behavior: smooth;
    /*Sticky Footer*/
    height: 100%;
}
@media (prefers-reduced-motion: reduce) {
    .html {
        scroll-behavior: auto;
    }
}

body {
    color: var(--font);
    font-family: 'Mulish', Helvetica, sans-serif;
    background-color: white;
    line-height: 1.4;
    font-weight: 400;
}

body:not(#tinymce) {
    /*Sticky Footer*/
    display: flex;
    min-height: 100vh;
    margin: 0 auto;
    flex-direction: column;
}

header {
    background-color: white;
    width: 100%;
    position: sticky;
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    z-index: 999;
    box-shadow: 5px 5px 19px 5px rgba(0,0,0,0.1)
}
.header {
    /*height: calc(90vh - 91px - 13rem);*/
    /*padding-bottom:33%;*/
}
.header .inner {
    /*height:100%;*/
    padding-bottom: 90%;
    background-position: center;
    background-size: cover;
}

main {
    /*Sticky Footer*/
    min-height: 5em;
    flex: 1 0 auto;
}

/**************************************************
Content
**************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
    font-family: 'Mulish', Helvetica, sans-serif;
    font-weight: 800;
    color: var(--blue);
}

h1, .h1 {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    /*padding-top: 5rem;*/
}

h2, .h2 {
    font-size: 1.75rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

h3, .h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

h4, .h4 {
    font-size: 1.12rem;
}

.header {
    width: 100%;
    /*height: calc(90vh - 132px - 9.25rem);*/
    background-size: cover;
    background-attachment: inherit;
    background-position: center;
    position: relative;
    margin-bottom: 7.5rem;
}
main section img {
    max-width: 100%;
    height: auto;
}

p, .ptext {
    margin-bottom: 1.5rem;
}

a,
a:hover,
a:focus {
    color: var(--red);
    text-decoration: none;
    transition: color 150ms linear;
}

strong {
    font-family: Mulish, Helvetica, sans-serif;
    font-weight: 800;
}

small {
    font-size: 0.8rem;
}

section:not(.header, .bg-color) {
    margin: 7.5rem 0;
}

[onclick] {
    cursor: pointer;
}

.starter {
    background: linear-gradient(135deg, var(--light) 0%, var(--blue) 100%);
    position: absolute;
    z-index: 10;
    padding: 1.5rem 1.75rem;
    border-radius: 0.5rem;
    bottom: -86px;
    left:50%;
    transform:translateX(-50%);
    box-shadow: 5px 5px 19px 5px rgba(0,0,0,0.1);
    max-width: 70%;  
    width:70%;
}
.starter,
.header.blogentry h1 {
    color: white;
    font-size: 1.3rem;
}

.starter p:last-child,
.header.blogentry h1 {
    margin-bottom: 0;
}

.bg-color {
    background: linear-gradient(135deg, var(--light) 0%, var(--blue) 100%);
}
section.bg-color {
    padding: 1.5rem 0;
}

.bg-color,
.bg-color h1, .bg-color .h1,
.bg-color h2, .bg-color .h2,
.bg-color h3, .bg-color .h3,
.bg-color h4, .bg-color .h4 {
    color: white;
}

.bg-color h2:after,
.bg-color .h2:after {
    border-bottom: 0.2rem solid white;
}

.bg-color .btn,
.starter .btn {
    background: white;
    color: var(--blue);
}

.bg-color .btn:hover,
.bg-color .btn:focus,
.starter .btn:hover,
.starter .btn:focus {
    color: var(--blue);
}
.bg-color a,
.bg-color a:hover,
.bg-color a:focus {
    color:white;
    text-decoration:underline;
}

.logo {
    width: 75px;
}

.anniversary {
    position: absolute;
    top: 1.7rem;
    right: 0;
    max-width: 3rem;
    padding-bottom: 1.375rem;
    margin-left: 1rem;
}

.logos .column > div {
    border: 1px solid var(--blue);
    border-radius: 0.5rem;
    padding: 12px;
    margin-top:12px;
    margin-bottom:12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-color .logos .column > div {
    border: none;
    background-color:white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logos .column p {
    margin-bottom:0;
}

.btn {
    padding: 0.5rem 1.2rem 0.7rem 1.2rem;
    background: linear-gradient(135deg, var(--light) 0%, var(--blue) 100%);
    border-radius: 0.3rem;
    color: white;
    transition: all 150ms linear;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
}

.btn:hover,
.btn:focus {
    box-shadow: 5px 5px 19px 5px rgba(0,0,0,0.1);
    transition: all 150ms linear;
    color: white;
}
.btn-sm {
    font-size:0.7rem;
    padding: 0.25rem 0.5rem;
}

.umbraco-forms-page input,
.umbraco-forms-page textarea,
.umbraco-forms-page select {
    margin-bottom: 0.5rem;
}

.google-maps {
    line-height: 0;
}
.imgCoverCenter {
    position: relative;
    overflow: hidden;
}

.imgCoverCenter > img,
.imgCoverCenter > video,
.imgCoverCenter > svg {
    position: absolute;
    /*top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);*/
    height: 100%;
    width: 100.1%;
    object-fit: cover;
    object-position: center;
}

.hyphens-xs {
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

/**************************************************
Support
**************************************************/
#support {
    display: flex;
    position: fixed;
    z-index: 999;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--light) 0%, var(--blue) 100%);
    border-top-left-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
    padding: 0.5rem 1.25rem;
    color: white;
    right: -3rem;
    overflow: hidden;
    box-shadow: 5px 5px 19px 5px rgba(0,0,0,0.1);
    transition: all 500ms;
}

#support:hover,
#support:focus {
    right: 0;
}

#support > div:first-child {
    width: 50%;
    position: relative;
}

#support > div:first-child p {
    transform: translateX(-50%) translateY(-50%) rotate(-90deg);
    position: absolute;
    top: 50%;
    /*left: 50%;*/
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

#support > div:last-child {
    width: 50%;
    /*margin-left: 1.75rem;*/
}

#support > div:last-child i {
    color: white;
    font-size: 1.5rem;
    line-height: 1.9;
    transition: color 150ms linear;
}
/**************************************************
Navigation
**************************************************/
.navbar {
    padding: 0;
}

header nav.navbar {
    padding: 0;
    align-items: center;
}

.navbar,
.navbar-expand-lg {
    flex-direction: row;
}

.navbar-collapse {
    justify-content: flex-end;
    background: none;
    z-index: 10;
    padding: 1.5rem 0;
}

.nav-item:not(:last-of-type) {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.nav-item:last-of-type,
.nav-item:last-of-type a {
    color: var(--red);
    /*font-size: 0.8rem;
    font-weight: 800;*/
    display: flex;
    align-items: center;
}
.nav-item.lang {
    padding: 0.625rem 0.75rem;
}
.nav-item.lang a:first-child:after {
    content: "|";
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
}

.nav-item:not(:last-of-type) .nav-link {
    color: var(--blue);
    border-radius: 0.3rem;
    border:1px solid var(--blue);
    width: fit-content;
    padding: 0.625rem 0.75rem;
    margin-bottom: 1rem;
}
.nav-item:not(:last-of-type) .nav-link.active,
.nav-item:not(:last-of-type) .nav-link:hover,
.nav-item:not(:last-of-type) .nav-link:focus {
    background: linear-gradient(135deg, var(--light) 0%, var(--blue) 100%);
    color: white;
    border: none;
    /*Ausgleich für wegfallenden Border + 1px (Grund: BG-Gradient ist das Problem und white/transparent funktioniert auch nicht) */
    padding-top: calc(0.625rem + 1px);
    padding-bottom: calc(0.625rem + 1px);
}

.navbar-brand img {
    width: 7rem;
    padding: 1.5rem 0;
}

.navbar-toggler {
    border: none;
    padding: 0;
    padding-right: 4.5rem;
}

.navbar-toggler:focus,
.navbar-toggler:focus-visible {
    border: none;
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon, [aria-expanded="true"] .navbar-toggler-icon {
    background-image: none;
}

.navbar-expand-lg .navbar-toggler {
    background-color: transparent;
    position: relative;
    z-index: 15;
    margin-left: auto;
    margin-right: 0;
}

.navbar-toggler-icon {
    width: 1.5em;
    height: 1.85em;
}

.navbar-toggler-icon:after {
    content: '\f0c9';
    font-size: 2.25rem;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--blue);
    transition: color 150ms linear;
}

.navbar-toggler-icon:hover:after {
    color: var(--red);
    transition: color 150ms linear;
}

.navbar-toggler.collapsed .anniversary {
    display: block;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: white;
}

.dropdown-item:focus a,
.dropdown-item:hover a {
    color: var(--red) !important;
}

.navbar-expand-xl .navbar-nav .dropdown-menu {
    border-radius: 0;
    border: none;
    background-color: transparent;
}
/**************************************************
Cards
**************************************************/
.card {
    border: none;
    box-shadow: 5px 5px 19px 5px rgba(0,0,0,0.1);
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    margin-bottom: 1.75rem;
    transition: background 150ms;
}

.products .card .card-img-top,
/*.team .card .card-img-top,*/
.blog .card .card-img-top,
.kacheln .card .card-img-top {
    height: 15rem;
    object-fit: cover;
    object-position: center;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.card .card-body {
    transition: background 150ms;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    padding-bottom:0.25rem;
}
.card .card-body > *:last-child {
    margin-bottom:0;
}
.card .card-body h3 {
    color: var(--font);
}
.card-footer {
    background-color:white;
    border:none;
    padding-top:0;
    padding-bottom:1rem;
}

.products .card:hover .card-body,
.products .card:focus .card-body {
    background: linear-gradient(135deg, var(--light) 0%, var(--blue) 100%);
    transition: background 150ms !important;
}

.products .card:hover .card-body h3,
.products .card:focus .card-body h3 {
    color: white;
}
.teamLinks {
    font-size:0.9em;
}
.team .card .card-body i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    /*margin-top: 1rem;*/
    margin-bottom:0.5rem;
    transition: color 150ms linear;
    color: var(--blue);
}

.team .card .card-body i:hover,
.team .card .card-body i:focus {
    color: var(--red);
    transition: color 150ms linear;
}
.team .card-text p {
    margin-bottom:1rem;
}
.card-title a,
.team .card-text a {
    color:var(--blue);
}
.team .imgCoverCenter {
    padding-bottom:83.478%;
}
.teammail {
    overflow-x:hidden;
    white-space:nowrap;
    position:relative;
    display:inline-block;
    margin-bottom:10px;
}
.teammail:after {
    content:'';
    position:absolute;
    right:0;
    top:0;
    bottom:0;
    width:50px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
    background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

/**************************************************
References
**************************************************/
.references img {
    padding: 0.5rem;
    width: 8rem;
    height: 8rem;
    border-radius: 0.3rem;
    box-shadow: 5px 5px 19px 5px rgba(0,0,0,0.1);
    margin: 0 1.25rem 1.25rem 0;
}
/**************************************************
Blog
**************************************************/
.header.blogentry h1 {
    text-transform:none;
    color:white;
    margin:0;
}
section.blogentry:not(.header) .container {
    position:relative;
}
.blogOverview {
    position: absolute;
    top: -109px;
    left: calc(var(--bs-gutter-x) * .5);
    font-size: 0.8rem;
    width:60px;
    text-align:center;
}
.blogentry .btn {
    margin-bottom:5px;
}
/**************************************************
Footer
**************************************************/
footer {
    background: linear-gradient(135deg, var(--light) 0%, var(--blue) 100%);
    padding: 4.5rem 0;
    color: white;
    /*Sticky Footer*/
    flex-shrink: 0;
}

footer .container {
    position: relative;
}

footer .container > * {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

footer strong {
    text-transform: uppercase;
}

footer small {
    justify-content: flex-start !important;
    margin-top: 3rem;
}

footer small > * {
    margin-right: 2rem;
}

footer small p {
    margin-bottom: 0;
}

/*Update JC 17.04.2025: Obsolet, da das apload-Done nicht gwünscht wird
    footer small > *:last-of-type {
    opacity: 0.625;
}
*/
footer a {
    text-decoration: none;
    color: white;
    transition: color 150ms linear;
}

footer a:hover,
footer a:focus {
    text-decoration: none;
    color: white;
}

footer .container > div > div > div {
    display: flex;
    margin-top: 0.775rem;
}

footer a i {
    background-color: white;
    height: 2.5rem;
    width: 2.5rem;
    font-size: 1.5rem;
    color: var(--blue);
    border-radius: 50%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin-right: 0.75rem;
    transition: all 150ms linear;
}
/*************************************************
Cookie-Banner
*************************************************/
#cookie_directive_container .fixed-bottom {
    background-color: var(--light);
    padding: 1.5rem 0;
    font-size: 1rem;
}

#cookie_directive_container .fixed-bottom p {
    margin-bottom: 0;
    max-width: 70vw;
    line-height: 1.5;
}
#cookie_directive_container a {
    color:white;
}
#cookie_directive_container .btn {
    background-color: var(--font);
    color: white;
}

#cookie_directive_container .btn:hover,
#cookie_directive_container .btn:focus {
    color: var(--light);
    background: white;
    text-decoration: none;
}
/**************************************************
Responsive
**************************************************/
@media (max-width: 576px) {
    .container {
        padding-right: 10%;
        padding-left: 10%;
    }
}

@media (min-width:576px) {

    section:not(.header, .bg-color) {
        margin: 3rem 0;
    }

    section.bg-color {
        padding: 3rem 0;
    }

    /*.team .card .card-img-top {
        height: 18rem;
    }*/

    /*.header {
        height: calc(90vh - 91px - 13rem);
    }*/

    .starter {
        max-width: 68%;
    }
    .hyphens-xs {
        -moz-hyphens: none;
        -ms-hyphens: none;
        -webkit-hyphens: none;
        hyphens: none;
    }
    .blogOverview {
        width: auto;
        text-align: left;
    }
}

@media (min-width:768px) {
    h1, .h1 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    h2, .h2 {
        font-size: 1.6rem;
        margin-bottom: 1.65rem;
    }


    .starter,
    .header.blogentry h1 {
        font-size: 1.3rem;
    }

    .starter {
        bottom: -57px;
        left: 1.5rem;
        transform: none;
        width: auto;
    }
    .header .inner {
        padding-bottom: 48.5%;
    }
    .blogOverview {
        top: -82px;
        left: auto;
        right: calc(var(--bs-gutter-x) * .5);
    }
    #cookie_directive_container .fixed-bottom p {
        max-width: 62vw;
    }
}

@media (min-width:992px) {
    html {
        font-size: 18px;
    }

    section:not(.header, .bg-color) {
        margin: 4.25rem 0;
    }

    section.bg-color {
        padding: 4.25rem 0;
    }

    h1, .h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    h2, .h2 {
        font-size: 1.8rem;
        margin-bottom: 1.65rem;
    }

    h3, .h3 {
        font-size: 1.2rem;
    }

    .products .card .card-img-top,
    /*.team .card .card-img-top,*/
    .blog .card .card-img-top {
        height: 12rem;
    }

    footer {
        padding: 2.25rem 0;
    }

    footer .container > * {
        flex-direction: row;
    }

    footer .container > * > div {
        margin-bottom: 1.75rem;
    }

    footer small {
        position: relative;
        margin-top: 1.75rem;
    }

    footer small p {
        margin-bottom: 0.25rem;
    }
}

@media (min-width:1200px) {
    html {
        font-size: 20px;
    }

    section:not(.header, .bg-color) {
        margin: 6.5rem 0;
    }

    section.bg-color {
        padding: 6.5rem 0;
    }

    header nav.navbar {
        align-items: end;
    }

    .navbar-brand img {
        width: 9.525rem;
        padding: 1.75rem 0;
    }

    .navbar-collapse {
        padding-bottom: 0;
    }
    .nav-item:not(:last-of-type) .nav-link.active,
    .nav-item:not(:last-of-type) .nav-link:hover,
    .nav-item:not(:last-of-type) .nav-link:focus {
        padding-top: 0.5rem;
        padding-bottom: 1.75rem;
    }
    .nav-item:not(:last-of-type) a {
        color: white;
        text-decoration: none;
        padding: 0.5rem 0.5rem 1.75rem 0.5rem;
        margin-left: 0.75rem;
    }

    .nav-item:last-of-type:hover a,
    .nav-item:last-of-type:focus a,
    .nav-item:last-of-type a:hover,
    .nav-item:last-of-type a:focus {
        color: var(--red);
    }

    .nav-item:hover a,
    .nav-item:focus a {
        color: white;
    }

    .nav-item.lang {
        padding: 0.5rem 0.5rem 1.75rem 0.5rem;
        margin-left: 0.75rem;
    }

    .nav-item:not(:last-of-type) .nav-link {
        border: none;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        margin-bottom: 0;
        padding: 0.5rem 0.5rem 1.75rem 0.5rem;
    }

    .nav-item:not(:last-of-type) .nav-link .active,
    .nav-item:not(:last-of-type):hover .nav-link,
    .nav-item:not(:last-of-type):focus .nav-link {
        box-shadow: 5px 5px 19px 5px rgba(0,0,0,0.1);
        background: linear-gradient(135deg, var(--light) 0%, var(--blue) 100%);
        border: none;
        color: white;
    }
    .nav-item:not(:last-of-type) .nav-link:hover,
    .nav-item:not(:last-of-type) .nav-link:focus {
        
    }

    .dropdown-menu {
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0 !important;
        margin-bottom: 1.25rem;
    }

    .dropdown-menu .dropdown-item {
        padding: 0.25rem 0 0.25rem 0 !important;
    }

    .dropdown-menu .dropdown-item a {
        color: var(--blue);
        padding: 0 !important;
        font-weight: 800;
    }

    .anniversary {
        position: static;
    }

    .starter {
        bottom: -70px;
    }
    .starter,
    .header.blogentry h1 {
        font-size: 1.8rem;
    }

    footer {
        padding: 4rem 0;
    }

}