body {
    margin: 0px;
    font-family: "Google Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: 16px;
    line-height: 1.6;
    font-variation-settings: "GRAD" 0;
}

/* Tablet */
@media (min-width: 768px) {
    body {
        font-size: 16px;
    }
}

/* Laptop */
@media (min-width: 1024px) {
    body {
        font-size: 18px;
    }
}

/* großer Desktop */
@media (min-width: 1440px) {
    body {
        font-size: 20px;
    }
}

header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    background-color: #0a1f5355;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 70px;
    z-index: 1;
    color: #fff;
    transition: background-color .2s ease-out;
    backdrop-filter: blur(50px);
    display: flex;
    justify-content: center;
}

.header-box {
    width: 100%;
    max-width: 1440px;
    margin: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .header-box {
        margin: 0px 40px;
    }
}

footer {
    background-color: #0a1f53;
    color: #eee;
    display: flex;
    width: 100%;
    margin: 0;
    font-size: 0.8em;
    height: 600px;
    justify-content: center;
}
footer a {color: #eee;}

.fc0 {
    width: 100%;
     max-width: 1440px;
    margin: 0 20px;
    display: grid;
}

@media (min-width: 768px) {
    .fc0 {
        margin: 0 40px;
    }
}

.fc1 {
    grid-template-rows: fit-content() 1fr 1fr;
    /* justify-content: start; */
    /* align-items: center; */

}

@media (min-width: 768px) {
    .fc1 {
        /* grid-template-columns: 1fr 1fr; */
        grid-template-columns: 1fr 1fr 1fr;
        /* justify-content: center; */
    }
}

.btn1 {
    color: #fff;
    font-weight: 500;
    border: none;
    border-radius: 10px;
    padding: 8px 15px;
    background-image: linear-gradient(135deg, #d73434 30%, #a60085 80%);
}

.btn1:active {
    transform: translate(2px, 2px);
    transition-duration: .1s;
}

.btn1:hover {
    box-shadow: rgba(208, 110, 105, 1) 0 0 2px 2px;
}

.btn2 {
    color: #fff;
    margin: 20px 0px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    padding: 12px 18px;
    background-image: linear-gradient(135deg, #d73434 30%, #a60085 80%);
}

.btn2:active {
    transform: translate(2px, 2px);
    transition-duration: .1s;
}

.btn2:hover {
    box-shadow: rgba(208, 110, 105, 1) 0 0 2px 2px;
}

.btn3 {
    color: #fff;
    margin: 20px 0px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    padding: 12px 18px;
    background-image: linear-gradient(135deg, #da1b60, #ff8a00);
}

.btn3:active {
    transform: translate(2px, 2px);
    transition-duration: .1s;
}

.btn3:hover {
    /* border:1px solid rgba(255,255,255,0.3); */
    box-shadow: rgba(208, 110, 105, 1) 0 0 2px 2px;
}

.btn4 {
    color: #fff;
    margin: 20px 0px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    padding: 12px 18px;
    background-color: #2c50aa;
}

.btn4:active {
    transform: translate(2px, 2px);
    transition-duration: .1s;
}

.btn4:hover {
    /* border:1px solid rgba(255,255,255,0.3); */
    box-shadow: rgba(208, 110, 105, 1) 0 0 2px 2px;
}

section {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0;
}

.c0 {
    width: 100%;
    max-width: 1440px;
    margin: 20px;
    display: grid;
    /* grid-gap: 2em; */
    /* border:1px solid #000;*/
}

@media (min-width: 768px) {
    .c0 {
        margin: 40px;
    }
}

/* sektion 1 */

.s1 {
    /* background-image: linear-gradient(135deg, #0a1f53 30%, #380099 80%); */
    background-image: linear-gradient(135deg, #0a1f53 30%, #5a0248 80%);
    color: #eee;
    height: 700px;
}

.c1 {
    grid-template-rows: fit-content() fit-content();
    justify-content: center;
    align-items: center;
}

@media (min-width: 1024px) {
    .c1 {
        /* grid-template-columns: 1fr 1fr; */
        grid-template-columns: 1fr 1fr;
        justify-content: center;
    }
}

.s1-text {
    background-color: #a2cff9;
    color: #032271
}

.s1h1 {
    font-size: 2.5em;
    line-height: 1.2;
    background: linear-gradient(135deg, #da1b60, #ff8a00);
    /* background: linear-gradient(135deg, #ff8a00, #da1b60); */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.imghero {
    opacity: 1;
    border-radius: 20px;
    height: 180px;
}

@media (min-width: 1024px) {
    .imghero {
        height: 300px;
    }
}

/* sektion 2 */

.s2 {
    background-image: linear-gradient(135deg, #afc2f3 40%, #f3caea 90%);
    /* height: 900px; */
}

@media (min-width: 1024px) {
    .s2 {
        /* height: 700px; */
    }
}

.c2 {
    grid-template-rows: fit-content() fit-content();
    justify-content: center;
    align-items: center;
    text-align: center;
}

.s2h1 {
    font-size: 2.5em;
    line-height: 1.2;
    /* font-size: 2.5vw; */
    /* font-size: clamp(2rem, 3.5vw, 3.4rem); */
    line-height: 1.2;
    color: #0e2a70;

}

.imghero2 {
    border-radius: 20px;
    height: 200px;
    width: 100%;
    max-width: 960px;
    object-fit: cover;
}

/* sektion 3 */

.s3 {
    /* background-image: linear-gradient(135deg, #d9e0f0 40%, #edd9e9 90%); */
    background-image: linear-gradient(135deg, #f4f7fb 40%, #f6e8f3 90%);
    /* height: fit-content; */
    /* border-bottom:1px solid; */
}

@media (min-width: 1024px) {
    .s3 {
        height: 700px;
    }
}

.c3 {
    grid-template-rows: fit-content() fit-content();
    justify-content: center;
    align-items: center;
    text-align: center;
}

.c30 {
    margin: 20px;
    display: grid;
    grid-template-rows: fit-content() fit-content();
    grid-gap: 2em;
    text-align: left;
}

@media (min-width: 1024px) {
    .c30 {
        grid-template-columns: 1fr 1fr;
    }
}

.c31 {
    border-radius: 20px;
    /* background-color: #eceff1; */
    background-color: #fff;
    padding: 20px;
}

.s3h1 {
    font-size: 2.5em;
    line-height: 1.2;
    /* font-size: 2.5vw; */
    /* font-size: clamp(2rem, 3.5vw, 3.4rem); */
    line-height: 1.2;
    color: #0e2a70;

}

.imghero3 {
    border-radius: 20px;
    height: 200px;
    width: 100%;
    max-width: 960px;
    object-fit: cover;
}

/* sektion 4 */

.s4 {
    /* background-image: linear-gradient(135deg, #edf0f6 40%, #eddbe9 90%); */
    /* background-image: linear-gradient(135deg, #afc2f3 40%, #f3caea 90%); */
    /* background-image: linear-gradient(135deg, #afc2f3 40%, #ffffff 90%); */
    background-color: #afc2f3;
    color: #000;

    /* height: 700px; */
}


.imghero4 {
    border-radius: 20px;
    height: 200px;
    width: 100%;
    max-width: 960px;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .imghero4 {
        height: 80%;
        width: 80%;
        /* margin: 40px; */
    }

}

.c4 {
    grid-template-rows: fit-content() fit-content();
    justify-content: center;
    align-items: center;
}

@media (min-width: 1024px) {
    .c4 {
        /* grid-template-columns: 1fr 1fr; */
        /* grid-column-gap: 40px ; */
        grid-template-columns: 1fr 1fr;
        justify-content: center;
    }
}

/* sektion 5 */

.s5 {
    /* background-image: linear-gradient(135deg, #edf0f6 40%, #eddbe9 90%); */
    background-image: linear-gradient(135deg, #f4f7fb 40%, #f6e8f3 90%);
    color: #000;

    /* height: 700px; */
}

.imghero5 {
    border-radius: 20px;
    height: 200px;
    width: 300px;
    max-width: 960px;
    object-fit: cover;

    /* object-position: left top; */
}

@media (min-width: 1024px) {
    .imghero5 {
        height: 90%;
        width: 90%;
        max-height: 600px;
        max-width: 600px;
        /* overflow: hidden; */
        /* object-fit: scale-down; */
        /* width: 80%; */
        /* margin: 40px; */
    }

}

.c5 {
    grid-template-rows: fit-content() fit-content();
    justify-content: center;
    /* align-items: center; */
}

@media (min-width: 1024px) {
    .c5 {
        /* grid-template-columns: 1fr 1fr; */
        /* grid-column-gap: 40px ; */
        grid-template-columns: 1fr 1fr;
        justify-content: center;
    }
}


/* sektion faq */

.sfaq {
    background-image: linear-gradient(135deg, #f4f7fb 40%, #f6e8f3 90%);
}

.sfaqh1 {
    font-size: 2.5em;
    line-height: 1.2;
    color: #0e2a70;
}

.cfaq {}

.frage {
    background-color: #e8eefb;
    font-weight: 600;
    border-radius: 5px;
    padding: 20px;
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.antwort {
    background-color: #fff;
    padding: 20px;

}

.frage::after {
    content: '+';
}

details[open] .frage::after {
    content: '-';
}



/* Media Queries */

/* mobile first 480px bis 768

    /* Tablet */
@media (min-width: 768px) {}

/* Laptop */
@media (min-width: 1024px) {}

/* großer Desktop */
@media (min-width: 1440px) {}