@font-face {
    font-display: swap;
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 600;
    src: url('/fonts/nunito-v26-latin-600.woff2') format('woff2');
}

:root {
    --ground-color: #eff0eb;
    --second-color: #b083f5;
    --third-color: #CDAEFB;
    /*LOGO-Farbe*/
    --fourth-color: #dbc6fc;
    --text-color: #1b194b;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--ground-color);
    font-family: 'Nunito', sans-serif;
    max-width: 100%;
    overflow-x: hidden;
    text-rendering: auto;
    scroll-behavior: smooth;
    color: var(--text-color);
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 80px;
    background-color: rgba(255, 255, 255, .15);
    box-shadow: 0px 3px 5px -5px black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(5px);
    z-index: 2;
}

header img {
    height: auto;
    width: 200px;
    margin-left: 20px;
    margin-top: 5px;
}

header nav {
    width: 400px;
    margin-right: 50px;
}

header nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav ul li {
    list-style: none;
    padding: 4px;
    margin: 10px;
    position: relative;
}

header .about-li {
    min-width: fit-content;
}

header nav ul .header-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--second-color);
    transition: width 0.3s ease;
}

header nav ul .header-link:hover::before {
    width: 100%;
}

header nav ul .header-contact-btn {
    background-color: var(--third-color);
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
    box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.253);
}

header nav ul .header-contact-btn:hover {
    opacity: .8;
}

header nav ul li a {
    text-decoration: none;
    color: black;
    white-space: nowrap;
}

.toggle-btn {
    position: absolute;
    top: 30px;
    right: 20px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.toggle-btn .bar {
    height: 3px;
    width: 100%;
    background-color: black;
    border-radius: 10px;
    transition: .2s;
}

.header-img-container {
    display: flex; 
    flex-direction: row; 
    justify-content: center; 
    align-items: center; 
    height: 100%;
}

@media (max-width: 800px) {
    header img {
        margin-left: 5px;
        margin-top: 0px;
        width: 170px;
    }

    .header-img-container a:nth-of-type(2) {
        display: none;
    }

    .toggle-btn {
        display: flex;
    }

    .toggle-btn.active {
        margin-top: 0px;
    }

    .toggle-btn .bar1.active {
        width: 10px;
    }

    .toggle-btn .bar2.active {
        width: 10px;
        margin-left: 5px;
        margin-right: 5px;
    }

    .toggle-btn .bar3.active {
        width: 10px;
        margin-left: 10px;
    }

    .navbar-links {
        width: 150px;
        border-bottom-left-radius: 10px;
        position: absolute;
        right: 0;
        background-color: rgba(255, 255, 255, .15);
        box-shadow: 0px 3px 5px -5px black;
        backdrop-filter: blur(5px);
        transform-origin: middle;
        transform: scaleX(0);
        transition: transform 0.1s ease-out, width 0.1s ease-out;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
    }

    header ul {
        flex-direction: column;
        width: 150px;
        padding: 0;
    }

    .navbar-links li {
        width: 150px;
        text-align: center;
    }

    .navbar-links.active {
        display: flex;
        align-items: center;
        justify-content: space-between;
        transform: scaleX(1);
        transition: transform 0.1s ease-in, width 0.1s ease-in;

    }

    header nav ul .header-contact-btn {
        background-color: transparent;
        padding: 0px;
        border-radius: 0px;
        box-shadow: 0px 0px 0px black;
    }

    header nav ul .header-link:hover {
        border-bottom: none;
        padding: 4px;
        border-radius: 5px;
        opacity: .6;
    }

    header nav ul .header-link:hover::before {
        width: 0%;
    }
}

/*================FIRST SECTION==============*/

.first-section {
    min-height: 800px;
    background-image: url("/images/image5.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

@media (max-width: 375px) {
    .first-section {
        height: 100vh;
    }
}

.first-section-left {
    max-width: 350px;
    height: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    bottom: 0;
    margin-left: 100px;
    background-color: rgba(255, 255, 255, 0.637);
    box-shadow: 0px 3px 5px -5px black;
    backdrop-filter: blur(3px);
    border-radius: 10px;
    transition: .2s;
}

.first-section-left:hover {
    transform: scale(1.02);
}

.first-section-left h2 {
    margin: 0;
    font-size: 38px;
}

.first-section-left p {
    margin: 0;
    margin-top: 20px;
}

.first-section-left .first-section-contact-btn {
    background-color: var(--third-color);
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
    box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.253);
    list-style: none;
    color: black;
    width: 60px;
    margin-top: 20px;
}

.first-section-left .first-section-contact-btn:hover {
    opacity: .8;
}

.first-section-left .first-section-contact-btn a {
    text-decoration: none;
    color: black;
}

@media (max-width: 560px) {
    .first-section-left {
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 80px;
    }

    .first-section-left h2 {
        font-size: 30px;
    }

    .first-section-left:hover {
        transform: none;
    }
}

.job-card {
    position: absolute;
    right: 0;
    background-color: rgba(255, 255, 255, 0.637);
    box-shadow: 0px 3px 5px -5px black;
    backdrop-filter: blur(3px);
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    transition: .2s;
    padding: 10px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 50px;
    text-align: left;
}

.job-card.active {
    display: none;
}

.job-card:hover {
    transform: scale(1.02);
}

.job-card h2 {
    margin-bottom: 0;
}

.job-card h3 {
    margin-top: 0px;
}

.job-card p {
    margin: 0;
}

.job-card .first-section-second-contact-btn {
    background-color: var(--third-color);
    padding: 5px;
    padding-right: 10px;
    border-radius: 5px;
    box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.253);
    list-style: none;
    color: black;
    width: max-content;
    margin-top: 20px;
}

.job-card .first-section-second-contact-btn:hover {
    opacity: .8;
}

.job-card .first-section-second-contact-btn a {
    text-decoration: none;
    color: black;
}

.job-card .first-section-third-contact-btn {
    background-color: var(--third-color);
    padding: 5px;
    border-radius: 5px;
    box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.253);
    list-style: none;
    color: black;
    width: max-content;
    margin-top: 20px;
    margin-left: 40px;
}

