/* Font Faces */
@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("fonts/Roboto-Light.ttf") format("truetype");
}
@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("fonts/Roboto-Regular.ttf") format("truetype");
}
@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("fonts/Roboto-Medium.ttf") format("truetype");
}
@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("fonts/Roboto-Bold.ttf") format("truetype");
}
@font-face {
    font-family: "Roboto Slab";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("fonts/roboto-slab-normal-latin.woff2") format("truetype");
}
@font-face {
    font-family: "Roboto Slab";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("fonts/roboto-slab-normal-latin.woff2") format("woff2");
}

/* Variables */
:root {
    --primary: #64870b;
    --secondary: #edb416;
    --blue: #00ace9;
    --gray: #eff0f2;
    --text-color: #3c4858;
    --white: #fff;
    --black: #000;
    --header-space: 0px;
    --header-height: 70px;
    --font: "Roboto", "Helvetica", "Arial", sans-serif;
    --max-width: 1170px;
}
/* Typografie */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font);
    font-weight: 500;
    line-height: 1.618;
    margin: 0 0 15px;
    padding: 0;
    text-align: center;
    text-transform: none;
}
ol + h1,
p + h1,
ul + h1,
ol + h2,
p + h2,
ul + h2,
ol + h3,
p + h3,
ul + h3 {
    margin-top: 15px;
}
h1,
.page-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.618;
}
h2 {
    font-size: 37px;
    font-weight: 700;
}
h3 {
    font-size: 32px;
}
h4 {
    font-size: 27px;
}
h5 {
    font-size: 23px;
}
h6 {
    font-size: 18px;
}
.menu.sf-menu li,
b,
optgroup,
strong,
#page .ui-widget {
    font-family: var(--font);
}
p,
ol,
ul,
#main li {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 18px;
}
#pid-datenschutz li {
    margin-bottom: 0;
}
ol {
    font-weight: 600;
}
p {
    font-weight: 400;
    font-size: 18px;
}
ol:last-child,
p:last-child,
ul:last-child,
li:last-child {
    margin-bottom: 0;
}
figure {
    margin: 0;
}

/* General Styles */
*,
*::before,
*::after {
    box-sizing: inherit;
}
html,
body {
    scroll-behavior: smooth;
    box-sizing: border-box;
    font-family: var(--font);
    font-size: 20px;
    line-height: 1.618;
    font-weight: 400;
    color: var(--text-color);
    background-color: var(--white);
    -webkit-text-size-adjust: 100%;
    hyphens: auto;
    -moz-hyphens: auto;
    -o-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    word-wrap: break-word;
}
.node__content {
    font-size: 1rem;
}
button,
input[type="button"],
input[type="submit"],
.button {
    background: var(--primary);
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    padding: 12px 24px;
    transition: 0.3s ease;
    border: none;
    border-radius: 3px;
    position: relative;
}
button:hover,
button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
.button:hover,
.button:focus {
    border: none;
    background: var(--primary);
    color: var(--white);
    opacity: 0.75;
}
.button.zeichnung {
    font-size: 1.2rem;
    padding-left: 48px;
    padding-right: 48px;
}
.button span.small {
    font-size: 18px;
}
.toolbar button.toolbar-icon {
    background: transparent;
}
.modal_login .item-list {
    display: none;
}
.modal_login .button {
    width: 100%;
    margin: 0;
}
#log_overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 10000px;
    top: -30px;
    left: 0px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}
