@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/mulish-v13-latin-regular.eot');
    src: url('../fonts/mulish-v13-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/mulish-v13-latin-regular.woff2') format('woff2'), url('../fonts/mulish-v13-latin-regular.woff') format('woff'), url('../fonts/mulish-v13-latin-regular.ttf') format('truetype'), url('../fonts/mulish-v13-latin-regular.svg#Mulish') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/mulish-v13-latin-500.eot');
    src: url('../fonts/mulish-v13-latin-500.eot?#iefix') format('embedded-opentype'), url('../fonts/mulish-v13-latin-500.woff2') format('woff2'), url('../fonts/mulish-v13-latin-500.woff') format('woff'), url('../fonts/mulish-v13-latin-500.ttf') format('truetype'), url('../fonts/mulish-v13-latin-500.svg#Mulish') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #63615f;
    font-family: 'Mulish', "Arial", sans-serif;
    font-size: .938rem;
    line-height: 1.4;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 55rem;
    margin: 1rem auto;
    overflow: hidden;
    box-shadow: 0 0 0.625rem rgb(75 75 75 / 50%);
    background: url("../images/bg.jpg") 0 0/cover no-repeat #fff;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

p,
ul {
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

article p {
    padding-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 500;
    color: #033d60;
    font-style: italic;
    padding: 1rem 0 2rem;
}

h2 {
    font-size: 1rem;
    font-style: italic;
    font-weight: 500;
}

ul {
    padding: 0 0 1rem 1rem;
}

.blue {
    color: #033d60;
    padding: 3rem 0;
}

.small {
    font-size: .813rem;
}

.flex {
    display: flex;
    gap: 1rem;
}

.flex>div {
    flex: 33.33%;
}

header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: #fff;
    width: 300px;
    margin: 0 0 1.5rem auto;
}

header p {
    padding-right: 1.5rem;
    font-style: italic;
}

article {
    padding: 2rem 2rem 0;
    background-color: #fff;
    margin: 0 0 0 3rem;
}

footer {
    padding: 0 2rem 1.5rem;
    margin: 0 0 3rem 3rem;
    background-color: #fff;
}

@media only screen and (max-width: 54.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
    }

    h1 {
        font-size: 2rem;
    }

}

@media only screen and (max-width: 44rem) {
    #wrapper {
        padding: 1rem;
    }

    .flex {
        display: block;
    }

    header {
        align-items: center;
        color: inherit;
        width: auto;
        margin: 0;
        padding: 2rem 2rem 0;
        background-color: #fff;
        text-align: center;
    }

    article,
    footer {
        margin: 0;
    }

    .blue {
        padding: 1rem 0;
    }
}

@media only screen and (max-width: 30rem) {
    #wrapper {
        padding: .5rem;
    }

    header,
    article {
        padding: 1.5rem 1rem 0;
    }

    footer {
        padding: 0 1rem 1rem;
    }

    h1 {
        font-size: 1.7rem;
        text-align: center;
    }

    a.wrap {
        white-space: normal;
    }

}