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

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Roboto", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    border: 2px solid #000;
    background-color: #fff;
    overflow: hidden;
}

#wrapper .hide {
    display: none;
}

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

#wrapper header {
    display: flex;
    flex-direction: row-reverse;
}

#wrapper .content {
    background: #d2d4d3;
    padding: 30px 10px 20px 50px;
    width: 52%;
}

#wrapper .banner {
    width: 50%;
}

#wrapper .banner img {
    height: 100%;
    object-fit: cover;
    object-position: left;
}

#wrapper article {
    padding: 30px 50px 10px;
}

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 16px;
    font-size: 60px;
    font-weight: 900;
    line-height: 1.2;
}

#wrapper h1 .block {
    display: block;
}

#wrapper .flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: -33px;
}

#wrapper .contact p {
    color: #fff; max-width:75%;
}

#wrapper .big {
    font-size: 20px;
    margin-bottom: 0;
}

#wrapper .contact {
    width: 50%;
    background: #1A1A18;
    padding: 80px 50px 30px;
}

#wrapper .logo {
    width: 50%;
    background: #FECC00;
    padding: 60px 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#wrapper .icon {
    display: flex;
    justify-content: center;
    position: relative;
}

#wrapper h1 span {
    font-size: 36px;
    font-weight: 400;
}

#wrapper h2 {
    color:#fff;font-size: 18px;
}

#wrapper h3 {
    margin: 0 -50px 15px -50px;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    padding-top: 8px;
    padding-left: 50px;
}

#wrapper h3:before {
    content: "";
    position: absolute;
    height: 1px;
    background: #000;
    width: 100%;
    bottom: 3px;
    left: 200px;
}

#wrapper h3:after {
    content: "";
    position: absolute;
    width: 200px;
    top: 0;
    left: 0;
    height: 27px;
    border: 1px solid #000;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0 21px 0 0;
}

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

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

#wrapper ul li {
    padding-left: 21px;
    position: relative;
}

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

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

@media (max-width: 899px) {
    #wrapper {
        margin: 0;
        border: none;
    }

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

    #wrapper article,
    #wrapper .content {
        padding: 16px;
    }

    #wrapper .contact,
    #wrapper .logo {
        padding: 50px 16px 16px;
    }
}

@media (max-width: 599px) {
    #wrapper header {
        display: block;
    }

    #wrapper .content,
    #wrapper .banner {
        width: 100%;
    }

    #wrapper h1 {
        font-size: 40px;
    }

    #wrapper h1 span {
        font-size: 30px;
    }
}

@media (max-width: 529px) {
    #wrapper .contact {
        width: 100%;
    }
    #wrapper h2 {
    color:#fff;font-size: 18px;text-align: center;
}


    #wrapper .contact p {
        text-align: center; max-width:100%;
    }

    #wrapper .logo {
        padding: 16px;
        width: 100%;
    }

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