.ptl-wrapper{
    padding:40px 20px;
    background:#f5f5f5;
}

.ptl-header{
    text-align:center;
    margin-bottom:20px;
}

.ptl-main-title{
    font-size:32px;
    font-weight:700;
    margin-bottom:0px;
    color:#111;
}

.ptl-main-description{
    font-size:16px;
    color:#5d6d7e;
    margin:auto;
    line-height:1.7;
}

.ptl-timeline{
    max-width:1000px;
    margin:auto;
}

.ptl-item{
    display:flex;
    gap:30px;
    position:relative;
}

.ptl-left{
    width:50px;
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.ptl-number{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#0b84d8;
    color:#fff;
    font-size:16px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:2;
}

.ptl-line{
    width:2px;
    flex:1;
    background:#0D62F3;

}

.ptl-item:last-child .ptl-line{
    display:none;
}

.ptl-card{
    flex:1;
    background:#fff;
    border:1px solid #dfe6ec;
    border-radius:25px;
    padding:20px;
    margin-bottom:10px;
    transition:0.3s;
}

.ptl-card:hover{
    transform:translateY(-5px);
}

.ptl-title{
    font-size:32px;
    font-weight:700;
    margin-bottom:0px;

}

.ptl-description{
 font-size: 18px;
    line-height: 30px;
}

@media(max-width:767px){

    .ptl-main-title{
        font-size:34px;
    }

    .ptl-main-description{
        font-size:16px;
    }

    .ptl-item{
        gap:20px;
    }

    .ptl-card{
        padding:25px;
        border-radius:24px;
    }

    .ptl-title{
        font-size:22px;
    }

    .ptl-description{
        font-size:16px;
    }

    .ptl-line{
        min-height:220px;
    }
}