.header {
    width: 100%;
    padding: 0 70px;
    height: 81px;
    background: #000000;
    position: sticky;
    top: 0;
    z-index: 9999;
}

/* .header-left {} */

.header-right {
    gap: 12px;
}

.logo {
    width: 115px;
    height: 36px;
}

.menu {
    padding-left: 128px;
    gap: 56px;
    height: 81px;
}

.menu-item {
    font-weight: 500;
    font-size: 18px;
    height: 81px;
    display: flex;
    min-width: 60px;
    justify-content: center;
    align-items: center;
    position: relative;
    color: #FFFFFF;
    cursor: pointer;
}


.indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: #00bfa5;
    transition: left 0.3s ease, width 0.3s ease;
}

.menu-item.active {
    position: relative;
}




.header-search {
    width: 257px;
    height: 35px;
    background: #fff;
    border-radius: 14px;
    padding-left: 15px;

}

.header-search::placeholder {
    color: #333;
}

.header-phone-image {
    width: 29px;
    height: 30px;
}

.header-center {
    width: 106px;
    height: 34px;
    background: #444444;
    border-radius: 4px 4px 4px 4px;
    border: 1px solid #FFFFFF;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
}

.header-register {
    width: 108px;
    height: 34px;
    background: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #FFFFFF;
    font-weight: 500;
    font-size: 16px;
    color: #626262;
}

@media (max-width: 760px) {

    .menu {
        padding-left: 28px;
        gap: 56px;
        height: 81px;
    }

    .menu-item {
        font-weight: 500;
        font-size: 14px;
        height: 81px;
        display: flex;
        min-width: auto;
        justify-content: center;
        align-items: center;
        position: relative;
        color: #FFFFFF;
        cursor: pointer;
    }

    .header-search {
        width: 130px;
    }
}