section.phase-component-section {
    padding: 60px 0px;
    /* background: #F6F6F6; */
}

.phase--inner-block h5 {
    font-size: 18px;
    font-weight: 400;
    line-height: 50px;
    color: var(--text-color);
}

.phase---blocks-wrap {
    display: flex;
    gap: 20px;
    position: relative;
}

.phase--inner-block {
    text-align: center;
}

.phase--inner-content h3 {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.phase--inner-content p {
    color: rgba(6, 45, 31, 0.70);
    line-height: 22px;
}

.phase---blocks-wrap::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    border-bottom: 2px solid #062D1F;
    top: 45px;
}

.phase--inner-content {
    margin-top: 40px;
    position: relative;
}

.phase--inner-content::before {
    content: "";
    position: absolute;
    height: 10px;
    width: 10px;
    background: var(--text-color);
    border-radius: 90%;
    text-align: center;
    top: -30px;
}

.phase---button-wrap {
    text-align: center;
    margin-top: 60px;
}

@media(max-width:768px){
    .phase---blocks-wrap::before{
        display: none;
    }
    .phase---blocks-wrap {
        display: unset;
    }
    
    .phase--inner-block {
        margin-bottom: 30px;
    }
}