/* ==================================================
1.0 #root & Font 
Festlegung wesnetlicher Styles, die über das ganze Projekt genutzt werden.
================================================== */

/* @media (min-width: 576px) { body {background-color: red;} }
@media (min-width: 768px) { body {background-color: blue;} }
@media (min-width: 992px) { body {background-color: green;} }
@media (min-width: 1200px) { body {background-color: peachpuff;} }
@media (min-width: 1400px) { body {background-color: purple;} }
 */

/*https://google-fonts-helper.herokuapp.com/fonts/overpass?subsets=latin */

/* open-sans-regular - latin */
@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    src: url("https://www.ebootis.de/wp-content/themes/ebootis2021/dist/fonts/open-sans-v18-latin-regular.eot"); /* IE9 Compat Modes */
    src: local(""),
        url("https://www.ebootis.de/wp-content/themes/ebootis2021/dist/fonts/open-sans-v18-latin-regular.eot?#iefix")
            format("embedded-opentype"),
        /* IE6-IE8 */ url("https://www.ebootis.de/wp-content/themes/ebootis2021/dist/fonts/open-sans-v18-latin-regular.woff2")
            format("woff2"),
        /* Super Modern Browsers */
            url("https://www.ebootis.de/wp-content/themes/ebootis2021/dist/fonts/open-sans-v18-latin-regular.woff") format("woff"),
        /* Modern Browsers */ url("https://www.ebootis.de/wp-content/themes/ebootis2021/dist/fonts/open-sans-v18-latin-regular.ttf")
            format("truetype"),
        /* Safari, Android, iOS */
            url("https://www.ebootis.de/wp-content/themes/ebootis2021/dist/fonts/open-sans-v18-latin-regular.svg#OpenSans")
            format("svg"); /* Legacy iOS */
    font-display: swap;
}

/* open-sans-600 - latin */
@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/open-sans-v18-latin-600.eot"); /* IE9 Compat Modes */
    src: local(""),
        url("../fonts/open-sans-v18-latin-600.eot?#iefix")
            format("embedded-opentype"),
        /* IE6-IE8 */ url("../fonts/open-sans-v18-latin-600.woff2")
            format("woff2"),
        /* Super Modern Browsers */ url("../fonts/open-sans-v18-latin-600.woff")
            format("woff"),
        /* Modern Browsers */ url("../fonts/open-sans-v18-latin-600.ttf")
            format("truetype"),
        /* Safari, Android, iOS */
            url("../fonts/open-sans-v18-latin-600.svg#OpenSans") format("svg"); /* Legacy iOS */
    font-display: swap;
}

/* open-sans-700 - latin */
@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/open-sans-v18-latin-700.eot"); /* IE9 Compat Modes */
    src: local(""),
        url("../fonts/open-sans-v18-latin-700.eot?#iefix")
            format("embedded-opentype"),
        /* IE6-IE8 */ url("../fonts/open-sans-v18-latin-700.woff2")
            format("woff2"),
        /* Super Modern Browsers */ url("../fonts/open-sans-v18-latin-700.woff")
            format("woff"),
        /* Modern Browsers */ url("../fonts/open-sans-v18-latin-700.ttf")
            format("truetype"),
        /* Safari, Android, iOS */
            url("../fonts/open-sans-v18-latin-700.svg#OpenSans") format("svg"); /* Legacy iOS */
    font-display: swap;
}

:root {
    --main-font-size: 1.1rem;
    --small-font-size: 0.9rem;
    --primary-font: "Open Sans";
    --border-radius: 1rem;
    --border-radius-sm: 0.5rem;
    --border-radius-lg: 2rem;
    --clr-black: 38, 37, 42;
    --clr-white: 255, 255, 255;
    --clr-gray: 230, 230, 230;
    --clr-graydark: 81, 81, 81;
    --clr-red: 210, 38, 25;
    --clr-redlight: 231, 76, 60;
    --clr-blue: 39, 75, 128;
    --clr-bluedarkfont: 46, 63, 80;
    --clr-bluedark: 2, 30, 71;
    --clr-bluedarkest: 10, 10, 38;
    --clr-bluelight: 237, 244, 249;
    --clr-bluelighter: 189, 211, 229;
    --clr-bluemiddle: 106, 134, 168;
    --clr-bluelightest: 251, 254, 255;
    --clr-green: 140, 193, 82;
    --clr-yellow: 246, 187, 66;
}

textarea:hover,
input:hover,
textarea:active,
input:active,
textarea:focus,
input:focus,
button:focus,
button:active,
button:hover,
label:focus,
.btn:active,
.btn.active,
select:hover,
select:active,
select:focus {
    outline: 0px !important;
    box-shadow: none !important;
}

/* ==================================================
2.0 #Basics
Grundlegende HTML Elemente
================================================== */

/* https://stackoverflow.com/questions/4192277/disable-horizontal-scroll-on-mobile-web 
Verhindert horizontale Scrollbalken auf Grund der .bg-blue-header {position: absolute} Thematik
Funktioniert nur mit body {position: relative}
Mögliche Probleme mit position:sticky laut obigem Link*/

html,
body {
    /* overflow-x: hidden; */
}

:root {
    scroll-behavior:  auto !important;
  }

/* Offset anchor links */
html {
    scroll-padding-top: 150px;
    scroll-behavior: auto !important;
}

/* Scrolling Anchor 
.container,
.row,
div {
    scroll-margin-top: 100px;
}
*/

/* @media (min-width: 768px) {
  html {
    overflow-x: initial;
  }
} */

body {
    font-family: var(--primary-font), sans-serif;
    position: relative;
    color: rgba(var(--clr-blue), 1);
    background-color: rgba(var(--clr-bluelightest), 1);
}