.system_messages_wrapper {
    max-width: 80vw;
    max-height: 50vh;
    overflow: scroll;
    margin: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    margin-bottom: 0;
    background-color: var(--primary) !important;
    box-shadow: none;
    color: var(--text_color) !important;
    border-radius: 0;
    padding: 0;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
        rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
        rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.system_messages_wrapper::-webkit-scrollbar {
    display: none;
}
.system_messages_wrapper .messages {
    display: block;
    clear: both;
    margin-bottom: 0;
    border: none !important;
    background-color: var(--white) !important;
    box-shadow: none;
    color: var(--text_color) !important;
    border-radius: 0;
}
.messages__wrapper.layout-container {
    padding: 0;
}
.system_messages_wrapper .closer {
    float: right;
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
    margin-right: 0;
    color: var(--white);
}
.ui-dialog-titlebar {
    background-color: var(--primary) !important;
    color: var(--white);
}
.contextual-region .contextual .contextual-links a {
    color: #333 !important;
}

/* Allgemeine Styles */
a,
.link {
    color: var(--primary);
    transition: 0.3s ease;
}
a:hover,
a:focus,
.link:hover,
.link:focus {
    color: var(--primary);
    text-decoration: none;
    border: none;
    opacity: 0.75;
}
.link {
    display: inline-block;
    text-decoration: none;
    position: relative;
    padding-right: 2rem;
    font-size: 20px;
    font-weight: 700;
}
.link:hover::after {
    right: 0.25rem;
}
.ee_content_block {
    position: relative;
}
.anker {
    position: absolute;
    top: calc(0px - var(--header-height) - var(--header-space));
    font-size: 0;
}
.undeline {
    text-decoration: underline;
}
.color-primary {
    color: var(--primary);
}
.color-secondary {
    color: var(--secondary);
}
.bg-primary {
    background: var(--primary);
}
.bg-secondary {
    background: var(--secondary);
}
.bg-white {
    background: var(--white);
}
.bg-gray {
    background: var(--gray);
}
.text-center {
    text-align: center;
}
.margin-top {
    margin-top: 110px !important;
}
section.container {
    padding: 75px 0 55px;
}
section.container.small {
    padding: 35px 0 35px;
}

/* Header */
.toolbar-fixed.toolbar-tray-open {
    --header-space: 29px;
}
.toolbar-fixed {
    --header-space: 40px;
}
.toolbar-fixed.toolbar-horizontal.toolbar-tray-open {
    --header-space: 79px;
}
#page > header {
    position: fixed;
    width: 100%;
    top: var(--header-space);
    height: var(--header-height);
    background: var(--white);
    z-index: 20;
    transition: all 0.3s;
    box-shadow: 0 1px 10px -6px rgba(0, 0, 0, 0.42),
        0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 4px 5px -2px rgba(0, 0, 0, 0.1);
}
#header_inner {
    display: flex;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}
#logo {
    display: flex;
    align-items: center;
    max-width: 85%;
    padding: 0.5rem 0;
    height: 100%;
}
#logo a {
    margin-right: 0.75rem;
}
#logo a.site-logo,
#logo .eueco-logo {
    display: flex;
    align-items: center;
}
#logo .eueco-logo {
    height: 100%;
    padding-left: 0.5rem;
    display: none !important;
}
#logo img {
    width: auto;
    height: 100%;
}
#logo .site-logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s;
}

/* Header Image */
#preface {
    padding-top: var(--header-height);
    position: relative;
}
.region-preface-top {
    overflow: visible;
}
#preface_top,
.region-preface-top,
.headerbild_wrapper,
.headerbild_wrapper > .content,
.headerbild_wrapper > .content > div,
.view-headerbilder,
.views-row div {
    height: 100%;
}
.view-headerbilder {
    position: relative;
}
.headerimage .headerbild_image {
    margin: 0;
}
.headerimage .headerbild_image img {
    object-fit: cover !important;
    object-position: top;
    display: block;
    max-height: 590px;
    height: 100%;
    width: 100vw !important;
}
.headertext {
    display: block;
    position: absolute;
    width: 100%;
    margin: 0 auto;
    height: 100%;
}
.headertext .slideshow_content_wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}

/* Login Logout Bar */
.login_out_block {
    align-self: center;
    position: relative;
}
.login_out_block a {
    font-family: var(--font);
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    padding: 2px 15px;
    hyphens: none;
    background: var(--primary);
    position: relative;
    display: block;
    border-radius: 5px;
}
.anmelden_toggle > div,
.abmelden_toggle > div {
    display: inline-block;
    position: absolute;
    top: -8px;
    right: -37px;
    width: 46px;
    height: 46px;
    background: var(--primary);
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    align-items: flex-end;
}
.anmelden_toggle div::before,
.abmelden_toggle div::before {
    display: inline-block;
    font-family: var(--ee_awesome);
    content: "\f007";
    font-weight: 600;
    font-size: 27px;
    color: #ffffff;
    position: absolute;
    left: 13px;
    top: -4px;
}
.anmelden_toggle div::after,
.abmelden_toggle div::after {
    display: block;
    content: "-";
    text-align: center;
    font-weight: 700;
    color: var(--primary);
    height: 15px;
    width: 15px;
    text-align: center;
    line-height: 11px;
    border: 1px solid var(--primary);
    background-color: #ffffff;
    border-radius: 50%;
    position: absolute;
    bottom: 8px;
    left: 8px;
}
.anmelden_toggle div::after {
    content: "+";
    line-height: 15px;
}

