@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em 'Calibri', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 600px;
    margin: 1rem auto;
    border: solid 10px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
p a.ins{
    text-decoration: underline;
}
h1, h3, h3+p {
    text-align: center;
    color: #FFF;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 2.5em;
    line-height: 1.1;
    position: absolute;
    top: 10rem;
    left: 7rem;
    text-align: center;
}
h1 span {
    text-transform: uppercase;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
h3 {
    font-size: 1.5em;
    line-height: 1;
    margin-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #FFF;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
ul li {
    padding: 0 0 0.2rem 1.5rem;
}
ul li:before {
    content: url('../images/icon1.jpg');
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1.5rem;
}
ul.icon li:before {
    content: url('../images/icon2.jpg');
}
article {
    border-top: 10px solid #186E75;
    border-bottom: 10px solid #186E75;
    padding: 1rem 1rem 0;
    position: relative;
}
.box {
    background: #13A69D;
    padding: 1rem 1rem 0;
    position: absolute;
    top: 0;
    right: 0;
}
@media only screen and (max-width: 599px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    h1{
        color: #000;
        margin: 1rem;
    }
    .box{
        margin: 0 -1rem;
    }
    h1, .box{
        position: static;
    }
    p :is(a, span) {
        display: inline-block;
    }
}
@media only screen and (max-width: 480px) {
    h1{
        font-size: 1.5em;
    }
}