.job-card .first-section-third-contact-btn:hover {
    opacity: .8;
}

.job-card .first-section-third-contact-btn a {
    text-decoration: none;
    color: black;
    cursor: pointer;
}

@media (max-width: 800px) {
    .job-card {
        margin-top: 500px;
        z-index: 1;
        margin-right: 10px;
        margin-left: 10px;
        border-bottom-right-radius: 10px;
        border-top-right-radius: 10px;
    }
}

/*==========SECOND SECTION=============*/


.custom-shape-divider-bottom-1697968034 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 66px;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1697968034 svg {
    position: absolute;
    display: block;
    width: calc(100% + 1.3px);
    height: 100%;
}

.custom-shape-divider-bottom-1697968034 .shape-fill {
    fill: var(--third-color);
}



.second-section {
    margin-top: -2px;
    background-color: var(--third-color);
    height: auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 70px;
    padding-bottom: 70px;
}

.second-section-content {
    background-color: var(--ground-color);
    max-width: 1200px;
    margin-left: 20px;
    margin-right: 20px;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0px 3px 5px -5px black;
    transition: .2s;
}

.second-section-content:hover {
    transform: scale(1.02);
}

.about-card-text {
    margin-right: 60px;
    font-size: 17px;
}

.about-card-text h2 {
    margin-top: 0;
    border-bottom: 4px solid var(--third-color);
    width: max-content;
}

.second-section-content img {
    max-width: 360px;
    height: auto;
    border-radius: 8px;
    align-self: center;
}



.arrow {
    height: 100px;
    width: 6px;
    background-color: var(--ground-color);
    margin-top: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 3px;
}

.circle {
    height: 20px;
    width: 20px;
    background-color: var(--ground-color);
    border-radius: 50px;
    position: absolute;
}

