
.cv{
    margin-top: 20px;
}

.cv .download{
    cursor: pointer;
    border: 1px solid red;
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 16px;
    color: var(--main-color);
    padding: 15px;
    border-radius: 12px;
    background: linear-gradient(to bottom right, hsl(0, 0%, 25%) 0%, hsla(0, 0%, 25%, 0) 50%);
    border: 1px solid #383838;
    font-family: "Poppins", sans-serif;
}

.cv h1{
    position: relative;
    color: var(--title-color);
    font-size: var(--title-size);
    font-weight: var(--title-weight);
    margin-bottom: 30px;
}

.cv h1::after{
    content: '';
    width: 40px;
    height: 5px;
    background: linear-gradient(to right, #FFCC33, #F2A03D);
    border-radius: 3px;
    position: absolute;
    left: 0;
    bottom: -15px;
}

.cv .title-wrapper{
    display: flex;
    align-items: center;
    gap: 15px;
}

.cv .title-wrapper h3{
    font-size: 24px;
    font-weight: 600;
}

.cv .title-wrapper .icon-box{
    width: 48px;
    height: 48px;
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    padding: 10px;
    border-radius: 12px;
    background: linear-gradient(to bottom right, hsl(0, 0%, 25%) 0%, hsla(0, 0%, 25%, 0) 50%);
    border: 1px solid #383838;
}


.cv .timeline-list {
    position: relative;
    margin-top: 20px;
}

.cv .timeline-item {
    position: relative;
    margin-left: 55px;
    margin-bottom: 20px;
}

.cv .timeline-item::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 5px;
    width: 6px;
    height: 6px;
    background-color: #ffcc00;
    box-shadow: 0 0 0 4px hsl(0, 0%, 22%);
    border-radius: 50%;
}

.cv .timeline-list::before {
    content: '';
    position: absolute;
    top: -21px;
    left: 22px;
    width: 1px;
    height: 100%;
    border-radius: 10px;
    background-color: #383838;
}

.cv .timeline-list:last-child{
    margin-bottom: 60px;
}

.cv .timeline-item h4{
    color: var(--title-color);
    font-weight: 700;
    font-size: 15px;
}

.cv .timeline-item p{
    color: var(--text-color);
    font-weight: 300;
    font-size: 15px;
    margin-top: 5px;
}

.cv .timeline-item span{
    color: var(--main-color);
    font-size: 15px;
}