@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    font-size: 1rem;
}
body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}
#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 0.0625rem #000;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
a:hover {
    text-decoration: underline;
}
.nowrap {
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
p {
    margin: 0 0 1rem
}
span {
    white-space: nowrap
}
ul {
    list-style: none;
    margin: 0.875rem 0;
    padding: 0;
}
ul li {
    padding-left: 2rem
}
ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1rem;
    font-size: 1.375rem;
    line-height: 1.1;
}
h1 {
    text-align: center;
    font-size: 2.125rem;
    line-height: 1.1em;
    color: #254F9D;
    font-weight: 400;
    margin: 1rem 0;
}
h2 {
    font-size: 0.875rem;
    margin: 0 0 0.625rem
}
header {
    padding: 2rem;
    display: flex;
}
.slider {
    position: relative;
    display: block;
    margin: 0 0 1.25rem;
    border-top: 0.0625rem solid #e5e5e5;
    border-bottom: 0.0625rem solid #e5e5e5;
}
.slider>img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: imageAnimation 24s linear infinite 0s;
}
.slider>img:nth-of-type(1) {
    position: static;
    opacity: 1;
}
.slider>img:nth-of-type(2) {
    animation-delay: 6s;
}
.slider>img:nth-of-type(3) {
    animation-delay: 12s;
}
.slider>img:nth-of-type(4) {
    animation-delay: 18s;
}
@keyframes imageAnimation {
    4% {
        opacity: 1;
    }
    25% {
        opacity: 1;
    }
    30% {
        opacity: 0;
    }
}
.aside {
    background-color: #fff;
    padding: 0 2rem;
}
.section {
    background-color: #F3F4F5;
    padding: 2rem;
}
footer {
    padding: 1.3125rem 2rem 1.5rem;
    background-color: #254F9D;
    color: #fff;
}
footer p {
    margin: 0 0 0.625rem;
}
footer p:last-of-type {
    margin: 0
}
@media only screen and (max-width: 49.9375rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem
    }
    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    h1 {
        font-size: 1.7rem;
    }
    header {
        padding: 1rem 1rem 2rem;
    }
    footer {
        padding: 1rem;
    }
    .section {
        padding: 1rem;
    }
    .aside {
        padding: 0 1rem;
    }
    span{
        display: inline-block;
    }
}
@media only screen and (max-width: 40rem) {
    header {
        justify-content: center;
    }
}
@media only screen and (max-width: 30rem) {
    ul li {
        padding-left: 1rem;
    }
}
@media only screen and (max-width: 23.4375rem) {
    footer p {
        text-align: center;
    }
}