@charset "utf-8";
/* Standard */
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 0.938em/1.5em Arial, "Segoe UI", Calibri, sans-serif;
    color: #54595F;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 700px;
    border: solid 1px #A1B352;
    background: #fff;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
    hyphens: auto;
}
h1,h2,h3,h4{
    color: #A1B352;
}
h1 {
    margin: 0rem 0rem 1rem;
    font-size: 1.892em;
    line-height: 1.1em;
}
h1 small {
    font-size: 0.7em;
}
h2,h3{
    font-size: 1.250em;
    line-height: 1.3;
    padding-bottom: 0.7rem;
    text-align: center;
}
h4{
    font-size: 1em;
    line-height: 1.3;
}
h5{
    text-align: center;
    font-size: 1em;
    line-height: 1.3;
}
.center{
    text-align: center;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #A1B352;
    text-decoration: underline;
}
ul {
    padding: 0rem 0rem 1rem 0rem;
    list-style: none;
}
li {
    padding: 0 0 0 16px;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: 0 0 0 -16px;
    color: #A1B352;
}
@-webkit-keyframes slidy {
0% { left: 0%; }
16.6% { left: 0%; }
33.2% { left: -100%; }
49.8% { left: -100%; }
66.4% { left: -200%; }
83% { left: -200%; }
100% { left: -300%; }
}

@keyframes slidy {
0% { left: 0%; }
16.6% { left: 0%; }
33.2% { left: -100%; }
49.8% { left: -100%; }
66.4% { left: -200%; }
83% { left: -200%; }
100% { left: -300%; }
}
header section { overflow: hidden; }
header section figure img { width: 25%; float: left; }
header section figure { 
  position: relative;
  width:400%;
  margin: 0;
  left: 0;
  text-align: left;
  font-size: 0;
  -webkit-animation-name:slidy;
  -webkit-animation-duration: 15s;
  -webkit-animation-delay: 5s;
  -webkit-animation-iteration-count: infinite;
  animation: 15s slidy infinite; 
}
.logo{
    padding: 1rem 1.5rem;
}
article {
    padding: 1rem 1.5rem;
}
footer {   
   width: 100%;
  position: relative;
  padding-bottom: 42.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
footer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
img {
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width:699px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
    }
    p :is(span, a) {
        display: inline-block;
    }
}