:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 1.4375rem;
    color: #303030;
}

#wrapper {
    margin: 1rem auto;
    max-width: 880px;
    background: #fff;
    border: solid thin #303030;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-direction: row-reverse;
    padding: 1.4375rem 4rem 1.25rem;
    align-items: center;
}

:is(.slider, .slider img:nth-of-type(1)) {
    position: relative;
}

@keyframes slidy {
    0% {
        opacity: 0;
    }

    4% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    34% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.slider img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    animation: slidy 25s linear 0s infinite normal forwards;
    vertical-align: bottom;
}

.slider img:nth-child(2) {
    animation-delay: 5s;
}

.slider img:nth-child(3) {
    animation-delay: 10s;
}

.slider img:nth-child(4) {
    animation-delay: 15s;
}

.slider img:nth-child(5) {
    animation-delay: 20s;
}

article {
    padding: 2rem 4rem;
}

.color {
    color: #009FE3 !important;
}

.text-center :is(h1, h3, p) {
    text-align: center;
}

.margin {
    margin: 2rem 0;
}

:is(h1, h2, h3) {
    line-height: 1.2;
}

h1 {
    font-size: 28px;
    color: #009FE3;
    margin: 2rem 0 1rem;
}

:is(h2, h3, .purple) {
    color: #7030A0;
}

h2 {
    font-size: 1.25rem;
    margin: 0 0 1rem;
}

h3 {
    font-size: 1.375rem;
}

p {
    margin-bottom: 1rem;
}

.p {
    margin-left: 24px;
}

:is(.p, .inline-block) span {
    display: inline-block;
    vertical-align: top;
}

.p span:nth-of-type(1) {
    color: #7030A0;
    width: 20px;
}

.p span:nth-of-type(2) {
    width: 130px;
}

.inline-block span:nth-of-type(1) {
    width: 176px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #303030;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0 0 2rem 3.0625rem;
}

ul li {
    list-style: none;
    text-indent: -1.5625rem;
}

ul li:before {
    font-size: 1.5rem;
    margin-right: 1.5625rem;
    position: relative;
    top: -1px;
    float: left;
    content: "\2022";
    color: #7030A0;
}

video {
    width: 100%;
    display: block;
    border: none;
}

.center {
    text-align: center;
}

@media screen and (max-width: 879px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(.header-flex, article) {
        padding: 1.25rem;
    }

    :is(h1, h2, h3, p, ul li) {
        hyphens: auto;
        text-wrap: pretty;
    }

    span:not(.inline-block span) {
        white-space: nowrap;
    }
}

@media screen and (max-width: 500px) {
    .header-flex {
        flex-direction: column;
    }

    ul {
        margin-left: 1.625rem;
    }
}