.header {
    background: rgba(30, 30, 30, 1);
    height: 150px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    position: fixed;
    width: 100%;
    z-index: 4;
}

.header.hide {
    transform: translateY(-100%);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header__logo {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.68em;
}
.header__logo a {
    font-family: var(--main-font-inter);
    color: white;
}

.header__logo span {
    color: rgba(255, 214, 0, 1);
}

.header__list {
    display: flex;
    align-items: center;
    column-gap: 80px;
}


.header__item {
    font-family: var(--main-font-plus);
    font-size: 16px;
    font-weight: 500;
    color: rgba(151, 151, 151, 1);
    position: relative;
    cursor: pointer;
}
.header__item a{
    color: rgba(151, 151, 151, 1);
    text-transform: uppercase;
}

.header__item.active a{
    color: white;
    font-family: var(--main-font-plus);
    font-size: 16px;
    font-weight: 700;
}

.header__item.active::after {
    position: absolute;
    content: "";
    background: url('../assets/header/active.svg');
    background-size: cover;
    background-repeat: no-repeat;
    bottom: -18px;
    width: 45px;
    height: 9px;
    left: 50%;
    transform: translateX(-50%);
}

.header__button {
    padding: 22.5px 22px 22.5px 22px;
    background: rgba(255, 255, 255, 0.08);
    font-family: var(--main-font-plus);
    font-size: 18px;
    font-weight: 700;
    color: white;
    cursor: pointer;
}

@media(max-width: 991.98px) {
    .header__list {
        display: none;
    }
}

@media(max-width: 767.98px) {
    .header {
        height: 70px;
    }

    .header__logo {
        font-size: 16px;
        font-weight: 800;
        letter-spacing: 0.68em;
    }

    .header__button {
        font-size: 16px;
        padding: 15px 22px;
    }
}