:root {
    --primary-color: #000;
}

body, html {
    background: var(--bg, #000);
    color: var(--fg, #fff);
}

a {
    color: var(--fg, #fff);
    text-decoration: none !important;
}

article {
    font-size: 22px;
    line-height: 37px;
}

.container {
    width: 1080px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100vw;
    padding: 0 16px;
    overflow-x: hidden;
}

.menu-item-children {
    display:none;
}

.menu-item:hover .menu-item-children {
    display: block;
}

#desktop-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 99999;
}

header.globalNav .navSection.primary .rootLink {
    cursor: pointer;
}

#nav-spacing {
    height:140px;
}

#scrollTop {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background-color: #000000cf;
    height: 50px;
    width: 50px;
    border-radius: 100px;
    border: 1px solid #fff;
    z-index: 1000;
    cursor: pointer;
}

#scrollTop svg {
    fill: #FFF;
    height: 25px;
    margin-top: 11px;
    fill: #FFF !important;
    height: 25px;
    margin-top: 11px;
    width: 30px;
    margin: auto;
    margin-top: 10px;
}


.line {
    height: 1px;
    background-color: var(--fg, #fff);
    position: relative;
}

.line:before {
    content: "";
    background-color: var(--fg, #fff);
    height: 1px;
    position: absolute;
    right: 2rem;
    transform: rotate(45deg);
    width: 60px;
}

.line:after {
    content: "";
    background-color: var(--fg, #fff);
    height: 1px;
    position: absolute;
    right: 1rem;
    transform: rotate(45deg);
    width: 50px;
}
