* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 807px;
    margin: 16px auto;
    border: 7px solid #447990;
    box-shadow: 0 0 10px 10px #cfcfcf;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.4;
}

#wrapper hr {
    border: none;
    border-bottom: 4px dotted #447990;
    margin: 20px 0;
}

#wrapper .flex {
    display: flex;
    flex-wrap: wrap;
    margin: -50px 30px 20px;
    justify-content: space-around;
    gap: 10px;
}

#wrapper .background.background1 {
    background: #E41E27;
}

#wrapper .background.background1 p {
    color: #fff;
}

#wrapper .background p {
    color: #447990;
    font-size: 10px;
    text-align: center;
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1.1;
    margin-top: 6px;
}

#wrapper .background {
    background: #fff;
    padding: 5px 7px 8px;
    border-radius: 20px;
    box-shadow: 1px 1px 10px #7f7f7f;
    width: 110px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .icon {
    position: relative;
}

#wrapper .img {
    position: absolute;
    top: 2%;
    right: 5%;
}

#wrapper .header {
    padding: 20px 20px 70px;
    background: #D6E5EC;
}

#wrapper .article {
    padding: 10px 30px 20px;
}

#wrapper .footer {
    padding: 20px 26px;
    background: #447990;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#wrapper .footer h3,
#wrapper .footer p {
    color: #fff;
}

#wrapper .font strong {
    font-weight: 600;
}

#wrapper .font {
    font-size: 13px;
    margin-bottom: 0;
}

#wrapper p {
    margin-bottom: 10px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 13px;
    font-size: 21px;
    color: #447990;
    font-weight: 700;
}

#wrapper h1 span {
    display: block;
}

#wrapper h2 {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    color: #447990;
}

#wrapper h2 em {
    font-weight: 500;
}

#wrapper h3 {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #447990;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #fff;
    text-decoration: none;
}

#wrapper .button {
    margin-top: 16px;
}

#wrapper .button a {
    display: inline-block;
    padding: 11px 30px;
    background: #fff;
    color: #447990;
    border-radius: 5px;
}

#wrapper .button a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

#wrapper ul {
    margin: 0;
    list-style: none;
}

#wrapper ul li {
    padding-left: 15px;
    position: relative;
}

#wrapper ul li:before {
    content: "\0025a0";
    color: #447990;
    font-size: 12px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 3px;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 806px) {
    #wrapper {
        margin: 0;
        border: none;
        text-wrap: pretty;
        box-shadow: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .icon {
        padding-right: 70px;
    }

    #wrapper .article,
    #wrapper .footer {
        padding: 16px;
    }

    #wrapper .img {
        right: 0;
    }
}

@media (max-width: 559px) {
    #wrapper .footer {
        flex-direction: column;
        align-items: center;
        gap: 13px;
    }

    #wrapper .footer p,
    #wrapper .footer h3 {
        text-align: center;
    }

    #wrapper .button {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 419px) {
    #wrapper .icon {
        padding-right: 0;
    }

    #wrapper .img {
        position: static;
        margin-bottom: 10px;
    }
}