@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/noto-sans-v42-latin-regular.eot');
    src: url('../fonts/noto-sans-v42-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v42-latin-regular.woff2') format('woff2'), url('../fonts/noto-sans-v42-latin-regular.woff') format('woff'), url('../fonts/noto-sans-v42-latin-regular.ttf') format('truetype'), url('../fonts/noto-sans-v42-latin-regular.svg#NotoSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/noto-sans-v42-latin-700.eot');
    src: url('../fonts/noto-sans-v42-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v42-latin-700.woff2') format('woff2'), url('../fonts/noto-sans-v42-latin-700.woff') format('woff'), url('../fonts/noto-sans-v42-latin-700.ttf') format('truetype'), url('../fonts/noto-sans-v42-latin-700.svg#NotoSans') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Noto Sans', "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 60rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid .062rem #000;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    white-space: nowrap;
    text-decoration: none;
}

p {
    margin: 0 0 1rem;
}

h1 {
    color: #009ee0;
    font-size: 2rem;
    line-height: 1.2;
}

h2 {
    color: #009ee0;
    padding: 1.875rem 0 1rem;
    font-size: 1.75rem;
    line-height: 1.2;
}

ul {
    list-style: none;
    margin: 0 0 1rem;
}

ul li {
    padding-left: 1.375rem;
}

ul li:before {
    content: "\2022";
    float: left;
    font-family: "Arial";
    margin-left: -1.375rem;
    font-size: 1.375em;
    line-height: 1.1;
}


header {
    padding: 1.25rem 1.875rem;
    display: flex;
}

.section {
    background-color: #c8e3f2;
    margin: 0 -1.875rem;
    padding: 1.875rem 1.875rem .875rem;
}

.section h2 {
    padding-top: 0;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 3rem;
}

.flex div {
    flex: 0 0 17rem;
}

.flex div strong {
    color: #009ee0;
}

.flex div span {
    display: inline-block;
}

.list>div {
    padding: 0 0 1rem 5rem;
    position: relative;
}

.list>div::before {
    content: url("../images/icon.png");
    position: absolute;
    top: 0;
    left: 0;
}

.button {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem 1rem;
}

.button a {
    padding: 6px 20px;
    background-color: #fabb00;
    color: #fff;
    transition: .2s;
}

.button a:hover {
    background-color: #009ee0;
}

article {
    padding: 0 1.875rem;
}

footer {
    padding: 1rem 1.875rem;
}

@media only screen and (max-width: 59.937rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 50rem) {
    header {
        justify-content: center;
    }

    .flex {
        display: block;
        margin-bottom: 1.5rem;
    }

    h1 {
        font-size: 1.7rem;
        padding-bottom: 1.25rem;
    }

    h2 {
        padding: 1rem 0 1rem;
        font-size: 1.4rem;
    }
}

@media only screen and (max-width: 35rem) {
    header {
        padding: 1.25rem 1rem;
    }

    article {
        padding: 0 1rem;
    }

    footer {
        padding: 1rem;
    }

    .flex {
        text-align: center;
    }

    .list>div {
        padding: 0 0 .5rem 0;
    }

    .list>div::before {
        display: none;
    }
}