a,
hr,
i,
button,
h1,
h2,
h3,
h4,
h5,
input,
select,
textarea,
span,
.opacity {
    -webkit-transition: all 100ms ease-in-out;
    -moz-transition: all 100ms ease-in-out;
    -o-transition: all 100ms ease-in-out;
    -ms-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
select,
option,
select option,
textarea {
    font-family: var(--primary-font), sans-serif;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    line-height: 1.3;
  }

p {
    color: rgba(var(--clr-black), 1);
    font-size: var(--main-font-size);
    margin-bottom: 1.7rem;
}

p a {
    color: rgb(var(--clr-red));
    text-decoration: none;
}

p a:hover {
    color: rgb(var(--clr-redlight));
    text-decoration: none;
}

.text-p {
    color: rgba(var(--clr-black), 1) !important;
}


a {
    color: rgb(var(--clr-bluedark));
    text-decoration: none;
}

a:hover {
    color: rgb(var(--clr-red));
    text-decoration: none;
}

/* Responsive Caption */
.wp-caption {
    /* Force the box to be 100% */
    width: 100% !important;
}

#content .wp-caption a img {
    /* Scale down if too big */
    max-width: 99.03225806%; /* 614/620 */
    height: auto;
}

.wp-caption-text {
    font-size: var(--small-font-size);
    text-align: center;
    font-style: italic;
}


li {
    font-size: var(--main-font-size);
}

.text-primary {
    color: rgba(var(--clr-blue), 1) !important;
}

.text-graydark {
    color: rgba(var(--clr-graydark), 1) !important;
}

.text-bluelight {
    color: rgba(var(--clr-bluelight), 1) !important;
}

.text-bluedark {
    color: rgba(var(--clr-bluedark), 1) !important;
}

sup {
    color: rgba(var(--clr-red), 1);
}

.text-primary-font {
    font-family: var(--primary-font), sans-serif;
}
.text-secondary-font {
    font-family: var(--secondary-font);
}

.border-rounded {
    border-radius: var(--border-radius);
}

.border-rounded-lg {
    border-radius: var(--border-radius-lg);
}

.border-bluelighter {
    border-color: rgba(var(--clr-bluelighter), 1) !important;
}

.bg-seamless {
    background: url("../img/bg-header-seamless.png") repeat;
}

.bg-blue {
    background-color: rgba(var(--clr-blue), 1);
}

.bg-bluelight {
    background-color: rgba(var(--clr-bluelight), 1);
}

.bg-bluelighter {
    background-color: rgba(var(--clr-bluelighter), 1);
}

.bg-bluedark {
    background-color: rgba(var(--clr-bluedark), 1);
}

.bg-bluedarkest {
    background-color: rgba(var(--clr-bluedarkest), 1);
}

.bg-bluedarkfont {
    background-color: rgba(var(--clr-bluedarkfont), 1);
}

.bg-green {
    background-color: rgba(var(--clr-green), 1);
}

.bg-yellow {
    background-color: rgba(var(--clr-yellow), 1);
}

.bg-greenlight {
    background-color: rgba(var(--clr-green), 0.5) !important;
}

.bg-yellowlight {
    background-color: rgba(var(--clr-yellow), 0.5) !important;
}


mark {
    margin: 0 -0.4em;
    padding: 0.1em 0.4em;
    border-radius: 0.8em 0.3em;
    background: transparent;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }

.mark-red {
background-image: linear-gradient(
    to right,
    rgba(255, 139, 127, 0.1),
    rgba(255, 139, 127, 0.7) 4%,
    rgba(255, 139, 127, 0.3)
);
}

.mark-green {
background-image: linear-gradient(
    to right,
    rgba(212, 255, 164, 0.1),
    rgba(212, 255, 164, 0.7) 4%,
    rgba(212, 255, 164, 0.3)
);
}

.mark-yellow {
background-image: linear-gradient(
    to right,
    rgba(255, 225, 0, 0.1),
    rgba(255, 225, 0, 0.7) 4%,
    rgba(255, 225, 0, 0.3)
);
}


/* Margins */
.mt-6 {
    margin-top: 6rem !important;
}
.mt-sm-6 {
    margin-top: 6rem !important;
}
.mt-md-6 {
    margin-top: 6rem !important;
}
.mt-lg-6 {
    margin-top: 6rem !important;
}
.mt-xl-6 {
    margin-top: 6rem !important;
}
.mt-xxl-6 {
    margin-top: 6rem !important;
}

.mt-7 {
    margin-top: 9rem !important;
}
.mt-sm-7 {
    margin-top: 9rem !important;
}
.mt-md-7 {
    margin-top: 9rem !important;
}
.mt-lg-7 {
    margin-top: 9rem !important;
}
.mt-xl-7 {
    margin-top: 9rem !important;
}
.mt-xxl-7 {
    margin-top: 9rem !important;
}

.pb-7 {
    padding-bottom: 9rem !important;
}



/* btn */
.btn-primary {
    padding: 0.9rem 1.3rem;
    color: rgba(var(--clr-blue), 1);
    font-weight: bold;
    text-transform: uppercase;
    border: 0;
    border-radius: 10px;
    background-color: rgb(var(--clr-bluelight));
}

.btn-primary:hover,
.btn-primary.active,
.btn-primary:not(:disabled):not(.disabled):active {
    background-color: rgb(var(--clr-blue));
}

.btn-outline-primary {
    padding: 0.9rem 1.3rem;
    color: rgba(var(--clr-blue), 1);
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid rgba(var(--clr-blue), 1);
    border-radius: 10px;
}

.btn-outline-primary:hover,
.btn-outline-primary:not(:disabled):not(.disabled):active {
    border: 2px solid rgb(var(--clr-blue));
    background-color: rgb(var(--clr-blue));
}

.btn-secondary {
    color: rgb(var(--clr-blue));
    font-weight: bold;
    border: 2px solid rgb(var(--clr-white));
    background-color: rgb(var(--clr-white));
    border-radius: 10px;
}

.btn-secondary:hover,
.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled):focus {
    border-color: rgb(var(--clr-white));
    background-color: transparent;
    color: rgba(var(--clr-white), 1);
}