/* Primary Menu */
#primary_menu_wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    padding-left: 10%;
}
#primary-menu {
    display: flex;
}
#primary-menu .content .sf-menu > li ul {
    background: var(--white) !important;
    width: auto !important;
    transition: all 150ms linear;
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
#primary-menu .content ul li a {
    font-family: var(--font);
    font-size: 12px;
    line-height: 20px;
    color: var(--text-color);
    background-color: transparent;
    font-weight: 400;
    text-transform: uppercase;
    padding: 15px;
}
#primary-menu .content ul li li a {
    padding: 10px 15px;
}

/* Mobile Menu */
#mm_navibutton_wrapper {
    display: none;
}
.hamburger {
    padding: 14px 0 10px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}
.hamburger.is-active:hover,
.hamburger:hover {
    opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::after,
.hamburger.is-active .hamburger-inner::before {
    background-color: var(--secondary);
}
.hamburger-box {
    width: 23px;
    height: 16px;
    display: inline-block;
    position: relative;
}
.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before {
    width: 22px;
    height: 2px;
    background-color: #888;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}
.slick-list,
.slick-slider,
.slick-track {
    position: relative;
    display: block;
}
.hamburger-inner::after,
.hamburger-inner::before {
    content: "";
    display: block;
}
.hamburger-inner::before {
    top: -14px;
}
.hamburger-inner::after {
    bottom: -14px;
    right: 0;
}
.hamburger--slider .hamburger-inner {
    top: 2px;
}
.hamburger--slider .hamburger-inner::before {
    top: 6px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
    top: 12px;
}
.hamburger--slider.is-active .hamburger-inner {
    transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-5.43px, -10px, 0);
    opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -12px, 0) rotate(-90deg);
}
#mobile_menu_wrapper {
    background: linear-gradient(
        0deg,
        rgba(0, 66, 110, 0.6) 0,
        rgba(0, 172, 233, 0.6) 100%
    );
    position: fixed;
    height: 100vh;
    width: 0%;
    top: 0;
    right: 0;
    transition: width 0.5s;
    z-index: 4;
}
#mobile_menu_wrapper.open {
    width: 100%;
}
#mobile_menu_wrapper #menu {
    width: 66.6666666667%;
    background-color: #fff;
    position: absolute;
    right: 0;
    top: var(--header-space);
    height: calc(100vh - var(--header-space));
    overflow: auto;
}
#mobile_menu_wrapper #menu > div {
    padding: 2rem 2rem 2rem 8rem;
}
#mobile_menu_wrapper #menu > div > .menu > .menu-item,
#mobile_menu_wrapper .content > .menu > .menu-item {
    padding-bottom: 2rem;
}
#mobile_menu_wrapper ul.menu li {
    list-style: none;
}
#mobile_menu_wrapper ul.menu li a {
    color: var(--primary);
    font-weight: 700;
    width: 100%;
    position: relative;
    z-index: 2;
    line-height: 2;
}
#mobile_menu_wrapper ul.menu li li a {
    font-weight: 400;
}
#mobile_menu_wrapper ul.menu li a::before {
    content: "";
    width: 12px;
    position: absolute;
    right: -4px;
    top: 10px;
    height: 100%;
    z-index: -1;
    background-color: #fff;
}
#mobile_menu_wrapper ul.menu li a::after {
    color: #00ace9;
    font-size: 10px;
    line-height: 10px;
    transition: right 0.3s;
    position: absolute;
    right: -3px;
    top: 10px;
    z-index: -2;
    content: "";
    font-family: icomoon;
}
#mobile_menu_wrapper ul.menu li a:hover::after {
    right: -15px;
}
#menu .navigation-trigger {
    position: absolute;
    top: 0;
    right: 0;
}
.login-logout-mobile {
    display: none;
    float: left;
    padding: 0 20px;
}
.login-logout-mobile .anmelden_toggle,
.login-logout-mobile .abmelden_toggle {
    color: var(--primary);
    font-weight: 600;
    position: relative;
    background: none;
    line-height: 40px;
    padding: 0;
    border: none;
}

