.bar{
    display: inline-block;
    padding: 0 12px;
    font-size: 0px;
    text-align: center;
    position: absolute;
    z-index: 100;
}
.bar:nth-child(1){
    bottom: 33%;
    left: 18%;
}
.bar:nth-child(2){
    top: -1%;
    left: 51%;
}
.bar:nth-child(3){
    top: 21%;
    right: -2%;
}
.bar:nth-child(4){
    bottom: 0%;
    right: -9%;
}
.bar:nth-child(5){
    bottom: -4%;
    left: 49%;
}
.bar_txt{
    position: relative;
    text-align: center;
    margin-top: 0px;
}
.bar_txt .jumbo{
    text-align: center;
    font-weight: 600;
    font-family: "roboto";
    z-index: 20;
}
.bar_txt h1{
    line-height: 0em;
    display: inline-block;
    padding-right: 3px;
}
#theme-layout #hd_main .bar_txt .blue_txt h1{
    font-size: 20px;
}
#theme-layout #hd_main .bar_txt .gray_txt h1{
    font-size: 16px;
}

.show_barchart{
    width: 25px;
    height: 100px;
    margin: 0 13px;
    border-bottom: 1px solid #969696;
    position: relative;
    overflow:hidden;
}

.barchart_1{
    width: 25px;
    position: absolute;
    bottom: 0px;
    background-color: #c9e981;
}
.mask{
    height: 0;
    width: 25px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    transition: all 3s;
    -moz-transition: all 3s;
    -webkit-transition: all 3s;
    -o-transition: all 3s;
    overflow: hidden;
}
@keyframes bar_animate {
    0% {
        opacity: 0;
    }
    1% {
        opacity: 1;
    }
    99% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}


@media screen and (max-width: 767px) {
    .show_barchart{
        width: 10px;
        height: 50px;
    }

    .barchart_1{
        width: 10px;
    }
    .mask{
        height: 0;
        width: 10px;
    }
}