html {
    scroll-behavior: smooth;
}

.tabs-navigation {
    position: sticky;
    top: 0px;
    z-index: 1;
    transition: top 0.3s ease;
    background-color: #262626;
    padding: 16px;
}

.tabs-navigation ul {
    display: flex;
    justify-content: center;
    gap: 48px;
    list-style-type: none;
    margin: 0;
    padding: 0;
    color: #fff;
    text-transform: uppercase;
}

.tabs-navigation ul li {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tabs-navigation ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px !important;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 1.8px;
    height: 100%;
    padding: 6px 0;
}

.tabs-navigation ul li.active {
    color: #ECE81A;
}

.tabs-navigation ul li.active::after,
.tabs-navigation ul li:hover::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #E9E600;
}

.tabs-navigation ul .search-job-btn {
    display: none;
    /* display: inline-block; */
    font-size: 18px !important;
    line-height: 22px;
    font-weight: 600;
    color: #000;
    padding: 10px 31px;
    background: #ECE81A;
    text-align: center;
    text-decoration: none;
    position: relative;
    top: -100px;
    opacity: 0;
    transition: top 0.4s ease, opacity 0.4s ease;
}

.tabs-navigation ul .search-job-btn.show {
    display: inline-block;
    top: 0;
    opacity: 1;
}

@media (max-width: 1279px) {
    .tabs-navigation ul {
        gap: 36px;
    }
    .tabs-navigation ul li a {
        font-size: 14px !important;
        line-height: 20px;
        letter-spacing: 0.14px;
    }
    .tabs-navigation ul .search-job-btn {
        font-size: 14px !important;
        line-height: 20px;
        letter-spacing: 0.28px;
    }
}

@media (max-width: 768px) {
    .tabs-navigation {
        display: none;
    }
}