* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Roboto", Arial, sans-serif;
    color: #606060;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    border: 4px solid #002f52;
}

#wrapper .text-left {
    text-align: left;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .logo {
    padding: 20px;
    display: flex;
    justify-content: end;
}

#wrapper article {
    padding: 25px;
}

#wrapper .big {
    color: #002f52;
    font-size: 18px;
}

#wrapper .text {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 22px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

#wrapper .text p {
    display: flex;
    align-items: center;
    gap: 5px;
}

#wrapper p {
    margin-bottom: 16px;
    text-align: center;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 20px -20px;
    font-size: 28px;
    font-weight: 700;
    background: #EFF5FB;
    padding: 20px;
    text-align: center;
    color: #002f52;
}

#wrapper h1 .block {
    display: block;
    font-size: 20px;
}
#wrapper h1 span {
    display: block;
    font-size: 20px;
}
#wrapper h3 {
    margin-bottom: 10px;
    font-size: 21px;
    font-weight: 700;
    color: #002f52;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #002f52;
    text-decoration: none;
}


#wrapper .button a {
    display: inline-block;
    padding: 10px 20px;
    background: #002f52;
    color: #fff;
    border-radius: 5px;
    transition: .2s;
}

#wrapper .button a:hover {
    background: #000;
}

#wrapper ul {
    margin: 0 0 20px 20px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 21px;
    position: relative;
    margin-bottom: 3px;
}

#wrapper ul li:before {
    content: '\2022';
    font-size: 22px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: -2px;
    line-height: 1;
    left: 0;
    color: #002f52;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 899px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        border: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper article,
    #wrapper .logo {
        padding: 16px;
    }
}

@media (max-width: 499px) {
    #wrapper .logo {
        justify-content: center;
    }

    #wrapper ul {
        margin-left: 0;
    }

    #wrapper .button {
        display: flex;
        justify-content: center;
    }
}