.header__logo {
    width: 135px;
    height: 41px;
    display: block;
    text-indent: -99999px;
    overflow: hidden;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.wizard-header-menu{
    display: flex;       
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.wizard-header-menu li a, .wizard-header-submenu-toggle, .wizard-header-submenu li a{
    color: var(--dark-blue-100);
    white-space: nowrap;
}

.wizard-header-menu li a:hover, .wizard-header-submenu-toggle:hover{
    color: var(--pure-red-40);
}

.wizard-header-submenu li {
    padding: 12px calc(var(--spacing) * 8);
    border-bottom: 1px solid var(--off-white);
    width: 100%;

}

.wizard-header-submenu li:hover{
    background-color: var(--off-white);
}

.wizard-header-submenu li:hover a{
    color: var(--dark-blue-100);
}

.wizard-header-menu li a.header-active-link{
    color: var(--pure-red-40);
    font-weight: 600;
}

.mobile-btn-toggle span{
    font-size: 40px;
    color: var(--dark-blue-100);
}

.wizard-header-submenu-toggle{
    cursor: pointer;
}

.wizard-header-submenu{
    display: none;
    width: fit-content;
    flex-direction: column;
    position: absolute;
    z-index: 3;
    background-color: white;
    top: 105%;
    right: 0;
}

.wizard-header-submenu-container{
    position: relative;
}

.active-menu{
    display: flex !important;
    animation: fade-in .3s forwards;
}

@media (max-width: 60rem){    
    .wizard-header-menu{
        display: none;       
        flex-direction: column;
        position: absolute;
        z-index: 3;
        background-color: white;
        width: 100%;
        top: 105%;
        right: 0;
        gap: 0;
    }

    .wizard-header-submenu{
        position: relative;
        width: 100%;
        background-color: white;
        gap: 0;
    }

    .wizard-header-menu li, .wizard-header-submenu li{
        padding: 16px;
        border-bottom: 1px solid var(--off-white);
        width: 100%;
    }

    .wizard-header-menu li:last-child, .wizard-header-submenu li:last-child{
        border: none;
    }

    .wizard-header-submenu-container{
        width: 100%;
    }
    
}


@media (max-width:768px) {
    header {
        margin-top: 15px;
    }
    
    .super__bar {
        display: none;
    }
}