* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.2;
    color: #7A7573;
}

#wrapper {
    max-width: 786px;
    margin: 16px auto;
    border: 1px solid #000;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

.title {
    flex: 1 1 0;
}

.content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 0;
}

.content p {
    flex: 1 1 0;
    text-align: left;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-right: 35px;
    margin-bottom: 25px;
}

article {
    padding: 0 30px 20px;
    display: flex;
    flex-direction: row-reverse;
}

footer {
    padding: 0 30px 20px;
    display: flex;
    column-gap: 20px;
}

.link {
    background: #3B7DB5;
    padding: 5px 10px;
    border-radius: 10px 0 10px 0;
    display: inline-block;
    color: #fff !important;
    margin-top: 5px;
}

strong {
    font-weight: 700;
}

h1:nth-of-type(1) {
    margin-top: 0;
}

h1 {
    margin-top: 15px;
    font-size: 19px;
    font-weight: 600;
    color: #3B7AB5;
}

h2 {
    padding: 30px 20px 12px 30px;
    font-size: 28px;
    background: url(background.jpg) no-repeat right;
    background-size: cover;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    border-radius: 0 0 50px 10px;
    clip-path: polygon(100% 0, 100% 100%, 3% 100%, 0 92%, 0 0);
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #7A7573;
    white-space: nowrap;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.nobr {
    white-space: nowrap;
}

@media all and (max-width: 785px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    p {
        hyphens: auto;
    }

    br:not(.br br) {
        display: none;
    }
}

@media all and (max-width: 729px) {
    article {
        display: block;
    }

    header {
        padding-right: 16px;
    }

    .banner {
        display: flex;
        justify-content: center;
        margin-bottom: 25px;
    }

    h1,
    .title p {
        text-align: center;
    }

    footer {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    footer p {
        text-align: center;
    }
}

@media all and (max-width: 629px) {
    header {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    h2 {
        text-align: center;
        width: 100%;
        display: block;
        clip-path: none;
        margin-bottom: 15px;
        padding: 16px;
    }
}