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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 926px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    font-family: "Hind", Arial, sans-serif;
    color: #000;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
}

#wrapper .small {
    font-size: 12px;
    padding-left: 10px;
    position: relative;
}

#wrapper .small span {
    position: absolute;
    top: 0;
    left: 0;
}

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

#wrapper .hide {
    display: none;
}

#wrapper .header {
    border-top: 35px solid #3F9A9C;
}


#wrapper .article {
    padding: 30px 50px 0;
}

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

#wrapper strong {
    font-weight: 700;
}

#wrapper .flexbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

#wrapper .content {
    width: 48%;
}

#wrapper h1 {
    margin: 15px 0;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    color: #129CB4;
    text-align: center;
}


#wrapper h2 {
    margin-bottom: 5px;
    font-size: 26px;
    font-weight: 600;
    color: #3F9A9C;
}

#wrapper h3 {
    margin-bottom: 7px;
    font-size: 20px;
    font-weight: 600;
    color: #129CB4;
}

#wrapper h3.title {
    color: #000;
}

#wrapper .color {
    font-size: 17px;
    color: #129CB4;
}

#wrapper h1+p {
    text-align: center;
}

#wrapper .bg a {
    
}

#wrapper .bg {
    background: #91C1D1;
    padding: 16px 50px 12px;
    margin: 0 -50px;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
}

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

#wrapper strong.big {
    padding-left: 20px;
    font-size: 18px;
}

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

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

#wrapper ul li {
    padding-left: 16px;
    position: relative;
    margin-bottom: 4px;
}

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

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

@media (max-width: 905px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        text-wrap: pretty;
    }

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

    #wrapper .article {
        padding: 16px 5% 0;
    }

    #wrapper .header a {
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 767px) {
    #wrapper .content {
        width: 100%;
    }
}