@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/noto-sans-v37-latin-300.eot');
    src: url('../fonts/noto-sans-v37-latin-300.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v37-latin-300.woff2') format('woff2'), url('../fonts/noto-sans-v37-latin-300.woff') format('woff'), url('../fonts/noto-sans-v37-latin-300.ttf') format('truetype'), url('../fonts/noto-sans-v37-latin-300.svg#NotoSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/noto-sans-v37-latin-regular.eot');
    src: url('../fonts/noto-sans-v37-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v37-latin-regular.woff2') format('woff2'), url('../fonts/noto-sans-v37-latin-regular.woff') format('woff'), url('../fonts/noto-sans-v37-latin-regular.ttf') format('truetype'), url('../fonts/noto-sans-v37-latin-regular.svg#NotoSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/noto-sans-v37-latin-700.eot');
    src: url('../fonts/noto-sans-v37-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v37-latin-700.woff2') format('woff2'), url('../fonts/noto-sans-v37-latin-700.woff') format('woff'), url('../fonts/noto-sans-v37-latin-700.ttf') format('truetype'), url('../fonts/noto-sans-v37-latin-700.svg#NotoSans') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #666;
    font-family: "Noto Sans", Arial, sans-serif;
    font-size: 0.938rem;
    line-height: 1.5;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    color: #134395;
}

a:hover {
    text-decoration: underline;
}

p {
    padding-bottom: .625rem;
}

h1 {
    font-size: 2.188rem;
    line-height: 1.3;
    color: #134395;
    font-weight: 400;
    padding: 1rem 0;
}

h1 span {
    font-weight: 300;
    font-size: .75em;
}

h2 {
    font-size: 1.375rem;
    color: #134395;
    font-weight: 300;
    padding: .625rem 0;
}

ul {
    list-style: none;
    padding-bottom: .625rem;
}

ul li {
    padding: 0 0 0 1.375rem;
}

ul li:before {
    content: "\25A0";
    float: left;
    margin-left: -1.375rem;
    color: #134395;
    line-height: 1.3;
}

.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;
}

@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%;
    }
}

.info {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1rem;
}

.info i {
    color: #134395;
    margin-right: .25em;
}

.button {
    display: flex;
    padding: 1rem 0;
}

.button a {
    width: 200px;
    padding: 10px 25px;
    color: #fff;
    background-color: #009148;
    border: 1px solid #00783b;
    text-align: center;
    font-weight: 600;
    border-radius: 4px;
    transition: .3s;
}

.button a:hover {
    color: #009148;
    border-color: #009148;
    background-color: #fff;
    text-decoration: none;
}

.blue {
    background-color: #134395;
    padding: 1rem 2rem 2rem;
    margin: 1.5rem -2rem 0;
    color: #fff;
}

.blue h2 {
    color: #fff;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
}

.benefits p {
    display: flex;
    align-items: center;
    padding-bottom: 0;
    line-height: 1.2;
}

.benefits i {
    font-size: 1.5rem;
    text-align: center;
    margin-right: .625rem;
    flex: 0 0 3rem;
}

header {
    padding: 1rem 2rem;
    display: flex;
    justify-content: end;
}

article {
    padding: 2rem 2rem 0;
}

footer {
    padding: 1rem 2rem;
}

@media only screen and (max-width: 49.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 46rem) {
    .benefits {
        gap: 1rem;
    }

    header {
        justify-content: center;
        padding: 1rem;
    }

    article {
        padding: 1rem 1rem 0;
    }

    footer {
        padding: 1rem;
    }
}

@media only screen and (max-width: 33rem) {
    h1 {
        text-align: center;
    }

    .info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .benefits {
        grid-template-columns: repeat(1, 1fr);
        margin-left: -.5rem;
    }

    .button {
        justify-content: center;
    }
}