* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 832px;
    margin: 16px auto;
    background-color: #fff;
    overflow: hidden;
}

#wrapper .video {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%;
}

#wrapper .responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .box {
    border: 1px solid rgba(220, 223, 226, 0.8);
}

#wrapper .title {
    padding: 24px;
}

#wrapper .flex p {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

#wrapper .flex div {
    width: 48%;
}

#wrapper .flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#wrapper .avatar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

#wrapper .avatar p {
    margin-bottom: 0;
}

#wrapper article {
    padding: 24px;
    border: 1px solid rgba(220, 223, 226, 0.8);
}

#wrapper .logo {
    padding: 16px;
    display: flex;
    justify-content: center;
    background: #0059a9;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 700;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #005aaa;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper .button {
    margin: 20px 0;
}

#wrapper .button a {
    display: inline-block;
    padding: 11px 25px;
    background: #0065bd;
    color: #fff;
    border-radius: 5px;
    transition: .2s;
}

#wrapper .button a:hover {
    background: #0052A9;
    color: #ccc2c2;
}

#wrapper ul {
    margin: 0 0 20px 25px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 21px;
    position: relative;
    margin-bottom: 5px;
}

#wrapper ul li:before {
    content: '\+';
    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: 831px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        padding: 0;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper article,
    #wrapper .title {
        padding: 16px;
    }
}

@media (max-width: 499px) {
    #wrapper ul {
        margin-left: 0;
    }

    #wrapper h1 {
        font-size: 28px;
    }
}