* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Roboto", Arial, sans-serif;
    color: #333;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.5;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    border: 1px solid #cfcfcf;
    background-color: #fff;
    overflow: hidden;
}

#wrapper .img {
    position: absolute;
    bottom: 5%;
    right: 0;
}

#wrapper .big {
    font-size: 20px;
    margin-bottom: 5px;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .logo {
    padding: 5%;
    background: #EEEEEE;
    display: flex;
    justify-content: end;
}

#wrapper .logo p {
    margin: 0;
}

#wrapper article {
    padding: 0 5%;
}

#wrapper footer {
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0% 100%);
    background: #006D66;
    padding: 8% 5% 0;
}

#wrapper footer h3 {
    color: #fff;
}

#wrapper .contact {
    padding-right: 315px;
    position: relative;
}

#wrapper footer p {
    color: #fff;
}

#wrapper .button {
    position: absolute;
    top: 0;
    right: 0;
}

#wrapper .button a {
    display: inline-block;
    padding: 10px 48px;
    background: #005555;
    font-family: "Merriweather", serif;
    font-size: 13px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.15);
}

#wrapper .bottom {
    background: #005555;
    padding: 4% 6%;
    margin: 0 -6%;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper p.bg {
    margin: 0 -6% 5%;
    background: #EEEEEE;
    padding: 5% 6%;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 15px 0 10px;
    font-size: 30px;
    font-weight: 400;
    font-family: "Merriweather", serif;
    color: #006c66;
}

#wrapper h3 {
    padding: 10px 0 5px;
    font-size: 18px;
    font-weight: 400;
    font-family: "Merriweather", serif;
    color: #006c66;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #fff;
    text-decoration: none;
}

#wrapper article a {
    color: #333 !important;
}

#wrapper ul {
    margin-bottom: 15px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 18px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    font-size: 20px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 2px;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 899px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .logo a {
        max-width: calc(100% - 170px);
        display: inline-block;
    }
}

@media (max-width: 765px) {
    #wrapper .contact {
        padding-right: 0;
    }

    #wrapper .button {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    #wrapper .img {
        position: static;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 615px) {
    #wrapper footer {
        padding-top: 5%;
        clip-path: none;
    }

    #wrapper h1 {
        font-size: 26px;
    }

    #wrapper .logo {
        justify-content: center;
    }

    #wrapper .logo a {
        max-width: 100%;
    }

    #wrapper .bottom {
        display: flex;
        justify-content: center;
    }
}