* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 960px;
    margin: 16px auto;
    background-color: #fff;
    overflow: hidden;
    font-family: Arial, sans-serif;
    color: #000;
    font-size: 16px;
    line-height: 1.3;
    box-shadow: rgb(153, 153, 153) 0 0 5px 0;
}

#wrapper .background p {
    margin-bottom: 0;
}

#wrapper p {
    margin-bottom: 15px;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .logo {
    padding: 30px 48px;
    display: flex;
    justify-content: end;
}

#wrapper .article {
    padding: 32px 48px;
    border-bottom: 5px solid #051B24;
    margin-bottom: 3px;
}

#wrapper .footer {
    padding: 26px 48px;
    position: relative;
    background: #374950;
    display: flex;
    justify-content: end;
}

#wrapper .footer:before {
    content: "";
    width: 100%;
    height: 5px;
    background: #051B24;
    position: absolute;
    top: 5px;
    left: 0;
}

#wrapper .icon {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

#wrapper .flex {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

#wrapper .background {
    background: #EBEBEB;
    padding: 26px 26px 36px;
}

#wrapper .button {
    display: flex;
    justify-content: center;
    margin-top: -19px;
}

#wrapper .button a {
    display: inline-block;
    padding: 9px 26px;
    background: #4B4B4B;
    color: #fff !important;
    position: relative;
}

#wrapper .button a:before {
    content: "";
    width: 20px;
    height: 100%;
    position: absolute;
    background: #4B4B4B;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    top: 0;
    right: -19px;
}

#wrapper .button a:after {
    content: "";
    width: 20px;
    height: 100%;
    position: absolute;
    background: #4B4B4B;
    clip-path: polygon(100% 0, 100% 100%, 0 50%);
    top: 0;
    left: -19px;
}

#wrapper .button a:hover {
    opacity: 0.9;
}

#wrapper .mb {
    margin-bottom: 40px;
}

#wrapper h1 {
    margin-bottom: 31px;
    font-size: 35px;
    font-weight: 400;
    text-align: center;
}

#wrapper h2 {
    margin-bottom: 15px;
    font-size: 22px;
}

#wrapper h3 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 400;
    position: relative;
    color: #051b24;
}

#wrapper h3:before {
    content: "";
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    top: 14px;
    left: 0;
}

#wrapper h3 span {
    display: inline-block;
    background: #fff;
    padding-right: 10px;
    position: relative;
    z-index: 1;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper ul {
    margin: 0 0 30px 34px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

#wrapper ul li:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 5px;
    height: 10px;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: #000;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 959px) {
    #wrapper {
        margin: 0;
        border: none;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .article,
    #wrapper .logo {
        padding: 16px;
    }

    #wrapper .footer {
        padding: 26px 16px 16px;
    }

    #wrapper .background {
        padding: 16px 16px 34px;
    }
}

@media (max-width: 499px) {
    #wrapper {
        font-size: 15px;
    }

    #wrapper h1 {
        font-size: 26px;
    }

    #wrapper .footer,
    #wrapper .logo {
        justify-content: center;
    }

    #wrapper ul {
        margin-left: 0;
    }
}

@media (max-width: 409px) {
    #wrapper .icon {
        flex-direction: column;
        align-items: center;
    }

    #wrapper .flex {
        flex-direction: column;
    }

    #wrapper .icon p {
        text-align: center;
    }
}