@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #4a4c50;
    font-family: "Arial", sans-serif;
    font-size: .9rem;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    padding: 0 1.5rem;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

article p {
    padding-bottom: 1.5rem;
}

h1 {
    font-size: 2rem;
    line-height: 1.3;
    color: #00233e;
    border-left: 0.4rem solid #4761ad;
    padding-left: 1rem;
    margin: 1.5rem 0 0;
    text-transform: uppercase;
}

h2 {
    font-size: 1.1rem;
    line-height: 1.3;
    padding-bottom: .5rem;
    color: #1d1d1f;
}

ul {
    list-style: none;
    padding-bottom: 1.5rem;
}

ul li {
    padding: 0 0 0 1rem;
}

ul>li:not(:last-of-type) {
    padding-bottom: .5rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1rem;
}

.block {
    padding: 1.5rem;
}

.block>:last-child {
    padding-bottom: 0;
}

.border {
    box-shadow: 0px 0px 2px 0px rgba(50, 50, 50, 0.26);
    margin-bottom: 1.5rem;
}

.flex {
    display: flex;
    column-gap: 2rem;
}

.flex>div {
    flex: 50%;
}

.button a {
    padding: 0.6rem 2rem;
    background: #4761ad;
    font-weight: 700;
    color: #fff;
    border: 0.1rem solid #4761ad;
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: all 140ms ease 0s;
}

.button a:hover {
    background-color: #fff;
    text-decoration: none;
    color: #4761ad;
}

header {
    display: flex;
    justify-content: end;
    padding: 1.5rem 0;
}

footer {
    padding: 1.5rem 0;
    border-top: 2px solid #4a4c50;
    display: flex;
    justify-content: space-between;
    text-align: right;
    gap: 1rem;
}

@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: 40rem) {
    header {
        justify-content: center;
    }

    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .flex {
        display: block;
    }

    .flex>div {
        display: flex;
        flex-direction: column;
    }

    .button {
        display: flex;
        justify-content: center;
    }
}

@media only screen and (max-width: 30rem) {
    #wrapper {
        padding: 0 1rem;
    }

    h1 {
        font-size: 1.7rem;
    }
}