.btn-outline-secondary {
    color: rgb(var(--clr-white));
    font-weight: bold;
    border: 2px solid rgb(var(--clr-white));
    border-radius: 10px;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled):focus {
    color: rgb(var(--clr-blue));
    border: 2px solid rgb(var(--clr-white));
    background-color: rgb(var(--clr-white));
}

.btn-cta {
    padding: 0.9rem 1.3rem;
    color: rgba(var(--clr-white), 1);
    font-weight: bold;
    text-transform: uppercase;
    border: 0;
    border-radius: 10px;
    background-color: rgb(var(--clr-red));
}

.btn-cta:hover,
.btn-cta.active,
.btn-cta:not(:disabled):not(.disabled):active {
    color: rgb(var(--clr-white));
    background-color: rgb(var(--clr-redlight));
}

.btn-outline-cta {
    padding: 0.9rem 1.3rem;
    color: rgba(var(--clr-red), 1);
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid rgba(var(--clr-red), 1);
    border-radius: 10px;
}

.btn-outline-cta:hover,
.btn-outline-cta:not(:disabled):not(.disabled):active {
    border: 2px solid rgb(var(--clr-red));
    background-color: rgb(var(--clr-red));
}


.btn-green {
    padding: 0.9rem 1.3rem;
    color: rgba(var(--clr-white), 1);
    font-weight: bold;
    text-transform: uppercase;
    border: 0;
    border-radius: 10px;
    background-color: rgba(var(--clr-green), 1) !important;
}

.btn-green:hover,
.btn-green.active,
.btn-green:not(:disabled):not(.disabled):active {
    color: rgb(var(--clr-white));
    background-color: rgba(var(--clr-green), 0.5) !important;
}

.btn-bluedark {
    padding: 0.9rem 1.3rem;
    color: rgba(var(--clr-white), 1);
    font-weight: bold;
    text-transform: uppercase;
    border: 0;
    border-radius: 10px;
    background-color: rgba(var(--clr-bluedark), 1) !important;
}

.btn-bluedark:hover,
.btn-bluedark.active,
.btn-bluedark:not(:disabled):not(.disabled):active {
    color: rgb(var(--clr-white));
    background-color: rgba(var(--clr-bluedark), 0.5) !important;
}


/* btn-iconed */
.btn-iconed {
    transition: 0.15s ease-in-out;
    padding-left: 1.3rem;
    padding-right: 1.3rem;
}
.btn-iconed > [class~="eb"] {
    opacity: 0;
    transform-origin: left right;
    transform: translateX(-1rem) scale(1);
    transition: 0.15s ease-out;
}
.btn-iconed [class="spn-left"] {
    position: relative;
    left: -9px;
    transform-origin: left right;
    transform: translateX(-9px);
    transition: 0.2s ease-in-out;
}

.btn-iconed [class="spn-right"] {
    position: relative;
    left: 9px;
    transform-origin: left right;
    transform: translateX(9px);
    transition: 0.2s ease-in-out;
}

.btn-iconed:hover [class~="eb"] {
    opacity: 1;
    transform: translateX(0px) scale(0.75);
}
.btn-iconed:hover [class="spn-left"] {
    left: 0px;
}

.btn-iconed:hover [class="spn-right"] {
    left: 0px;
}


/* btn-imaged */
.btn-imaged {
    transition: 0.15s ease-in-out;
    padding-left: 1.3rem;
    padding-right: 1.3rem;
}
.btn-imaged > [class~="eb"] {
    opacity: 0;
    transform-origin: left right;
    transform: translateX(-1rem) scale(1);
    transition: 0.15s ease-out;
}
.btn-imaged [class="spn-left"] {
    position: relative;
    left: -9px;
    transform-origin: left right;
    transform: translateX(-9px);
    transition: 0.2s ease-in-out;
}


.btn-imaged [class="spn-right"] {
    position: relative;
    display: inline-block;
    left: 9px;
    transform-origin: left right;
    transform: translateX(9px);
    transition: 0.2s ease-in-out;
    padding-left: 60px;
    text-align: left;
}

.btn-imaged [class="btn-image"] {
    position: absolute;
    left: -20px;
    top: -25px;
}

@media (min-width: 576px) { 

.btn-imaged [class="spn-right"] {
    position: relative;
    display: inline;
    left: 9px;
    transform-origin: left right;
    transform: translateX(9px);
    transition: 0.2s ease-in-out;
    padding-left: 60px;
}

.btn-imaged [class="btn-image"] {
    position: absolute;
    left: -20px;
    top: -25px;
}

}

.btn-imaged:hover [class~="eb"] {
    opacity: 1;
    transform: translateX(0px) scale(0.75);
}
.btn-imaged:hover [class="spn-left"] {
    left: 0px;
}

.btn-imaged:hover [class="spn-right"] {
    left: 0px;
}


/* eb-ul eb-li */
.eb-ul {
    list-style-type: none;
    margin-left: 2.5em;
    padding-left: 0;
}

.eb-ul > li {
    position: relative;
    margin-top: 0.8rem;
}

.eb-li {
    left: -2em;
    position: absolute;
    text-align: center;
    width: 2em;
    line-height: inherit;
    color: rgb(var(--clr-red));
    top: 0rem;
}

.eb-li i {
    font-weight: bold;
    font-size: 1rem;
}

.eb-ul li ul .eb-li i {
    font-weight: bold;
    font-size: 1rem;
}

.eb-ul li ul .eb-li {
    top: 0rem;
}

/* eb-ul-facts eb-li */
.eb-ul-facts {
    margin-left: 3rem;
    max-width: 70%;
}

.eb-ul-facts > li {
    position: relative;
    margin-top: 0.8rem;
    font-weight: 600;
    color: rgb(var(--clr-graydark));
}

.eb-ul-facts .eb-li {
    left: -3em;
    color: rgb(var(--clr-blue));
}

