@charset "utf-8";

/* Standard */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

a {
    color: inherit;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
}

a:hover,
a:active,
a:visited {}

u {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

address {
    font-style: normal;
}

body {
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: .812rem;
    line-height: 1.7;
}

p {
    margin: 0 0 .937rem;
}

h1 {
    text-align: center;
    font-size: 1.875rem;
    line-height: 1.2;
    margin: 1.25rem 0;
    color: #3FD6F5;
}

h1 span {
    font-size: 0.8em
}

h2 {
    font-size: .937rem;
    margin: 0 0 .625rem;
    color: #005F89;
}

h3 {
    font-size: .875rem;
    margin: 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

ul li {
    padding-left: .937rem
}

ul li:before {
    content: "";
    float: left;
    position: relative;
    width: .312rem;
    height: .312rem;
    border-radius: .312rem;
    background: #005F89;
    margin-left: -.937rem;
    top: .5rem;
}


.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

#wrapper {
    position: relative;
    max-width: 820px;
    margin: 1rem auto;
    box-shadow: 0 0 1.875rem #999;
    overflow: hidden;
}

header {
    padding: 1.25rem 1.875rem;
}

header a {
    margin: 0 0 0 auto;
    display: block;
    width: 7.5rem
}

header p {}

article {
    padding: 1.875rem;
}

aside {
    background: linear-gradient(90deg, #2ca9c3, #005F89);
    margin: 0 -1.875rem 1.25rem;
    padding: 1.25rem 1.875rem;
    color: #fff;
}

aside h2 {
    color: #fff;
}

aside ul {
    display: flex;
    justify-content: space-between;
}

aside ul li:before {
    background: #fff;
}

aside ul section {
    width: 48%;
}

p a {
    color: #2AA6C1;
    font-weight: 700;
}

footer {
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding: 1.25rem 1.875rem;
    background: #7e7e7e;
    color: #fff;
    box-shadow: -.312rem -.312rem .937rem #999
}

@keyframes slidy {
    0% {
        left: 0%;
    }

    22% {
        left: 0%;
    }

    25% {
        left: -100%;
    }

    47% {
        left: -100%;
    }

    50% {
        left: -200%;
    }

    72% {
        left: -200%;
    }

    75% {
        left: -300%;
    }

    97% {
        left: -300%;
    }

    100% {
        left: -400%;
    }
}

.slider {
    overflow: hidden;
}

.slider figure {
    position: relative;
    width: 500%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    animation: 24s slidy infinite;
}

figure img {
    width: 20%;
    float: left;
}

@media only screen and (max-width:820px) {
    #wrapper {
        margin: 0 auto;
        border: 0;
    }

    p a {
        font-weight: bold;
    }

    p,
    ul {
        margin-bottom: .625rem;
    }

    header {
        padding: .625rem;
    }

    header a {
        width: 5.625rem
    }

    article {
        padding: .625rem;
    }

    aside {
        margin: 0 -.625rem .625rem;
        padding: .625rem;
    }

    aside ul {
        display: block;
    }

    aside ul section {
        width: auto;
    }

    footer {
        padding: .625rem;
    }
}

@media only screen and (max-width:450px) {
    footer {
        display: block;
    }
}
