* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: 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-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: 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');
}

body {
    color: #000;
    font-family: 'Roboto', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 910px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    background-color: #fff;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

:is(strong, h1, h2, h3) {
    font-weight: 700;
}

h1 {
    margin: 36px 0 1.5rem;
    font-size: 35px;
    line-height: 40px;
    text-align: center;
    color: #00B0F0;
}

h2 {
    font-size: 24px;
    line-height: 28px;
    margin: 1.25rem 0;
}

h3 {
    font-size: 23px;
    margin: 1rem 0 3px;
    line-height: 28px;
}

p {
    margin: 0 0 23px;
    font-size: 18px;
    line-height: 22px;
}

:is(a:link, a:visited, a:active) {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

ul {
    margin: 0 0 25px;
    list-style: none;
}

ul li {
    padding-left: 1.75rem;
    margin-bottom: 4px;
}

ul li:before {
    content: "\2022";
    color: #000;
    float: left;
    font-size: 1.5625rem;
    text-indent: -1.75rem;
}

article {
    padding: 0 60px 2rem;
    position: relative;
}

footer {
    padding: 16px 60px;
    background: #2D94D9;
}

footer p {
    color: #FFF;
}

.ul {
    margin: 0 0 22px;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
}

.ul li {
    padding-left: 1.25rem;
}

.ul li:before {
    content: "...";
    font-size: 20px;
    margin-top: -3px;
    text-indent: -22px;
}

.flex {
    display: flex;
}

.flex p {
    width: 49%;
}

.margin {
    margin: 0 0 36px 25px;
    font-size: 18px;
    line-height: 22px;
}

.top {
    background: #2D94D9;
    margin: 0 -60px;
    padding: 15px 60px 10px;
}

.top p {
    text-align: justify;
    hyphens: auto;
}

.text {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.color {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-right: 60px;
}

.color p {
    color: #00B0F0;
    font-size: 20px;
    line-height: 24px;
}

.content section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.content section ul li {
    padding-left: 3.25rem;
    margin-bottom: 2px;
}

.content section ul li:before {
    text-indent: -3.25rem;
}

.h2 {
    padding-bottom: 18px;
}

p span {
    white-space: nowrap;
}

@media all and (max-width:909px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    :is(p, ul) {
        hyphens: auto;
    }

    article {
        padding: 0 16px;
    }

    footer {
        padding: 16px;
    }

    .width {
        min-width: 75px;
    }

    h1 {
        margin: 1.5rem 0;
        font-size: 1.75rem;
        line-height: 1.3;
    }

    ul li {
        padding-left: 20px;
    }

    ul li:before {
        text-indent: -20px;
    }

    article br {
        display: none;
    }

    .top p {
        text-align: left;
    }

    .color {
        padding-right: 0;
    }

}

@media all and (max-width:660px) {
    .flex {
        display: block;
    }

    .flex p {
        width: 100%;
    }

}

@media all and (max-width:550px) {
    .color {
        flex-direction: column;
        gap: 0;
        padding: 0 0 15px;
    }

    .content section {
        flex-direction: column;
        align-items: flex-start;
    }

    .flex {
        flex-direction: column;
    }

    .text {
        display: block;
    }

    .text p {
        position: static;
    }

    .content section ul li {
        padding-left: 20px;
    }

    .content section ul li:before {
        text-indent: -20px;
    }

    .margin {
        margin-left: 0;
    }

}