@charset "utf-8";
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #333333;
  font: 1em/1.43 Arial, sans-serif;
  background: linear-gradient(180deg, rgba(239, 239, 239, 0.3) 300px, rgba(239, 239, 239, 1) 800px) fixed, url('../images/bg.jpg') no-repeat top center fixed;
}
#wrapper {
  position: relative;
  max-width: 900px;
  min-width: 250px;
  margin: 1rem auto;
  overflow: hidden;
}
p {
  padding-bottom: 0.75rem;
}
p, li {
    hyphens: auto;
}
h1 {
  margin: 0;
  font-size: 1.333em;
  line-height: 1.3;
}
h2 {
  font-size: 1.125em;
  line-height: 1.3em;
  padding: 0.5rem 1rem;
  background: #000;
  background: #f5f5f5;
}
h1, h2 {
    color: #1e93d2;
}
:is(a:link, a:visited, a:hover, a:active) {
  color: #1e93d2;
  text-decoration: underline 1px dotted;
}
a.under{
  color: #000;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  padding: 0;
  list-style: none;
}
li {
  padding-left: 2.125rem;
}
ul li:before {
  content: "\2022";
  font-size: 1.3em;
  float: left;
  margin: -1px 0 0 -1.125rem;
}
@-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 {
  overflow: hidden;
  border-radius: 3px;
  background: transparent !important;
}
header figure img {
  width: 25%;
  float: left;
}
header 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;
}
section, header {
  background: #fff;
  border-radius: 5px;
  margin-bottom: 0.75rem;
}
:is(section, footer) div {
  padding: 0.75rem 1rem 1rem;
}
footer p:last-of-type {
  padding: 0;
}
.link {
    text-align: center;
}
.link a {
    display: inline-block;
    margin: 1.625rem 0 3rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.5s;
    border-radius: 5px;
    border: 2px solid #0085cd;
    background-color: #0085cd;
    color: #fff;
    font-size: 1.063rem;
    line-height: 1.5;
    padding: 0.5rem 6rem;
}
.link a:hover {
    color: #0085cd;
    background-color: #fff;
}
@media only screen and (max-width: 899px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    padding: 0.5rem;
  }
  p, li {
    hyphens: auto;
  }
  .logo {
    display: flex;
    justify-content: center;
  }
}
@media only screen and (max-width: 480px) {
    li {
        padding-left: 1.25rem;
    }
}
@media only screen and (max-width: 400px) {
    .link a {
        padding: 0.5rem 2rem;
    }
}