@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #535656;
    font: 1.25em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 3rem;
    font-size: 2em;
    line-height: 1.1em;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1.25em;
    line-height: 1.3em;
    margin-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
a.underline, h2, ul li::before {
    color: #12A77F;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 2rem;
    list-style: none;
}
li {
    padding-left: 3rem;
}
ul li:before {
    content: "\2010";
    font-size: 1em;
    font-weight: 700;
    float: left;
    margin: -1px 0 0 -1.5rem;
}
@-webkit-keyframes slidy {
0% { left: 0%; }
18% { left: 0%; }
36% { left: -100%; }
54% { left: -100%; }
62% { left: -200%; }
85% { left: -200%; }
100% { left: -300%; }
}

@keyframes slidy {
0% { left: 0%; }
18% { left: 0%; }
36% { left: -100%; }
54% { left: -100%; }
62% { left: -200%; }
85% { left: -200%; }
100% { left: -300%; }
}
.slider { overflow: hidden; }
.slider figure img { width: 25%; float: left; }
.slider figure { 
  position: relative;
  width:400%;
  margin: 0;
  left: 0;
  text-align: left;
  font-size: 0;
  -webkit-animation-name:slidy;
  -webkit-animation-duration: 30s;
  -webkit-animation-delay: 5s;
  -webkit-animation-iteration-count: infinite;
  animation: 30s slidy infinite; 
}
main {
    padding: 2rem 4rem;
}
article h2:first-of-type {
    border: none;
}
.logo {
    display: flex;
    padding: 2rem 0;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem 3rem;
    flex-wrap: wrap;
}
figure {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}
footer p {
    color: #061F42;
}
footer p img {
    vertical-align: -4px;
    gap: 0.125rem;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    .logo {
        justify-content: center;
    }
    footer p {
        text-align: center;
    }
}
@media only screen and (max-width:780px) {
    main {
        padding: 1rem 2rem;
    }
    h1 {
        font-size: 1.75em;
    }
}
@media only screen and (max-width:480px) {
    body {
        font-size: 1.125em;
    }
    main {
        padding: 1rem;
    }
    li {
        padding-left: 1.5rem;
    }
    h1 {
        font-size: 1.5em;
    }
    h1 + h2 {
        padding-top: 0;
    }
}