@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: rgb(51, 51, 51);
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    background: #ddd
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 8px #666;
}

h1 {
    font-size: 33px;
    line-height: 1.2;
}

h1 small {
    font-size: 1rem
}

h2 {
    font-size: 21px;
    margin: 0 0 8px
}

h3 {
    font-size: 25px;
    margin: 0 0 2rem
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.link,
a.tel {
    text-decoration: 1px dotted underline #ffdb00;
}

a.link:hover,
a.tel:hover {
    color: #ffdb00;
    text-decoration: underline 1px solid
}

a.button {
    display: block;
    width: fit-content;
    font-size: 17px;
    line-height: 26px;
    background-color: #ffdb00;
    border: 2px solid #ffdb00;
    padding: 8px 26px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    margin: 23px 0 53px;
    border-radius: 1px;
    font-weight: 600;
}

a.button:hover {
    background-color: #333;
    border: 2px solid #333;
    color: #ffdb00
}

p {
    margin: 0 0 26px;
    text-align: justify
}

span,
.nowrap {
    white-space: nowrap
}

hr {
    box-sizing: content-box;
    height: 0;
    border: none;
    margin: 26px 0;
    border-top: 3px solid #FFE300;
}

ul {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
}

ul li {
    padding-left: 20px
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -20px;
    font-size: 24px;
    line-height: 1;
}

header {
    position: relative
}

.logo {
    position: absolute;
    top: 0;
    left: 3rem
}

article {
    padding: 1.5rem 3rem 0
}

footer {
    padding: 0 3rem 10px
}

.margin {
    display: inline-block;
    margin: 0 20px;
}

@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem;
        text-align: left;
    }

    h1 {
        font-size: 28px;

    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 21px;
    }

    article {
        padding: 1rem 0 0
    }

    footer {
        padding: 0
    }

    footer p:last-of-type {
        margin: 0
    }

    .br {
        display: none
    }

    a.button {
        margin: 20px 0 40px
    }
}

@media only screen and (max-width: 475px) {
    a.button {
        margin: 20px auto 40px
    }

    h1,
    h3,
    footer,
    footer p {
        text-align: center
    }

}