/*
  Skill bar animations and track styling
*/
.skill-bar {
    margin-bottom: 20px;
    font-family: poppins;
}

.bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 5px;
}

.fill {
    height: 100%;
    border-radius: 20px;
    width: 0;
    animation: load 2s forwards;
}

@keyframes load {
    to {
        width: var(--level);
    }
}

#barwit {
    width: 275px;
}


@media (max-width: 992px) {
    #barwit {
        width: 100%;
    }
}