@media (max-width: 1067px) {
    .second-section-content {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        text-align: left;
        max-width: 500px;
    }

    .about-card-text {
        display: flex;
        flex-direction: column;
        align-items: left;
        margin-right: 0;
    }

    .second-section-content img {
        max-width: 250px;
        width: auto;
        height: auto;
    }
}



/*===============THIRD SECTION==============*/

.third-section {
    min-height: 200px;
    margin-top: 0px;
    background-color: var(--third-color);
    padding-top: 0px;
    padding-bottom: 70px;
}


.third-section-content {
    background-color: var(--ground-color);
    max-width: 800px;
    margin-left: 20px;
    margin-right: 20px;
    padding: 5px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 10px;
    box-shadow: 0px 3px 5px -5px black;
    transition: .2s;
}

.third-section-content:hover {
    transform: scale(1.02);
}

.fast-card {
    display: flex;
    justify-content: center;
}

.third-section-content h2 span {
    border-bottom: 4px solid var(--third-color);
}

.fast-text {
    padding-top: 0;
}

.fast-text p {
    width: 400px;
    height: fit-content;
    text-align: left;
    margin-right: 100px;
    margin-top: 0;
}

.call-to-action {
    background-color: var(--third-color);
    padding: 5px;
    font-size: 18px;
    padding-left: 10px;
    padding-right: 10px;
    text-decoration: none;
    color: var(--text-color);
    border-radius: 5px;
    box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.253);
    max-width: max-content;
    max-height: 35px;
}

.call-to-action:hover {
    opacity: .8;
}

.fast-cta {
    margin-top: 20px;
}


@media (max-width: 707px) {

    .third-section-content {
        max-width: 400px;
    }

    .fast-card {
        flex-direction: column;
        padding-bottom: 20px;
        align-items: left;
    }

    .fast-card p {
        margin-right: 0;
        margin-bottom: 0;
        text-align: left;
        width: fit-content;
        max-width: 400px;
        margin-top: 15px;
    }

    .third-section-content h2 {
        margin-bottom: 0;
    }

    .fast-cta {
        display: flex;
        justify-content: left;
        align-items: center;
        flex-wrap: wrap;
        max-width: 250px;
        margin-top: 10px;
    }

    .fast-cta .call-to-action {
        margin-bottom: 5px;
    }

    .fast-cta p {
        margin-top: 0;
        margin-left: 10px;
    }
}



.custom-shape-divider-bottom-1697968035 {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 66px;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1697968035 svg {
    position: absolute;
    display: block;
    width: calc(100% + 1.3px);
    height: 100%;
}

.custom-shape-divider-bottom-1697968035 .shape-fill {
    fill: var(--third-color);
}










/*===============FOURTH SECTION==============*/

.divider {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 300px;
    margin-top: 50px;
}

.divider h2 {
    margin: 0;
    font-size: 40px;
    border-bottom: 6px solid var(--third-color);
}

.divider .arrow {
    width: 200px;
    height: 6px;
    margin: 0;
}

.fourth-section {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    padding-bottom: 80px;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100vw;
}

.card {
    background-color: whitesmoke;
    height: 360px;
    width: 320px;
    border-radius: 15px;
    display: inline-block;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    box-shadow: 0px 3px 5px -5px black;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 80px;
    transition: .2s;
}

.card:hover {
    transform: scale(1.02);
}

@media (max-width: 560px) {

    .card-container {
        width: 100vw;
    }

    .card {
        margin-top: 60px;
        margin-bottom: 20px;
        margin-left: 10px;
        margin-right: 10px;
        height: fit-content;
        padding-bottom: 10px;

    }
}

.upper-card {
    height: 180px;
    width: 300px;
    top: -25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(to left top, var(--fourth-color), var(--third-color), var(--second-color) 60%);
    position: absolute;
    box-shadow: 0px 3px 5px -5px black;
}

.lower-card {
    height: 120;
    margin-top: 130px;
    padding: 5px;
    padding-top: 20px;
    display: flex;
    align-items: left;
    justify-content: center;
    flex-direction: column;
}

.lower-card h2 {
    margin-bottom: 10px;
    font-size: 20px;
}

.upper-card h2 {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 28px;
    text-align: center;
}

.card p {
    margin: 0;
    margin-bottom: 10px;
}



/*==========FITH-SECTON===========*/

.fifth-section {
    background-color: var(--fourth-color);
    border-bottom-right-radius: 25%;
    padding-top: 05px;
    padding-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fifth-section h2 {
    font-size: 42px;
    margin-bottom: 70px;
}

.fifth-section h2 span {
    border-bottom: 6px solid var(--ground-color);
}

.fifth-section-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap-reverse;
    margin-left: 20px;
    margin-right: 20px;
}

.fifth-section-content img {
    width: 400px;
    height: 400px;
    margin-right: 100px;
    border-radius: 8px;
    box-shadow: 0px 3px 5px -5px black;
    transition: .2s;
}

.fifth-section img:hover {
    transform: scale(1.02);
}

.fifth-content-text {
    display: flex;
    flex-direction: column;
    background-color: var(--ground-color);
    height: 360px;
    width: 300px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 3px 5px -5px black;
    text-align: left;
    transition: .2s;
}

.fifth-content-text:hover {
    transform: scale(1.02);
}

.fifth-content-text h2 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 20px;
}

