* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 900px;
    margin: 12px auto;
    box-shadow: 1px 1px 10px #a9a8a8;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: "Hind Siliguri", Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.4;
}

#wrapper .img {
    position: absolute;
    bottom: 12px;
    right: 16px;
}

#wrapper .flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
    gap: 12px;
    margin-bottom: 16px;
}

#wrapper .flex .box {
    width: 138px;
}

#wrapper .box img {
    display: block;
    margin: 10px auto;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .logo {
    padding: 16px;
    display: flex;
    justify-content: center;
}

#wrapper .article {
    padding: 20px 40px;
    background: #EFEFEF;
    position: relative;
}

#wrapper p {
    margin-bottom: 15px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #042357;
    line-height: 1.1;
}

#wrapper h3 {
    margin-bottom: 6px;
    font-size: 20px;
    font-weight: 700;
    color: #042357;
}

#wrapper a {
    color: #0000ff;
    text-decoration: none;
}

#wrapper ul {
    margin-bottom: 15px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
}

#wrapper ul li:before {
    content: '\25a0';
    color: #042357;
    font-size: 16px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 0;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width: 899px) {
    #wrapper {
        margin: 8px;
        border: none;
    }

    #wrapper .article {
        padding: 16px;
    }

    #wrapper .flex {
        justify-content: space-around;
    }
}

@media all and (max-width: 676px) {
    #wrapper .img {
        position: static;
        display: flex;
        justify-content: center;
    }
}