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

html {
    min-height: 100%;
}

body {
    background: none;
    color: #000;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.4;
}

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

#wrapper .color {
    color: #18489d;
}

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

#wrapper hr {
    border-top: 7px solid #00b6ea;
    width: 62px;
    margin: 16px 0;
}

#wrapper .flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 8px;
}

#wrapper p.p-1 a,
#wrapper p.p-2 a {
    border: 1px solid #18489d;
    padding: 10px 10px 10px 30px;
    display: inline-block;
    transition: 0.4s;
    border-radius: 4px;
}

#wrapper p.p-1 a {
    background: url(web.jpg) no-repeat 7px 10px;
    padding-left: 27px;
}

#wrapper p.p-2 a {
    background: url(mail.jpg) no-repeat 7px 12px;
}

#wrapper p.p-1 a:hover {
    background: #18489d url(web1.jpg) no-repeat 7px 10px;
    color: #fff;
}

#wrapper p.p-2 a:hover {
    background: #18489d url(mail.jpg) no-repeat 7px 12px;
    color: #fff;
}

#wrapper article {
    padding: 0 50px;
}

#wrapper footer {
    padding: 0 50px 30px;
}

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    padding-top: 16px;
    font-size: 35px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
}

#wrapper h3 {
    margin: 25px 0;
    font-size: 20px;
    font-weight: 700;
    position: relative;
}

#wrapper h3:before {
    position: absolute;
    bottom: -16px;
    left: 0;
    z-index: 5;
    background: #00b6ea;
    width: 62px;
    height: 7px;
    content: "";
}

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

#wrapper .blue {
    color: #18489d;
}

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

#wrapper ul {
    margin-bottom: 16px;
    list-style: none;
}

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

#wrapper ul ul li:before {
    content: "\0025cb";
    font-size: 13px;
    top: 3px;
    font-family: "Times New Roman", serif;
}

#wrapper ul ul {
    margin: 0 0 0 15px;
}

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

#wrapper img {
    max-width: 100%;
    height: auto;
}

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

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

@media (max-width: 699px) {

    #wrapper article,
    #wrapper footer {
        padding: 0 16px;
    }
}

@media (max-width: 499px) {
    #wrapper {
        font-size: 14px;
    }
}