@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.4;
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

#wrapper {
    position: relative;
    max-width: 950px;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
    padding: 30px 80px;
}

p {
    margin: 0 0 16px;
    text-align: justify;
    hyphens: auto;
}

span {
    white-space: nowrap;
}

.nomargin {
    margin: 0
}

ul {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

ul li {
    padding: 0 0 8px 50px
}

ul li:before {
    content: "";
    float: left;
    position: relative;
    width: 21px;
    height: 21px;
    background: url(../images/arrow.jpg) no-repeat;
    background-size: contain;
    margin-left: -30px;
    top: 3px;
}

hr {
    border: none;
    border-bottom: 1px solid #000;
}

h1 {
    font-size: 27px;
    line-height: 1.3;
    margin: 50px 0;
    color: #E26C09;
    text-align: center;
}

h1 span {
    font-weight: normal;
}

h2 {
    color: #00AFEF;
    font-size: 1.1rem;
    margin: 0 0 20px;
}

h3 {
    font-size: 1.1rem;
    text-decoration: underline;
    margin: 0 0 10px;
}

.center {
    margin: 8px 0 0;
    font-size: 14px
}

.center span {
    margin: 0 10px 0 0
}

.center span:last-of-type {
    margin: 0
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.mail {
    color: #0000FF;
}

header {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
}

.little_image {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    margin: 0;
    position: relative;
    top: -40px;
    margin-right: 120px
}

footer {
    display: flex;
    justify-content: flex-end;
    padding: 0 50px 0 0
}

@media only screen and (max-width: 949px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        text-align: left;
        margin: 0 0 1rem;
    }

    .little_image {
        justify-content: center;
        position: static;
        margin: 16px 0;
    }
}

@media only screen and (max-width: 759px) {
    .center {
        text-align: center;
    }
}

@media only screen and (max-width: 480px) {
    header {
        justify-content: center
    }

    ul li {
        padding-left: 30px
    }

    ul li:before {
        margin-left: -20px;
    }

    footer {
        justify-content: center;
        padding: 0
    }
}
