.section .container{
    padding-top: 60px;
    padding-bottom: 20px;
}

.section-title{
    flex:0 0 100%;
    max-width: 100%;
    /* background-color: red; */
    margin-bottom: 60px;
}

.section-title h2{
    font-size: 35px;
    color:var(--text-black-900);
    font-weight: 700;
    position: relative;
    padding-top: 20px;
}

.section-title h2::before{
    content: '';
    height: 4px;
    width: 50px;
    background-color: var(--skin-color);
    position: absolute;
    top: 100%;
    left: 0;
}

.section-title h2::after{
    content: '';
    height: 4px;
    width: 25px;
    background-color: var(--skin-color);
    position: absolute;
    top: 100%;
    left: 0;
    margin-top:8px ;
}


.about .about-content{
    flex: 0 0 100%;
    max-width: 100%;
    /* background-color: red; */
}

.about .about-content .about-text{
    flex: 0 0 100%;
    max-width: 100%;
    /* background-color: red; */
}

.about .about-content .about-text h3{
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color:var(--text-black-900);

}

.about .about-content .about-text h3 span{
    color:var(--skin-color);

}

.about .about-content .about-text p{
    font-size: 16px;
    line-height: 25px;
    color:var(--text-black-700);
}

.about .about-content .personal-info{
    flex: 0 0 60%;
    max-width: 60%;
    /* background-color: red; */
    margin-top: 40px;
}

.about .about-content .personal-info .info-item{
    flex: 0 0 50%;
    max-width: 50%;
    /* background-color: red; */
}

.about .about-content .personal-info .info-item p{
    font-weight: 600;
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-black-900);
    border-bottom: 1px solid var(--bg-black-50);

}

.about .about-content .personal-info .info-item p span{
    font-weight: 400;
    color: var(--text-black-700);
    margin-left: 4px;
    display: inline-block;

}

.about .about-content .personal-info .buttons{
    margin-top: 30px;
    /* padding: 10px 30px; */
}

.about .about-content .personal-info .buttons .btn{
    margin-right: 15px;
    margin-top: 10px;
}



.about .about-content .skills{
    flex: 0 0 40%;
    max-width: 60%;
    /* background-color: yellow; */
    margin-top: 40px;
}

.about .about-content .skills .skill-item{
    flex:0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
    /* background-color: red; */
    /* border: 2px solid black; */
}

.about .about-content .skills .skill-item h5{
    line-height: 40px;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-black-900);
    text-transform: capitalize;
}

.about .about-content .skills .skill-item .progress{
    background-color: var(--bg-black-50);
    height: 7px;
    border-radius: 4px;
    width: 100%;
    position: relative;
}

.about .about-content .skills .skill-item .progress .progress-in{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 4px;
    background-color: var(--skin-color);
}

.about .about-content .skills .skill-item .skill-percent{
    position: absolute;
    right: 0px;
    color: var(--text-bg-black-900);
    top: -40px; 
    font-weight: 400;
    line-height: 40px;
}

.about .about-content .education{
    flex: 0 0 50%;
    max-width: 50%;
    margin-top: 30px;
    /* background-color: red; */
}


.about .about-content h3.title{
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 900;
    color: var(--text-bg-black-900);
    text-align: center;

}

.about .about-content .timeline-box{
    flex: 0 0 100%;
    max-width: 100%;
    /* background-color: red; */

}

.about .about-content .timeline{
    background-color: var(--bg-black-100);
    padding: 30px 15px;
    border:1px solid var(--bg-black-50);
    position: relative;
    width: 100%;
    border-radius: 10px;

}

.shadow-dark{
    box-shadow: 0 0 20px rgba(48, 46, 77, 0.15);
}

.about .about-content .timeline .timeline-item{
    position: relative;
    padding-left: 37px;
    padding-bottom: 50px;
}

.about .about-content .timeline .timeline-item:last-child{
    padding-bottom: 0;
}

.about .about-content .timeline .timeline-item::before{
    content: '';
    width: 1px;
    position: absolute;
    height: 100%;
    left: 7px;
    top: 0;
    background-color: var(--skin-color);
}

.about .about-content .timeline .circle-dot{
    position: absolute;
    left: 0;
    top: 0;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: var(--skin-color);
}

.about .about-content .timeline .timeline-date{
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--text-black-700);
}

.about .about-content .timeline .timeline-date .fa{
    margin-right: 5px;
}

.about .about-content .timeline .timeline-title{
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: capitalize;
    color: var(--text-bg-black-900);
}

.about .about-content .timeline .timeline-text{
    line-height: 25px;
    font-size: 16px;
    text-align: justify;
    color: var(--text-black-700);   
}

.youtube{
    text-decoration: none;
    color: var(--text-bg-black-900);
}
.youtube:hover{
    color: var(--skin-color);
}