body{
    margin: 0;
}
#page{
    width: 100%;
    margin: 0;
    background-color: white;
    box-shadow: 0em 0em 1em 0.1em #000000;
}
.separator{
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    border-top-style: ridge;
    height: 1vw;
    border-width: 5px;
    margin-top: 3vw;
    float: left;
    border-radius: 50%;
}




/* Page */
.desktopVersion{
    display: block;
}
.mobileVersion{
    display: none;
}

/* Page Path */
.mobilePath{
    display: none;
    background-color: rgba(139,0,0,0.3);
    margin: 0;
    padding: 1%;
}

.pathTextMobile{
    font-family: 'Montserrat', sans-serif;
    font-size: 3vw;
    margin: 0;
}

.pathText{
    font-family: 'Montserrat', sans-serif;
    font-size: 1vw;
    margin: 0;
}

/* DARK DIV */
.darkDiv{
    display: none;
    top:0;
    width: 100%;
    position: fixed;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2;
}

/* Christmas */
.christmasBoxMobile {
    display: none;
}


/* FOOTER */
footer{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    bottom: 0;
    background-color: darkred;
    overflow: auto;
    border-top-color: white;
    border-top-style: solid;
    z-index: 1;
}
.footerColumn{
    width: 25%;
    float: left;
    text-align: center;
}
.footerTitle{
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5vw;
}
.footerText{
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1vw;
    margin: 0;
}
.footerLink{
    display: block;
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1vw;
}
.footerLink:hover{
    text-decoration: underline;
}
.socialIcon{
    width: 15%;
    margin-left: 2vw;
    margin-right: 2vw;
    border-radius: 50%;
}
.socialIcon:hover{
    box-shadow: 0em 0em 0.5em 0.3em #000000;
	cursor: pointer;
}

/* Cookie banner */
.cookiesBanner{
    width: 100%;
    position: fixed;
    bottom: 0;
    color: white;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
    display: none;
}

.cookiesBanner:hover{
    background-color: rgba(0, 0, 0, 0.9);
}

.cookiesContainer{
    width: 100%;
}

.cookiesSubcontainer{
    width: 100%;
    margin: auto;
}

.cookiesButtonSection{
    display: flex;
}

.cookiesButton{
    margin: 0.2%;
    width: 15%;
}

.cookiesButton:hover{
    cursor: pointer;
}

.cookies{
    width: 98%;
    margin-left: 1%;
    margin-right: 1%;
}

.cookiesText{
    width: 98%;
    margin-left: 1%;
    margin-right: 1%;
    font-family: 'Montserrat', sans-serif;
}

/* CLEARFIX */
.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}
* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */


/* Tablet Version */
@media (max-width: 1367px) and (orientation:landscape){
    /* Language */
    .language {
        width: 23%;
    }
    .languages {
        width: 15%;
    }
    .languageBox {
        margin-top: 0.5vw;
        margin-bottom: 0.5vw;
    }
    .option {
        font-size: 1.7vw;
    }
    .footerLink {
        font-size: 1.5vw;
    }
    .footerTitle{
        font-size: 2vw;
    }
    .footerText {
        font-size: 1.2vw;
    }
    .cookiesButton {
        margin: 0.2%;
        width: 40%;
    }
}


/* Mobile Version */
@media (max-width: 414px), (orientation: portrait) {
    .pageTitle{
        text-align: center;
        color: white;
        font-family: JI Chubby Caps;
        font-size: 4vw;
        padding: 1%;
    }
    
    
    /* Page */
    .desktopVersion{
        display: none;
    }
    .mobileVersion{
        display: block;
    }

    .mobilePath{
        display: block;
    }

    footer {
        width: 100%;
        display: block;
    }
    .footerColumn {
        width: 100%;
        margin-top: 2vh;
    }
    .footerLink {
        font-size: 3vw;
    }
    .footerTitle {
        font-size: 4vw;
    }
    .footerText{
        font-size: 3vw;
    }
    .socialIcon{
        width: 15%;
    }
    .cookies {  
        text-align: center;
    }
    .cookiesButtonSection {
        display: block;
    }
    .cookiesButton {
        margin: 1%;
        width: 50%;
        padding: 4%;
    }
}