* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Times New Roman", Times, serif;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 930px;
    margin: 16px auto;
    box-shadow: 0 0 5px #999;
    background-color: #fff;
    overflow: hidden;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .logo {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
}

#wrapper .logo>img {
    max-width: 48%;
}

#wrapper article {
    padding: 16px 0 16px 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#wrapper .left {
    width: 48%;
}

#wrapper .right {
    width: 48%;
    background: #E7E7E4;
    padding: 16px 16px 160px;
    position: relative;
}

#wrapper .col-right {
    position: absolute;
    bottom: 16px;
    right: 26px;
}

#wrapper .images {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

#wrapper .button {
    padding: 16px;
    display: flex;
    justify-content: center;
}

#wrapper .button a {
    background: #00A0FF;
    border-radius: 3px;
    display: inline-block;
    padding: 10px 30px;
    color: #fff !important;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 16px;
    font-size: 29px;
    font-weight: 700;
    color: #00a0ff;
}

#wrapper h3 {
    margin-bottom: 6px;
    font-size: 17px;
    font-weight: 700;
    color: #00a0ff;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper ul {
    margin-bottom: 16px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}

#wrapper ul li:before {
    content: '\2022';
    font-size: 20px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 0;
    line-height: 1;
    left: 0;
    color: #00a0ff;
}

#wrapper ul.other-icon li,
#wrapper ul.ul li {
    padding-left: 25px;
}

#wrapper ul.other-icon li:before {
    content: url(icon.jpg);
    position: absolute;
    top: 0;
    left: 0;
}

#wrapper ul.ul li:before {
    content: url(icon1.png);
    position: absolute;
    top: 0;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 929px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }
}

@media (max-width: 765px) {

    #wrapper .left,
    #wrapper .right {
        width: 100%;
        padding-bottom: 16px;
    }

    #wrapper article {
        padding-right: 16px;
    }

    #wrapper .col-right {
        position: static;
        padding-left: calc(100% - 280px);
    }
}

@media (max-width: 500px) {
    #wrapper .logo {
        flex-wrap: wrap;
        justify-content: center;
    }

    #wrapper .logo>img {
        max-width: 100%;
    }

    #wrapper h1 {
        font-size: 22px;
    }
}