* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 910px;
    margin: 12px auto;
    border: 1px solid #000;
    background-color: #fff;
    overflow: hidden;
    color: #454545;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
}

#wrapper .flexbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#wrapper .flexbox p {
    background: #D0D1D3;
    padding: 25px;
    max-width: 367px;
    font-size: 16px;
}

#wrapper .content {
    position: relative;
    padding-left: 85px;
}

#wrapper .content img {
    position: absolute;
    top: 0;
    left: 0;
}

#wrapper .nobr,
#wrapper .nobr-1 {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .article {
    padding: 25px;
}

#wrapper .footer {
    display: flex;
    align-items: center;
    column-gap: 30px;
    padding-right: 25px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 span.small {
    font-size: 19px;
    line-height: 1.3;
    display: block;
    font-weight: 400;
    margin-top: 12px;
}

#wrapper h1 .block {
    display: block;
}

#wrapper .contact {
    background: #454545;
    padding: 25px;
    flex: 1 1 0;
}

#wrapper .contact p {
    color: #fff;
    font-size: 16px;
    line-height: 22px;
}

#wrapper .contact .font {
    margin: 30px 0 0;
    font-size: 23px;
    line-height: 1.2;
}

#wrapper h1 {
    font-size: 35px;
    line-height: 1.2;
    font-weight: 700;
    background: #F1873C;
    color: #fff;
    padding: 25px;
    flex: 1 1 0;
}

#wrapper h2 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

#wrapper h3 {
    margin-bottom: 3px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
}

#wrapper a {
    color: #fff;
    text-decoration: none;
}

#wrapper ul {
    margin-bottom: 18px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 17px;
    position: relative;
    margin-bottom: 4px;
}

#wrapper ul li:before {
    content: '\2022';
    color: #F1873C;
    font-size: 18px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 909px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    #wrapper .article,
    #wrapper .contact,
    #wrapper .flexbox p,
    #wrapper h1 {
        padding: 16px;
    }

    #wrapper .nobr-1 {
        white-space: normal;
    }

}

@media (max-width: 679px) {
    #wrapper .flexbox p {
        max-width: 100%;
    }

    #wrapper .footer {
        align-items: center;
        gap: 20px;
        padding: 0 20px 0 0;
    }
}

@media (max-width: 499px) {
    #wrapper .content {
        padding-left: 0;
    }

    #wrapper .content img {
        position: static;
        margin-bottom: 10px;
    }

    #wrapper .footer {
        display: block;
        padding: 0;
    }

    #wrapper .logo {
        margin: 20px;
        display: flex;
        justify-content: center;
    }
}