

/* ==========================================================================
   Stholz Planung Flyer
   ========================================================================== */

* {
    box-sizing: border-box;
}

/* Typo */

body, html {
    font-family: "Helvetica" , Arial;
    font-size: 21px;
}

/* Helper */

.inline-block {
    display: inline-block;
}

.text {
    max-width: 720px;
}


/*Links */
a {
    color: #000;
    text-decoration: underline;
}

a:hover {

    color: #97c4aa;

}

/* Colors */

.green, .green__title {
    color: #97c4aa;
}

.green-box {
    background: #97c4aa;
    color: #000;
    margin-top: 0;
}

/*Logo*/

.logo__image {
    width: 160px;
}


/* Intro */

.intro__text {
    padding-top: 100px;
    font-size: 45px;
    font-weight: bold;
    padding-bottom: 100px;
    line-height: 1.2;
}

/* Info */

.info table td {
    min-width: 120px;
    padding: 5px;

}

td:nth-child(2) {
    text-align: right;
}

.info table {
    margin-left: -5px;
    margin-right: -5px;
}

table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td {
    border-top: none !important;
}

.info__image {
    max-width: 100%;
}

.info__box {
    margin-bottom: 30px;
    margin-top: 30px;
}

.green-box {
    padding: 20px 10px;
}

.info__text {
    margin-top: 30px;
}

/* Images */

.images {
    margin-top: 60px;
    margin-bottom: 60px;
}

.image__box {
    margin-bottom: 30px;

}

.image {
    max-width: 100%;
    height: auto;
}


/* Footer */
footer p {
    margin-bottom: 0;
}


/* Mobile Styles */

@media only screen and (min-width : 480px) {

    .intro__text {
        font-size: 55px;
    }
}

@media only screen and (min-width : 768px) {

    body, html {
        font-size: 18px;
    }

    .logo__image {
        width: 200px;
    }

    .intro__text {
        font-size: 70px;
    }


    .image-1 {
        height: auto;
    }
}













