@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Sofia Pro';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Sofia Pro Regular Az.otf');
}
@font-face {
    font-display: swap;
    font-family: 'Sofia Pro';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/Sofia Pro Semi Bold Az.otf');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #424242;
    font: 400 1em/1.5 "Sofia Pro", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 900px;
    margin: 1rem auto;
    background-color: #fff;
    overflow: hidden;
}
p {
    margin-bottom: 1rem;
}
h1 {
    margin: 1.625rem 0 -0.375rem;
    font-size: 1.5em;
    line-height: 1.5;
    text-align: center;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1.125em;
    line-height: 1.4;
    margin-bottom: 0.5em;
}
h1, h2 {
    color: #0420cc;
}
h1, h2, strong {
    font-weight: 600;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #0420cc;
    text-decoration: underline;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0;
    margin-bottom: 1rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
ul li:before {
    content: "\2022";
    font-size: 1.3em; 
    float: left;
    margin: -5px 0 0 -1rem;
    color: #B1B0B1;
}
@-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%; }
}
header { 
    overflow: hidden; 
    margin-bottom: 0.375rem;
}
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; 
}
main {
    border: 1px solid #D4D4D4;
    padding: 1rem;
}
hr {
    margin: 2rem -1rem 1rem;
    border: none;
    border-bottom: 1px solid #D4D4D4;
}
@media only screen and (max-width: 899px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
}