@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: url('../images/bg.jpg') bottom left no-repeat, #fff;
    overflow: hidden;
}
li a.color{
    color: #16203C;
    text-decoration: underline;
}
p {
    padding-bottom: 1rem;
}
.button {
    text-align: center;
    position: absolute;
    bottom: 7rem;
    right: 1.5rem;
}
.button a {
    display: inline-block;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    padding: 2rem 1rem 1rem;
    color: #FFF !important;
    background: #16203C;
    text-transform: uppercase;
    font-size: 1.3em;
    line-height: 1.3em;
}
h1 {
    margin: 0 0 0.8rem;
    font-size: 2.411em;
    line-height: 1em;
    color: #16203C;
}
h2 {
    font-size: 1.2em;
    line-height: 1.3em;
    margin-bottom: 0.25rem;
    color: #16203C;
}
h2.big {
    font-size: 1.4em;
}
h2.big+p {
    width: 79.5%;
}
h3 {
    color: #16203C;
    font-size: 1.532em;
    line-height: 1.3;
    margin-bottom: 0.8rem;
}
:is(a:link, a:hover, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 0.8rem;
    list-style: none;
}
li {
    padding-left: 0.65rem;
}
li:before {
    content: "•";
    display: inline-block;
    font-size: 0.7em;
    position: relative;
    float: left;
    margin: 0 0 0 -0.65rem;
}
@-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;
    border-top: 7px solid #E28944;
}
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 {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 1.25rem;
}
.flex {
    display: flex;
    justify-content: space-between;
}
article {
    padding: 1rem 1rem 3rem 1.75rem;
}
footer {
    padding: 1rem 2rem 1.25rem;
}
.social {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}
footer p {
    color: #fff;
    font-size: 1.1em;
    line-height: 1.3;
    text-align: right;
}
.bg {
    background: #EF5C1A;
    color: #fff;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    font-size: 1.2em;
    flex: 1;
}
.bg small {
    font-size: 0.75em;
    display: block;
}
article>p:first-of-type {
    display: flex;
    gap: 0.5rem;
}
@media only screen and (max-width: 798px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    .button,.txt{
        position: static;
    }
    p :is(a, span) {
        display: inline-block;
    }
    .hide_m {
        display: none;
    }
    .logo {
        justify-content: center;
    }
    .txt {
        display: flex;
        justify-content: center;
        padding-bottom: 0.8rem;
    }
    article {
        padding-bottom: 0;
    }
    article>p:first-of-type {
        flex-direction: column;
    }
    footer p {
        text-align: center;
    }
    .social {
        justify-content: center;
    }
}
@media only screen and (max-width: 780px) {
    .flex {
        flex-direction: column;
    }
    .flex div {
        width: 100% !important;
    }
    .right {
        margin: 0 -1rem 1rem -1rem;
    }
}
@media only screen and (max-width:480px) {
    article {
        padding: 0.5rem 1rem 0;
    }
    footer {
        padding: 0.8rem 1rem 1.25rem;
    }
}