* {
    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 .color {
    color: #006c66;
}

#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% 5%;
    background: #EEEEEE;
}

#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: 15px 36px;
    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: 30px -6% 0;
}

#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: 18px 0 18px;
    font-size: 33px;
    font-weight: 400;
    color: #006c66;
    font-family: "Merriweather", Times, serif;
}

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

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

#wrapper a:hover ins {
    text-decoration-thickness: 2px;
}

#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;
    color: #006c66;
}

#wrapper .ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#wrapper .ul li {
    width: 32%;
    padding-left: 43px;
    margin-bottom: 17px;
}

#wrapper .ul li:before {
    content: url(icon1.jpg);
}

#wrapper .ul li:nth-of-type(2):before {
    content: url(icon2.jpg);
}

#wrapper .ul li:nth-of-type(3):before {
    content: url(icon3.jpg);
}

#wrapper .ul li:nth-of-type(4):before {
    content: url(icon4.jpg);
}

#wrapper .ul li:nth-of-type(5):before {
    content: url(icon5.jpg);
}

#wrapper .ul li:nth-of-type(6):before {
    content: url(icon6.jpg);
}

#wrapper .ul li:nth-of-type(7):before {
    content: url(icon7.jpg);
}

#wrapper .ul li:nth-of-type(8):before {
    content: url(icon8.jpg);
}

#wrapper .ul li:nth-of-type(9):before {
    content: url(icon9.jpg);
}

#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 .ul li {
        width: 48%;
    }

    #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 .ul li {
        width: 100%;
    }

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

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

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

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