.eb-ul-facts .eb-li i {
    font-weight: bold;
    font-size: 2rem;
}

/* eb-ol-big-numbers */
.eb-ol-big-numbers {
    display: block;
    padding: 0 0 0 45px;
    list-style: none;
    overflow: hidden;
    counter-reset: numList;
}
.eb-ol-big-numbers li {
    float: left;
    position: relative;
	padding:0 0 0 10px;
  width: 100%;
}
.eb-ol-big-numbers li:before {
    counter-increment: numList;
    content: counter(numList);
    
    float: left;
    position: absolute;
    left: -45px;
   
    font-size: 20px;
	font-weight: bold;
    text-align: center;
    color: #fff;
    line-height: 40px;
    
    width: 40px; height: 40px;
    background: #274b80;
    
    -moz-border-radius: 999px;
    border-radius: 999px
}

.eb-round-numbers {
    width: 30px;
    height: 30px;
    background-color: rgba(var(--clr-blue), 1);
    border-radius: 999px;
    line-height: 20px;
    padding: 5px;
    font-size: 15px;
    text-align: center;
    font-weight: bold;
    text-align: center;
    color: #fff;
    margin-right: 5px;
    float: left;
}

/* ==================================================
3.0 #Header
================================================== */

/* bg-blue */

#eb-content-header {
    margin-top: 86px;
}

.bg-blue-header {
    position: relative;
    overflow: visible;
    z-index: -20;
    top: 86px;
}

.bg-blue-header .bg {
    position: relative;
    left: 300px;
    z-index: -15;
    overflow: hidden;
}

.bg-blue-header .line {
    position: absolute;
    z-index: -10;
}

.bg-blue-header .line-1 {
    left: 300px;
    top: 120px;
    animation: bgSlowHover 5s ease-in-out 0s infinite alternate none;
}

.bg-blue-header .line-2 {
    animation: bgSlowHover 3s ease-in-out 0s infinite alternate none;
    display: none;
}

/* Copy this @keyframes block to your CSS*/
@keyframes bgSlowHover {
    0.0% {
    }
    100% {
        transform: translate(0, 0px);
    }
    50% {
        transform: translate(10px, -20px);
    }
}

@media (min-width: 576px) {
    /* .bg-blue-header .bg {
        background-color: red;
    } */

    .bg-blue-header .bg {
        left: 300px;
    }

    .bg-blue-header .line-1 {
        left: 300px;
        top: 120px;
    }
}

@media (min-width: 768px) {
    /* .bg-blue-header .bg {
        background-color: green;
    } */

    #eb-content-header {
        margin-top: -600px;
    }

    .bg-blue-header .bg {
        left: 500px;
    }

    .bg-blue-header .line-1 {
        left: 500px;
        top: 120px;
    }
}

@media (min-width: 992px) {
    /* .bg-blue-header .bg {
        background-color: burlywood;
    } */


    .bg-blue-header .bg {
        position: relative;
        left: 700px;
        top: -100px;
    }

    .bg-blue-header .line-1 {
        left: 700px;
        top: 30px;
    }
}

@media (min-width: 1200px) {
    /* .bg-blue-header .bg {
        background-color: chocolate;
    } */

    .bg-blue-header {
        left: 200px;
    }

    .bg-blue-header .line-2 {
        left: 1080px;
        top: 230px;
        display: block;
    }
}

@media (min-width: 1400px) {
    /* .bg-blue-header .bg {
        background-color: coral;
    } */

    .bg-blue-header {
        left: 200px;
    }
}

@media (min-width: 1800px) {
    /* .bg-blue-header .bg {
        background-color: coral;
    } */

    .bg-blue-header {
        left: 400px;
    }
}

@media (min-width: 2500px) {
    /* .bg-blue-header .bg {
        background-color: coral;
    } */

    .bg-blue-header {
        left: 800px;
    }
}

@media (min-width: 3000px) {
    /* .bg-blue-header .bg {
        background-color: coral;
    } */

    .bg-blue-header {
        left: 1400px;
    }
}

@media (min-width: 4000px) {
    /* .bg-blue-header .bg {
        background-color: coral;
    } */

    .bg-blue-header {
        left: 1800px;
    }
}

@media (min-width: 5000px) {
    /* .bg-blue-header .bg {
        background-color: coral;
    } */

    .bg-blue-header {
        display: none;
    }
}




/* ==================================================
4.0 #Navigation 
================================================== */

#eb-navbar {
    background-color: rgb(var(--clr-white));
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(var(--clr-blue), 1);
    font-size: 1.15rem;
    letter-spacing: 0.025rem;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: rgba(var(--clr-red), 1);
}
.navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(var(--clr-blue), 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
    color: rgba(var(--clr-red), 1);
    font-weight: 600;
}
.navbar-light .navbar-toggler {
    color: rgba(var(--clr-blue), 0.55);
    border-color: rgba(var(--clr-blue), 0.1);
}
.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2839,75,128,0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
    color: rgba(var(--clr-blue), 1);
}
.navbar-light .navbar-text a,
.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
    color: rgba(var(--clr-red), 1);
}

.sticky-fade {
    -webkit-animation: sticky-fade-in 0.3s forwards ease-in-out;
    animation: sticky-fade-in 0.3s forwards ease-in-out;
}

@-webkit-keyframes sticky-fade-in {
    0% {
        background-color: transparent;
        box-shadow: 0px 2px 13px 0px rgba(0, 0, 0, 0);
        -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 0);
        transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 0);
    }
    100% {
        background-color: #fff;
        box-shadow: 0px 2px 13px 0px rgba(0, 0, 0, 0.08);
        -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
}

@keyframes sticky-fade-in {
    0% {
        background-color: transparent;
        box-shadow: 0px 2px 13px 0px rgba(0, 0, 0, 0);
        -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 0);
        transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 0);
    }
    100% {
        background-color: #fff;
        box-shadow: 0px 2px 13px 0px rgba(0, 0, 0, 0.08);
        -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
}

