﻿:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    line-height: 1.125rem;
    font-size: 14px;
    font-family: Arial, sans-serif;
    color: #000;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 950px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    padding: 1rem;
    background-color: #fff;
}

header {
    margin: 0;
}

article {
    margin: 1rem 0 0;
}

footer {
    margin: 0;
}

:is(strong, h1, h2, h3) {
    font-weight: 700;
}

h1 {
    margin: 1rem 0;
    font-size: 28px;
    line-height: 1.2;
    text-align: left;
    font-weight: 400;
    color: #000;
}

h2 {
    font-size: 14px;
    margin: 1rem 0;
    line-height: 20px;
}

h3 {
    font-size: 0.8125rem;
    margin: 1rem 0;
    line-height: 1.125rem;
}

p {
    margin: 0 0 1rem;
    text-align: justify;
    hyphens: auto;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #667273;
    white-space: nowrap;
    text-decoration: none;
}
.font{font-size:110%;}
.color{color: #667273;}
img {
    max-width: 100%;
}

ul {
    margin: 0 0 1rem 20px;
    list-style: none;
}

ul li {
    padding-left: 1.125rem;
}

ul li:before {
    content: "\2022";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 20px;
    text-indent: -1.125rem;
}

.button {
    display: flex;
    margin: 25px 0;
}

.button a {
    display: inline-block;
    padding: 10px 1rem;
    background: #0091A4;
    color: #fff !important;
    text-align: center;
    border-radius: 5px;
    position: relative;
}

.button a:hover {
    opacity: 0.9;
}

@media all and (max-width:949px) {
    #wrapper {
        margin: 0 auto;
        border: none;
        hyphens: auto;

    }

    p {
        text-align: left;
    }

    br {
        display: none;
    }

    footer br {
        display: inline;
    }
}