.graph-ui-1 {
    position: absolute;
    bottom: -0.9vw;
    width: 100%;

    /* background: rgba(255,0,0,0.1); */
}
.line {
    height: 0.2vw;
    margin-bottom: 20px;
    background: pink;
    width: 60%;
}
/* .val-1.line {
    background: linear-gradient(to right, #4C4CE2 0%, #FE6EEA 100%);
}
.val-2.line {
    background: linear-gradient(to right, #FF4996 0%, #FF9C58 100%);
}
.val-3.line {
    background: linear-gradient(to right, #009EFF 0%, #2ACC6C 100%);
}
.val-4.line {
    background: linear-gradient(to right, #4C4CE2 0%, #FE6EEA 100%);
}
.val-5.line {
    background: linear-gradient(to right, #FF4996 0%, #FF9C58 100%);
}
.val-6.line {
    background: linear-gradient(to right, #009EFF 0%, #2ACC6C 100%);
} */
.graph-ui-1 .big-values {
    width: 60%;
    padding: 3vh 0 3vh 2%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
    border: none;
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
}
.value {
    display: inline-block;
    width: 30%;
    margin: 0 1% 2%;
    vertical-align: top;
}
.graph-ui-1 .bigvalue {
    width: 60%;
    text-align: center;
    /* margin: 0 auto; */
    font-size: 4vw;
}
.value .hdr {
    color: #fff;
    font-weight: 100;
    font-size: 1.4vw;
    margin-bottom: 16px;
}
.value .description {
    color: #fff;
    font-weight: 100;
    font-size: 1vw;
    margin-bottom: 10px;
}
.val-1.bigvalue {
    background-clip: text;
    text-transform: uppercase;
    background: -webkit-gradient(linear, left top, right top, from(#30CFD0), to(#330867));
    background: linear-gradient(to right, #4C4CE2 0%, #FE6EEA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}
.val-2.bigvalue {
    background-clip: text;
    text-transform: uppercase;
    background: -webkit-gradient(linear, left top, right top, from(#30CFD0), to(#330867));
    background: linear-gradient(to right, #FF4996 0%, #FF9C58 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.val-3.bigvalue {
    background-clip: text;
    text-transform: uppercase;
    background: -webkit-gradient(linear, left top, right top, from(#30CFD0), to(#330867));
    background: linear-gradient(to right, #009EFF 0%, #2ACC6C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.val-4.bigvalue {
    background-clip: text;
    text-transform: uppercase;
    background: -webkit-gradient(linear, left top, right top, from(#30CFD0), to(#330867));
    background: linear-gradient(to right, #FF9F80 0%, #FFEFB9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}


@media only screen and (max-width: 500px) {
    .graph-ui-1 .value .hdr {
        font-size: 10px;
    }
    
}

@media only screen and (max-width: 700px) {
    .graph-ui-1 .big-values {
        width: 80%;
    }
    .graph-ui-1 .line {
        margin-bottom: 0.5rem;
        height: 2px;
    }
    .graph-ui-1 .value .hdr {
        font-weight: bold;
        font-size: 11px;
        margin-bottom: 0.5rem;
        min-height: 2.5em;
    }
    .graph-ui-1 .bigvalue {
        font-size:  14px;
    }
    
}