@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font: 0.9375em/1.5 "Arial", sans-serif;
    hyphens: auto
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 56.25rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 .625rem;
}

.pt {
    padding-top: .625rem;
}

p span {
    white-space: nowrap
}

.center {
    text-align: center;
}

ul {
    list-style: none;
    margin: 0 0 .937rem;
    padding: 0;
}

ul li {
    padding-left: 1.375rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.375rem;
    font-size: 1rem;
    line-height: 1.6;
}

h1 {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.3;
    margin: .937rem 0;
}

h1 small {
    font-weight: normal;
    font-size: .8em;
    margin: .3rem 0;
    display: block;
}

h2 {
    font-size: 1rem;
}
h2 span {
    font-weight: normal;
}
h3 {
    font-size: 1rem;
    margin: 0 0 1rem
}

article {
    display: flex;
    padding: .625rem 1.25rem;
    column-gap: 1.25rem;
}

ul .no_list:before {
    content: none;
}

@-webkit-keyframes slidy {
0% { left: 0%; }
25% { left: 0%; }
50% { left: -100%; }
75% { left: -100%; }
100% { left: -200%; }
}

@keyframes slidy {
0% { left: 0%; }
25% { left: 0%; }
50% { left: -100%; }
75% { left: -100%; }
100% { left: -200%; }
}
header { overflow: hidden; }
header figure img { width: 33.333333%; float: left; }
header figure { 
  position: relative;
  width:300%;
  margin: 0;
  left: 0;
  text-align: left;
  font-size: 0;
  -webkit-animation-name:slidy;
  -webkit-animation-duration: 18s;
  -webkit-animation-delay: 2s;
  -webkit-animation-iteration-count: infinite;
  animation: 18s slidy infinite; 
}
header,
footer {
    border-bottom: .625rem solid #5BB38F;
}

footer {
    background: #EFF7F4;
    padding: .625rem 1.25rem;
    display: flex;
    column-gap: .625rem;
    align-items: end;
    margin-top: -3rem;
}

.colour {
    color: #5BB38F;
}

.column_left,
footer .column {
    width: 50%;
}

article .column {
    width: 50%;
}

.section {
    padding: .937rem 3.75rem 0;
}

.section span {
    font-size: 1.125rem;
}

footer .column p:nth-last-of-type(1) {
    padding: 0 3.75rem;
}

footer .column {
    margin-top: .937rem;
    padding-bottom: 1.5rem;
}

@media only screen and (max-width: 899px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    .margin {
        margin: 0;
    }

    article {
        display: block;
        padding: .625rem 0;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    article .column {
        width: 100%
    }
}

@media only screen and (max-width: 799px) {
    footer {
        display: block;
        margin: 0;
    }

    .column_left {
        top: 0;
    }

    .section,
    footer .column p:nth-last-of-type(1) {
        padding: 0;
    }

    .column_left,
    footer .column {
        width: auto;
        padding: 0;
    }
}

@media only screen and (max-width: 376px) {
    footer p {
        text-align: center
    }
}