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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 810px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    font-family: "Inter", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper .flexbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#wrapper .left {
    width: 45%;
}

#wrapper .right {
    width: 50%;
}

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

#wrapper .hide {
    display: none;
}

#wrapper .article {
    padding: 30px 30px 0;
    margin-top: -13%;
}

#wrapper .contact {
    padding: 12px 12px 12px 72px;
    background: #E50612 url(mail.jpg) no-repeat 18px 13px;
    max-width: 400px;
    margin: -70px 0 0 -30px;
    border-radius: 0 80px 0 0;
}

#wrapper .contact p {
    margin-bottom: 0;
}

#wrapper .contact p a {
    color: #fff !important;
}

#wrapper .bg {
    background: #476262;
    padding: 15px 30px;
    flex: 1 1 0;
    display: flex;
    align-items: center;
}

#wrapper .bg p {
    margin-bottom: 0;
    color: #fff;
    font-size: 13px;
}

#wrapper .footer {
    display: flex;
    flex-wrap: wrap;
}

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 6%;
    font-size: 31px;
    font-weight: 700;
}

#wrapper h1 .block {
    display: block;
}

#wrapper h1 .small {
    font-size: 20px;
    display: block;
    font-weight: 400;
}

#wrapper h2 {
    color: #fff;
    font-size: 19px;
    font-weight: 700;
}

#wrapper h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 3px;
    color: #D8222A;
}

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

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

#wrapper ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 4px;
}

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

#wrapper .img {
    width: 62%;
}

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

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

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

    #wrapper .bg {
        padding: 16px;
    }

    #wrapper .article {
        padding: 16px 16px 0;
    }

    #wrapper .contact {
        margin-left: -16px;
    }
}

@media (max-width: 729px) {
    #wrapper .contact {
        margin: 15px 0 0 -16px;
    }

    #wrapper .left,
    #wrapper .right {
        width: 100%;
    }

    #wrapper .img {
        width: 100%;
    }
}

@media (max-width: 649px) {
    #wrapper h1 .block {
        display: inline;
    }

    #wrapper .article {
        margin-top: -3%;
    }

    #wrapper ul {
        margin-left: 0;
    }
}