<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('./base.css');
@import url('./fonts.css');
@import url('./colors.css');
@import url('./utils.css');

body {
    
    width: 100%;
    overflow-x: hidden;
    background-color: eee;
    color: var(--main-text-color);
    font-family: 'Roboto';
}

/*header {
    
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}*/


#masthead {
    background-color: #fff;
	position: fixed;
	top: 0;
	z-index: 9998;
	display: flex;
	align-items: center;
    justify-content: space-between;
	width: 100%;
	transition: 0.4s;
	min-height: 10vh;
    box-shadow: 0 0 3px 1px #f2f2f1;

}

#masthead.sticky {
    min-height: 6vh;
}


.header__container {
	
	width: 80%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.logo-image {
    padding: 1rem;
}

.custom-logo {
    transition: 0.3s;
	width: 200px;
}

.custom-logo.sticky {

	width: 140px;
}

nav {
    display: grid;
    align-items: center;

}
nav ul{
    list-style-type: none;
    display: flex;
    gap: 3rem;
    align-content: center;
    justify-content: space-between;
}

h2,h3 {
    text-align: center;
    font-size: 1.9rem;
    color: var(--main-accent-color);
    margin: 1rem 0;
}

h3 {
    font-size: 1.6rem;
}

#main-menu {
    position: relative;
    z-index: 1;
}

.mobile-menu {
    display: none;
}
.extras {
    
    flex: 1;
    justify-content: flex-end;
}

.logo-container, .nav-links, .extras {
    display: flex;
}

.nav-links {
    justify-content: space-between;
}

.nav-links li {
    transform: translateX(1000px);
    animation: slideIn 0.5s forwards;
}

.nav-links li:nth-child(1) {
    animation-delay: 0s;
}

.nav-links li:nth-child(2) {
    animation-delay: 0.3s;
}

.nav-links li:nth-child(3) {
    animation-delay: 0.6s;
}


.nav-link {

    font-size: 1.2rem;
    line-clamp: 1.3rem;
    padding: 3px 0px;
    color: var(--main-text-color);
    text-decoration: none;
    position: relative;

}

.nav-link::before,
.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--main-text-color);
    left: 0;
    
    transform: scaleX(0);
    transition: all 0.3s;

}

.nav-link::before {
    top: 0;
    transform-origin: left;
}

.nav-link::after {
    bottom: 0;
    transform-origin: right;
}


.nav-link:hover::before,
.nav-link:hover::after {
    transform: scaleX(1);
}

.burger {
    display: none;
}

.burger div {
    height: 3px;
    width: 20px;
    background-color: var(--main-text-color);
    margin: 5px;
    transition: all 0.3s ease;
}

.nav-links li {
    list-style: none;
}


/*stuff*/

.hero {
    margin-top: 10vh;
    width: 100vw;
    
}

.hero img {
    width: 100%;
    object-fit: cover;
}


.intro {
    max-width: 1140px;
    margin: 0 auto;
    padding: 10px;
}

#about, #leistungen, #jobs {
    scroll-margin-top: 6vh;
}

.intro p {
    margin: 1rem 0;
    line-height: 1.8rem;
    font-size: 1.2rem;
    text-align: center;
}

.more_reasons {
    min-height: 40vh;
    max-width: 1140px;
    margin: 0 auto;
    padding: 10px;
}

.reason__cards {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
}

