.personal-card{
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}
.personal-card__content{
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--bg);
    padding: 17px 25px 20px;
}
.personal-card__title{
    font-weight: 500;
    font-size: 19px;
    line-height: 115%;
    color: var(--black);
    margin-bottom: 15px;
}
.personal-card__stage{
    display: flex;
    align-items: center;
    gap: 2px;
    position: relative;
}
.personal-card__stage::before{
    content: '';
    right: -15px;
    top: 0;
    bottom: 0;
    margin: auto;
    max-height: 16px;
    width: 1px;
    background: var(--stroke-bg);
    position: absolute;
}
.personal-card__stage-name{
    font-weight: 500;
    font-size: 16px;
    line-height: 115%;
    color: var(--dop-text);
}
.personal-card__stage-value{
    font-weight: 500;
    font-size: 16px;
    line-height: 115%;
    color: var(--black);
}
.personal-card__bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--stroke-bg);   
    gap: 30px;
}
.personal-card__image img{
    max-width: 100%;
    width: 100%;
    height: 100%;
}
.personal-card__reviews{
    display: flex;
    align-items: center;
    gap: 3px;
}
.rating-value{
    font-weight: 700;
    font-size: 17px;
    line-height: 115%;
    letter-spacing: -0.04em;
    color: var(--black);
}
.personal-slider{
    position: relative;
}

@media(max-width:1599px) and (min-width:1399px){
    .personal-card__stage::before{
        right: -46px;
    }
}
@media(max-width:1199px){
    .personal-card__stage::before{
        right: -67px;
    }
}
@media(max-width:991px) and (min-width:768px){
    .personal-card__bottom{
        gap: 15px;
    }
    .personal-card__stage-name,  .personal-card__stage-value{
        font-size: 14px;
    }
    .personal-card__stage::before{
        right: -11px;
    }
}

@media(max-width:767px){
    .personal-card__bottom{
        justify-content: flex-start;
    }
    .personal-card__stage::before {
        right: -15px;
    }
    
}

@media(max-width:575px){
    .personal-card__stage-name,  .personal-card__stage-value{
        font-size: 14px;
    }
    .personal-card__bottom{
        gap: 15px;
    }
    .personal-card__stage::before{
        right: -8px;
    }
}