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

html {
    min-height: 100%;
}

body {
    background: #EFEFEF;
}

#wrapper {
    max-width: 960px;
    margin: 16px auto;
    padding: 16px 16px 0;
    background-color: #fff;
    overflow: hidden;
    font-family: "Hind Siliguri", Arial, sans-serif;
    color: #464646;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper .button a {
    display: inline-block;
    padding: 14px 20px;
    background: #14504B;
    color: #fff !important;
    border: 1px solid #14504B;
    border-radius: 5px;
    font-size: 20px;
    transition: .3s;
}

#wrapper .button a:hover {
    background: #fff;
    color: #14504B !important;
}

#wrapper .title {
    background: #14504B;
    padding: 30px 20px;
    border-radius: 5px;
}

#wrapper .title p {
    font-size: 17px;
    color: #fff;
    margin-bottom: 0;
}

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

#wrapper .hide {
    display: none;
}

#wrapper .logo {
    padding: 0 16px 16px;
    display: flex;
    justify-content: center;
}

#wrapper .article {
    padding: 20px;
}

#wrapper .footer {
    padding: 20px 32px;
    background: #14504B;
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 -16px;
}

#wrapper .link {
    color: #096fbf !important;
}

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 20px;
    font-size: 49px;
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
}

#wrapper h3 {
    margin-bottom: 13px;
    font-size: 22px;
    font-weight: 600;
}

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

#wrapper ul {
    margin: 0 0 20px 20px;
    list-style: none;
}

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

#wrapper ul ul li {
    margin: 10px 0;
}

#wrapper ul ul {
    margin: 0;
}

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

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

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

@media (max-width: 959px) {
    #wrapper {
        margin: 10px;
        border: none;
        text-wrap: pretty;
    }

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

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

    #wrapper .footer {
        padding: 12px 16px;
    }

    #wrapper .title {
        padding: 8px;
    }
}

@media (max-width: 767px) {
    #wrapper h1 {
        font-size: 34px;
    }
}

@media (max-width: 499px) {
    #wrapper ul {
        margin-left: 0;
    }

    #wrapper ul li {
        padding-left: 14px;
    }
}