/*
Theme Name: Hello Elementor Child
Theme URI: https://example.com/
Description: Lean child theme for Hello Elementor with dedicated files for custom CSS, JS and PHP.
Author: Local Dev
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* Add quick custom CSS here if needed. */

a {
    color: var(--e-global-color-primary);
}

#header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 9;  
    padding: 10px 25px;
}

#header:after {
    content:"";
    background-image: url("/wp-content/uploads/2026/05/header-bg.svg");
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
}

#header .elementor-container {
    z-index: 2;
    position: relative;
}

@media (max-width: 767px) {
    #header {
        padding: 10px 0px;
    }
}



.hero {
    height: clamp(600px, 80vh, 900px) !important;
}

.hero .elementor-background-slideshow__slide__image {
    height: clamp(600px, 80vh, 900px) !important;
}

.hero .elementor-background-slideshow__slide__image:after {
    content:"";
    background-image: url("/wp-content/uploads/2026/05/hero-bg.svg");
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}

.hero-box {
    max-width: 460px;
    height: auto;
    margin: auto 0 0 auto;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 20px 20px 0 0 var(--e-global-color-accent);
    margin-right: 20px;
}


.kacheln > .e-con-inner {
  display: grid;
  grid-template-columns: 9fr 3fr;
}

.kacheln-inner > .e-con-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.kacheln-inner .kachel-card:nth-child(1) {
  grid-column: span 1;
}

.kacheln-inner .kachel-card:nth-child(2) {
  grid-column: span 2;
}

.kacheln-inner .kachel-card:nth-child(3) {
  grid-column: span 2;
}

.kacheln-inner .kachel-card:nth-child(4) {
  grid-column: span 1;
}

@media (max-width: 767px) {

    .kacheln {
        padding: 6% 2% 2%;
    }

    .kacheln > .e-con-inner,
    .kacheln-inner > .e-con-inner {
        grid-template-columns: 1fr;
    }

    .kacheln-inner .kachel-card:nth-child(1),
    .kacheln-inner .kachel-card:nth-child(2),
    .kacheln-inner .kachel-card:nth-child(3),
    .kacheln-inner .kachel-card:nth-child(4) {
        grid-column: span 1;
    }
}

.kachel-card {
    padding: 15px 30px;
    border-radius: 12px !important;
    overflow: hidden;
}

.kachel-video, .kachel-card .e-con-inner {
    padding: 0 !important;
    justify-content: flex-start !important;
}

.kachel-job > .e-con-inner {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 0px;
}

.kachel-job > .e-con-inner > .elementor-widget-image {
    margin: -15px 0 -15px -30px;
}

.kachel-job > .e-con-inner > .elementor-widget-image img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.button-icon {
    margin-top: auto !important;
}


.jobs .elementor-accordion-item {
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 15px;
}

.elementor-form input::placeholder,
.elementor-form textarea::placeholder,
.cr_form-input::placeholder {
    color: var(--e-global-color-primary) !important;
    opacity: 1 !important;
}

.elementor-form input::-webkit-input-placeholder,
.elementor-form textarea::-webkit-input-placeholder,
.cr_form-input::-webkit-input-placeholder {
    color: var(--e-global-color-primary) !important;
    opacity: 1 !important;
}

.elementor-form input::-moz-placeholder,
.elementor-form textarea::-moz-placeholder,
.cr_form-input::-moz-placeholder {
    color: var(--e-global-color-primary) !important;
    opacity: 1 !important;
}

.elementor-form input:-ms-input-placeholder,
.elementor-form textarea:-ms-input-placeholder,
.cr_form-input:-ms-input-placeholder {
    color: var(--e-global-color-primary) !important;
    opacity: 1 !important;
}

.elementor-form input::-ms-input-placeholder,
.elementor-form textarea::-ms-input-placeholder,
.cr_form-input::-ms-input-placeholder {
    color: var(--e-global-color-primary) !important;
    opacity: 1 !important;
}

.elementor-field-type-upload {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 55px;
    min-height: 55px;
    padding: 0 16px 0 28px;
    border: 1px solid var(--e-global-color-primary);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.elementor-field-type-upload::before {
    content: "Bewerbung";
    color: var(--e-global-color-primary);
    font-family: "Oswald", Sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1;
    pointer-events: none;
}

.elementor-field-type-upload input[type="file"] {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 155px;
    height: 34px;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.elementor-field-type-upload::after {
    content: "Datei hochladen";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 125px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffd800;
    color: var(--e-global-color-primary);
    font-family: "Oswald", Sans-serif;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

.elementor-field-type-upload .elementor-field-label {
    display: none;
}

@media (max-width: 767px) {
    .elementor-field-type-upload {
        padding: 0 10px 0 16px;
        border-radius: 16px;
    }

    .elementor-field-type-upload::before {
        font-size: 17px;
    }

    .elementor-field-type-upload::after,
    .elementor-field-type-upload input[type="file"] {
        right: 10px;
        width: 145px;
        height: 32px;
        font-size: 15px;
    }
}


.tl-content {
    display: inline !important;
}

.timeline_pic {
    padding: 0 !important;
    margin: 0 !important;
}

.timeline_pic img {
    border-radius: 12px !important;
    margin: 0 20px 10px 0 !important;
    padding: 0 !important;
}


.footer-row > .e-con-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 6%;
}

.footer-menu .elementor-widget-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-menu .elementor-widget-container a {
    color: #fff !important;
}

.footer-menu .elementor-widget-container a:hover {
    text-decoration: underline !important;
}

.cr_form label, .cr_form .label {
    color: #fff;
}

.cr_form .editable_content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cr_form-input {
    outline: none !important;
    box-shadow: none !important;
    border-radius: 100px !important;
    font-family: var(--e-global-typography-text-font-family), Sans-serif !important;
    font-size: var(--e-global-typography-text-font-size) !important;
    font-weight: var(--e-global-typography-text-font-weight) !important;
    color: var(--e-global-color-primary) !important;
    border: 0 !important;
    line-height: 1em !important;
    padding: 10px 20px 14px !important;
}


.cr_button {
    font-family: var(--e-global-typography-accent-font-family), Sans-serif;
    font-weight: var(--e-global-typography-accent-font-weight);
    background-color: var(--e-global-color-accent) !important;
    text-transform: uppercase;
    color: var(--e-global-color-primary) !important;
    border-radius: 100px 100px 100px 100px;
    padding: 16px 32px 16px 32px;
    border: 0 !important;
    line-height: 1em !important;
}

@media (max-width: 767px) {

    .footer-row > .e-con-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }

}