

.position {
        float: left;
    margin: 0px 60px;
}

.progress-bar {
    position: relative;
    height: 260px;
    width: 160px;
}

    .progress-bar div {
           border-radius: 50%;
    height: 250px;
    bottom: 100px;
    position: absolute;
    width: 250px;
    }

        .progress-bar div span {
                position: absolute;
    font-size: 16px;
    line-height: 75px;
    height: 40%;
    width: 40%;
    left: 30%;
    top: 30%;
    text-align: center;
    border-radius: 50%;
    background-color: white;
        }

.expertise {
    color: #fff;
    display: block;
    font-family: Montserrat;
    font-size: 14px;
    left: 45px;
    position: absolute;
    text-align: center;
    width: 100%;
    top: 200px;

}

.progress-bar .background {
    background-color: #b3cef6;
}

.progress-bar .rotate {
    clip: rect(0 100px 200px 0);
    background-color: #0258ab;
}

.progress-bar .left {
    clip: rect(0 100px 200px 0);
    opacity: 1;
    background-color: #b3cef6;
}

.progress-bar .right {
    clip: rect(0 100px 200px 0);
    transform: rotate(180deg);
    opacity: 0;
    background-color: #0258ab;
}

@keyframes toggle {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes toggle {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes toggle {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
