@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v35-latin-regular.eot');
    src: url('../fonts/open-sans-v35-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v35-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v35-latin-regular.woff') format('woff'), url('../fonts/open-sans-v35-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v35-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v35-latin-700.eot');
    src: url('../fonts/open-sans-v35-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v35-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v35-latin-700.woff') format('woff'), url('../fonts/open-sans-v35-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v35-latin-700.svg#OpenSans') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 25px;
    font-size: 17px;
    color: #231f20;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-weight: 400;
}

#wrapper {
    margin: 1rem auto;
    border: 1px #cbcbcb solid;
    max-width: 908px;
    background-color: #fff;
    overflow: hidden;
}

header {
    position: relative;
}

.title {
    clip-path: polygon(0 0, 100% 0, 100% 53%, 87% 100%, 10% 100%, 0% 50%);
    background: rgba(13, 79, 61, 0.8) none repeat scroll 0 0;
    height: 142px;
    position: absolute;
    bottom: -6px;
    left: 0;
    transform: rotate(1deg);
    width: 100%;
    padding: 1.26rem 1.26rem 1.5625rem;
    color: #FFF;
}

article {
    padding: 32px 50px;
    background: #FFF;
    position: relative;
}

.text-center {
    text-align: center;
}

footer {
    background: #05513f;
    display: flex;
    justify-content: center;
    padding: 20px;
}

footer p {
    font-size: 44px;
    padding: 0 !important;
    line-height: 1.1;
}

footer a {
    color: #fff !important;
}

:is(h1, h2, strong, footer p) {
    font-weight: 700;
}

h1 {
    font-size: 43px;
    line-height: 1.1;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 9;
    transform: rotate(-1deg);
}

h1 :is(span, small) {
    font-weight: 400;
}

h1 span {
    font-size: 75%;
    white-space: normal;
}

h1 small {
    display: block;
}

h2 {
    font-size: 27px;
    line-height: 1.1;
    color: #05513f;
    margin: 1rem 0 0;
}

h3 {
    font-size: 59px;
    line-height: 1.5;
    color: #05513f;
}

h3+p {
    font-size: 28px;
    line-height: 1.2;
}

p {
    padding-bottom: 0.9375rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #231f20;
    white-space: nowrap;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

ul {
    margin: 0 0 2rem;
    list-style: none;
}

ul li {
    padding-left: 20px;
}

ul li:before {
    content: "\2022";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 27px;
    text-indent: -20px;
    margin: 2px 0 0;
    color: #05513f;
}

@keyframes slidy {
    0% {
        left: 0%;
    }

    45% {
        left: 0%;
    }

    50% {
        left: -100%;
    }

    95% {
        left: -100%;
    }

    100% {
        left: -200%;
    }
}

header .slider {
    overflow: hidden;
}

header .slider div img {
    width: 33.33333333333333%;
    float: left;
}

header .slider div {
    position: relative;
    width: 300%;
    margin: 0;
    left: 0;
    -webkit-animation-duration: 2s;
    -webkit-animation-name: slidy;
    -webkit-animation-delay: 1s;
    -webkit-animation-iteration-count: infinite;
    animation: 10s slidy infinite;
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media only screen and (max-width:907px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    span {
        white-space: nowrap;
    }
}

@media only screen and (max-width:750px) {
    article {
        padding: 0.9375rem 1rem 0;
    }

    .title {
        clip-path: none;
    }

    h1 {
        font-size: 34px;
        transition: none;
    }

    h3 {
        font-size: 30px;
    }

    footer {
        padding: 1rem;
    }

    footer p {
        font-size: 30px;
    }
}

@media only screen and (max-width:690px) {
    .title {
        position: static;
        transform: none;
        background: #0B503E;
        height: auto;
    }

    h1 {
        transform: none;
        font-size: 32px;
    }
}

@media only screen and (max-width:480px) {
    ul {
        margin-left: 0;
    }

    h3+p {
        font-size: 21px;
    }

    footer p {
        font-size: 20px;
    } }