



/*** 
=============================================
    Team Details Area Css
=============================================
***/
.team-details-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0 90px;
    border-bottom: 1px solid #d4dcdb;
}

.team-details-img-box {
    position: relative;
    display: block;
    border-radius: 5px;
    overflow: hidden;
}

.team-details-img-box::after {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .7) 100%);
    transform: skewX(-5deg);
    z-index: 2;
}

.team-details-img-box:hover::after {
    -webkit-animation: shine 1.2s;
    animation: shine 1.2s;
}

.team-details-img-box img {
    width: 100%;
}



.team-details-content-box {
    position: relative;
    display: block;
    margin-left: 70px;
}

.team-details-content-box .name {
    position: relative;
    display: block;
    margin-bottom: 31px;
}

.team-details-content-box .name h2 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
}

.team-details-content-box .name span {
    color: var(--thm-gray);
    font-size: 18px;
    font-weight: 500;
}

.team-details-content-box h3 {
    color: var(--thm-base);
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
    font-family: var(--thm-font);
}

.team-details-content-box .text {
    position: relative;
    display: block;
    margin-top: 40px;
    margin-bottom: 41px;
}

.team-details-content-box .text p {
    font-weight: 500;
    margin: 0;
}

.team-details-content-box ul {
    position: relative;
    display: block;
}

.team-details-content-box ul li {
    position: relative;
    display: block;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 12px;
}

.team-details-content-box ul li:last-child {
    margin-bottom: 0;
}

.team-details-content-box ul li i::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 15px;
    padding-right: 8px;
}



.progress-levels {
    position: relative;
    display: block;
    padding-top: 116px;
}

.progress-levels .progress-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.progress-levels .progress-box .inner {
    position: relative;
    display: block;
}

.progress-levels .progress-box .inner .text {
    position: relative;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    margin: 0 0 16px;
    text-transform: capitalize;
    font-family: var(--thm-font)
}

.progress-levels .progress-box .bar {
    position: relative;
    display: block;
}

.progress-levels .progress-box .bar .bar-innner {
    position: relative;
    width: 100%;
    height: 13px;
    background-color: rgba(var(--thm-base-rgb), .05);
    border-radius: 6px;
}

.progress-levels .progress-box .bar .bar-fill {
    position: absolute;
    top: 0%;
    left: 0px;
    bottom: 0%;
    width: 0px;
    height: 13px;
    border-radius: 6px;
    background: var(--thm-base);
    transition: all 2000ms ease 300ms;
}

.progress-levels .progress-box .bar .bar-innner .skill-percent {
    position: absolute;
    top: -43px;
    right: 0;
    width: 45px;
    height: 25px;
    display: block;
    text-align: right;
    padding: 0;
    z-index: 1;
}

.progress-levels .progress-box .inner .count-text {
    position: relative;
    color: #6b767b;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    display: inline-block;
    float: none;
}

.progress-levels .progress-box .inner .percent {
    position: relative;
    color: #6b767b;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    display: inline-block;
    float: none;
    margin-left: -2px;
}