body,
html{
    background:#f8f9fa !important;
}

.stats span{
    vertical-align:middle;
}
.profile-image{
    width: 170px;
    height: 170px;
    background-repeat: no-repeat !important;
    background-position: top center !important;
    border-radius: 50%;
}

.profile-card{
    height: 200px !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: top !important;
}

.profile-card-5{
    margin-top:20px;
}

.profile-card-5 .card-img-block {
    width: 91%;
    margin: 0 auto;
    position: relative;
    top: -20px;

}
.profile-card-5 .card-img-block img{
    border-radius:5px;
    box-shadow:0 0 10px rgba(0,0,0,0.63);
}
.profile-card-5 h5{
    color:#4E5E30;
    font-weight:600;
}

.checking span {
    animation-name: blink;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
}

.checking span:nth-child(2) {
    animation-delay: .1s;
}

.checking span:nth-child(3) {
    animation-delay: .2s;
}
.checking span:nth-child(4) {
    animation-delay: .3s;
}
.checking span:nth-child(5) {
    animation-delay: .4s;
}
.checking span:nth-child(6) {
    animation-delay: .5s;
}
.checking span:nth-child(7) {
    animation-delay: .6s;
}
.checking span:nth-child(8) {
    animation-delay: .7s;
}

@keyframes blink {
    0% {
        opacity: .5;
        font-weight: light;
    }
    20% {
        opacity: 1;
        font-weight: bold;
        font-size: 16px;
    }
    100% {
        opacity: .5;
        font-weight: light;
    }
}


.bio {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 1rem;
}

.bio span{
    background: linear-gradient(#ffffffad 10%, white 90%);
    margin-top: -25px;
}

.bio.expanded span{
    margin-top: 0px;
    background: linear-gradient(#ffffffad 0%, white 100%);
}

.bio.expanded {
    -webkit-line-clamp: unset;
}