* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Work Sans", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    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 .background {
    background: #F7A700;
    padding: 20px 40px;
    color: #fff;
}

#wrapper .banner {
    position: relative;

}

#wrapper .title {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 32px);
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#wrapper .title p {
    background: rgba(0, 88, 148, 0.65);
    padding: 5px 10px;
    color: #fff;
    display: inline-block;
    text-align: center;
}

#wrapper .banner img {
    min-height: 350px;
    object-fit: cover;
}

#wrapper .flex {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

#wrapper .flex a:hover img {
    filter: brightness(80%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .logo {
    padding: 20px;
    display: flex;
    justify-content: center;
    background: #005894;
}

#wrapper article {
    padding: 30px 40px;
}


#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    font-size: 28px;
    font-weight: 400;
    font-family: "Raleway", Arial, sans-serif;
    background: rgba(0, 88, 148, 0.65);
    padding: 5px 10px;
    color: #fff;
    display: inline-block;
    text-align: center;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper ul {
    margin: 0 0 20px 16px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 21px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    font-size: 20px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 0;
    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,
    #wrapper .background {
        padding: 16px;
    }
}

@media (max-width: 499px) {
    #wrapper ul {
        margin-left: 0;
    }
}