*::-webkit-scrollbar {
    width: 8px;
    height: 100%;
}
*::-webkit-scrollbar:disabled {
    display: none;
}
*::-webkit-scrollbar-button{
    display: none
}
*::-webkit-scrollbar-thumb {
    border-radius: 4px;
    scrollbar-color: rgba(0,0,0,.2)
}
*::-webkit-scrollbar-track {
    background-color: transparent;
}
* {
    scrollbar-width: thin;
    scrollbar-color: transparent transparent
}
*:hover {
    scrollbar-color: rgba(0,0,0,.2) transparent
}
:root {
    --light: #fff;
    --light-rgb: 255,255,255;
    --dark: #262223;
    --dark-rgb: 38,34,35;
    --gray-mid: #3b3839;
    --gray-mid-rgb: 59,56,57;
    --beige: #e1c886;
    --beige-rgb: 255,200,134;
    --base-color: var(--light);
    --base-color-rgb: var(--light-rgb);
    --text-color: var(--dark);
    --text-color-rgb: var(--dark-rgb);
    --highlight-color: var(--gray-mid);
    --highlight-color-rgb: var(--bgray-mid-rgb);
    --main-font: 'League Spartan', sans-serif;
    --highlight-font: 'League Spartan', sans-serif;
    --padding: 20px;
    --max-width: 1300px;
    --flex-base: 220px;
    --font-size: 18px;
    --transition-time: 0s;
}
html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
}
html {
    overflow-x: hidden;
    position: relative;
    min-height: 550px;
    font-size: var(--font-size);
    height: 100%;
    max-width: 100%;
}
body {
    font-family: var(--main-font);
    font-weight: 300;
    overflow: hidden;
    -moz-osx-font-smoothing: blue-lightscale;
    -webkit-font-smoothing: antialiased;
    color: var(--text-color);
    min-width: 300px;
    background-color: var(--base-color);
    min-height: 100%;
    line-height: 1.3;
    max-width: 100%;
    position: relative;
}
body, body * {
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}
a {
    text-decoration: none;
    color: currentColor;
    transition: opacity var(--transition-time) ease-in-out;
}
p {
    margin: 0 0 .5rem;
}
p:last-child, p:only-child {
    margin-bottom: 0
}
main a {
    display: inline-block;
    position: relative;
    text-decoration: solid underline var(--beige) .05em;
    text-decoration-skip-ink: none;
    transition: text-decoration-color var(--transition-time) ease-in-out
}
main a:hover {
    text-decoration-color: var(--highlight-color)
}
main a.button, main a.nu {
    text-decoration: none
}
strong, b {
    font-weight: 600;
}
h1, .h1 {
    font-size: 1.5rem;
    color: var(--dark);
    text-align: center
}
h2, .h2 {
    font-size: 1.4rem;
    color: var(--dark);
}
h3, .h3 {
    font-size: 1.3rem;
    color: var(--highlight-color)
}
h4, .h4 {
    font-weight: 300;
    font-size: 1.2rem
}
h5, .h5 {
    font-weight: 700;
    font-size: 1.1rem
}
h6, .h6 {
    font-weight: 700;
    font-size: 1rem
}
h1, .h1, h2, .h2, h3, .h3 {
    font-weight: 600;
    line-height: 1;
    font-family: var(--highlight-font);
    text-transform: lowercase;
}
.index {
    h1, .h1, h2, .h2, h3, .h3 {
        text-align: center;
    }
}
h1 small {
    display: block;
    font-size: .66em;
    color: var(--text-color);
    font-weight: 300
}
.h1, h2, .h2, h3, .h3 {
    margin: 1em 0 .5em;
}
h1:first-child, .h1:first-child, 
h2:first-child, .h2:first-child, 
h3:first-child, .h3:first-child, 
h4:first-child, .h4:first-child, 
h5:first-child, .h5:first-child {
    margin-top: 0
}
.font-regular {
    color: var(--text-color);
    text-transform: none;
    font-weight: 300
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child, 
.h1:first-child, .h2:first-child, .h3:first-child, .h4:first-child, .h5:first-child, .h6:first-child {
    margin-top: 0
}
h1:only-child, h2:only-child, h3:only-child, h4:only-child, h5:only-child, h6:only-child, 
.h1:only-child, .h2:only-child, .h3:only-child, .h4:only-child, .h5:only-child, .h6:only-child {
    margin: 0;
}
[class*="nopad"] > h1,
[class*="nopad"] > h3,
[class*="nopad"] > h3,
[class*="nopad"] > h4,
[class*="nopad"] > h5,
[class*="nopad"] > h6 {
    margin: .5em 0
}
.break,.hyphens, .flex.nw {
    -webkit-hyphens: auto;
    hyphens: auto;
}
.small {
    font-size: .76em
}
.smaller {
    font-size: .6em
}
sup, sub {
    display: inline-block;
    position: relative;
    top: -.6em;
    font-size: .5em;
}
body img {
    height: auto;
    max-width: 100%;
}
[class*="box"] > picture:only-child > img:not(.portrait){
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.center {
    text-align: center;
}
.right {
    text-align: right;
}
img.absolute {
    position: absolute;
    object-fit: contain;
    pointer-events: none;
    z-index: 1;
}
img.abs.full, 
video.abs.full {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}
img.absolute.full.sectimg {
    opacity: .1;
    z-index: 0;
    filter: blur(5px)
}
header img.abs.full {
    object-position: center;
}
header .sectionimage {
    opacity: .4
}
img.fixed {
    position: fixed
}
img.abs.left {
    left: 0;
    right: auto;
}
img.abs.right {
    left: auto;
    right: 0;
}
img.abs.top {
    top: 0;
    bottom: auto;
}
img.abs.bottom {
    top: auto;
    bottom: 0;
}
img.abs.left.top {
    object-position: left top;
}
img.abs.left.bottom {
    object-position: left bottom;
}
img.abs.right.top {
    object-position: right top;
}
img.abs.right.bottom {
    object-position: right bottom;
}
img.sideimg {
    display: block;
    margin: var(--padding) auto;
    max-width: 150px;
}
img.contimg {
    display: block;
    margin: 0 auto;
}
.largeimg img {
    display: block;
    height: 100%;
    object-fit: cover
}
img.round {
    border-radius: 100%
}
img.block, a.block {
    display: block
}
.nomargin {
    margin: 0 !important;
}
.table > * {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    max-width: calc(1.5 * var(--flex-base))
}
footer .table > * {
    max-width: 200px;
    margin: 0 auto
}
.table > * > * {
    flex: 3 1 150px;
    text-align: left
}
.table > * > .tc1 {
    flex: 1 1 100px;
    padding-right: .5em;
}
.table > * > .tc0 {
    flex: .5 1 50px;
    padding-right: .5em;
}
.sociallinks > * {
    font-size: 1.7em;
    padding-right: .5rem;
    margin-right: .5rem;
    cursor: pointer
}

button, .button {
    border: none;
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: 1.5;
    text-align: center;
    padding: calc(.25 * var(--padding));
    background-color: var(--beige);
    color: var(--dark);
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
    filter: grayscale(0);
    transition: filter var(--transition-time) ease-in-out;
}
button:hover, .button:hover {
    filter: grayscale(1);
}

.light {
    background-color: var(--light);
}
.gray-mid {
    background-color: var(--gray-mid)
}
.beige {
    background-color: var(--beige)
}
.dark {
    background-color: var(--dark)
}

.dark-font, .dark-font * {
    color: var(--dark);
}
.white-font, .white-font *,
.light-font, .light-font * {
    color: var(--light);
}
.gray-mid-font, .gray-mid-font * {
    color: var(--gray-mid);
}
.beige-font, .beige-font * {
    color: var(--beige);
    font-weight: 900
}

.upper{
    text-transform: uppercase
}
.lower {
    text-transform: none
}
.pointereventsnone {
    pointer-events: none
}
.pointereventsall {
    pointer-events: all
}

/* FLEX */
.flex {
    display: flex;
    flex-flow: row wrap;
    width: auto;
    padding: var(--padding)
}
.pad {
    padding: var(--padding)
}
.padtop {
    padding-top: var(--padding)
}
.padbottom {
    padding-bottom: var(--padding)
}
.halfpad ,
.flex.halfpad {
    padding: calc(.5 * var(--padding));
    --swiper-navigation-height: calc(100% - 3 * var(--padding));
    --swiper-navigation-top-margin: calc(1.5 * var(--padding));
}
.halfpad > [class*="box"],
.flex.halfpad > [class*="box"] {
    padding: calc(.5 * var(--padding))
}
.halfpadvertical > [class*="box"] {
    padding-top: calc(.5 * var(--padding));
    padding-bottom: calc(.5 * var(--padding));
}
.content.halfpad > [class*="box"] {
    padding: calc(1 * var(--padding)) calc(.5 * var(--padding))
}
.flex.nm {
    margin: calc(-1 * var(--padding));
}
.flex.nw {
    flex-flow: row nowrap;
}
.flex.unpad {
    margin-left: calc(-1 * var(--padding));
    margin-right: calc(-1 * var(--padding));
    max-width: calc(100% + 2 * var(--padding))
}
.halfpad > .flex.unpad {
    margin: calc(-.5 * var(--padding));
    max-width: calc(100% + 1 * var(--padding))
}
.flex.wr {
    flex-flow: row wrap-reverse;
}
.flex.vcenter, .vcenter {
    align-items: center;
    align-content: center;
}
.flex.vstretch, .vstretch {
    align-items: stretch;
    align-content: stretch;
}
.flex.vstart,.vstart {
    align-items: flex-start !important;
    align-content: flex-start !important;
}
.flex.vend,.vend {
    align-items: flex-end !important;
    align-content: flex-end !important;
}
.vcenter[class*="box"]:not(.flex) {
    align-self: center;
}
.vend[class*="box"]:not(.flex) {
    align-self: flex-end;
}
.vstard[class*="box"]:not(.flex) {
    align-self: flex-start;
}
.box0s[class*="box"] {flex: 1 1 max(calc(1 * .25 * var(--flex-base)), 25%);}
.box1, .box1s[class*="box"] {flex: 1 1 max(calc(1 * .5 * var(--flex-base)), 50%);}
.box2 {flex: 2 1 max(calc(2 * .5 * var(--flex-base)), 100%);}
.box3 {flex: 3 1 max(calc(3 * .5 * var(--flex-base)), 100%);}
.box4 {flex: 4 1 max(calc(4 * .5 * var(--flex-base)), 100%);}
.box5 {flex: 5 1 max(calc(5 * .5 * var(--flex-base)), 100%);}
.box6 {flex: 6 1 max(calc(6 * .5 * var(--flex-base)), 100%);}
.box7 {flex: 7 1 max(calc(7 * .5 * var(--flex-base)), 100%);}

.boxfull, .box7 > .box7, .box6 > .box6, .box5 > .box5, .box4 > .box4, .box3 > .box3, .box2 > .box2, .box1 > .box1 {flex: 1 1 100%;}
.box1, .box2, .box3, .box4, .box5, .box6, .box7, .boxnf, .boxfull {padding: var(--padding);min-width: 0;max-width: 100%;position: relative;order: 2;}
.boxnf {
    padding-top: calc(0 * var(--padding) + var(--largeicon-size))
}
.flex.box1.fw, .flex.box2.fw, .flex.box3.fw {
    width: calc(100% + (2 * var(--padding)));
    max-width: calc(100% + (2 * var(--padding)));
}
.flex > .nopad[class*="box"], .nopad {
    padding: 0;
}
.flex > .nopadtop[class*="box"], .nopadtop {
    padding-top: 0 !important;
}
.flex > .nopadbottom[class*="box"], .nopadbottom {
    padding-bottom: 0 !important;
}
.flex > .nopadlefd[class*="box"], .nopadleft {
    padding-left: 0 !important;
}
.flex > .nopadrighd[class*="box"], .nopadright{
    padding-right: 0 !important;
}
.padtop {
    padding-top: calc(1* var(--padding)) !important;
}
.padbottom {
    padding-bottom: calc(1* var(--padding)) !important;
}
.padleft {
    padding-left: calc(1* var(--padding)) !important;
}
.padright {
    padding-right: calc(1* var(--padding)) !important;
}
.halfpadtop {
    padding-top: calc(.5* var(--padding)) !important;
}
.halfpadbottom {
    padding-bottom: calc(.5* var(--padding)) !important;
}
.halfpadleft {
    padding-left: calc(.5* var(--padding)) !important;
}
.halfpadright {
    padding-right: calc(.5* var(--padding)) !important;
}
.doublepad {
    padding: calc(2* var(--padding)) !important;
}
.doublepadtop {
    padding-top: calc(2* var(--padding)) !important;
}
.doublepadbottom {
    padding-bottom: calc(2* var(--padding)) !important;
}
.doublepadleft {
    padding-left: calc(2* var(--padding)) !important;
}
.doublepadright {
    padding-right: calc(2* var(--padding)) !important;
}
.flex > .flex[class*="box"]:not(.fpad) {
    padding: 0;
}
.flex > .flex.halfpad[class*="box"]:not(.nopad) {
    padding: calc(.5* var(--padding));
}
.flex > .flex.doublepad[class*="box"], .doublepad {
    padding: calc(2* var(--padding));
}
.flex > .padlefd[class*="box"] {
    padding-left: calc(1.5 * var(--padding)) !important;
}
.halfpadhorizontal[class*="box"] {
    padding-left: calc(.5 * var(--padding));
    padding-right: calc(.5 * var(--padding));
}
.margintop {
    margin-top: calc(1* var(--padding)) !important;
}
.marginbottom {
    margin-bottom: calc(1* var(--padding)) !important;
}
.marginleft {
    margin-left: calc(1* var(--padding)) !important;
}
.marginright {
    margin-right: calc(1* var(--padding)) !important;
}
.placeholder[class*="box"] {
    order: unset;
    min-height: 10rem
}
.flex > .divider {
    flex: 1 1 100%;
    padding: 0;
    margin: 0;
}
.flex > .hdivider {
    flex: 0 0 0%;
    padding: 0;
    margin: 0;
}
.flex > .hw + .hdivider {
    flex: 1 1 100%;
    padding: 0;
    margin: 0;
}
@media (max-width: 1220px){
.flex > .divider {
    display: none;
}    
}
img[classbox]:only-child, picture[class^="box"]:only-child, picture[class^="box"] > img {
    width: 100%;
    display: block;
    height: 100%;
}
.columns {
    column-width: calc(.75 * var(--flex-base));
    column-gap: var(--padding);
    column-count: 3;
}
.columns > div {
    break-inside: avoid
}
.negmarginright {
    transform-box: fill-box;
    transform: translateX(0);
    transform-origin: left;
}
.negmarginright .swiper-button-next {
    position: absolute;
    right: var(--swiper-navigation-sides-offset);
}
.minheight {
    min-height: 250px
}
.abs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rel {
    position: relative
}
.fullscreen {
    position: relative;
    height: 100vh;
    max-height: 56vw
}
.fullscreen > .wrapper {
    min-height: 100%;
}
.wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
}
.wrapper.abs {
    left: 0;
    right: 0
}

/* HEADER */
a.logo {
    margin: var(--padding) auto 0;
    width: 80%;
    max-width: 500px;
    display: block;
    opacity: 1
}
.headertop > .wrapper.flex {
    flex-flow: row nowrap
}
.headertop a.logo img {
    display: block;
    opacity: 1;
    padding: 0;
    width: 100
    display: block
}
.header {
    position: relative;
    z-index: 1;
}
.header:after,
.header:before {
    content: '';
    position: absolute;
    width: 100%;
    height: calc(100% + 2 * var(--padding));
    left: 0;
    top: 0;
    z-index: -1;
    background-color: var(--light);
    transform: skew(-3deg) rotate(-3deg);
    transform-origin: top left;
}
.header:after{
    background-color: rgba(var(--beige-rgb), .27);
}
.langswitch {
    position: absolute;
    top: calc(.5 * var(--padding));
    right: var(--padding)
}

/* CONTENT */
main ul {
    padding: 0;
    list-style: none;
}
main ul li {
    position: relative;
    padding-left: .6em;
}
i.deco {
    position: relative;
    display: inline-block;
    height: 1em;
    vertical-align: -5px;
    width: 0.6em;
}
main ul li:before, i.deco:before {
    content: '';
    position: absolute;
    top: -.1em;
    left: 0;
    width: .2em;
    height: 1.1em;
    background-color: var(--beige);
    transform: skewX(-23deg)
}
i.deco:before {
    right: 0;
    margin: auto
}
/* FOOTER */
footer {
    position: relative
}

/* SMARTPHONE */
@media only screen 
    and (min-width: 375px) 
    and (max-width: 812px) 
    and (-webkit-min-device-pixel-ratio: 3), 
    only screen 
    and (min-width: 375px) 
    and (max-width: 667px) 
    and (-webkit-min-device-pixel-ratio: 2),
    (max-width: 500px)
{ 
    :root {
        --swiper-navigation-width: calc(3 * var(--padding));
    }
    .abs.rel-mobile {
        position: relative
    }
}

/* TABLET */
@media only screen 
    and (min-width : 768px) 
    and (max-width : 1100px) 
    and (-webkit-min-device-pixel-ratio: 1),
    only screen 
    and (min-width : 768px) 
    and (max-width : 1100px)
    and (-webkit-min-device-pixel-ratio: 2),
    (min-width: 501px) and (max-width: 1100px){

    :root {
        --padding: 25px;
        --flex-base: 220px;
        --font-size: 19px;
    }   
    .abs.rel-tablet {
        position: relative
    }
    h1, .h1 {
        font-size: 2.2rem;
    }
    h2, .h2 {
        font-size: 1.7rem
    } 
    h3, .h3 {
        font-size: 1.4rem
    }
    h4, .h4 {
        font-size: 1rem
    }
    h5, .h5 {
        font-size: 1rem
    }
    h6, .h6 {
        font-size: 1rem
    }
    
    .box1, .box1t[class*="box"]  {flex: 1 1 max(calc(1 * .5 * var(--flex-base)), 25%);}
    .box2 {flex: 2 1 max(calc(2 * .5 * var(--flex-base)), 50%);}
    .box3 {flex: 3 1 max(calc(3 * .5 * var(--flex-base)), 75%);}
    .box4 {flex: 4 1 max(calc(4 * .5 * var(--flex-base)), 100%);}
    .box5 {flex: 5 1 max(calc(5 * .5 * var(--flex-base)), 100%);}
    .box6 {flex: 6 1 max(calc(6 * .5 * var(--flex-base)), 100%);}
    .box7 {flex: 7 1 max(calc(7 * .5 * var(--flex-base)), 100%);}

    .box7 > .box1, .box7 > .box1t[class*="box"] {flex: 1 1 max(calc(1 * .5 * var(--flex-base)), calc(1/4 * 100%));}
    .box7 > .box2, .box7 > .box2t[class*="box"] {flex: 2 1 max(calc(2 * .5 * var(--flex-base)), calc(2/4 * 100%));}
    .box7 > .box3, .box7 > .box3t[class*="box"] {flex: 3 1 max(calc(3 * .5 * var(--flex-base)), calc(3/4 * 100%));}
    .box7 > .box4, .box7 > .box4t[class*="box"] {flex: 4 1 max(calc(4 * .5 * var(--flex-base)), calc(1 * 100%));}
    .box7 > .box5, .box7 > .box5t[class*="box"] {flex: 5 1 max(calc(5 * .5 * var(--flex-base)), calc(1 * 100%));}
    .box7 > .box6, .box7 > .box6t[class*="box"] {flex: 6 1 max(calc(6 * .5 * var(--flex-base)), calc(1 * 100%));}

    .box6 > .box1, .box6 > .box1t[class*="box"] {flex: 1 1 max(calc(1 * .5 * var(--flex-base)), calc(1/4 * 100%));}
    .box6 > .box2, .box6 > .box2t[class*="box"] {flex: 2 1 max(calc(2 * .5 * var(--flex-base)), calc(2/4 * 100%));}
    .box6 > .box3, .box6 > .box3t[class*="box"] {flex: 3 1 max(calc(3 * .5 * var(--flex-base)), calc(3/4 * 100%));}
    .box6 > .box4, .box6 > .box4t[class*="box"] {flex: 4 1 max(calc(4 * .5 * var(--flex-base)), calc(1 * 100%));}
    .box6 > .box5, .box6 > .box5t[class*="box"] {flex: 5 1 max(calc(5 * .5 * var(--flex-base)), calc(1 * 100%));}

    .box5 > .box1, .box5 > .box1t[class*="box"] {flex: 1 1 max(calc(1 * .5 * var(--flex-base)), calc(1/4 * 100%));}
    .box5 > .box2, .box5 > .box2t[class*="box"] {flex: 2 1 max(calc(2 * .5 * var(--flex-base)), calc(2/4 * 100%));}
    .box5 > .box3, .box5 > .box3t[class*="box"] {flex: 3 1 max(calc(3 * .5 * var(--flex-base)), calc(3/4 * 100%));}
    .box5 > .box4, .box5 > .box4t[class*="box"] {flex: 4 1 max(calc(4 * .5 * var(--flex-base)), calc(1 * 100%));}

    .box4 > .box1, .box4 > .box1t[class*="box"] {flex: 1 1 max(calc(1 * .5 * var(--flex-base)), calc(1/4 * 100%));}
    .box4 > .box2, .box4 > .box2t[class*="box"] {flex: 2 1 max(calc(2 * .5 * var(--flex-base)), calc(2/4 * 100%));}
    .box4 > .box3, .box4 > .box3t[class*="box"] {flex: 3 1 max(calc(3 * .5 * var(--flex-base)), calc(3/4 * 100%));}

    .box3 > .box1, .box3 > .box1t[class*="box"] {flex: 1 1 max(calc(1 * .5 * var(--flex-base)), calc(1/3 * 100%));}
    .box3 > .box2, .box3 > .box2t[class*="box"] {flex: 2 1 max(calc(2 * .5 * var(--flex-base)), calc(2/3 * 100%));}

    .box2 > .box1, .box2 > .box1t[class*="box"] {flex: 1 1 max(calc(1 * .5 * var(--flex-base)), calc(1/2 * 100%));}
    /* HEADER */
    .headerbuttons {
    }    
    .headertop a.logo {
        max-width: 300px;
        flex: 0 0 300px
    }
    .header#home {
    }
    .header .headerimg img {
        min-height: 350px;
        height: 50vw;
        max-height: 500px
    }
}

