#stageOfWorkSection {
    display: flex;
    align-items: flex-start;
    
    width: 100vw;
    padding-top: 100px;
}

#stageOfWorkSection nav li.nav-link span {
    color: rgba(0, 0, 0, 0.35) !important
}

#stageOfWorkSection nav .sub-nav-link a {
    color: #333 !important;
}

#stageOfWorkSection .stage-of-work-content {
    display: flex;
    flex-direction: column;

    padding: 0px 60px;
}

#stageOfWorkSection .stage-of-work-content .stage-of-work-title {
    width: 100%;
    max-width: 250px;
    margin-bottom: 75px;

    color: #333;
    font-size: 44px;
    font-weight: 400;
    line-height: 62px;
}

#stageOfWorkSection .stage-of-work-content .stage-of-work-data {
    display: flex;
    gap: 40px;
}

#stageOfWorkSection .stage-of-work-content .stage-of-work-data .stage-of-work-step {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#stageOfWorkSection .stage-of-work-content .stage-of-work-data .stage-of-work-step .stage-of-work-step-title {
    border-bottom: 2px solid #000;
    height: 80px;
    padding-bottom: 16px;
    margin-bottom: 0px;

    color: rgba(0, 0, 0, 0.5);
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}

#stageOfWorkSection .stage-of-work-content .stage-of-work-data .stage-of-work-step .stage-of-work-description {
    margin-bottom: 0px;
}

body:has(#stageOfWorkSection) footer .main-logo img {
    filter: invert(1);
}

@media (max-width: 992px) {
    #stageOfWorkSection .stage-of-work-content {
        flex-direction: column;
        gap: 40px;
    }
}