@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v32-latin-regular.eot');
    src: url('../fonts/roboto-v32-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v32-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v32-latin-regular.woff') format('woff'), url('../fonts/roboto-v32-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v32-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v32-latin-700.eot');
    src: url('../fonts/roboto-v32-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v32-latin-700.woff2') format('woff2'), url('../fonts/roboto-v32-latin-700.woff') format('woff'), url('../fonts/roboto-v32-latin-700.ttf') format('truetype'), url('../fonts/roboto-v32-latin-700.svg#Roboto') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #000;
}

#wrapper {
    margin: 1rem auto;
    max-width: 960px;
    background: #fff;
    border: solid thin #cbcbcb;
}

article {
    padding: 10px 60px;
}

article p {
    margin: 0 0 20px;
    text-align: justify;
    hyphens: auto;
}

footer {
    padding: 26px 63px;
    background: url(../images/background.jpg) no-repeat top right;
    font-size: 14px;
}

footer :is(p, a) {
    color: #FFF !important;
}

.span {
    background: #FFFF00;
    padding: 1px;
}

.flex {
    position: relative;
    padding: 0 0 0 139px;
}

:is(h1, h3, strong) {
    font-weight: 700;
}

h1 {
    font-size: 30px;
    margin: 0 0 25px;
    line-height: 1.2;
    color: #343b48;
}

:is(h2, h3) {
    line-height: 1.2;
    margin: 0 0 16px;
}

h2 {
    font-size: 18px;
    font-weight: 400;
    color: #202d41;
}

h3 {
    font-size: 16px;
    position: absolute;
    top: 0;
    left: 0;
}

ul {
    margin: 0 0 33px;
}

ul li {
    list-style: none;
    padding-left: 32px;
    font-size: 17px;
    line-height: 24px;
}

ul li:before {
    font-size: 20px;
    position: relative;
    top: -3px;
    float: left;
    content: "\25A0";
    text-indent: -30px;
    color: #282d37;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
}

@media screen and (max-width: 959px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(p, ul) {
        hyphens: auto;
        text-align: left !important;
        text-wrap: pretty;
    }

    span {
        white-space: nowrap;
    }

    .mobile {
        display: none;
    }
}

@media screen and (max-width: 760px) {
    :is(article, footer) {
        padding: 1rem;
    }

    h1 {
        font-size: 26px;
    }
}

@media screen and (max-width:480px) {
    .flex {
        padding: 0;
    }

    h3 {
        position: static;
        margin: 0;
    }

    ul li {
        padding-left: 20px;
    }

    ul li:before {
        text-indent: -20px;
    }
}