:root {
    --header-home-height:3rem;
    --header-home-notif-height: 2rem;
}

/*==PAGE==*/

#home-pageview {
    /* height: 100vh; */
    width: 100%;
    position: absolute;
    /* width: 100%; */
    min-height: 100vh;
    display: flex;
    flex-direction: column;

}

#home-pageview #backvid {
    /* height: 100vh;
    width: 100vw; */
    position: fixed;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    top: 0;
    left: 0;

}

.page_header_and_body {
    height: 100vh;
    /* height: 100%; */
    box-sizing: border-box;
    overflow-y: visible;
}



#home-pageview .footer .footer-nav {
    width: 100%;
}


#home-pageview .header {
    /* height: 100vh;
    width: 100vw; */
    position: relative;
    justify-content: space-around;
    box-sizing: border-box;
    width: 100%;
    height: var(--header-home-height);

}


/*
* MAin content
*/
#home-pageview  .main{
    min-height: 100%;
    /* background: blue; */
    min-height: calc(100vh - var(--header-home-height) - var(--header-home-notif-height) + 1.1rem);
    /* height: calc(100% - var(--header-home-height) - var(--header-home-notif-height) ); */
    display:flex;
    flex-direction: column;
    justify-content: space-between;
}

#home-pageview .main .maincontent {
    /* flex-direction: column; */
    display: flex;
    /* align-items: stretch; */
    flex:1;
        /* background: red; */

    display: flex;
    justify-content: flex-start;
    width: 100%;

}

.content{
    max-width: 100%;
}

[class*='content-']{
    max-width: 100%;
}

.content.selected{
    background: aliceblue;
}
.content.selected.home{
    background: transparent;
}



.header-home-notif {
    font-family: sans-serif;
    display: block;
    position: absolute !important;
    top: var(--page-header-height);
    background-color: rgb(255 255 0 / 83%);
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    height: var(--header-home-notif-height);
    align-items: center;
    border-bottom: 1px solid #c9c1c1;
    font-weight: 100;
    font-size: 0.72rem;
}


.content-home {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    padding-top: 0;
    padding: 0 1rem;
    padding-top: 3rem;
    padding-top: 3rem;
    /* max-width: 1000px; */
    justify-content: center;
}

.content_home_col {
    margin: 0.5rem;
}

.content_home_right {
    flex: 3;
    display: flex;
    /* margin-right: 49rem; */
}
.content_home_center {
    flex: 1.5;
}

.content_home_left {
    flex: 2;
    /* margin-left: -21rem; */
}

.content_home_uleft{
    flex:1;
}

.content_home_uright {
    /* flex: 1; */
    width: 100%;
}


.home_presentation {
    display: flex;
    font-family: 'Roboto';
    background: #ebf2fb;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    flex: 0 0 100%;
    box-sizing: border-box;
    /* margin-right: 10rem; */
    text-align: center;
    font-weight: 100;
    box-shadow: 0px 0px 12px #787878;
    border: 1px solid #9d9d9d;
    color: #404040;
    /* height: 20rem; */
    max-width: 888px;
    flex-direction: column;
    justify-content: center;
}

.presentation_img {
    float: left;
    margin-right: 1rem;
    max-width: 100%;
}

.register-button{
    margin-top: 2rem;
    padding: 2rem;
    font-weight: bold;
    border-radius: 12px;
    background-color: #2800a9;
    font-size: 1rem;
    color: #fff5f5;
    border-color: #6734b3;
    box-shadow: 3px 4px 5px #3a3939;
    border-style: solid;
    width: 100%;
}




#cgu-container, #pdc-container, #il-container,#contact-container, #faq-container{

    display: flex;
    flex-direction: column;
    max-width: 1000px;
    width: 100%;
    background: aliceblue;
    padding: 1rem;
    padding-top: 2rem;
    box-sizing: border-box;
}

#cgu-container p, #pdc-container p, #il-container p {

    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

.contact-descr{

    margin: 5rem;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 0 4px white;
    background: white;
    width: max-content;
    
}

.legal-descr{

    margin: 1rem;
    border-radius: 12px;
    padding:1rem;
    box-shadow: 0 0 12px black;
    background:white;
    
}

.content-contact, .contact.selected,.content-il, .legal.selected, .il-container, #il-container{
    background:transparent!important;
}





/*
* Footer
*/

#home-pageview .footer {
    /* height: 100vh;
    width: 100vw; */
    position: relative;
    /* position: absolute; */
    bottom: 0;
    background-color: aliceblue;
    border-top: 1px solid #80808040;

}


.footer-nav {
    display: flex;
    justify-content: space-evenly;
    border-left: 1px solid #b5aaaa;
    border-right: 1px solid #b5aaaa;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #6a6a79
}

.footer-nav .menu .item_column {
    margin: 5rem;
}


.footer-nav .menu {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    /* display:none; */

}

.footer-nav .menu .item {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.footer-nav .item .item-column {
    /* align-items: cent; */
    text-align: center;
    /* border:1px dotted black; */
}


.footer-nav .menu .item .link {
    margin: 1rem;
    text-align: center;

}


@media (max-width: 600px) {
    .espace_{
        display: none;
    }
}
