@import "./fonts.css";
@import "./reboot.css";

:root {

    --container-width: 1520px;

    /* Fonts */
    --main-font: 'Barlow', sans-serif;
    --headlines-weight: 500; /* used to controll the weight for all the headlines */
    /* Fonts-Sizes */
    --font-size-xxl: 75px;
    --font-size-xl: 70px;
    --font-size-lg: 46px;
    --font-size-l: 32px;
    --font-size-md: 24px;
    --font-size-sm: 22px;
    --font-size-xs: 22px;

    --font-size-body: 18px;

    /* Colors */
    --body-bg-color: #F3F3F5;
    --hf-dark-800: #000000;
    --hf-blue-400: #009FE3;
    --hf-blue-600: #113870;
    --hf-white-100: #fff;
    --hf-gray-400: #7C7C7C;

    --hf-yellow-400: #FDC500;

    /* Gradients */
    --bg-gradient-blue: linear-gradient(106deg, #113870 30.87%, #009FE3 144.31%);
    --bg-gradient-yellow: linear-gradient(106deg, #F9B008 30.87%, #FEE213 144.31%);
    --bg-gradient-red: linear-gradient(106deg, #C9191E 30.87%, #DD826B 144.31%);
    --bg-gradient-blue-light: linear-gradient(176deg, rgba(255, 255, 255, 0.00) 19.31%, rgba(17, 66, 112, 0.60) 56.91%, rgba(17, 66, 112, 0.90) 78.42%, #009FE3 113.33%);

    --btn-gradient-blue: linear-gradient(180deg, #009FE3 30%, #113870 332.5%);

    /* Animations Timelines */
    --animation-300: ease-in-out all 0.3s;
}

.mm-menu.mm-offcanvas {
    z-index: 99999999;
}

#mobile-menu-left {
    background: linear-gradient(180deg, #E8EDEF 0%, #E8EDEF 90.23%, #E8EDEF 100%);
    color: #113870;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    width: 93%;
    .mm-panels > .mm-panel::after, .mm-panels > .mm-panel::before {
        content: '';
        display: block;
        height: 40px;
    }
    .mm-panels .mm-navbar {
        padding-right: 20px;
        background: white;
        border: none;
        height: 60px;
        display: flex;
        justify-content: right;
        align-items: center;
        .mm-prev::before {
            border-color: #009FE3;
        }
        .mm-btn {
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .mm-title {
            text-align: right;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #009FE3;
        }
    }
    .mm-hasnavbar .mm-panels {
        bottom: 80px;
    }
    .mm-listview {
        li {
            .mm-counter {
                display: none;
            }
            &::after {
                right: 20px;
                border-color: #fff;
            }
        }
        .mm-next::before {
            border: none !important;
        }
        .mm-next::after {
            border-color: #009FE3;
        }
    }
    .mm-navbars-bottom {
        border: none;
        margin: 0px 25px 30px 25px;
        .mm-navbar {
            height: auto;
            padding-right: unset;
            a {
                color: #fff;
            }
        }
    }
}

#mobile-menu-button-left {
    padding-left: 0px;
    height: 100%;

    &.hamburger {
        background-color: unset;

        @media (min-width: 991px) {
            margin-right: 18px;
        }
    }
}

#page {
    background-color: #f3f3f5;
}

.logo {
    a {
        @media (max-width: 991px) {
            width: 100%;
            display: flex;
        }
    }
}
.logo, .logo svg {
    height: 55px;
    width: auto;
    margin-right: 50px;
}

.lipidtech {
    .--bg-gradient {
        background: var(--bg-gradient-yellow);
    }
    .navbar-nav .nav-link:hover::before,
    .navbar-nav .nav-link:focus::before,
    .navbar-nav .nav-link:active::before,
    .navbar-nav .nav-link.active::before {
        right: .5rem;
        left: .5rem;
        background-color: #000;
    }
}

.hf_group {
    .--bg-gradient {
        background: var(--bg-gradient-blue);

        strong, h2, h3, h4, p {
            color: var(--hf-white-100);
        }
    }
    .navbar-nav .nav-link:hover::before,
    .navbar-nav .nav-link:focus::before,
    .navbar-nav .nav-link:active::before,
    .navbar-nav .nav-link.active::before {
        right: .5rem;
        left: .5rem;
        background-color: #fff;
    }
}

body {
    font-family: 'Barlow', sans-serif;
    font-weight: 400; /* Regular */
    overflow-x: hidden;
    background-color: var(--hf-white-100);
}

/* Hauptcontainer für den gesamten Bereich */
.prozessexperte-section {
    display: flex;
    justify-content: center;
    padding: 40px 0;
    background-color: #ffffff; /* Weißer Hintergrund für unteren Bereich */
}

/* Blauer Textbereich */
.text-box {
    background: linear-gradient(135deg, #002f61, #0068b4);
    padding: 20px;
    color: #ffffff;
}

.text-box h2 {
    font-size: 1.5em;
    margin: 0;
    font-weight: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.text-box h2 span {
    color: #4aa2eb;
}

/* Bildcontainer für Überlappungseffekt */
.image-box {
    position: relative;
    width: 100%;
    height: 300px; /* Angepasste Höhe des Bildcontainers */
    overflow: hidden;
    margin-top: -100px; /* Überlappung des blauen Bereichs */
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2); /* Optional: Schatteneffekt für das Bild */
}


.btn.btn-primary {
    height: 48px;
    padding: 10px 25px 12px 25px;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 6px;
}

.footer-primary {
    padding-block-start: 200px !important;
}

.footer-secondary{
    .lipidtech & {
        color: #000;
    }
}

.--formular-out-wrapper {
    position: relative;
    .--formular-wrapper {
        @media (min-width: 992px) {
            position: absolute;
            top: 0px;
            padding: 3rem;
            margin-block-start: 0px;
        }
        width: 100%;
        background-color: #F3F3F5;
        padding: 3rem;
        @media (max-width: 991px) {
            margin-block-start: 40px;
            padding: 2.0295rem 1.295rem;
        }
        a {
            color: var(--hf-yellow-400);
        }
    }
}

.content-primary {
    padding: 0;
}

.secondary-form-contact {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: #F3F3F5;
    padding: 3rem;
    @media (max-width: 991px) {
        padding: 2.0295rem 1.295rem;
    }
}

.frame-type-news_newsdetail .content {
    padding: 60px 60px 80px 60px;
    background-color: #fff;
}

.frame-type-news_newsdetail .dateTime {
    text-align: right;
}

.frame-type-news_newsdetail .teaser-text {
    text-transform: none;
}

.dropdown-menu {
    border: none;
}

.dvinci-job-widget > div > div > .row {
    flex-direction: row-reverse;
}

.dvinci-job-widget > div > div > .row > div:first-of-type {
    width: 25%;
}

.dvinci-job-widget > div > div > .row > div:last-of-type {
    width: 75%;
}

.dvinci-job-widget .dvinci-job-list > li {
    width: 100%;
    display: block !important;
}

.dvinci-job-widget .dvinci-job-filter {
    width: 100% !important;
    .dvinci-filter-heading {
        color: #113870;
        leading-trim: both;
        text-edge: cap;
        font-family: Barlow;
        font-size: 22px;
        font-style: normal;
        font-weight: 400;
        line-height: 60px; /* 272.727% */
    }
}

.dvinci-job-widget li::before {
    content: "";
    display: block;
    width: unset !important;
    aspect-ratio: unset !important;
    flex-shrink: 0;
    background-image: none !important;
    margin-top: unset !important;
}

div.dvinci-job-widget .card-body {
    background-color: #fff;
    padding: 30px;
    .dvinci-job-position {
        color: #113870 !important;
        font-family: Barlow !important;
        font-size: 24px !important;
        font-style: normal !important;
        font-weight: 600 !important;
        line-height: 30px !important;
        text-transform: none !important;
        .dvinci-job-subtitle {
            color: #7C7C7C!important;
            font-family: Barlow;
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: 28px; /* 155.556% */
        }
    }

    .dvinci-list-inline {
        display: inline-block !important;
        li {
            display: flex;
            align-content: center;
            align-items: center;
            color: #009FE3!important;
            font-family: Barlow;
            font-size: 18px;
            font-style: normal;
            font-weight: 700;
            line-height: 28px;
        }
        &.dvinci-list-locations li {
            border-left: 3px solid #009FE3;
            margin-left: 10px;
            line-height: 15px;
        }
    }
}

.hf-border {
    .hf_group & {
        border-bottom: 1px solid rgba(255, 255, 255, 0.30);
    }
    .lipidtech & {
        border-bottom: 1px solid rgba(0, 0, 0, 1.00);
    }
}

.mobile-menu-container {
    display: flex;
    align-items: center;
    margin-top: 20px;
    .logo {
        width: auto;
        height: auto;
        margin-right: 0;
        svg {
            width: 200px;
            height: auto;
        }
    }
    .mobile-language-menu {
        list-style: none;
        margin-bottom: 0px;
        padding-inline-start: 0px;

        a.nav-link {
            align-items: center;
            display: flex;
        }
    }
}