/* Gallery */
.gallery-element {
    margin-bottom: 75px;
}
.gallery-slider {
    position: relative;
}
.gallery-slider .slick-next,
.gallery-slider .slick-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    background-color: transparent;
    border: none;
    display: block;
    cursor: pointer;
    text-indent: -9999px;
}
.gallery-slider .slick-next::after,
.gallery-slider .slick-prev::after {
    display: block;
    position: absolute;
    font-size: 50px;
    top: 0;
    font-family: var(--ee_awesome);
    color: var(--primary);
    text-indent: 0;
    font-weight: bold;
}
.gallery-slider .slick-prev {
    left: -2.25rem;
}
.gallery-slider .slick-prev::after {
    content: "\f053";
    left: 0;
}
.gallery-slider .slick-next {
    right: -2.25rem;
}
.gallery-slider .slick-next::after {
    content: "\f054";
    right: 0;
}
.gallery-content {
    padding: 0 15px;
}
.gallery-element--image {
    aspect-ratio: 360/440;
    margin-bottom: 25px;
}
.gallery-content a {
    display: block;
    width: 100%;
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
    font-size: 22px;
    margin-bottom: 25px;
    text-align: center;
}
.gallery_more {
    margin-bottom: 75px;
}
.gallery_more .more {
    display: none;
}
.gallery_more h5 {
    text-align: left;
}
.gallery_more td {
    width: 50%;
}
.gallery_more tr:nth-child(2n) {
    background: none;
}
.gallery-content.active .more {
    color: var(--secondary);
}
.gallery-content.active .button {
    background-color: var(--secondary);
}

/* Steps */
.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 55px 0 75px;
}
.step {
    display: flex;
    flex-direction: column;
    width: 200px;
    padding: 25px;
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    background-color: var(--white);
    border-radius: 50%;
}
.steps .arrow {
    display: block;
    width: 80px;
    height: 80px;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='iso-8859-1'%3F%3E%3C!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='401.948px' height='401.949px' viewBox='0 0 401.948 401.949' style='enable-background:new 0 0 401.948 401.949;' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cg id='Layer_5_55_'%3E%3Cpath d='M397,190.734L228.738,73.444c-6.599-5.632-11.996-3.147-11.996,5.528v49.068c0,8.672-7.099,15.77-15.77,15.77 l-104.176,0.156H15.69v0.125C7.051,144.139,0.002,151.214,0,159.857l0.002,82.789c0,8.673,7.095,15.771,15.765,15.771 l183.426-0.275h1.834c8.647,0.028,15.717,7.107,15.717,15.765v49.067c0,8.675,5.397,11.163,11.993,5.535l168.265-117.294 C403.598,205.579,403.598,196.367,397,190.734z' style='fill: 323437;'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E%0A");
    background-size: contain;
}
.step:last-child:after {
    display: none;
}

/* Subscribe */
.subscribe {
    position: relative;
    background-position: top center;
    background-size: cover;
    background-image: url(/sites/meine.helionat.de/files/content/DSC_2178-scaled-e1599484896584.jpg);
}
.subscribe:after {
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.66);
    content: "";
}
.subscribe .width-content {
    z-index: 2;
    position: relative;
    text-align: center;
}
.subscribe h2 {
    color: var(--white);
}

/* Elementor */
.elementor-row {
    width: 100%;
    display: flex;
    justify-content: center;
}
.elementor-button-wrapper {
    width: 33.333%;
    text-align: center;
}
.elementor-button {
    display: inline-block;
    line-height: 1;
    color: var(--white) !important;
    fill: var(--white);
    text-align: center;
    background-color: var(--primary);
    border-radius: 25px;
    padding: 15px 30px;
}
.elementor-button span {
    text-decoration: inherit;
}
.elementor-button-content-wrapper {
    display: flex;
    justify-content: center;
}
.elementor-button-icon {
    flex-grow: 0;
    order: 5;
}
.elementor-button .elementor-align-icon-left {
    margin-right: 10px;
}
.elementor-button-text {
    flex-grow: 1;
    order: 10;
    display: inline-block;
}
.elementor-animation-shrink:hover {
    transform: scale(0.9);
}

