@charset "utf-8";
@import url('/fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #666;
  font: 400 1em/1.3em Verdana, Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 800px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #fff;
  overflow: hidden;
}
p {
  padding-bottom: 1.5rem;
}
h1, h3 {
  color: #253d71;
  text-transform: uppercase;
}
h1 {
  margin: 0 0 1.5rem;
  font-size: 2.00em;
  line-height: 1.2em;
}
h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 0.3rem;
}
h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5em;
  line-height: 1.3em;
  font-weight: 400;
}
.big {
  font-size: 1.25em;
  display: inline !important;
}
h3 strong {
  font-weight: 700;
}
:is(a:link,a:hover,a:visited,a:active){
  color: inherit;
  text-decoration: none;
  display: inline-block;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  padding: 0 0 1.5rem;
  list-style: none;
}
li {
  padding-left: 3.3rem;
}
ul li:before {
  content: "•";
  font-size: 1.5em;
  float: left;
  margin: -1px 0 0 -1.6rem;
}
@-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: 2rem 3.25rem;
}
article {
  padding: 2rem 3.25rem 0;
}
footer {
  padding: 0 3.25rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media only screen and (max-width:799px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  span {
    display: inline-block;
  }
  .hide_m {
    display: none;
  }
}
@media only screen and (max-width:780px) {
  .logo, article, footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .logo {
    display: flex;
    justify-content: center;
  }
  h1 {
    font-size: 1.8em;
  }
}
@media only screen and (max-width:480px) {
  article, footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  li {
    padding-left: 1.6rem;
  }
  h1 {
    font-size: 1.6em;
  }
  h3 {
    font-size: 1.4em;
  }
  footer {
    flex-direction: column;
  }
  footer p {
    width: 100%;
  }
}