.header {
    float: left;
    width: 100%;
    height: 80px;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    transition: .9s;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: rgb(0, 0, 0, 0.9);
    z-index: 10;
    box-shadow:
        0 0 5px #fff,
        0 0 5px #fff,
        0 0 5px #fff,
        0 0 5px var(--default),
        0 0 32px var(--default),
        0 0 32px var(--default),
        0 0 12px var(--default),
        0 0 15px var(--default);
}

.header section {
    flex-direction: row;
    justify-content: space-between;
}

.menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
}

.menu ul {
    float: left;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
}

.menu li {
    cursor: pointer;
    font-size: 1.125rem;
    margin: 15px;
    list-style-type: none;
    color: #c5c5c5;
    height: 40%;
    align-items: center;
    display: flex;
    border: none;
    transition: 0.5s;
    padding-top: 7px;
    height: 32px;
}

.menu li:hover {
    color: #fff;
    /*box-shadow: 0px 3px var(--default);*/
    text-shadow:
        0 0 1px #fff,
        0 0 1px #fff,
        0 0 1px #fff,
        0 0 5px var(--default),
        0 0 15px var(--default),
        0 0 15px var(--default),
        0 0 6px var(--default),
        0 0 7px var(--default);
}

.menu li:hover ul {
    text-shadow: none;
}

.menu a {
    text-decoration: none;
    color: #c5c5c5;
}

.menu li:hover a {
    color: #fff;
}

.subAnime a::after {
    display: block;
    content: '';
    margin-top: 7px;
    border-bottom: solid 3px var(--default);
    transform: scaleX(0);
    transition: transform .5s ease-in-out;
}

.subAnime a:hover:after {
    transform: scaleX(1);
}

.subAnime a:after {
    transform-origin: 0 50%;
}

.fa {
    margin-left: 5px;
    width: 10px !important;
    height: 10px !important;
    font-size: .73rem !important;
}

.menuIcon {
    display: none;
    margin: 0;
    margin-top: -5px;
    font-size: 2.4rem;
    font-weight: bold;
    transition: 0.9s;
    color: #c5c5c5;
}

.menuIcon:hover {
    color: #fff;
    cursor: pointer;
    text-shadow:
        0 0 1px #fff,
        0 0 1px #fff,
        0 0 1px #fff,
        0 0 1px var(--default),
        0 0 32px var(--default),
        0 0 32px var(--default),
        0 0 12px var(--default),
        0 0 15px var(--default);
}

.login {
    margin-top: 0px !important;
    box-shadow: none !important;
    text-shadow: none;
}

.comboBox {
    display: flex;
    flex-direction: column;
    margin: 0;
    border-radius: 5px;
}

.cbName {
    margin-top: 3px;
}

.comboOptions {
    position: absolute;
    margin-top: 30px;
    display: flex;
    flex-direction: column !important;
    padding: 0;
    padding-top: 15px;
    min-height: 180px !important;

}

.comboOptions li {
    position: relative;
    width: calc(100% - 30px);
    padding: 15px 17px 5px 25px;
    margin: 0;
    transition: color .3s;
    display: none;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.9);
    font-size: 1rem;
    margin-top: 5px;
    border-radius: 5px;
    box-shadow:
        0 0 5px #fff,
        0 0 5px #fff,
        0 0 5px #fff,
        0 0 5px var(--default),
        0 0 32px var(--default),
        0 0 32px var(--default),
        0 0 12px var(--default),
        0 0 15px var(--default);
}

.comboBox:hover li {
    display: block;
    animation: animation .5s forwards;
}

.comboBox li:hover {
    transform: scale(1.05) !important;
}

@keyframes animation {
    from {
        opacity: 0;
        transform: translate(50px);
    }

    to {
        opacity: 1;
        transform: translate(0);
    }
}

.comboBox li:nth-last-child(1) {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.comboBox:hover li:nth-child(2) {
    animation-delay: .2s;
}

.comboBox:hover li:nth-child(3) {
    animation-delay: .4s;
}

.comboBox:hover li:nth-child(4) {
    animation-delay: .6s;
}

.comboBox:hover li:nth-child(5) {
    animation-delay: .8s;
}

.navMenu {
    margin-top: -5px;
    display: none;
}

.navMenu:hover {
    cursor: pointer;
}

.navMenu:hover span {
    background-color: #fff;
    color: #fff;
    box-shadow:
        0 0 1px #fff,
        0 0 1px #fff,
        0 0 1px #fff,
        0 0 1px #fff,
        0 0 32px var(--default),
        0 0 32px var(--default),
        0 0 12px var(--default),
        0 0 15px var(--default);
}

.navMenu>span {
    display: block;
    width: 25px;
    height: 3.3px;
    border-radius: 9999px;
    background-color: #c5c5c5;
}

.navMenu>span:not(:last-child) {
    margin-bottom: 6px;
}

.navMenu,
.navMenu>span {
    transition: all .4s ease-in-out;
}

.navMenu.active {
    transition-delay: 0.8s;
    transform: rotate(45deg);
}

.navMenu.active>span:nth-child(2) {
    width: 0;
}

.navMenu.active>span:nth-child(1),
.navMenu.active>span:nth-child(3) {
    transition-delay: .4s;
}

.navMenu.active>span:nth-child(1) {
    transform: translateY(10px);
}

.navMenu.active>span:nth-child(3) {
    transform: translateY(-9px) rotate(90deg);
}

@media screen and (max-width: 1100px) {
    .header section {
        width: calc(100% - 30px);
    }
}


@media screen and (max-width: 850px) {
    .header {
        height: 60px;
    }

    .header img {
        height: 30px;
        width: 74.39px;
    }

    .navMenu {
        display: block;
        font-size: 2rem;
    }

    .menu ul {
        background-color: rgb(0, 0, 0, 0.9);
        padding: 0;
        position: fixed;
        flex-direction: column;
        width: 100vw;
        height: auto;
        top: 51px;
        left: 0;
        transition: 0.9s;
    }

    .menu li {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 20px 0;
        width: 100%;
        transition: .9s;
        height: 15px;
        font-size: 0.9rem;
    }

    .menu li:hover {
        background-color: rgba(24, 24, 24, 0.9) !important;
    }

    .menu a {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu button {
        margin: 0;
        width: 100%;
        height: calc(100% + 30px);
        border-radius: 0;
    }


    .nav.hidden {
        opacity: 0 !important;
        pointer-events: none;
    }

    .comboBox {
        min-height: 0px !important;
        height: auto !important;
        transition: 1s !important;
    }

    .comboOptions {
        position: relative !important;
        min-height: 0 !important;
        height: auto !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        top: 20px !important;
    }

    .cbName {
        padding: 0;
        margin: 0;
        margin-left: 15px;
        margin-bottom: 0;
    }

    .comboBox li {
        box-shadow: none;
        display: none !important;
    }

    .comboBox:hover li {
        display: block !important;
    }

    .comboBox li,
    .comboBox ul,
    .cbName {
        cursor: none;
    }

    .comboOptions li {
        cursor: pointer;
    }

    .comboBox li:hover {
        transform: scale(1) !important;
    }

    .fa {
        margin-top: -3px !important;
    }
}

.menu li {

    border-color: inherit;
    outline: none;

}