* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Open Sans", Arial, sans-serif;
    color: #003466;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
}

#wrapper {
    max-width: 930px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
}

#wrapper .title {
    position: absolute;
    bottom: 11%;
    left: 0;
    width: 80%;
}

#wrapper .title p {
    background: #305CA0;
    padding: 10px 40px;
    color: #fff;
    margin-bottom: 0;
    display: inline-block;
}

#wrapper .flex {
    display: flex;
    column-gap: 15%;
    padding: 5px 40px;
    flex: 1 1 0;
}

#wrapper .flex p {
    font-size: 12px;
    margin-bottom: 0;
    line-height: 1.2;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper header {
    position: relative;
}

#wrapper article {
    padding: 20px 40px;
    background: url(background.jpg) no-repeat right 32%;
}

#wrapper footer {
    background: #E0E2EE;
    display: flex;
    justify-content: space-between;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    padding: 15px 40px;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    background: #003466;
}

#wrapper h3 {
    margin: 0 0 10px -40px;
    font-size: 15px;
    font-weight: 700;
    background: #003466;
    color: #fff;
    min-width: 240px;
    display: inline-block;
    padding: 11px 40px;
}

#wrapper h3.h3 {
    background: #305CA0;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #003466;
    text-decoration: none;
}

#wrapper ul {
    margin-bottom: 20px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 21px;
    position: relative;
    margin-bottom: 4px;
}

#wrapper ul li:before {
    content: '\2010';
    font-size: 19px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: -2px;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 929px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper article {
        padding: 16px;
    }

    #wrapper .flex {
        padding: 6px 16px;
    }
}

@media (max-width: 699px) {
    #wrapper article {
        background: #fff;
    }
}

@media (max-width: 629px) {
    #wrapper footer {
        flex-direction: column;
    }

    #wrapper .logo {
        display: flex;
        justify-content: center;
    }

    #wrapper .flex {
        justify-content: center;
        flex-wrap: wrap;
    }

    #wrapper .flex p {
        text-align: center;
    }

    #wrapper .title {
        position: static;
        width: auto;
    }

    #wrapper .title p,
    #wrapper h1 {
        padding: 10px 16px;
    }
}