@font-face {
    font-family: "Rockwell";
    src: url(Rockwell-BoldItalic.woff2) format("woff2"), url(Rockwell-BoldItalic.woff) format("woff");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 860px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #009EE3;
    overflow: hidden;
    color: #000;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.2;
}

#wrapper .button a {
    display: inline-block;
    padding: 11px 30px;
    background: #009EE3;
    color: #fff !important;
    border-radius: 25px;
    transition: .2s;
}

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

#wrapper .blue {
    color: #009EE3;
    font-size: 21px;
    max-width: 200px;
    margin: 30px 0 20px 0;
}

#wrapper .flex-1 {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
}

#wrapper .flex-1 ul:first-child {
    width: 50%;
    margin: 0;
}

#wrapper .img {
    display: flex;
    align-items: center;
    gap: 20px;
}

#wrapper .img a img {
    position: relative;
    top: -4px;
}

#wrapper section {
    background: url(background.png) no-repeat;
    padding: 31px 25px 81px;
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
}

#wrapper section p {
    color: #fff;
    font-size: 23px;
    transform: rotate(-2deg);
    line-height: 1;
    text-align: center;
}

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

#wrapper .hide {
    display: none;
}

#wrapper .header {
    position: relative;
}

#wrapper .article {
    padding: 20px 30px 15px;
    background: #fff;
    border-radius: 35px;
    margin: -23px 25px 25px;
    position: relative;
}

#wrapper .flexbox {
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row-reverse;
    display: flex;
    margin-top: -80px;
}

#wrapper .flex {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
}

#wrapper h4 a {
    color: #fff !important;
}

#wrapper .flex p {
    text-align: right;
    margin: 12px 0 6px;
    font-size: 20px;
    line-height: 1.5;
}

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    font-size: 31px;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    font-family: "Rockwell", Arial, sans-serif;
    transform: rotate(-2deg);
    text-shadow: 1px 1px 2px #000;
    position: relative;
    z-index: 6;
    text-align: center;
}

#wrapper h1 span {
    color: #fff;
    background: #0071BA;
    font-size: 20px;
    padding: 2px 12px 4px;
    position: absolute;
    bottom: -42px;
    right: 47px;
}

#wrapper h3 {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
}

#wrapper h4 {
    margin: 0 -55px 0 0;
    font-size: 21px;
    line-height: 1.1;
    font-weight: 400;
    font-style: italic;
    background: #0067B3;
    padding: 6px 61px 6px 25px;
    border-radius: 20px 0 0 20px;
    text-align: center;
}

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

#wrapper ul {
    margin-bottom: 15px;
    list-style: none;
}

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

#wrapper ul li:before {
    content: "\002022";
    color: #000;
    font-size: 25px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: -2px;
    left: 0;
    line-height: 1;
}

#wrapper img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

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

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

    #wrapper .nobr-1 {
        white-space: normal;
    }

    #wrapper .article {
        padding: 26px 16px 16px;
        margin: -17px 10px 10px;
    }

    #wrapper .footer {
        padding: 16px;
    }

    #wrapper section {
        background-size: cover;
        padding: 30px 16px 70px;
        bottom: -30px;
    }
}

@media (max-width: 819px) {
    #wrapper .flexbox {
        margin-top: 0;
        gap: 10px;
    }

    #wrapper h1 .span {
        position: static;
    }
}

@media (max-width: 719px) {
    #wrapper section {
        padding: 16px;
        background-color: #009EE3;
        position: static;
    }

    #wrapper .article {
        margin-top: 10px;
    }

    #wrapper .blue {
        margin: 15px 0 20px;
        text-align: center;
        max-width: 100%;
    }

    #wrapper .button {
        display: flex;
        justify-content: center;
        margin-bottom: 25px;
    }

    #wrapper h1 {
        transform: none;
    }

    #wrapper section p {
        transform: none;
        text-align: center;
        margin: 0 0 10px;
    }

    #wrapper .flex-1 ul:first-child {
        width: auto;
    }

    #wrapper .flexbox {
        display: block;
    }

    #wrapper .img {
        justify-content: center;
        margin: 20px 0 0;
    }

    #wrapper .flex {
        display: block;
    }

    #wrapper .flex p {
        text-align: center;
        font-size: 18px;
    }

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

@media (max-width: 519px) {
    #wrapper {
        font-size: 15px;
        line-height: 1.3;
    }

    #wrapper h4 {
        margin: 0;
        padding: 5px 10px;
        border-radius: 16px;
        text-align: center;
        font-size: 15px;
        line-height: 1.4;
    }

    #wrapper ul li:before {
        font-size: 23px;
        top: -6px;
    }

    #wrapper h3 {
        font-size: 16px;
    }
}

@media (max-width: 381px) {
    #wrapper h1 {
        font-size: 30px;
    }

    #wrapper h1 .span {
        font-size: 16px;
        padding: 1px 2px;
    }
}