/* ---------------------------- --------- ---------------------------- */
/* ---------------------------- - BASIC - ---------------------------- */
/* ---------------------------- --------- ---------------------------- */


*{
    margin: 0px;
    padding: 0px;
    /* cursor: crosshair; */
}

body{
    background-color: var(--light);
    /* cursor: crosshair; */
}

/* ---------------------------- SCROLLBAR ---------------------------- */

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0 !important;
    background: transparent;
}

/* Firefox */
html, body {
    scrollbar-width: none;
}


/* -------------------------- LOCKED SCROLL -------------------------- */

.on.off{
    overflow: hidden;
    position: fixed;
}


/* -------------------------- ------------ -------------------------- */
/* -------------------------- - LANGUAGE - -------------------------- */
/* -------------------------- ------------ -------------------------- */

.Fr{
    display: none;
}



/* -------------------------- ------------- -------------------------- */
/* -------------------------- PAGES CONTENT -- (ø HOME) -------------- */
/* -------------------------- ------------- -------------------------- */

.Global-Section{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100vw;
    z-index: 100;
}



/* -------------------------- ------------ -------------------------- */
/* -------------------------- --- EXTRA -- -------------------------- */
/* -------------------------- ------------ -------------------------- */

.Grid-Global-Container{
    position: fixed;
    display: none;
    /* display: flex; */
    flex-direction: row;
    justify-content: space-between;
    top: 0px;
    left: var(--Site-Margins);
    width: calc(100vw - (2 * (var(--Site-Margins))));
    height: 100vh;
    opacity: 0.2;
    z-index: 1000;
}

.Grid-Column{
    position: relative;
    top: 0px;
    height: 100vh;
    width: calc(((100vw - (2 * (var(--Site-Margins)))) - (200px)) / 11);
    width: var(--Site-11-Column-Width);
    background-color: var(--light);
}

.Grid-Column-12{
    position: relative;
    top: 0px;
    height: 100vh;
    width: var(--Site-12-Column-Width);
    background-color: var(--red);
}