.fifth-content-text li {
    font-size: 20px;
    margin-left: 20px;
    margin-top: 10px;
}

.fifth-content-text p {
    margin-top: 25px;
}

.contact-btns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-btns a {
    margin-bottom: 5px;
    margin-top: 5px;
    margin-right: 5px;
}


@media (max-width: 980px) {

    .fifth-section {
        text-align: center;
        border-top-left-radius: 0%;
        border-bottom-right-radius: 0%;
    }

    .fifth-section-content {
        flex-direction: column-reverse;
    }

    .fifth-content-text {
        margin-bottom: 50px;
        margin-left: 20px;
        margin-right: 20px;
        width: fit-content;
        max-width: 300px;
        height: fit-content;
    }

    .fifth-content-text li {
        width: auto;
    }

    .fifth-section img {
        margin-right: 0;
        width: 350px;
        height: 300px;
    }
}


/*=========SIXTH-SECTION========*/

.sixth-section {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 800px;
    position: relative;
    padding-bottom: 70px;
    padding-top: 40px;
    background-color: var(--fourth-color);
    border-top-left-radius: 25%;
    margin-top: -2px;
}

.sixth-section h2 {
    font-size: 42px;
    text-align: center;
}

.sixth-section h2 span {
    border-bottom: 6px solid var(--ground-color);
}

.social-card-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: fit-content;
    margin-top: 40px;
    margin-bottom: 50px;
    padding-left: 25px;
    padding-right: 25px;
}

.social-card {
    max-width: 350px;
    height: 300px;
    flex-shrink: 0;
    padding-left: 30px;
    padding-right: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    position: relative;
    flex-direction: column;
    margin-top: 40px;
    margin-left: 25px;
    margin-right: 25px;
    background-color: whitesmoke;
    border-radius: 16px;
    box-shadow: 0px 3px 5px -5px black;
    transition: .2s;
}

.social-card:hover {
    transform: scale(1.02);
}

.social-heading {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.social-card-icon {
    height: 70px;
    width: 70px;
    margin-right: 20px;
}

.social-heading h3 {
    margin-top: 0px;
}

.social-heading img {
    height: 20px;
    width: auto;
}

.social-card p {
    margin-bottom: 10px;
}

.social-card .call-to-action {
    font-size: 20px;
}

.social-card .call-to-action:hover {
    transform: none;
    opacity: .8;
}

.cta-social-proof {
    font-size: 20px;
}

@media (max-width: 450px) {

    .sixth-section {
        border-bottom-right-radius: 0%;
        border-top-left-radius: 0%;

    }

    .social-card {
        height: fit-content;
        width: fit-content;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 980px) {

    .sixth-section {
        border-bottom-right-radius: 0%;
    }
}

/*=========SEVENTH-SECTION========*/

.seventh-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 70px;
    padding-bottom: 70px;
}

.seventh-section h2 {
    font-size: 42px;
    border-bottom: 6px solid var(--third-color);
}

.seventh-section h2 span {
    white-space: nowrap;
}

.seventh-section-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: whitesmoke;
    box-shadow: 0px 3px 5px -5px black;
    max-width: 800px;
    padding: 20px;
    padding-right: 10px;
    padding-left: 40px;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 10px;
    transition: .2s;
}