/* DESKTOP */
@media only screen and (min-width: 1101px){
    :root {
        --padding: 40px;
        --flex-base: 260px;
        --font-size: 19px;
    }
    h1, .h1 {
        font-size: 2.2rem;
    }
    h2, .h2 {
        font-size: 1.7rem
    } 
    h3, .h3 {
        font-size: 1.4rem
    }
    h4, .h4 {
        font-size: 1rem
    }
    h5, .h5 {
        font-size: 1rem
    }
    h6, .h6 {
        font-size: 1rem
    }
    nav.mainnav {
        font-size: 1.1rem
    }
    
    .box1, .box1d[class*="box"] {flex: 1 1 max(calc(1 * .5 * var(--flex-base)), 100% * 1/6);}
    .box2, .box2d[class*="box"] {flex: 2 1 max(calc(2 * .5 * var(--flex-base)), 100% * 1/3);}
    .box3, .box3d[class*="box"] {flex: 3 1 max(calc(3 * .5 * var(--flex-base)), 100% * 3/6);}
    .box4, .box4d[class*="box"] {flex: 4 1 max(calc(4 * .5 * var(--flex-base)), 100% * 4/6);}
    .box5, .box5d[class*="box"] {flex: 5 1 max(calc(5 * .5 * var(--flex-base)), 100% * 5/6);}
    .box6, .box6d[class*="box"] {flex: 6 1 max(calc(6 * .5 * var(--flex-base)), 100% * 6/6);}
    .box7, .box7d[class*="box"] {flex: 7 1 max(calc(7 * .5 * var(--flex-base)), 100% * 6/6);}

    .box7 > .box1, .box7 > .box1d[class*="box"] {flex: 1 1 max(calc(1 * .5 * var(--flex-base)), calc(1/7 * 100%));}
    .box7 > .box2, .box7 > .box2d[class*="box"] {flex: 2 1 max(calc(2 * .5 * var(--flex-base)), calc(2/7 * 100%));}
    .box7 > .box3, .box7 > .box3d[class*="box"] {flex: 3 1 max(calc(3 * .5 * var(--flex-base)), calc(3/7 * 100%));}
    .box7 > .box4, .box7 > .box4d[class*="box"] {flex: 4 1 max(calc(4 * .5 * var(--flex-base)), calc(4/7 * 100%));}
    .box7 > .box5, .box7 > .box5d[class*="box"] {flex: 5 1 max(calc(5 * .5 * var(--flex-base)), calc(5/7 * 100%));}
    .box7 > .box6, .box7 > .box6d[class*="box"] {flex: 6 1 max(calc(6 * .5 * var(--flex-base)), calc(6/7 * 100%));}

    .box6 > .box1, .box6 > .box1d[class*="box"] {flex: 1 1 max(calc(1 * .5 * var(--flex-base)), calc(1/6 * 100%));}
    .box6 > .box2, .box6 > .box2d[class*="box"] {flex: 2 1 max(calc(2 * .5 * var(--flex-base)), calc(2/6 * 100%));}
    .box6 > .box3, .box6 > .box3d[class*="box"] {flex: 3 1 max(calc(3 * .5 * var(--flex-base)), calc(3/6 * 100%));}
    .box6 > .box4, .box6 > .box4d[class*="box"] {flex: 4 1 max(calc(4 * .5 * var(--flex-base)), calc(4/6 * 100%));}
    .box6 > .box5, .box6 > .box5d[class*="box"] {flex: 5 1 max(calc(5 * .5 * var(--flex-base)), calc(5/6 * 100%));}

    .box5 > .box1, .box5 > .box1d[class*="box"] {flex: 1 1 max(calc(1 * .5 * var(--flex-base)), calc(1/5 * 100%));}
    .box5 > .box2, .box5 > .box2d[class*="box"] {flex: 2 1 max(calc(2 * .5 * var(--flex-base)), calc(2/5 * 100%));}
    .box5 > .box3, .box5 > .box3d[class*="box"] {flex: 3 1 max(calc(3 * .5 * var(--flex-base)), calc(3/5 * 100%));}
    .box5 > .box4, .box5 > .box4d[class*="box"] {flex: 4 1 max(calc(4 * .5 * var(--flex-base)), calc(4/5 * 100%));}

    .box4 > .box1, .box4 > .box1d[class*="box"] {flex: 1 1 max(calc(1 * .5 * var(--flex-base)), calc(1/4 * 100%));}
    .box4 > .box2, .box4 > .box2d[class*="box"] {flex: 2 1 max(calc(2 * .5 * var(--flex-base)), calc(2/4 * 100%));}
    .box4 > .box3, .box4 > .box3d[class*="box"] {flex: 3 1 max(calc(3 * .5 * var(--flex-base)), calc(3/4 * 100%));}

    .box3 > .box1, .box4 > .box1d[class*="box"] {flex: 1 1 max(calc(1 * .5 * var(--flex-base)), calc(1/3 * 100%));}
    .box3 > .box2, .box4 > .box2d[class*="box"] {flex: 2 1 max(calc(2 * .5 * var(--flex-base)), calc(2/3 * 100%));}

    .box2 > .box1, .box2 > .box1d[class*="box"] {flex: 1 1 max(calc(1 * .5 * var(--flex-base)), calc(1/2 * 100%));}
    
    /* HEADER */
    a.logo {
        margin: 0 auto;
    }
} 

@media only screen and (min-width: 1401px){
    :root {
        --font-size: 20px;
    }
}

.empty {
    min-height: 0 !important;
    height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    opacity: 0 !important;
    margin-bottom: 0 !important;
}

@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(../fonts/league-spartan.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body.loaded {opacity: 1;--transition-time: .5s}