* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #575656;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.231em;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 15px 24px rgba(0, 0, 0, 0.22), 0 19px 76px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    gap: 106px;
}

@-webkit-keyframes slidy {
    0% {
        left: 0%;
    }

    10% {
        left: 0%;
    }

    20% {
        left: -100%;
    }

    25% {
        left: -100%;
    }

    35% {
        left: -200%;
    }

    40% {
        left: -200%;
    }

    50% {
        left: -300%;
    }

    55% {
        left: -300%;
    }

    65% {
        left: -400%;
    }

    70% {
        left: -400%;
    }

    80% {
        left: -500%;
    }

    90% {
        left: -500%;
    }

    100% {
        left: -600%;
    }
}

@keyframes slidy {
    0% {
        left: 0%;
    }

    10% {
        left: 0%;
    }

    20% {
        left: -100%;
    }

    25% {
        left: -100%;
    }

    35% {
        left: -200%;
    }

    40% {
        left: -200%;
    }

    50% {
        left: -300%;
    }

    55% {
        left: -300%;
    }

    65% {
        left: -400%;
    }

    70% {
        left: -400%;
    }

    80% {
        left: -500%;
    }

    90% {
        left: -500%;
    }

    100% {
        left: -600%;
    }
}

.slide {
    overflow: hidden;
}

.slide-images img {
    width: 14.2858%;
    float: left;
}

.slide-images {
    position: relative;
    width: 700%;
    left: 0;
    -webkit-animation-name: slidy;
    -webkit-animation-duration: 42s;
    -webkit-animation-delay: 5s;
    -webkit-animation-iteration-count: infinite;
    animation: 42s slidy infinite;
}

article {
    padding: 0.938rem 0.938rem 18px;
}

.flex {
    display: flex;
    justify-content: space-between;
}

.flex>div {
    width: 48%;
}

.iframe-wrapper {
    margin: 0 0 57px;
}

.iframe-wrapper iframe {
    width: 100%;
    height: 350px;
    border: none;
}

footer {
    background: #02133c;
    padding: 0.938rem;
}

footer p {
    text-align: center;
    color: #fff;
}

:is(h2, h3, .flex strong) {
    color: #92a9c2;
}

p:not(:last-of-type) {
    margin: 0 0 22px;
}

h1 {
    margin: 26px 0 40px;
    font-size: 34px;
    line-height: 1.2;
    text-align: center;
}

h2 {
    margin: 0 0 10px;
}

h3 {
    margin: 0 0 10px;
}

:is(h2, h3) {
    font-size: 16px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #575656;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    margin: 0 0 26px;
    list-style: none;
}

ul li {
    padding-left: 0.938rem;
}

li:before {
    content: "\2022";
    float: left;
    font-size: 1.250em;
    line-height: 1.1;
    text-indent: -0.938rem;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width:899px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    :is(article, footer) {
        padding: 16px;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    span {
        white-space: nowrap;
    }
}

@media all and (max-width:767px) {
    .flex {
        display: block;
    }

    .flex div {
        width: auto;
    }

    .iframe-wrapper {
        width: 100%;
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        margin: 0 0 26px;
    }

    .iframe-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
    }
}

@media all and (max-width:600px) {
    .logo {
        justify-content: space-between;
        gap: 16px;
    }

    h1 {
        font-size: 26px;
        margin: 26px 0;
    }
}