#eb-main-menu {
    position: absolute;
    top: 86px;
    left: 0;
    width: 100%;
    z-index: 90;
    padding-left: var(--bs-gutter-x, 0.75rem);
    padding-right: var(--bs-gutter-x, 0.75rem);
    background-color: rgba(var(--clr-bluelight), 1);
}

#eb-main-menu .navbar-nav {
    height: 100vh;
}

.eb-megamenu .eb {
    cursor: pointer;
    padding: 0.5rem 1rem;
    background-color: rgb(var(--clr-bluelighter));
    border-radius: var(--border-radius-sm);
}

.eb-megamenu .eb-arrow-left {
    margin-right: var(--bs-gutter-x, 0.75rem);
}

.eb-megamenu .eb-dropdown {
    background-color: rgba(var(--clr-white), 1);
    box-shadow: 0px 2px 13px 0px rgba(0, 0, 0, 0.08);
}

#eb-dropdown-service {
    left: 140px;
}

#eb-dropdown-ratgeber {
    left: 230px;
    width: 50%;
}

#eb-dropdown-ueber-uns {
    left: 445px;
    width: 28%;
}

.eb-slide-menu {
    position: absolute;
    left: 100vw;
    top: 0;
    width: 100vw;
    height: 100vh;
    padding-left: var(--bs-gutter-x, 0.75rem);
    padding-right: var(--bs-gutter-x, 0.75rem);
    background-color: rgba(var(--clr-bluelight), 1);
}

.eb-slide-menu li:first-child {
    border-bottom: 1px dashed rgb(var(--clr-bluelighter));
}

.eb-slide-menu li {
    list-style-type: none;
}

.eb-slide-left {
    -webkit-animation: eb-slide-left 0.5s forwards;
    animation: eb-slide-left 0.5s forwards;
}

@-webkit-keyframes eb-slide-left {
    0% {
        left: 100vw;
    }
    100% {
        left: 0;
    }
}

@keyframes eb-slide-left {
    0% {
        left: 100vw;
    }
    100% {
        left: 0;
    }
}

.eb-slide-right {
    -webkit-animation: eb-slide-right 0.5s forwards;
    animation: eb-slide-right 0.5s forwards;
}

@-webkit-keyframes eb-slide-right {
    0% {
        left: 0;
    }
    100% {
        left: 100vw;
    }
}

@keyframes eb-slide-right {
    0% {
        left: 0;
    }
    100% {
        left: 100vw;
    }
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
}

@media (min-width: 992px) {
    /*   .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.6rem;
    padding-left: 0.6rem;
  } */

    #eb-navbar {
        background-color: unset;
    }

    .eb-slide-menu {
        position: static;
        left: initial;
        top: initial;
        width: initial;
        height: initial;
        border-radius: var(--border-radius);
        background-color: initial;
    }

    .eb-slide-menu li:first-child {
        border-bottom: initial;
    }

    #eb-main-menu {
        background-color: initial;
        position: static;
        top: 0;
        left: 0;
        width: initial;
        height: initial;
        z-index: 90;
        padding-left: initial;
        padding-right: initial;
    }

    #eb-main-menu .navbar-nav {
        height: initial;
    }

    #eb-main-menu > ul {
        position: relative;
    }

    .eb-dropdown,
    .eb-dropdown li ul {
        display: block;
    }

    .eb-dropdown {
        position: absolute;
        width: 80%;
        left: 0.6rem;
        visibility: hidden;
        z-index: 100;
        border-radius: var(--border-radius);
    }

    .eb-megamenu:hover .eb-dropdown,
    .eb-megamenu:active .eb-dropdown,
    .eb-megamenu:focus .eb-dropdown {
        visibility: visible;
        -webkit-animation: dropdown-fade-in 0.2s forwards ease-in-out;
        animation: dropdown-fade-in 0.2s forwards ease-in-out;
    }

    @-webkit-keyframes dropdown-fade-in {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }

    @keyframes dropdown-fade-in {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }

    .navbar-light .navbar-nav .eb-dropdown .nav-link {
        font-size: 0.9rem;
        margin-top: 0.4rem;
        padding: 0.3rem 0.5rem 0.3rem 0.3rem !important;
    }

    .eb-dropdown > ul > li > div > .nav-link:hover,
    .eb-dropdown > ul > li > div > .nav-link:focus,
    .eb-dropdown > ul > li > div > .nav-link:active {
        background-color: rgba(var(--clr-bluelight), 1);
        border-radius: 5px;
        /* border-bottom: 1px dashed rgb(var(--clr-bluelighter));
    /* komischer Effekt liegt an Transition auf nav-link von Bootstrap */
    }

    .no-hover:hover {
        color: rgba(var(--clr-blue), 1) !important;
    }

    .eb-dropdown .eb-slide-menu ul {
        background-color: rgb(var(--clr-bluelight));
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .eb-dropdown ul {
        position: relative;
    }

    .eb-dropdown ul li ul {
        position: absolute;
        top: 0rem;
        left: 35%;
        right: 0;
        visibility: hidden;
    }

    .eb-dropdown ul li:hover ul,
    .eb-dropdown ul li:active ul,
    .eb-dropdown ul li:focus ul {
        visibility: visible;
        /* -webkit-animation: dropdown-fade-in 0.2s forwards ease-in-out;
    animation: dropdown-fade-in 0.2s forwards ease-in-out; */
    }

    /* 1. Second-Level-Navi immer zeigen */
    .eb-megamenu:hover .eb-slide-menu-active ul:first-of-type {
        visibility: visible;
        opacity: 1;
    }
    .eb-slide-menu-active .nav-link {
        background-color: rgba(var(--clr-bluelight), 1);
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
    }
}

@media (min-width: 1200px) {
}

@media (min-width: 1400px) {
}

/* 4.1 Fixed Contact Menu */
@media (orientation: portrait) {
    .eb-contact-menu {
        display: none !important;
    }
}

