:root {
    --color-main: #993438; 
    --color-blue: #147CB1; 
    --color-lightblue: #3ABFF0; 
    --color-green: #279b0f;
}

* {
    margin: 0 auto;
}
    

body {
    color: #999;
	font-size: 1.2em;
    font-weight: 400;
    font-family: Arial, Helvetica, sans-serif;
    /* font-family: 'Roboto Slab', Georgia, serif;  */
    /* font-family: 'Shadows Into Light', cursive; */
}

.wrapper {
    width: 50%;
}

@media only screen and (max-width: 800px) {
        .wrapper {
            width: 80%;
        }
    }



header {
    margin: 0;
}



section {
    margin-top: 100px !important;
    text-align: center;
}



h1, h2 {
    color: var(--color-blue);
}

h1, h2, h3, h4 {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}


h3 {
    font-size: 0.8em;
    font-weight: 600;
}



.subtitle {
    margin: 0 auto;
    width: 50%;
    line-height: 1.5em;
    margin-bottom: 50px;
    font-weight: 600;
}

@media only screen and (max-width: 800px) {
    .subtitle {
        width: 90%;
    }
}



p {
    margin: 10px;
}

a {
    text-decoration: none;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-weight: 800;
}



.blue {
    color: var(--color-blue);
}

.lightblue {
    color: var(--color-lightblue);
}



.txt-400 {
    font-weight: 400;
}

.txt-600 {
    font-weight: 600;
}

.txt-900 {
    font-weight: 900;
}

.center-txt {
    text-align: center;
}

.center-btn {
    margin: 50px auto;
    text-align: center;
}




button {
    /* background: rgb(48, 183, 21); */
    background: var(--color-green);
    color: #fff;
    margin: 10px;
    padding: 15px;
    font-size: 0.8em;
    border-radius: 5px;
    cursor: hand;
}

button:hover {
    background: #2ba812;
    transition: all 0.3s ease-out;
    border-style: solid 1px black;
}







.logo {
    max-width: 70%;
}

    @media only screen and (max-width: 800px) {
        .logo {
            width: 100% !important;
            /* max-width: 100% !important; */
            margin: 0 auto;
        }
    }



.hero-div {
    height: 500px;
    background-image: url(/img/hero-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-top: 7px solid var(--color-blue);
    border-bottom: 7px solid var(--color-blue);
}

@media only screen and (max-width: 800px) {
    .hero-div {
    height: 300px;
    }
}


/* .hero {
    width: 100%;
    border-top: 7px solid var(--color-blue);
    border-bottom: 7px solid var(--color-blue);
} */




@media only screen and (max-width: 800px) {
    img {
        float: none;
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 60%;
        max-width: none;
    }
}


.lernen ul {
    text-align: left !important;
}


.lernen ul li {
    padding: 5px;
}




.symbol {
    max-width: 50%;
}

    @media only screen and (max-width: 800px) {
        .symbol {
            max-width: 100%;
        }
    }


input {
    margin: .4rem;
}



.checkliste {
    margin-top: 50px;
    padding: 10px;
    border: 2px solid var(--color-lightblue);
    border-radius: 3px;
    width: 70%;
    /* background-color: rgba(201, 201, 201, 0.4); */
    background-color: rgb(220, 241, 255);
    color: #777;
}

    @media only screen and (max-width: 800px) {
        .checkliste {
        width: 90%;
        }
    }

.checkbox {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    text-align: left;
}




.kostenliste ul {
    list-style: none;
}





footer {
    background-color: #444444;
    display: flex;
    justify-content: center;
    padding: 5px;
    border-top: 7px solid var(--color-blue);
}



footer ul li {
    list-style: none;
    float: left;
    text-align: center;
    padding: 10px;
    font-size: 0.8em;
    margin: 0 auto;
}

footer ul li a {
    text-decoration: underline;
    color: #888;
    text-transform: none;
    font-weight: 400;
}