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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 840px;
    margin: 16px auto;
    box-shadow: 3px 3px 11px 2px #939095;
    background-color: #fff;
    overflow: hidden;
    color: #454545;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.3;
}

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

#wrapper .flexbox p {
    background: #D0D1D3;
    padding: 25px;
    max-width: 320px;
    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: 40px;
    padding-right: 40px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 span.small {
    font-size: 20px;
    line-height: 1.3;
    display: block;
    font-weight: 400;
    margin-top: 12px;
}

#wrapper h1 .block {
    display: block;
}

#wrapper .contact {
    background: #454545;
    padding: 25px 20px 25px 25px;
    flex: 1 1 0;
}

#wrapper .contact p {
    color: #fff;
}

#wrapper .contact .font {
    margin: 30px 0 0;
    font-size: 22px;
    line-height: 1.2;
}

#wrapper h1 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    background: #F1873C;
    color: #fff;
    padding: 30px 55px 25px 25px;
    flex: 1 1 0;
}

#wrapper h3 {
    margin-bottom: 9px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
}
#wrapper h3.h3{
    color: #fff;
    font-size: 16px;
}
#wrapper :is(a:link, a:visited, a:hover, a:active) {
    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: "\002022";
    color: #F1873C;
    font-size: 20px;
    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: 839px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        text-wrap: pretty;
    }

    #wrapper .article,
    #wrapper .contact,
    #wrapper .flexbox p,
    #wrapper h1 {
        padding: 16px;
    }

    #wrapper .nobr-1 {
        white-space: normal;
    }

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

@media (max-width:700px) {
    #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 h1 {
        font-size: 30px;
    }

    #wrapper .footer {
        display: block;
        padding: 0;
    }

    #wrapper .logo {
        margin: 20px;
        display: flex;
        justify-content: center;
    }
}