.seventh-section-content:hover {
    transform: scale(1.02);
}

.seventh-section-content img {
    width: 300px;
    border-radius: 8px;
    margin-left: 50px;
}

.job-text {
    width: 420px;
}

.job-text h2 {
    font-size: 26px;
    margin-top: 0;
    border-bottom: 0;
}

.job-text p {
    font-size: 16px;
}

.ctas {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
}

.ctas .call-to-action {
    margin-right: 25px;
    margin-top: 10px;
    margin-bottom: 10px;
}

@media (max-width: 860px) {

    .seventh-section-content {
        padding-right: 20px;
        padding-left: 20px;
        padding-bottom: 25px;
        width: fit-content;
        height: fit-content;
    }

    .job-text {
        width: fit-content;
    }

    .seventh-section-content img {
        display: none;
    }

    .ctas {
        margin-top: 0px;
    }

    .ctas .call-to-action {
        margin-right: 15px;
    }
}


/*=========EIGHTH-SECTION========*/

.eighth-section {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    min-height: 800px;
    position: relative;
    padding-top: 100px;
}

.eighth-section h2 {
    font-size: 42px;
    margin-bottom: 70px;
    text-align: center;
    border-bottom: 6px solid var(--third-color);
}

.eighth-section details {
    background-color: whitesmoke;
    width: 600px;
    padding: 20px;
    margin: 20px;
    margin-bottom: 40px;
    text-align: left;
    cursor: default;
    border-radius: 16px;
    box-shadow: 0px 3px 5px -5px black;
    transition: .2s;
}

details:hover {
    transform: scale(1.02);
}


.more-questions {
    background-color: whitesmoke;
    box-shadow: 0px 3px 5px -5px black;
    max-width: 600px;
    padding: 20px;
    padding-bottom: 30px;
    margin: 20px;
    margin-bottom: 40px;
    text-align: left;
    border-radius: 16px;
    transition: .2s;
}

.more-questions:hover {
    transform: scale(1.02);
}

.more-questions h3 {
    margin-top: 0;
}

.eighth-section .call-to-action:hover {
    opacity: .8;
}

@media (max-width: 659px) {
    .eighth-section details {
        max-width: 400px;
        width: 80vw;
    }
}




/*=========FOOTER========*/

.custom-shape-divider-bottom-1698520873 {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1698520873 svg {
    position: relative;
    display: block;
    width: calc(115% + 1.3px);
    height: 62px;
}

.custom-shape-divider-bottom-1698520873 .shape-fill {
    fill: var(--third-color);
}

footer {
    background-color: var(--third-color);
    max-width: 100vw;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 20px;
    padding-right: 20px;
}

footer h2 {
    margin: 0;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer-nav li {
    margin-left: 10px;
    margin-right: 10px;
    list-style: none;
    color: black;
}

.footer-nav li a {
    color: black;
}

.footer-nav li:hover a {
    opacity: .6;
}

.my-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
    color: black;
    text-decoration: none;
}

.my-logo span {
    margin-left: 5px;
    word-break: keep-all;
}

.my-logo span:hover {
    opacity: .6;
    text-decoration: underline;
}

@media (max-width: 600px) {
    footer {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        padding-top: 20px;
        padding-bottom: 50px;
    }

    footer .my-logo {
        width: 100%;
        margin-top: 40px;
    }
}