@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v44-latin-regular.eot');
    src: url('../fonts/open-sans-v44-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v44-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v44-latin-regular.woff') format('woff'), url('../fonts/open-sans-v44-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v44-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v44-latin-700.eot');
    src: url('../fonts/open-sans-v44-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v44-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v44-latin-700.woff') format('woff'), url('../fonts/open-sans-v44-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v44-latin-700.svg#OpenSans') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #4d4d4d;
    font-family: 'Open Sans', "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 60rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}


a.link {
    color: #1c5e8f;
}

a.link:hover {
    color: #18507a;
}

p {
    padding-bottom: 1rem;
}

h1 {
    font-size: 1.6rem;
    line-height: 1.3;
    padding-bottom: 1rem;
    color: #1c5e8f;
}

h1 span {
    display: block;
    font-weight: normal;
    padding-top: .3rem;
    font-size: .9em;
}

h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    padding: 1rem 0 .5rem;
    color: #1c5e8f;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: normal;
    color: #1c5e8f;
}

h4 {
    font-size: 1.3rem;
    font-weight: normal;
    color: #1c5e8f;
}

h4 span {
    font-size: 1rem;
}

ul {
    padding: 0 0 1rem 2rem;
}

.box {
    background-color: #a6d9e7;
    border-radius: .5rem;
    padding: 2.625rem 2.625rem 1.625rem;
    margin: 1rem 0;
}

.box div {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-bottom: 1rem;

}

.box div p {
    padding: 0;
    color: #1c5e8f;
    font-size: 2rem;
    line-height: 1.2;
}

.button a {
    padding: 8px 14px;
    background-color: #1c5e8f;
    color: #fff;
    display: inline-block;
    transition: .3s;
    margin: 1rem 0;
}

.button a:hover {
    background-color: #18507a;
}

hr {
    border-style: none;
    border-top: 1px solid #4d4d4d;
    opacity: 0.25;
    margin: 2.5rem 0 3rem;
}

.contact {
    display: flex;
    align-items: center;
    gap: 1rem 2rem;
    padding: 1rem 0;
}

.contact div>p:last-child {
    padding-bottom: 0;
}

header {
    display: flex;
    padding: 2rem;
}

article {
    padding: 2rem 2rem 0;
}

footer {
    padding: 0 2rem 2rem;
}

@media only screen and (max-width: 59.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: 44rem) {
    header {
        justify-content: center;
        padding: 1.5rem 1rem;
    }

    article {
        padding: 1.5rem 1rem 0;
    }

    footer {
        padding: 0 1rem 1rem;
        text-align: center;
    }

    .button {
        display: flex;
        justify-content: center;
    }

    h1 {
        text-align: center;
    }

    h1 span,
    h2 {
        font-size: 1.3rem;
    }

    .box {
        padding: 1rem 1rem 0;
    }

    .box div {
        flex-direction: column;
    }

    .box div p {
        width: 100%;
        font-size: 1.5rem;
    }

    .contact {
        flex-direction: column;
    }

    hr {
        margin: 1.5rem 0 2rem;
    }
}

@media only screen and (max-width: 35rem) {


    ul {
        padding-left: 1rem;
    }

    a.link {
        white-space: normal;
    }
}