@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''), url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: local(''), url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #231F20;
    font-weight: 400;
}

#wrapper {
    margin: 16px auto;
    border: 1px #231F20 solid;
    max-width: 865px;
    position: relative;
    padding: 40px 76px 40px 35px;
    background-color: #FFFFFF;
    overflow: hidden;
}

header {
    position: relative;
}

.images {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 0 20px;
}

section {
    position: absolute;
    top: 10px;
    right: 118px;
}

section p {
    text-align: center;
    font-size: 22px;
}

footer p {
    padding-bottom: 30px;
}

.justify {
    text-align: justify;
    hyphens: auto;
}

.lila {
    color: #6915A2;
}

.blau {
    color: #a4e6e4;
}

.orange {
    color: #f38a07;
}

.color {
    color: #49289b;
}

.pink {
    color: #b543b2;
}

.green {
    color: #6fc301;
}

.red {
    color: #d92a16;
}

p {
    padding-bottom: 16px;
}

.center {
    text-align: center;
    display: inline-block;
    width: 100%;
}

:is(strong, h1, h2, h3, h4) {
    font-weight: 700;
}

h1 {
    font-size: 22px;
    margin-bottom: 16px;
    line-height: 1.2;
}

h1 small {
    font-weight: 400;
    font-size: 100%;
}

h2 {
    font-size: 25px;
    line-height: 1.2;
    margin-bottom: 70px;
}

h3 {
    font-size: 16px;
}

h4 {
    font-size: 26px;
    line-height: 1.3;
    margin: 50px 0 30px;
    text-align: center;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #231F20;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    color: #0000FF;
    text-decoration: underline;
}

img {
    max-width: 100%;
}

ul {
    margin-bottom: 25px;
    list-style: none;
}

ul li {
    padding-left: 32px;
    position: relative;
    text-align: justify;
    hyphens: auto;
}

ul li:before {
    content: "\2022";
    font-size: 22px;
    position: absolute;
    top: -4px;
    left: 14px;
    font-family: Arial, sans-serif;
}

@media only screen and (max-width:864px) {
    #wrapper {
        border: none;
        padding: 16px;
    }

    .images {
        gap: 16px;
    }

    .images>img {
        max-width: calc(100% - 95px);
    }

    :is(.justify, ul li) {
        text-align: left;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    .center {
        display: inline;
        width: auto;
    }

    :is(p, h1, ul) span {
        white-space: nowrap;
    }
    li br{
        display: none;
    }

}

@media only screen and (max-width:750px) {
    #wrapper {
        padding: 1rem;
    }

    section {
        position: static;
    }

    h2 {
        text-align: center;
        margin-bottom: 15px;
    }

    ul li {
        padding-left: 16px;
    }

    ul li:before {
        left: 0;
    }

}