/*==========================================================================
* Skill Bar CSS
==========================================================================*/
.skill__area {
    margin-left: 10px;
    h3 {
        margin-bottom: 10px;
    }
    > p {
        margin-bottom: 40px;
    }
    &-item {
        margin-top: 25px;
        &-content {
            position: relative;
            h6 {
                font-size: 18px;
                line-height: 28px;
            }
        }
        &-count {
            position: absolute;
            top: 0;
            right: 0;
            font-weight: 500;
        }
        &-bar {
            height: 8px;
            position: absolute;
            width: 0;
            top: 0;
            left: 0;
            background: var(--primary-color-1);
            transition: all 3.5s ease-out 0s;
        }
        &-inner {
            width: 100%;
            height: 5px;
            position: relative;
            background: var(--border-color-2);
            margin-top: 11px;
        }
    }
}
/*==========================================================================
* Circle Bar CSS
==========================================================================*/
.circle__progress {
    &-item {
        position: relative;
        z-index: 1;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        &::after {
            position: absolute;
            content: '';
            background: var(--bg-white);
            width: 80%;
            height: 80%;
            border-radius: 50%;
            left: 50%;
            top: 50%;
            transform: translate(-50%,-50%);
            z-index: 2;
        }
        &-bar {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            z-index: 9;
        }
        &-number {
            position: absolute;
            width: 100%;
            height: 100%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            z-index: 3;
        }
    }
}