.btn_list {
    background-color: var(--main-accent-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.6rem;
    display: grid;
    place-content: center;
    text-align: center;

}

.reason__card {

    margin: auto;
    display: block;
    border-radius: 1.5rem;
    display: flex;
    width: 500px;
    margin-bottom: 2rem;
}

.card__image {
    border-top-left-radius: 0.6rem;
    border-bottom-left-radius: 0.6rem;
    z-index: -1;
    background-color: var(--main-light-color);
    width: 70px;
    padding: 15px;
}

.card__text {
    border-top-right-radius: 0.6rem;
    border-bottom-right-radius: 0.6rem;
    width: 100%;
    display: grid;
    align-items: center;
    justify-content: center;
    background-color: var(--lighter-color);
}

.card__text p {
    text-align: center;
    color: var(--main-text-color);
    font-size: 1.5rem;
    
}

.jobs {
    position: relative;
    background-color: var(--main-accent-color);
}

.jobs-content, .jobs-cards, .imprint, .privacy {
    max-width: 1140px;
    margin: 0 auto;
    padding: 2rem;
}


.imprint {
    margin-top: 10vh;
    min-height: 75vh;
}

.privacy, .no_hero {
    margin-top: 10vh;
}

.privacy h4 {
    margin: 0.7rem 0;
}

.imprint h3 {
    margin: 1rem 0;
}

.imprint p {
    margin: 0.5rem 0;
}


.jobs-cards {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 1.5rem;
}

.job__card {
    border-radius: 0.6rem;
    padding: 1rem;
    display: grid;
    gap: 1rem;
    background-color: var(--main-light-color);
}

.job__card-btn {
    display: grid;
    align-items:center;
}

.btn {
    border-radius: 0.4rem;
    text-decoration: none;
    margin: auto;
    background-color: var(--main-accent-color);
    color: #eee;
    padding: 13px 10px;
}

.btn:hover {
    cursor: pointer;
    opacity: 0.8;
}

.job__card-text h3 {
    text-align: center;
}

.job__card-text ul {
    list-style-type: none;
    display: block;
    margin: auto;
    padding: 1rem 1rem;
}

.job__card-text ul li{
    padding: 0;
}

.job__card-text ul li::before {
    content: '\2022 ';
    font-size: 1.3rem;
    padding-left: 1rem;
    margin-right: 0.5rem;
}

.job__card-image img {
    width: 70%;
    padding: 1rem;
    display: block;
    margin: 0 auto;
}


.jobs-content p {
    color: #eee;
    margin: 1rem 0;
    line-height: 1.8rem;
    font-size: 1.2rem;
}

.headline-white {
    padding-top: 1.2rem;
    color: #eee;
}



footer {
    background-color: var(--main-light-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1140px;
    margin: 0 auto;
}

.footer-logo img {
    padding: 1rem;
    width: 200px;
}

.footer-contact {
    padding: 1rem;
}

.footer-contact p {
    color: var(--main-text-color);
}

.footer__nav {
    margin: 1.3rem 0;
    list-style-type: none;
    gap: 2rem;
    display: flex;
}

.footer__nav li a, .footer__nav li a:visited{
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--main-text-color);
    
}


.bottom__footer p{
    color: var(--main-text-color);
    padding-bottom: 1rem;
}






@media(max-width: 1024px) {
    /* NAV */

    #masthead {
        width: 100vw;
    }

    .header__container {
        width: 100%;
    }

    .custom-logo {
        width: 200px;
    }

    nav {
        position: absolute;
        top: 6vh;
        right: 0px;
        height: 94vh;
        background-color: rgba(255,255,255,0.9);
        z-index: 10;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.3s ease-in;


    }

    .nav-links li {
        opacity: 0;
    }

    .nav-link {
        font-size: 1rem;
        line-height: 2rem;
    }

    .nav-active {
        transform: translateX(0%);
    }

    .burger {
        display: block;
        cursor: pointer;
    }

    .nav-links, .mobile-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px,6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px,-6px);
    }
}

@media(max-width: 768px) {
    .reason__cards {
        margin-top: 2rem;
        display: grid;
        gap: 1rem;
        grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
    }

    .hero {
        height: 70vh;
    }

    .mtm-10 {
        margin-top: 3rem;
    }

    .hero img {
        height: 100%;
        object-fit: cover;
    }

    .jobs-cards { 
        place-items: center;
    }

    .job__card {
        max-width: 350px;
    }

    .footer-content {
        display: grid;
        place-items: center;
    }

    

}


/*Animations*/

@keyframes slideIn {
    to {
        transform: translateX(0);
    }
}

@keyframes ZoomIn {
    0% {width: 0%;}
    100% {width: 100%;}
}

@keyframes animLeft{
    0% {top: 200px;}
    100% {top: 0px;}
}

@keyframes animRight{
    0% {right: -1000px;}
    100% {right: 0px;}
}

@keyframes animUp{
    0% {top: -100px;}
    100% {top: 03px;}
}

@keyframes FadeIn {
    0% { opacity: 0;}
    100% { opacity: 1;}
}

@keyframes FadeOut {
    0% { opacity: 1;}
    100% {opacity: 0;}
}

@keyframes moveUp {
    0% { 
        top: 300px;
        
    }
    100% { 
        top: 0px;
       
    }
}

@keyframes navlinkFade {
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}

</pre></body></html>