* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Roboto Condensed", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 800px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
}

#wrapper .title {
    border-left: 5px solid #005aab;
    padding-left: 20px;
}

#wrapper .logo {
    display: flex;
    justify-content: end;
    margin-bottom: 25px;
}

#wrapper .title p {
    color: #9d9fa2;
    margin-bottom: 9px;
    font-size: 14px;
}

#wrapper .content {
    margin-top: 20px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 8%);
    border-left: 5px solid #005aab;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#wrapper .mb0 {
    margin-bottom: 0;
}

#wrapper .width {
    width: 48%;
}

#wrapper .avatar {
    display: flex;
    column-gap: 20px;
    width: 45%;
}

#wrapper .avatar p {
    flex: 1 1 0;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .big {
    font-size: 20px;
    margin: 20px 0 0;
}

#wrapper .big a {
    color: #fff !important;
}

#wrapper .center {
    text-align: center;
}

#wrapper header {
    padding: 20px 40px;
}

#wrapper article {
    padding: 20px 40px;
}

#wrapper footer :is(p, h3) {
    color: #fff;
}

#wrapper footer {
    padding: 30px 40px;
    background: #005AAB;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 span {
    font-size: 16px;
}

#wrapper h1 {
    font-size: 33px;
    font-weight: 400;
    color: #404041;
    line-height: 1;
}

#wrapper h3 {
    margin-bottom: 3px;
    font-size: 17px;
    font-weight: 700;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper ul {
    margin-bottom: 18px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 15px;
    position: relative;
}

#wrapper ul li:before {
    content: '\25a0';
    font-size: 11px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 3px;
    line-height: 1;
    left: 0;
    color: #005BAB;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 799px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper article,
    #wrapper footer,
    #wrapper .content,
    #wrapper header {
        padding: 16px;
    }
}

@media (max-width: 599px) {
    #wrapper .avatar {
        width: 100%;
        margin-bottom: 17px;
    }

    #wrapper .width {
        width: 100%;
    }
}