#topbar-new {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 100;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,0.9990371148459384) 20%, rgba(255,255,255,0) 100%);
}

#topbar-new-logo {
    position: relative;
    width: 300px;
    max-width: 50%;
    height: 100px;
    display: block;
}

#topbar-new-logo img {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
}

#topbar-new-nav {
    position: relative;
    margin-top: 5px;
}

#topbar-new-nav ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

#topbar-new-nav ul li {
    position: relative;
    width: auto;
    height: auto;
    padding: 7px 1.9vw;
    background-color: rgba(215,0,71,0);
    color: rgba(215,0,71,1);
    margin: 0 5px;
    font-size: 18px;
    font-family: 'Oswald';
    text-transform: uppercase;
    letter-spacing: .025em;
    font-weight: 600;
    display: block;
}

#topbar-new-nav ul li.inactive a {
    opacity: .25;
}

#topbar-new-nav ul li a {
    font-family: 'Oswald';
    color: rgba(215,0,71,1);
    object-fit: fill;
    position: relative;
}

#topbar-new-nav ul li::after {
    content: '';
    position: absolute;
    top: 1px;
    right: -5px;
    background-color: rgba(215,0,71,1);
    width: 1px;
    height: 34px;
}

#topbar-new-nav ul li:last-of-type::after {
    content: none;
}

#topbar-new-nav ul li:hover {
    background-color: rgba(215,0,71,1);
    color: rgba(255,255,255,1);
}

#topbar-new-nav ul li:hover a {
    color: rgba(255,255,255,1);
}

#topbar-new-nav ul li ul {
    position: absolute;
    left: 0;
    top: 40px;
    width: auto;
    min-width: 200px;
    height: auto;
    padding: 0;
    margin: 0;
    margin-left: 0;
    margin-right: 0;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 10px;
}

#topbar-new-nav ul li ul li {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
    margin-left: 0;
    margin-right: 0;
    background-color: rgba(255,255,255,1);
    margin-bottom: 2px;
    font-weight: 400;
}

#topbar-new-nav ul li:last-of-type ul {
    left: auto;
    right: 0;
    text-align: right;
    min-width: 160px;
}

#topbar-new-nav ul li ul li::after {
    content: none;
}

#topbar-new-nav ul li:hover ul {
    opacity: 1;
    pointer-events: all;
}

#topbar-new-nav ul li ul li a {
    font-size: 15px;
}

#topbar-new-nav ul li:hover ul li a {
    color: rgba(215,0,71,1);
}

#topbar-new-nav ul li ul li:hover a {
    color: #fff;
}

#miniheader-button {
    position: relative;
    width: 40px;
    height: 40px;
    /* Now a <button>, so its user-agent chrome has to be cleared. */
    padding: 0;
    border: none;
    background: none;
    -webkit-appearance: none;
    appearance: none;
    display: none;
}

#miniheader {
    display: none;
}



@media screen and (max-width: 1199px) {
    #topbar-new-nav {
        display: none;
    }

    #miniheader-button {
        display: flex;
        flex-direction: column;
        justify-content: center;
        cursor: pointer;
        right: 20px;
    }

    .miniheader-button-bar {
        position: absolute;
        width: 40px;
        height: 3px;
        background: rgba(215,0,71,1);
        transition: all .3s ease;
    }

    .miniheader-button-bar:nth-of-type(1) {
        top: calc(50% - 6px);
    }

    .miniheader-button-bar:nth-of-type(2) {
        top: 50%;
    }

    .miniheader-button-bar:nth-of-type(3) {
        top: calc(50% + 6px);
    }

    #miniheader-button.open .miniheader-button-bar:nth-of-type(1) {
        top: 50%;
        transform: rotate(45deg);
    }

    #miniheader-button.open .miniheader-button-bar:nth-of-type(2) {
        opacity: 0;
    }

    #miniheader-button.open .miniheader-button-bar:nth-of-type(3) {
        top: 50%;
        transform: rotate(-45deg);
    }

    #miniheader {
        position: fixed;
        left: 0;
        top: -200px;
        width: 100%;
        height: auto;
        transition: all .3s ease;
        z-index: 90;
        background-color: #fff;
        box-shadow: 0px 0px 25px rgba(0,0,0,.25);
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding-top: 140px;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
    }

    #miniheader.open {
        top: 0;
        opacity: 1;
        pointer-events: all;
    }

    #miniheader details {
        position: relative;
        width: calc(100% - 20px);
        height: auto;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        transition: all .3s ease;
        margin-bottom: 10px;
    }

    #miniheader details.half {
        width: calc(50% - 15px);
    }

    #miniheader details.half summary {
        background: rgba(0,0,0,.35);
    }

    #miniheader details.half:nth-of-type(even) {
        left: +5px;
    }

    #miniheader details.half:nth-of-type(odd) {
        right: 05px;
    }

    #miniheader details summary {
        text-align: center;
        padding: 10px;
        border-radius: 0;
    }

    #miniheader details summary::after {
        display: none;
    }

    #miniheader details a {
        position: relative;
        width: 100%;
        text-align: center;
        padding: 10px;
        font-family: 'Oswald';
        text-transform: uppercase;
        color: #000;
        font-size: 18px;
        border: 1px solid #aaa;
        margin: 10px 0;
    }

    #miniheader details a:hover {
        background-color: rgba(215,0,71,1);
        color: rgba(255,255,255,1);
        border: 1px solid rgba(215,0,71,1);
    }

    #miniheader details a:last-of-type {
        margin-bottom: 0;
    }
}