.start_plan_project_block {
    text-align: center;
    position: relative;
    background-color: #09263E;
    padding: 0 100px 35px;
}

.start_plan_project_block a {
    flex: 1;
    position: relative;
    height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    text-decoration: none;
    color: #fff;
}

.start_plan_project_block h2,
.start_plan_project_block p {
    margin: 0 !important;
}

.start_plan_project_block h2 {
    background: #07F2DB;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.start_plan_project_block a h2:after {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: 22px;
    color: #07f2db;
    margin-left: 15px;
}

.start_plan_project_block p {
    font-size: 1em !important;
}

.start_plan_project_block a.active h2 {
    background: linear-gradient(50deg,#07f2db 0,#fff15a 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.start_plan_project_block a.active h2:after {
    color: #07f2db;
}

.start_plan_project_block .line {
    position: absolute;
    background: #f3f3f313;
    width: calc(100% - 200px);
    height: 4px;
    top: 85px;
    left: 100px;
}
.start_plan_project_block .highlight {
    position: absolute;
    width: calc(50% - 100px);
    height: 4px;
    top: 85px;
    left: 100px;
    background: #07F2DB;
    transition: left .2s;
}
.start_plan_project_block a:nth-child(1).active ~ .highlight {
    left: 100px;
}
.start_plan_project_block a:nth-child(2).active ~ .highlight {
    left: 50%;
}

@media (max-width: 768px) {
    .start_plan_project_block {
        flex-direction: column;
    }
    .start_plan_project_block .line {
        display: none;
    }
    .start_plan_project_block .highlight {
        display: none;
    }
    .start_plan_project_block a {
        gap: 0;
    }
    .start_plan_project_block a:nth-child(1) {
        margin-bottom: 40px;
    }
}