*,
:after,
:before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: inherit;
    box-sizing: inherit
}

html {
    font-size: 62.5%
}

@media only screen and (max-width:1050px) {
    html {
        font-size: 55%
    }
}

@media only screen and (max-width:620px) {
    html {
        font-size: 50%
    }
}

body {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

a:hover {
    text-decoration: none
}

@media only screen and (max-width:1200px) {
    .container {
        max-width: 100%
    }
}

.header {
    width: 100%;
    background: #3c6382;
    background: -webkit-gradient(linear, left top, left bottom, from(#418fce), color-stop(55%, #3c6382), color-stop(90%, #373b44));
    background: -webkit-linear-gradient(top, #418fce 0%, #3c6382 55%, #373b44 90%);
    background: -o-linear-gradient(top, #418fce 0%, #3c6382 55%, #373b44 90%);
    background: linear-gradient(180deg, #418fce 0%, #3c6382 55%, #373b44 90%);
    background-image: url(../img/bg-header.png);
    background-repeat: repeat-y;
    background-size: cover;
    background-position: center center;
    min-height: 15rem;
    height: auto
}

.header .logo-header {
    margin-top: 1rem;
    width: 100%
}

@media only screen and (max-width:1100px) {
    .header .logo-header {
        margin-top: 2rem
    }
}

@media only screen and (max-width:900px) {
    .header .logo-header {
        margin-top: 3rem
    }
}

@media only screen and (max-width:620px) {
    .header .logo-header {
        margin-top: 4rem
    }
}

@media only screen and (max-width:575px) {
    .header .logo-header {
        display: block;
        margin: 2rem auto;
        height: 50px;
        width: auto
    }
}

.header .header-right {
    width: 90%;
    display: -ms-grid;
    display: grid;
    position: relative;
    -ms-grid-columns: (minmax(15rem, 1fr))[3] 1fr;
    grid-template-columns: repeat(3, minmax(15rem, 1fr)) 1fr
}

@media only screen and (max-width:900px) {
    .header .header-right {
        -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr)
    }
}

@media only screen and (max-width:575px) {
    .header .header-right {
        width: 100%
    }
}

.header .login-box {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1/4;
    background: #0157a0;
	background: -moz-linear-gradient(top,  #0157a0 0%, #003460 100%);
	background: -webkit-linear-gradient(top,  #0157a0 0%,#003460 100%);
	background: linear-gradient(to bottom,  #0157a0 0%,#003460 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0157a0', endColorstr='#003460',GradientType=0 );
    padding: 1rem;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 5px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media only screen and (max-width:900px) {
    .header .login-box {
        grid-column: 1/-1
    }
}

@media only screen and (max-width:575px) {
    .header .login-box {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        background: transparent;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px
    }
}

.header .login-box .login-input {
    padding: 3px 5px;
    font-size: 1.2rem;
    border-radius: 4px;
    border: 1.5px solid #eee
}

@media only screen and (max-width:1200px) {
    .header .login-box .login-input {
        width: 90%
    }
}

@media only screen and (max-width:575px) {
    .header .login-box .login-input {
        width: 100%
    }
}

.header .login-box .login-btn {
    background: #f9ca24;
    padding: 3px 5px;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 1px;
    border-radius: 10px;
    border: 2px solid white;
    -webkit-transition: all ease .2s;
    -o-transition: all ease .2s;
    transition: all ease .2s
}

@media only screen and (max-width:575px) {
    .header .login-box .login-btn {
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        grid-row: 2/3;
        grid-column: 1/-1;
        width: 25%;
        margin: 0 auto
    }
}

.header .login-box .login-btn:hover,
.header .login-box .login-btn:visited {
    -webkit-box-shadow: 3px 3px 4px 0 black;
    box-shadow: 3px 3px 4px 0 black;
    -webkit-transform: scale(1.05) translateY(-1px) translateX(1px);
    -ms-transform: scale(1.05) translateY(-1px) translateX(1px);
    transform: scale(1.05) translateY(-1px) translateX(1px)
}

.header .register-box {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    grid-column: 4/-1;
    margin-left: 1rem;
    margin-top: 1rem
}

@media only screen and (max-width:900px) {
    .header .register-box {
        -ms-grid-row: 4;
        -ms-grid-row-span: 1;
        grid-row: 4/5;
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-column: 1/-1;
        margin: 2rem .5rem
    }
}

.header .register-box .register-btn {
    background: #0e5590;
    padding: 10px 12px;
    color: white;
    font-weight: 900;
    letter-spacing: .5px;
    font-size: 2.2rem;
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.6);
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.6);
    border-color: #3b9fde;
    border-radius: 15px;
    -webkit-transition: all ease .25s;
    -o-transition: all ease .25s;
    transition: all ease .25s
}

@media only screen and (max-width:900px) {
    .header .register-box .register-btn {
        font-size: 2rem;
        padding: 8px 10px;
        width: 100%;
    }
}

@media only screen and (max-width:620px) {
    .header .register-box .register-btn {
        font-size: 1.8rem;
        padding: 6px 8px;
        width: 100%;
    }
}

.header .register-box .register-btn:hover,
.header .register-box .register-btn:visited {
    -webkit-box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.8);
    box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.8);
    -webkit-transform: scale(1.05) translateY(-1px) translateX(1px);
    -ms-transform: scale(1.05) translateY(-1px) translateX(1px);
    transform: scale(1.05) translateY(-1px) translateX(1px)
}

.header .register-box .register-btn .disini {
    margin-top: -1rem;
    display: block
}

.header .contact-box {
    margin: 1rem 0;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1/4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media only screen and (max-width:900px) {
    .header .contact-box {
        grid-column: 1/-1
    }
}

@media only screen and (max-width:575px) {
    .header .contact-box {
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly
    }
}

.header .contact-box .contact-text {
    background: gray;
    background: -webkit-gradient(linear, left top, left bottom, from(gray), color-stop(60%, gray), color-stop(60%, #121212));
    background: -webkit-linear-gradient(top, gray 0%, gray 60%, #121212 60%);
    background: -o-linear-gradient(top, gray 0%, gray 60%, #121212 60%);
    background: linear-gradient(180deg, gray 0%, gray 60%, #121212 60%);
    color: white;
    font-size: 1.6rem;
    padding: 2.5px 10px;
    border: 1px solid white;
    text-align: center
}

@media only screen and (max-width:900px) {
    .header .contact-box .contact-text {
        font-size: 1.4rem
    }
}

@media only screen and (max-width:620px) {
    .header .contact-box .contact-text {
        font-size: 1.3rem
    }
}

@media only screen and (max-width:575px) {
    .header .contact-box .contact-text {
        font-size: 1.5rem
    }
}

.header .contact-box .garis-batas {
    display: block;
    clear: both;
    width: 3px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9)
}

@media only screen and (max-width:1100px) {
    .header .contact-box .garis-batas {
        width: 1.75px
    }
}

@media only screen and (max-width:575px) {
    .header .contact-box .garis-batas {
        width: 2px
    }
}

.header .contact-box .logo-contact {
    width: 30px;
    height: 30px
}

@media only screen and (max-width:1100px) {
    .header .contact-box .logo-contact {
        width: 20px;
        height: 20px
    }
}

@media only screen and (max-width:620px) {
    .header .contact-box .logo-contact {
        width: 17px;
        height: 17px
    }
}

@media only screen and (max-width:575px) {
    .header .contact-box .logo-contact {
        width: 22px;
        height: 22px
    }
}

.header .news {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
    grid-column: 1/-1;
    grid-gap: 5px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: -webkit-min-content minmax(-webkit-max-content, 1fr);
    -ms-grid-columns: min-content minmax(max-content, 1fr);
    grid-template-columns: -webkit-min-content minmax(-webkit-max-content, 1fr);
    grid-template-columns: min-content minmax(max-content, 1fr);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 3.4rem;
    -webkit-clip-path: polygon(2% 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(2% 0, 100% 0, 100% 100%, 0% 100%);
    background: #0157a0;
	background: -moz-linear-gradient(top,  #0157a0 0%, #003460 100%);
	background: -webkit-linear-gradient(top,  #0157a0 0%,#003460 100%);
	background: linear-gradient(to bottom,  #0157a0 0%,#003460 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0157a0', endColorstr='#003460',GradientType=0 );
    color: white
}

@media only screen and (max-width:1050px) {
    .header .news {
        height: 3rem
    }
}

@media only screen and (max-width:620px) {
    .header .news {
        grid-gap: 2px
    }
}

.header .news .news-title {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    margin-left: 2.5rem;
    font-size: 1.7rem
}

@media only screen and (max-width:900px) {
    .header .news .news-title {
        font-size: 1.5rem
    }
}

@media only screen and (max-width:900px) {
    .header .news .news-title {
        font-size: 1.35rem;
        margin-left: 1.2rem
    }
}

@media only screen and (max-width:575px) {
    .header .news .news-title {
        font-size: 1.45rem;
        margin-left: 1.75rem
    }
}

.header .news .news-text {
    width: 98%;
    height: 2rem;
    padding: 0 0 2px 20px;
    font-weight: 500;
    -webkit-clip-path: polygon(2% 0, 100% 0, 98% 100%, 0% 100%);
    clip-path: polygon(2% 0, 100% 0, 98% 100%, 0% 100%);
    background: #111;
    font-size: 1.2rem
}

@media only screen and (max-width:900px) {
    .header .news .news-text {
        font-size: 1rem
    }
}

@media only screen and (max-width:620px) {
    .header .news .news-text {
        padding: 0 0 0 8.5px;
        width: 100%
    }
}

@media only screen and (max-width:575px) {
    .header .news .news-text {
        padding: 0 0 0 8.5px;
        width: 99%;
        font-size: 1.2rem
    }
}

.body {
    width: 100%;
    height: auto;
    min-height: 75rem;
    background: #cbdff0
}

.body .menu-box {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 5px;
    height: 4rem
}

@media only screen and (max-width:1100px) {
    .body .menu-box {
        grid-gap: 2px
    }
}

@media only screen and (max-width:900px) {
    .body .menu-box {
        grid-gap: 1.5px
    }
}

.body .menu-box .menu-item {
    text-align: center;
    padding-top: 10px;
    background: #3c6382;
    background: -webkit-gradient(linear, left top, left bottom, from(#3c6382), color-stop(55%, #3c6382), color-stop(90%, #373b44));
    background: -webkit-linear-gradient(top, #3c6382 0%, #3c6382 55%, #373b44 90%);
    background: -o-linear-gradient(top, #3c6382 0%, #3c6382 55%, #373b44 90%);
    background: linear-gradient(180deg, #3c6382 0%, #3c6382 55%, #373b44 90%);
    background-image: url(../img/bg-menu.png);
    background-repeat: repeat-y;
    background-size: cover;
    background-position: center center;
    cursor: pointer;
    opacity: .9;
    -webkit-transition: all ease .15s;
    -o-transition: all ease .15s;
    transition: all ease .15s
}

.body .menu-box .menu-item:hover,
.body .menu-box .menu-item:visited {
    opacity: 1;
    -webkit-transform: scale(1.02) translateY(-3px);
    -ms-transform: scale(1.02) translateY(-3px);
    transform: scale(1.02) translateY(-3px);
    -webkit-box-shadow: 0 1px 8px 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 1px 8px 0 rgba(255, 255, 255, 0.4)
}

.body .menu-box .menu-item .menu-link {
    font-size: 1.7rem;
    font-weight: bold;
    line-height: 1px;
    text-transform: uppercase;
    color: white;
    background: -webkit-gradient(linear, left top, left bottom, from(#efefef), color-stop(50%, #efefef), color-stop(50%, #afafaf), color-stop(55%, #afafaf), color-stop(80%, #efefef), to(#efefef));
    background: -webkit-linear-gradient(top, #efefef 0%, #efefef 50%, #afafaf 50%, #afafaf 55%, #efefef 80%, #efefef 100%);
    background: -o-linear-gradient(top, #efefef 0%, #efefef 50%, #afafaf 50%, #afafaf 55%, #efefef 80%, #efefef 100%);
    background: linear-gradient(to bottom, #efefef 0%, #efefef 50%, #afafaf 50%, #afafaf 55%, #efefef 80%, #efefef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

@media only screen and (max-width:1100px) {
    .body .menu-box .menu-item .menu-link {
        font-size: 1.4rem
    }
}

@media only screen and (max-width:1100px) {
    .body .menu-box .menu-item .menu-link {
        font-size: 1.35rem;
        line-height: .8px
    }
}

@media only screen and (max-width:479.8px) {
    .body .menu-box .menu-item .menu-link>span {
        display: none
    }
}

.body .menu-box .menu-item .logo-menu {
    width: 20px;
    height: 20px;
    margin-right: 1rem
}

@media only screen and (max-width:1100px) {
    .body .menu-box .menu-item .logo-menu {
        width: 15px;
        height: 15px;
        margin-right: 2px;
        margin-bottom: 3px
    }
}

@media only screen and (max-width:620px) {
    .body .menu-box .menu-item .logo-menu {
        width: 12.5px;
        height: 12.5px;
        margin-right: 2px;
        margin-bottom: 3px
    }
}

@media only screen and (max-width:479.8px) {
    .body .menu-box .menu-item .logo-menu {
        width: 14px;
        height: 14px;
        margin: auto
    }
}

.body .menu-box .menu-item:first-child {
    border-top-left-radius: 15px
}

.body .menu-box .menu-item:last-child {
    border-top-right-radius: 15px
}

.body .body-inner {
    height: auto;
    overflow: hidden
}

.body .body-inner .hero-img {
    width: 100%
}

@media only screen and (max-width:1100px) {
    .body .body-inner .hero-img {
        height: 45rem
    }
}

@media only screen and (max-width:900px) {
    .body .body-inner .hero-img {
        height: 40rem
    }
}

@media only screen and (max-width:620px) {
    .body .body-inner .hero-img {
        height: 30rem
    }
}

@media only screen and (max-width:479.8px) {
    .body .body-inner .hero-img {
        height: 27rem
    }
}

.body .bank-box {
    background: #0157a0;
	background: -moz-linear-gradient(top,  #0157a0 0%, #003460 100%);
	background: -webkit-linear-gradient(top,  #0157a0 0%,#003460 100%);
	background: linear-gradient(to bottom,  #0157a0 0%,#003460 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0157a0', endColorstr='#003460',GradientType=0 );   

    height: auto;
    min-height: 5rem;
    padding: 1rem 1rem;
    color: white;
    overflow: hidden;
    display: -ms-grid;
    display: grid;
    grid-gap: 5px;
    -ms-grid-columns: (-webkit-max-content)[3] 1fr 1fr;
    -ms-grid-columns: (max-content)[3] 1fr 1fr;
    grid-template-columns: repeat(3, -webkit-max-content) 1fr 1fr;
    grid-template-columns: repeat(3, max-content) 1fr 1fr
}

@media only screen and (max-width:1100px) {
    .body .bank-box {
        grid-gap: 2px;
        -ms-grid-columns: -webkit-max-content (minmax(-webkit-max-content, 1fr))[3] 21rem;
        -ms-grid-columns: max-content (minmax(max-content, 1fr))[3] 21rem;
        grid-template-columns: -webkit-max-content repeat(3, minmax(-webkit-max-content, 1fr)) 21rem;
        grid-template-columns: max-content repeat(3, minmax(max-content, 1fr)) 21rem
    }
}

@media only screen and (max-width:900px) {
    .body .bank-box {
        grid-gap: 2px;
        -ms-grid-columns: (minmax(-webkit-max-content, 1fr))[2];
        -ms-grid-columns: (minmax(max-content, 1fr))[2];
        grid-template-columns: repeat(2, minmax(-webkit-max-content, 1fr));
        grid-template-columns: repeat(2, minmax(max-content, 1fr))
    }
}

@media only screen and (max-width:620px) {
    .body .bank-box {
        grid-gap: 1.5px;
        grid-row-gap: 13px
    }
}

@media only screen and (max-width:479.8px) {
    .body .bank-box {
        grid-gap: 1.5px;
        grid-row-gap: 17px
    }
}

.body .bank-box .bca {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2
}

@media only screen and (max-width:479.8px) {
    .body .bank-box .bca {
        grid-column: 1/-1
    }
}

.body .bank-box .mandiri {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    margin: 0 1rem
}

@media only screen and (max-width:479.8px) {
    .body .bank-box .mandiri {
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-column: 1/2;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        grid-row: 2/3
    }
}

.body .bank-box .bri {
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/4;
    margin: 0 1rem
}

@media only screen and (max-width:900px) {
    .body .bank-box .bri {
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-column: 1/2;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        grid-row: 2/3
    }
}

@media only screen and (max-width:479.8px) {
    .body .bank-box .bri {
        -ms-grid-column: 2;
        -ms-grid-column-span: 1;
        grid-column: 2/3;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        grid-row: 2/3
    }
}

.body .bank-box .bni-danamon {
    -ms-grid-column: 4;
    -ms-grid-column-span: 1;
    grid-column: 4/5;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr
}

@media only screen and (max-width:900px) {
    .body .bank-box .bni-danamon {
        -ms-grid-column: 2;
        -ms-grid-column-span: 1;
        grid-column: 2/3;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        grid-row: 2/3
    }
}

@media only screen and (max-width:479.8px) {
    .body .bank-box .bni-danamon {
        grid-column: 1/-1;
        -ms-grid-row: 3;
        -ms-grid-row-span: 1;
        grid-row: 3/4
    }
}

.body .bank-box .live-chat {
    margin-left: auto;
    margin-right: 1rem;
    cursor: pointer;
    -webkit-transition: all ease .25s;
    -o-transition: all ease .25s;
    transition: all ease .25s
}

@media only screen and (max-width:1100px) {
    .body .bank-box .live-chat {
        margin: auto
    }
}

@media only screen and (max-width:900px) {
    .body .bank-box .live-chat {
        grid-column: 1/-1;
        -ms-grid-row: 3;
        -ms-grid-row-span: 1;
        grid-row: 3/4;
        margin-left: auto;
        margin-right: 3rem
    }
}

@media only screen and (max-width:479.8px) {
    .body .bank-box .live-chat {
        margin: auto;
        grid-column: 1/-1;
        -ms-grid-row: 4;
        -ms-grid-row-span: 1;
        grid-row: 4/5
    }
}

.body .bank-box .live-chat:hover,
.body .bank-box .live-chat:visited {
    -webkit-transform: scale(1.06) translateY(-4px) translateX(-2px);
    -ms-transform: scale(1.06) translateY(-4px) translateX(-2px);
    transform: scale(1.06) translateY(-4px) translateX(-2px)
}

@media only screen and (max-width:1100px) {
    .body .bank-box .live-chat__img {
        width: 170px
    }
}

@media only screen and (max-width:1050px) {
    .body .bank-box .live-chat__img {
        width: 150px
    }
}

@media only screen and (max-width:620px) {
    .body .bank-box .live-chat__img {
        width: 130px
    }
}

.body .bank-box .bni-danamon-text {
    grid-column: 1/-1
}

.body .bank-box .bank-text-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.body .bank-box .logo-bca {
    height: 35px;
    width: 100px
}

@media only screen and (max-width:1050px) {
    .body .bank-box .logo-bca {
        width: 80px
    }
}

@media only screen and (max-width:620px) {
    .body .bank-box .logo-bca {
        height: 25px;
        width: 60px
    }
}

.body .bank-box .logo-mandiri {
    height: 30px;
    width: 100px;
    margin-top: 5px
}

@media only screen and (max-width:1050px) {
    .body .bank-box .logo-mandiri {
        width: 80px
    }
}

@media only screen and (max-width:620px) {
    .body .bank-box .logo-mandiri {
        margin-top: 0px;
        height: 25px;
        width: 60px
    }
}

.body .bank-box .logo-bri {
    height: 28px;
    margin-top: 8px;
    width: 100px
}

@media only screen and (max-width:1050px) {
    .body .bank-box .logo-bri {
        width: 80px
    }
}

@media only screen and (max-width:620px) {
    .body .bank-box .logo-bri {
        margin-top: 0px;
        height: 25px;
        width: 70px
    }
}

.body .bank-box .logo-bni {
    margin-left: auto;
    margin-right: 1rem;
    height: 25px;
    margin-top: 10px;
    width: 100px
}

@media only screen and (max-width:1050px) {
    .body .bank-box .logo-bni {
        width: 80px
    }
}

@media only screen and (max-width:620px) {
    .body .bank-box .logo-bni {
        margin-top: 0px;
        height: 25px;
        width: 60px
    }
}

.body .bank-box .logo-danamon {
    margin-left: 1rem;
    margin-right: auto;
    height: 30px;
    margin-top: 5px;
    width: 115px
}

@media only screen and (max-width:1050px) {
    .body .bank-box .logo-danamon {
        width: 80px
    }
}

@media only screen and (max-width:620px) {
    .body .bank-box .logo-danamon {
        margin-top: 0px;
        height: 25px;
        width: 60px
    }
}

.body .bank-box .bank-text-box {
    margin-top: 1rem;
    text-align: center
}

.body .bank-box .bank-text-box .bank-text-title {
    color: #fff200;
    font-weight: 600;
    font-size: 1.4rem
}

@media only screen and (max-width:1050px) {
    .body .bank-box .bank-text-box .bank-text-title {
        font-size: 1.55rem
    }
}

.body .bank-box .bank-text-box .bank-text-inner {
    text-transform: uppercase;
    font-size: 1.4rem;
    font-weight: bold;
    font-style: italic;
    background: -webkit-gradient(linear, left top, left bottom, from(#efefef), color-stop(50%, #efefef), color-stop(50%, #afafaf), color-stop(55%, #afafaf), color-stop(80%, #efefef), to(#efefef));
    background: -webkit-linear-gradient(top, #efefef 0%, #efefef 50%, #afafaf 50%, #afafaf 55%, #efefef 80%, #efefef 100%);
    background: -o-linear-gradient(top, #efefef 0%, #efefef 50%, #afafaf 50%, #afafaf 55%, #efefef 80%, #efefef 100%);
    background: linear-gradient(to bottom, #efefef 0%, #efefef 50%, #afafaf 50%, #afafaf 55%, #efefef 80%, #efefef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

@media only screen and (max-width:1050px) {
    .body .bank-box .bank-text-box .bank-text-inner {
        font-size: 1.35rem
    }
}

@media only screen and (max-width:575.8px) {
    .wd-last {
        margin-top: 1rem
    }
}