.block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    padding: 0 20px;
    /*background: url(../assets/14674.jpg);*/
}

.block h1 {
    font-size: 3rem;
    margin: 30px 0 20px 0;
    text-transform: uppercase;
}

.block h3 {
    width: 100%;
    font-size: 3rem;
    text-align: left;
    margin: 30px 0 20px 0;
    color: olive;
}

.block p {
    font-size: 2rem;
    padding: 0 20px;
    text-align: justify;
    text-indent: 0;
}

.chart {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    height: auto;
    margin-bottom: 20px;
}

.twoColumns {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border: 4px solid olive;
    border-radius: 4px;
    padding: 20px;
}

.twoColumnsImg {
    width: 50%;
}

.twoColumnsImg img {
    width: 100%;
    height: auto;
}

.twoColumnsTxt {
    flex-direction: column;
    width: 50%;
    display: flex;
    justify-content: flex-start;
}

/* ------------------------------------------ diagram Bar --------------------------------- */
#myChart {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

/* ------------------------------------------------------------------------------- */
.row a {
    padding: 0;
}

@media screen and (min-width: 980px) and (max-width: 1200px) {
    .twoColumnsImg {
        width: 40%;
    }

    .twoColumnsTxt {
        width: 60%;
    }
}

@media screen and (min-width: 600px) and (max-width: 979px) {
    .twoColumnsImg {
        width: 40%;
    }

    .twoColumnsTxt {
        width: 60%;
    }

    .block h3 {
        font-size: 2rem;
    }

    .block p {
        font-size: 1.4rem;
    }
}


@media screen and (min-width: 460px) and (max-width: 599px) {
    .chart {
        width: 96%;
    }

    .twoColumns {
        flex-direction: column;
    }

    .twoColumnsImg {
        width: 100%;
    }

    .twoColumnsTxt {
        width: 100%;
    }

    .block h1 {
        font-size: 2rem;
        text-align: center;
    }

    .block h3 {
        font-size: 1.6rem;
        text-align: center;
    }

    .block p {
        font-size: 1.4rem;
        text-align: justify;
    }
}

@media screen and (min-width: 200px) and (max-width: 459px) {
    .block {
        padding: 8px;
    }

    .chart {
        width: 100%;
    }

    .twoColumns {
        flex-direction: column;
        padding: 2px;
    }

    .twoColumnsImg {
        width: 100%;
    }

    .twoColumnsTxt {
        width: 100%;
    }

    .block h1 {
        font-size: 1.6rem;
        text-align: center;
    }

    .block h3 {
        font-size: 1.4rem;
        text-align: center;
    }

    .block p {
        font-size: 1.2rem;
        text-align: justify;
    }
}