.skill-content {
    margin-top: 30px;
}

.skill-container {
    margin-top: 40px;
}

.skill .skills {
    -webkit-animation: fadein .4s ease-in-out .5s backwards;
    -moz-animation: fadein .4s ease-in-out .5s backwards;
    -ms-animation: fadein .4s ease-in-out .5s backwards;
    -o-animation: fadein .4s ease-in-out .5s backwards;
    animation: fadein .4s ease-in-out .5s backwards;
}

.skill {
    margin: 40px 80px;
}

.chart {
    position: relative;
    display: inline-block;
    color: var(--blue);
    font-size: 40px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
}

.chart figcaption {
    padding: 50px 25px;
    width: 100px;
    height: 50px;
    border: 20px solid var(--grey);
    border-radius: 100px;
    line-height: 50px;
}

.chart svg {
    position: absolute;
    top: 0;
    left: 0;
}

.outer {
    fill: transparent;
    stroke: var(--blue);
    stroke-width: 20;
    stroke-dasharray: 534;
    transition: stroke-dashoffset 1s;
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -ms-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running;
    /* firefox bug fix - won't rotate at 90deg angles */
    -moz-transform: rotate(-89deg) translateX(-190px);
}

.chart:hover .outer {
    stroke-dashoffset: 534 !important;
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -ms-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

.chart[data-percent='100'] .outer {
    stroke-dashoffset: 50;
    -webkit-animation: show100 1.5s ease-in-out;
    -moz-animation: show100 1.5s ease-in-out;
    -ms-animation: show100 1.5s ease-in-out;
    -o-animation: show100 1.5s ease-in-out;
    animation: show100 1.5s ease-in-out;
}

.chart[data-percent='75'] .outer {
    stroke-dashoffset: 110;
    -webkit-animation: show75 1.5s ease-in-out;
    -moz-animation: show75 1.5s ease-in-out;
    -ms-animation: show75 1.5s ease-in-out;
    -o-animation: show75 1.5s ease-in-out;
    animation: show75 1.5s ease-in-out;
}

.chart[data-percent='50'] .outer {
    stroke-dashoffset: 230;
    -webkit-animation: show50 1.5s ease-in-out;
    -moz-animation: show50 1.5s ease-in-out;
    -ms-animation: show50 1.5s ease-in-out;
    -o-animation: show50 1.5s ease-in-out;
    animation: show50 1.5s ease-in-out;
}

@-webkit-keyframes show100 {
    from {
        stroke-dashoffset: 537;
    }
    to {
        stroke-dashoffset: 50;
    }
}

@-moz-keyframes show100 {
    from {
        stroke-dashoffset: 537;
    }
    to {
        stroke-dashoffset: 50;
    }
}

@-ms-keyframes show100 {
    from {
        stroke-dashoffset: 537;
    }
    to {
        stroke-dashoffset: 50;
    }
}

@-o-keyframes show100 {
    from {
        stroke-dashoffset: 537;
    }
    to {
        stroke-dashoffset: 50;
    }
}

@keyframes show100 {
    from {
        stroke-dashoffset: 537;
    }
    to {
        stroke-dashoffset: 50;
    }
}

@-webkit-keyframes show75 {
    from {
        stroke-dashoffset: 537;
    }
    to {
        stroke-dashoffset: 110;
    }
}

@-moz-keyframes show75 {
    from {
        stroke-dashoffset: 537;
    }
    to {
        stroke-dashoffset: 110;
    }
}

@-ms-keyframes show75 {
    from {
        stroke-dashoffset: 537;
    }
    to {
        stroke-dashoffset: 110;
    }
}

@-o-keyframes show75 {
    from {
        stroke-dashoffset: 537;
    }
    to {
        stroke-dashoffset: 110;
    }
}

@keyframes show75 {
    from {
        stroke-dashoffset: 537;
    }
    to {
        stroke-dashoffset: 110;
    }
}

@-webkit-keyframes show50 {
    from {
        stroke-dashoffset: 537;
    }
    to {
        stroke-dashoffset: 230;
    }
}

@-moz-keyframes show50 {
    from {
        stroke-dashoffset: 537;
    }
    to {
        stroke-dashoffset: 230;
    }
}

@-ms-keyframes show50 {
    from {
        stroke-dashoffset: 537;
    }
    to {
        stroke-dashoffset: 230;
    }
}

@-o-keyframes show50 {
    from {
        stroke-dashoffset: 537;
    }
    to {
        stroke-dashoffset: 230;
    }
}

@keyframes show50 {
    from {
        stroke-dashoffset: 537;
    }
    to {
        stroke-dashoffset: 230;
    }
}