header {
    width: 100%;
    height: fit-content;
}

header .over-header {
    width: 100%;
    height: 63px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: rgba(17, 25, 51, 1);
    padding: 0 35px;
}

header .over-header a {
    height: 100%;
    font-family: CircularXX, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 19.2px;
    letter-spacing: 0px;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    padding: 20px 24px;
    box-shadow: inset 0px 0px 0px rgba(0, 0, 0, 0);
    transition: .3s;
}

.over-header .over-header-link:hover,
.over-header .over-header-link.active {
    box-shadow: inset 0px -4px 0px var(--link-color);
}

@media (max-width: 768px) {
    header .over-header {
        display: none;
    }
}


header .header-container { 
    width: 100%;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 64px;
    position: fixed;
    top: 63px;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

header .header-container.scrolled {
    background-color: #fff;
}

header .header-container.scrolled .header-links a {
    color: var(--text-color);
}

.wp-admin-bar-showing header .header-container {
    top: 95px; 
}

@media (max-width: 768px) {
    header .header-container { 
        top: 0;
    }

    .wp-admin-bar-showing header .header-container {
        top: 46px;
    }
}

header .header-container .header-logo { 
    width: 222px;
    height: 43px;
    position: relative;
}

header .header-container .header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

header .header-container .header-logo .scrolled-logo {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

header .header-container.scrolled .header-logo .default-logo {
    opacity: 0;
}

header .header-container.scrolled .header-logo .scrolled-logo {
    opacity: 1;
}

header .header-container.scrolled .header-logo svg path { 
    fill: var(--text-color);
}

header .header-container .header-logo svg { 
    width: 100%;
    height: 100%;
    object-fit: contain;
}

header .header-container .header-links { 
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-start;
    gap: 59px;
    /* margin-bottom: auto; */
}

header .header-container .header-links a { 
    font-family: CircularXX, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 16.8px;
    letter-spacing: 0px;
    text-align: center;
    color: rgba(251, 253, 255, 1);
    text-decoration: none;
}

header .header-container .menu-hamburger { 
    display: none;
    width: 24px;
    height: 14px;
    background: none;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    cursor: pointer;
}

header .header-container.scrolled .menu-hamburger line { 
    stroke: var(--text-color);
}


@media (max-width: 768px) {
    header .header-container {
        padding: 14px 20px;
    }

    header .header-container .header-links .faq-link {
        display: none;
    }

    header .header-container .header-links {
        gap: 20px;
        margin-bottom: 0;
    }

    header .header-container .menu-hamburger {
        /* display: block; */
    }

    header .header-container .header-logo {
        margin-top: 0;
        width: 151px;
        height: 30px;
    }

}