@media (orientation: landscape) {
    .eb-contact-menu {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1030;
    }

    .eb-contact-menu span:hover {
        cursor: pointer;
    }

    .eb-contact-menu .eb {
        font-size: 2rem;
    }
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
}

@media (min-width: 992px) {
    .eb-contact-menu {
        right: 1vw;
        top: 40vh;
        left: initial;
        bottom: initial;
    }

    .eb-contact-menu span {
        border-radius: var(--border-radius);
        -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .eb-contact-menu i {
        -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .eb-contact-menu .eb {
        font-size: 2.5rem;
    }

    .eb-contact-menu span:hover {
        background-color: rgba(var(--clr-blue), 1);
    }

    .eb-contact-menu span:hover i {
        color: rgba(var(--clr-white), 1);
    }
}

@media (min-width: 1200px) {
}

@media (min-width: 1400px) {
}

/* ==================================================
5.0 #Main-Content
- evt. Schriften
- Carddecks
- Bilder
- Forms
- Tabellen
================================================== */

/* Content-Header */

h1,
h2 {
    margin-bottom: 2.5rem !important;
}

h3 {
    margin-bottom: 1.5rem !important;
}

h1 {
    margin-top: 3rem;
    font-size: 1.7rem;
    letter-spacing: 0.025rem;
}

/*
h1 span {
    display: block;
    padding-top: 12px;
    font-size: 1.2rem;
    letter-spacing: 0;
}
*/

.h2-topline {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
    h1 {
        margin-top: 3rem;
        font-size: 2.5rem;
        letter-spacing: 0.025rem;
    }

    /*
    h1 span {
        display: block;
        padding-top: 25px;
        font-size: 1.7rem;
        letter-spacing: 0;
    }
    */
}

@media (min-width: 992px) {
}

@media (min-width: 1200px) {
}

@media (min-width: 1400px) {
}

/* Lottie */
figure[data-lazy-function] {
    max-width: 500px;
}

/* nav-pills */
.nav-pills .nav-link {
    color: rgb(var(--clr-bluemiddle));
    border-radius: var(--border-radius-sm);
}

.nav-pills .nav-link:hover {
    color: rgb(var(--clr-blue));
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: rgb(var(--clr-blue));
}

.nav-pills .nav-link.active:hover,
.nav-pills .show > .nav-link:hover {
    color: rgb(var(--clr-bluelight));
}

/* nav-scroller */
.nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
}

.nav-scroller .nav {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    overflow-x: auto;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

/* eb-alert-italic */
.eb-alert {
    padding: 0 2rem;
    border-left: 3px solid rgba(var(--clr-blue), 1);
}

.eb-alert-italic {
    font-style: italic;
    color: rgba(var(--clr-bluemiddle), 1);
}

.eb-alert a {
    color: rgb(var(--clr-blue));
}

.eb-alert a:hover {
    color: rgb(var(--clr-red));
}

/* eb-shadow */
.eb-shadow {
    box-shadow: 0px 2px 13px 0px rgba(0, 0, 0, 0.08);
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.eb-shadow::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0px 2px 13px 0px rgba(0, 0, 0, 0.08);
    opacity: 0;
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.eb-shadow:hover:after {
    opacity: 1;
}

/* accordion */

.accordion-wrapper {
    border-radius: 0;
}

@media (min-width: 768px) {
    .accordion-wrapper {
        border-radius: var(--border-radius);
    }
}

.accordion-header {
    margin-bottom: 0 !important;
}

.accordion-body {
    color: rgba(var(--clr-graydark), 1);
}

.accordion-button {
    color: rgb(var(--clr-blue));
    font-weight: bold;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23DB0D16'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23DB0D16'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed) {
    color: rgb(var(--clr-blue));
    background-color: rgb(var(--clr-white));
}


.accordion-item {
    border: 1px solid rgba(var(--clr-bluelighter), 1);
}

.accordion-item:first-of-type {
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}
.accordion-item:first-of-type > .accordion-header .accordion-button {
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
    border-bottom-right-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
}
.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
    border-bottom-right-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
}
.accordion-item:last-of-type > .accordion-collapse {
    border-bottom-right-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
}


/* eb-card */
.eb-card {
    border-radius: var(--border-radius);
    border: 0;
}

.eb-card.eb-shadow,
.eb-card.eb-shadow::after {
    border-radius: var(--border-radius);
}

.eb-card .card-text {
    font-size: var(--main-font-size);
}

.eb-card a {
    color: rgba(var(--clr-blue), 1);
}

.eb-card small {
    text-transform: uppercase;
}

.eb-card .card-img,
.eb-card .card-img-top {
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    height: auto;
}

.eb-card .card-footer {
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    background-color: inherit;
    border: 0;
}

.eb-card .list-group-item-action:hover {
    color: rgb(var(--clr-red));
}

/* eb-card eb-icon-bg*/
.eb-card .eb-icon-bg {
    display: block;
    height: 80px;
    width: 80px;
    padding-top: var(--border-radius);
    background-color: rgba(var(--clr-bluelight), 1);
    border-radius: var(--border-radius);
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.eb-card .card-body .eb-icon-bg {
    height: 50px;
    width: 50px;
}

.bg-bluelight .eb-card .eb-icon-bg {
    background-color: rgba(var(--clr-bluelighter), 1);
}

.eb-card .eb-icon-bg i {
    font-size: 3rem;
    color: rgb(var(--clr-blue));
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.eb-card .card-body .eb-icon-bg i {
    font-size: 1.6rem;
}

.eb-card:hover .eb-icon-bg,
.eb-card-tabs .active .eb-icon-bg {
    background-color: rgba(var(--clr-blue), 1);
}

.eb-card:hover .eb-icon-bg i,
.eb-card:hover .eb-icon-bg span,
.eb-card-tabs .active .eb-icon-bg i,
.eb-card-tabs .active .eb-icon-bg span {
    color: rgba(var(--clr-white), 1);
}

.eb-card .eb-icon-bg-absolute {
    position: absolute;
    top: -40px;
    left: 1rem;
}

.eb-icon-big {
    font-size: 3rem;
    color: rgb(var(--clr-blue));
}

.eb-card .btn-iconed .card-title a {
    font-size: 1rem;
}

/* eb-testimonial */
.eb-testimonial {
    margin-top: 10rem !important;
}

.eb-testimonial .img-customer {
    position: relative;
    top: -125px;
}

.eb-testimonial .eb-card .eb-icon-bg {
    display: none;
    height: 100px;
    width: 100px;
    padding-top: 10px;
}

.eb-testimonial .eb-card:hover .eb-icon-bg {
    background-color: rgba(var(--clr-bluelight), 1);
}

.eb-testimonial .card-body {
    margin-top: -50px;
}

@media (min-width: 576px) {
    .eb-testimonial .eb-card .eb-icon-bg {
        display: block;
        top: 75px;
        left: 28px;
    }

    .eb-card .card-body .eb-icon-bg {
        display: block;
        height: 80px;
        width: 80px;
        padding-top: var(--border-radius);
    }

    .eb-card .card-body .eb-icon-bg i {
        font-size: 3rem;
    }

    .eb-card .btn-iconed .card-title a {
        font-size: inherit;
    }
}

@media (min-width: 768px) {
    .eb-testimonial .eb-card .eb-icon-bg {
        left: 118px;
    }
}

@media (min-width: 992px) {
    .eb-testimonial .eb-card .eb-icon-bg {
        left: 238px;
    }
}

@media (min-width: 1200px) {
    .eb-testimonial .eb-card .eb-icon-bg {
        left: 328px;
    }
}

@media (min-width: 1400px) {
    .eb-testimonial .eb-card .eb-icon-bg {
        left: 418px;
    }
}

/* eb-card eb-faq */

.eb-faq-left-card {
    border-bottom-left-radius: 0; 
    border-bottom-right-radius: 0;
}

.eb-faq-right-card {
    border-top-left-radius: 0; 
    border-top-right-radius: 0;
}

@media (min-width: 992px) {
    .eb-faq-left-card {
        border-bottom-left-radius: var(--border-radius);
        border-top-right-radius: 0; 
        border-bottom-right-radius: 0;
    }

    .eb-faq-right-card {
        border-top-right-radius: var(--border-radius);
        border-top-left-radius: 0; 
        border-bottom-left-radius: 0;
    }
}




/* contactArea */
@media (min-width: 576px) {
    #contactArea,
    #collapseAppointment {
        border-radius: var(--border-radius-lg);
    }
}

/* tns tiny-slider */
.tns-nav {
    text-align: center;
}
.tns-nav button {
    height: 15px;
    width: 15px;
    background-color: rgb(var(--clr-gray));
    border: 0;
    border-radius: 100%;
    margin: 0 10px;
}

.tns-nav button:hover {
    background-color: rgb(var(--clr-redlight));
}

.tns-nav .tns-nav-active {
    background-color: rgb(var(--clr-red));
}

/*  Breadcrumb */
.breadcrumb {
    color: rgb(var(--clr-gray));
}

.breadcrumb .active {
    color: rgb(var(--clr-red));
}

.breadcrumb a {
    color: rgb(var(--clr-gray));
}

.breadcrumb a:hover {
    color: rgb(var(--clr-red));
}

/*  Portfolio */
.portfolio {
    display: none;
}

.portfolio .card {
    background-color: initial;
    border: 0;
}

.card-flip > div {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform 300ms;
    transition-timing-function: linear;
    width: 100%;
    height: 100%;
    margin: 0;
}

.card-front {
    transform: rotateY(0deg);
}

.card-back {
    transform: rotateY(180deg);
    position: absolute;
    top: 0;
}

.card-flip:hover .card-front,
.card-flip .unflipped {
    transform: rotateY(-180deg);
}

.card-flip:hover .card-back,
.card-flip .flipped {
    transform: rotateY(0deg);
}


/* eb-table-of-content eb-toc */
.sticky-top-100 {
    top: 100px;
}

.eb-toc .eb-ul>li {
    font-size: 0.9rem;
}

.eb-toc .eb-ul .eb-li {
    top: 0rem;
    font-size: 0.9rem;
}

.eb-toc .eb-ul .eb-li i {
    font-weight: bold;
    font-size: 0.9rem;
}


/* ==================================================
6.0 #Footer
================================================== */

footer {
    color: rgb(var(--clr-white));
    background-color: rgb(var(--clr-bluedark));
}

footer p {
    color: rgb(var(--clr-white));
}

footer a {
    color: rgb(var(--clr-bluelighter));
}

footer a:hover {
    color: rgb(var(--clr-white));
}

footer li a {
    color: rgb(var(--clr-white));
}

footer li a:hover {
    color: rgb(var(--clr-red));
    text-decoration: underline;
}

/* eb-card eb-icon-bg*/
footer .eb-icon-bg {
    height: 50px;
    width: 50px;
    padding-top: 14px;
    background-color: rgba(var(--clr-bluelighter), 1);
    border-radius: var(--border-radius);
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

footer .eb-icon-bg i {
    font-size: 1.5rem;
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: rgb(var(--clr-blue));
}

/*
.eb-card .card-body .eb-icon-bg {
    height: 50px;
    width: 50px;
}

.bg-bluelight .eb-card .eb-icon-bg {
    background-color: rgba(var(--clr-bluelighter), 1);
}

.eb-card .eb-icon-bg i {
    font-size: 3rem;
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.eb-card .card-body .eb-icon-bg i {
    font-size: 1.6rem;
}

.eb-card:hover .eb-icon-bg,
.eb-card-tabs .active .eb-icon-bg {
    background-color: rgba(var(--clr-blue), 1);
}

.eb-card:hover .eb-icon-bg i,
.eb-card:hover .eb-icon-bg span,
.eb-card-tabs .active .eb-icon-bg i,
.eb-card-tabs .active .eb-icon-bg span {
    color: rgba(var(--clr-white), 1);
} */

@media (min-width: 576px) {
}

@media (min-width: 768px) {
}

@media (min-width: 992px) {
}

@media (min-width: 1200px) {
}

@media (min-width: 1400px) {
}

/* ==================================================
7.0 #Misc
Workarounds & nette Spielereien
================================================== */

.shorten-long-text {
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    text-overflow: ellipsis;
}

/* Contact 7 */
span.wpcf7-list-item {
    display: block;
    padding: 3px;
} /* Checkboxen untereinander */

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    border: 1px solid #efefef;
    border-radius: 4px;
    padding: 10px;
    transition: 0.15s ease-in-out;
}

.wpcf7 input[type="checkbox"] {
    margin: 10px;
}

.wpcf7 input:hover,
.wpcf7 input:active,
.wpcf7 input:focus,
.wpcf7 select:hover,
.wpcf7 textarea:hover {
    border-color: rgba(var(--clr-blue), 1);
    background-color: rgba(var(--clr-bluelight), 1);
}

.wpcf7 .anmerkungen {
    height: 100px;
}

.wpcf7 input[type="submit"] {
    padding: 0.9rem 1.3rem;
    color: rgba(var(--clr-blue), 1);
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid rgba(var(--clr-blue), 1);
    border-radius: 10px;
    background-color: initial;
    transition: 0.15s ease-in-out;
}
.wpcf7 input[type="submit"]:hover,
.wpcf7 input[type="submit"]:focus,
.wpcf7 input[type="submit"]:active {
    border: 2px solid rgb(var(--clr-blue));
    background-color: rgb(var(--clr-blue));
    color: rgba(var(--clr-white), 1);
}

body input[type="text"].wpcf7-not-valid,
body input[type="email"].wpcf7-not-valid,
body input[type="tel"].wpcf7-not-valid,
body textarea.wpcf7-not-valid {
    border: 1px solid rgba(var(--clr-red), 1);
}

body span.wpcf7-not-valid-tip {
    color: rgba(var(--clr-red), 1);
}

body div.wpcf7-validation-errors {
    color: rgba(var(--clr-red), 1);
}

body div.wpcf7-response-output {
    margin: 10px 0;
    padding: 20px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    border-radius: 5px;
}

body .wpcf7-mail-sent-ng {
    background: #f4cf37;
    border: 1px solid #ffbc8a;
    color: #f4ba2e;
}

body .wpcf7-mail-sent-ok {
    background: #52b36e;
    border: 1px solid #428f58;
    color: #fff;
}

/* Animationen */
.moving-animation-up {
    animation: moving_object_up 6s infinite ease-in-out;
}

.moving-animation-down {
    animation: moving_object_down 6s infinite ease-in-out;
}

.moving-animation-delay {
    animation-delay: 3s;
}

@keyframes moving_object_up {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes moving_object_down {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Responsive Hotspot Image */
/* https://codepen.io/Web_Cifar/pen/yLOYoPR */

.lg-container {
    position: relative;
}

.lg-image {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: scale-down;
}

.lg-hotspot {
    position: absolute;
    margin: 0;
    padding: 0;
    transform: translate(-50%, -50%);
    z-index: 0;
    cursor: pointer;
}
.lg-hotspot:hover .lg-hotspot__button,
.lg-hotspot:active .lg-hotspot__button {
    border-color: rgba(var(--clr-blue), 1);
}
.lg-hotspot:hover .lg-hotspot__button:after,
.lg-hotspot:active .lg-hotspot__button:after {
    background-color: rgba(var(--clr-blue), 1);
}
.lg-hotspot--selected {
    z-index: 999;
}
.lg-hotspot--selected .lg-hotspot__label {
    opacity: 1;
}
.lg-hotspot__button {
    height: 20px;
    width: 20px;
    padding: 0px;
    background-color: rgba(var(--clr-blue), 1);
    border-radius: 50%;
    cursor: pointer;
}
.lg-hotspot__button:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    height: 100%;
    width: 100%;
    background-color: rgba(var(--clr-blue), 1);
    border-radius: 50%;
    animation: puls-effect 1s ease infinite;
}
.lg-hotspot__label {
    position: absolute;
    width: 16em;
    max-width: 50vw;
    /z-index: -1;
    pointer-events: none;
    user-select: none;
    opacity: 0;
    transition: all 0.1s linear;
}

.lg-hotspot--top-left .lg-hotspot__label {
    top: 24px;
    left: 24px;
}

.lg-hotspot--top-right .lg-hotspot__label {
    top: 24px;
    right: 24px;
}

.lg-hotspot--bottom-right .lg-hotspot__label {
    right: 24px;
    bottom: 24px;
}

.lg-hotspot--bottom-left .lg-hotspot__label {
    bottom: 24px;
    left: 24px;
}

@keyframes puls-effect {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Underlay-Element */

.container-underlay-element,
.container-underlay-element-mb-more {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.underlay-element .underlay-text {
    width: 100%;
}

@media (min-width: 576px) {
    .underlay-element {
        position: relative;
        width: 100%;
        z-index: -10;
    }
    
}

@media (min-width: 768px) {
    .container-underlay-element {
        margin-top: 12rem;
        margin-bottom: 12rem;
    }

    .container-underlay-element-mb-more {
        margin-top: 12rem;
        margin-bottom: 18rem;
    }
    

    .underlay-element {
        position: absolute;
        left: 0;
        top: -100px;
        width: 60%;
    }

    .underlay-element .underlay-text {
        width: 60%;
    }
}

@media (min-width: 992px) {
    .underlay-element .underlay-text {
        width: 75%;
    }
}

@media (min-width: 1200px) {
}

@media (min-width: 1400px) {
}