* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Open Sans", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
}

#wrapper {
    max-width: 930px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #EE8002;
    overflow: hidden;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper header {
    padding: 30px 60px 20px 100px;
}

#wrapper .logo {
    display: flex;
    justify-content: flex-end;
    border-bottom: 3px solid #fff;
    padding-bottom: 10px;
}

#wrapper article {
    padding: 30px 40px 30px 40px;
    background: #fff url(background.png) right center no-repeat;
}

#wrapper footer {
    padding: 30px 40px;
}

#wrapper footer p {
    color: #fff;
    text-align: center;
    font-size: 12px;
    margin: 0;
}

#wrapper footer a {
    color: #fff !important;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper .min p {
    font-size: 13px;
}

#wrapper strong {
    font-weight: 600;
}

#wrapper h1 {
    margin-bottom: 16px;
    font-size: 31px;
    line-height:35px;
    font-weight: 600;
    color: #EE8002;
    text-align: center;
    position: relative;
    
}

#wrapper h1:before {
    content: '';
    position: absolute;
    top: 0;
    left: -50px;
    width: 87px;
    height: 100%;
    background: #EE8002;
}

#wrapper .block {
    display: block;
}

#wrapper h3 {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 600;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #0563C1;
    text-decoration: none;
}

#wrapper ul {
    margin: 0 0 22px 22px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 29px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    font-size: 20px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 2px;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}
  #wrapper .padding {
        padding-right: 280px;
    }
@media (max-width: 929px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper header {
        padding: 16px;
    }

    #wrapper article {
        padding: 16px;
    }

    #wrapper footer {
        padding: 16px;
    }

  

    #wrapper .block {
        display: inline;
    }
}

@media (max-width: 760px) {
    #wrapper article {
        background-image: none;
    }

    #wrapper .padding {
        padding-right: 0;
    }

    #wrapper h1:before {
        width: 0;
    }

    #wrapper ul {
        margin-left: 0;
    }

    #wrapper h1 {
        font-size: 29px;
    }
}