/* Kontakt */
#pid-kontakt #main-wrapper {
    padding: 0;
}
#pid-kontakt footer {
    margin-top: 0;
}
.contactus {
    padding: 90px 0 70px;
}
.section-image {
    background: radial-gradient(ellipse at center, #585858 0%, #232323 100%);
    background-color: #343434;
    background-position: center center;
    background-size: cover;
}
.section-image:after {
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    content: "";
}
.section-image .width-content {
    position: relative;
    z-index: 2;
    display: flex;
}
.section-image .width-content > .row {
    width: 100%;
}
.contactus .col-md-5 {
    width: 41.66666667%;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
}
.contactus .col-md-offset-2 {
    margin-left: 16.66666667%;
}
.hestia-contact-title-area {
    color: var(--white);
}
.contactus .hestia-title {
    margin-bottom: 30px;
    text-align: left;
}
.contactus .hestia-info,
.contactus .info {
    margin: 0;
    padding: 0;
    max-width: 360px;
}
.contactus .hestia-info,
.contactus .hestia-info p,
.contactus .hestia-info a:not(.btn),
.contactus .info,
.contactus .info p,
.contactus .info a:not(.btn) {
    color: #ccc;
}
.contactus .hestia-info:first-child,
.contactus .info:first-child {
    margin-top: 30px;
}
.contactus .icon {
    float: left;
    margin-right: 10px;
    margin-top: 14px;
    color: #fff;
}
.contactus .icon > i {
    font-size: 36.4px;
    font-weight: 900;
}
.contactus .hestia-contact-title-area .description {
    color: #eaeaea;
    margin-left: 47px;
}
.contactus .hestia-info .info-title,
.contactus .info .info-title {
    display: inline-block;
    text-align: left;
    margin-top: 20px;
    color: #fff;
    font-size: 18px;
}
.card-contact {
    width: 100%;
    font-size: 14px;
    display: inline-block;
    position: relative;
    margin-bottom: 30px;
    border-radius: 6px;
    color: rgba(0, 0, 0, 0.87);
    background: #fff;
    max-width: 100%;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
        0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
        0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
        0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    margin-top: 30px;
}
.contactus .card .content {
    padding: 30px 30px 0;
}
.contactus .form-item-name,
.contactus .form-item-email {
    float: left;
    width: calc(50% - 10px);
    padding: 0 0 24px 0;
}
.contactus .form-item-email {
    margin-left: 20px;
}
.contactus .form-text,
.contactus .form-email,
.contactus .form-textarea,
.newsletter_block .form-text,
.newsletter_block .form-email {
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 7px 0;
    max-width: unset;
    width: 100%;
}

/* Newsletter */
.newsletter_block {
    font-size: 14px;
    background: #fff;
    width: 50%;
    margin: 30px auto;
    box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56),
        0 4px 25px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding-bottom: 15px;
    padding-top: 30px;
    padding-left: 35px;
    padding-right: 35px;
}
.newsletter_block .button {
    width: 100%;
    text-transform: uppercase;
    font-size: 14px;
}

/* FAQ */
.faq_header {
    display: flex;
    gap: 1rem;
    margin-bottom: 30px;
}
.faq_header a {
    background-color: var(--primary);
    padding: 0.5rem 1rem;
    text-align: center;
    color: var(--white) !important;
    flex: 1;
}
.slideshow a:hover,
.faq_header a:hover {
    text-decoration: none;
    border: none;
}
.faq_header a.active {
    background-color: var(--secondary);
}
.block-ee-faq {
    margin: 0;
}
.faq_headline,
.faq_block {
    display: none;
}
#ee-faq_kommanditbeteiligung-block {
    display: block;
}
.block-ee-faq .ui-accordion-content {
    border: none;
    color: var(--text-color);
    border-radius: 0;
    background: transparent;
    margin-top: 0px;
}
.block-ee-faq .ui-accordion-header-icon {
    display: none;
}
.block-ee-faq .ui-accordion-header {
    color: var(--text-color);
    padding: 5px;
    border-radius: 0;
    border: none;
    background: transparent;
    font-weight: 400;
    padding-right: 40px;
    text-align: left;
    border-top: 1px solid lightgray;
}
.block-ee-faq .ui-accordion-header.ui-accordion-header-active {
    color: var(--text-color);
    padding: 5px;
    border: none !important;
    border-radius: 0;
    padding-right: 40px;
    border-top: 1px solid lightgray !important;
}
.block-ee-faq .ui-accordion-header::after {
    font-family: var(--ee_awesome);
    content: "\2b";
    color: var(--secondary);
    margin-right: 1em;
    position: absolute;
    right: -7px;
    font-weight: bold;
}

