.nav-wrapper {
    height: 100px;
}

.works-wrapper {
    padding: 12px 0 60px 0;
}

.works-wrapper .breadcrubs {
    padding: 0;
    margin-bottom: 10px;
}

.work-title {
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
    margin: 0 auto;
}

.work-title h2 {
    text-align: center;
    line-height: 1.3;
    color: var(--gray-1);
}

.tab-btn {
    border: 1px solid var(--gray-5);
    padding: 12px 20px;
    max-height: 44px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    background: none;
    color: var(--gray-1);
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.work-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 42px;
}

.start-circle {
    min-height: 24px;
    max-width: 24px;
    background: var(--primary-color);
    border-radius: 24px;
    margin: 0 auto;
}

/* .center-line{
    margin: 0 174px;
    border: 1px dashed var(--primary-color);
    width: 100%;
} */




@media (max-width: 1199px) {
    .navbar {
        height: 80px;
    }

    .nav-wrapper {
        height: 80px;
    }
}

@media (max-width: 767px) {
    .navbar {
        height: 52px;
    }

    .nav-wrapper {
        height: 52px;
    }

    .works-wrapper .breadcrubs {
        margin-bottom: 14px;
    }

    .mobile-title h2 {
        font-size: 18px;
        text-align: start;
        font-weight: 500;
        margin-bottom: 22px;
    }

    .work-title {
        gap: 22px;
    }

    .work-content {
        gap: 0;
    }

    .tab-btn {
        min-width: 284px;
        padding: 4px 12px;
    }

    .tab-btn-mobile {
        overflow-x: auto;
        display: flex;
        gap: 16px;
        -ms-overflow-style: none;
        scrollbar-width: none;
        margin-bottom: 38px;
    }

    .tab-btn-mobile::-webkit-scrollbar {
        display: none;
    }

    .start-circle {
        margin: unset;
        margin-left: 12px;
    }
}