/* Div Table */
.divTable {
    display: table;
    width: 100%;
}
.divTableRow {
    display: table-row;
}
.divTableHeading {
    background-color: #eee;
    display: table-header-group;
}
.divTableCell,
.divTableHead {
    display: table-cell;
    padding-top: 1rem;
    padding-right: 0.5rem;
}
.divTableHeading {
    background-color: #eee;
    display: table-header-group;
    font-weight: bold;
}
.divTableFoot {
    background-color: #eee;
    display: table-footer-group;
    font-weight: bold;
}
.divTableBody {
    display: table-row-group;
}

/* Datenschutz */
.divrow {
    display: table-row;
}
.divrow > div {
    display: table-cell;
    padding: 0.5rem 0;
}
.divrow:first-child > div {
    border-top: none;
}
.divtable .divrow > div:first-child {
    width: 38%;
}
.divtable .divrow > div:last-child {
    text-align: right;
    width: 60%;
}
.divtable .divrow:last-child > div {
    border-bottom: none;
}
.datenschutz {
    font-size: 18px;
}
.datenschutz .divrow > div {
    display: table-cell;
    border-bottom: 1px solid var(--primary);
    padding: 10px;
}
.datenschutz .divrow > div:nth-child(3) {
    width: 150px;
}
.datenschutz .divrow > div:first-child {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-focus);
}
.datenschutz .divrow > div:first-child {
    font-weight: 600;
    font-size: inherit;
    color: var(--primary-focus);
    width: auto;
}
.datenschutz .divrow.th {
    font-weight: 600;
    color: var(--primary-focus);
}
.datenschutz .divrow > div:last-child {
    text-align: left;
    width: auto;
}
.datenschutz .divrow {
    width: 100%;
    float: none;
    display: table-row;
    padding-right: 5%;
    border-left: none;
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-bottom: 1px solid var(--primary);
}
.datenschutz.divtable .divrow:last-child > div {
    border-bottom: 1px solid var(--primary) !important;
}

/* Footer */
footer {
    background: #323437;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    margin-top: 2em;
    padding-top: 120px;
    padding-bottom: 18px;
    font-size: 0.8rem;
    color: var(--white);
}
footer hr {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: 10px;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
#footer_wrapper {
    width: 100%;
    padding: 20px 0;
}
#footer_wrapper_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
footer .vermittler_hinweis {
    margin-bottom: 2rem;
}
footer .vermittler_hinweis h4 {
    color: var(--blue);
    margin-bottom: 2rem;
}
.region-footer-middle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
footer .footer_logo img {
    width: 180px;
}
footer .content ul.menu {
    display: flex;
}
footer .content ul.menu li {
    display: inline-block;
    padding: 0;
}
footer .content ul.menu a {
    padding: 15px;
    font-size: 12px;
    color: var(--white);
    text-transform: uppercase;
}
.footer-adress a {
    color: var(--text-color);
}
.footer-adress a i {
    color: var(--blue);
    margin-right: 8px;
}

.platform #stepswrapper > .step {
    background-color: var(--primary);
}

.platform #contract_identifier {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Projectdetails custom START*/
#ee-projectdetails-invested-block {
    margin-bottom: 27px;
    border: 1px solid black;
    padding: 0 3px;
    text-align: center;
}

#ee-projectdetails-invested-block #ee-invested {
    text-align: center;
}
#ee-projectdetails-invested-block p {
    font-size: 12px;
    margin-bottom: -10px;
}
.region-content #ee-skala {
    background-image: none;
    padding-left: 1px;
    height: 40px;
    margin-top: 0px;
    background-color: #fff;
    border: none;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.tooltip {
    border: none;
}
.tooltip .classic {
    z-index: 999;
}
#page #ee-min-value {
    margin-left: 0;
}
#page #ee-projectdetails-invested-block {
    position: relative;
}
#page #ee-value-wrapper {
    width: 100%;
    font-size: 18px;
    position: absolute;
    bottom: 0px;
    z-index: 1;
    padding: 0;
    pointer-events: none;
}
.region-content #ee-value-wrapper:hover + div + .tooltip span.classic {
    margin-left: 20px;
}
.region-content #ee-invested {
    color: #000000;
}
.region-content #ee-skala #ee-value {
    background: none;
    background-color: var(--primary);
    top: 0;
    height: 40px;
    left: -0;
    position: absolute;
    border-radius: 8px 0px 0px 8px;
}
#page .tooltip .classic {
    background-color: var(--primary, lightgreen);
}
.tooltip:hover em.text {
    color: white;
}
/* Projectdetails custom END */

/* Basis-Styling für Hero */
.elementor-row table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}

.elementor-row td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    vertical-align: baseline;
}

