

}

@media screen and (max-aspect-ratio: 1/1) {    /* largeur est inférieure ou égale à la hauteur (mobiles) */

}


/* Par defaut pour mobiles  */

body{
    font-family: "Times New Roman", Times, serif;
    color: white;
    /*font-family: "Courier New", monospace;*/
}

header{
    position: fixed;
    left: 0px;
    top: 0px;
    justify-content: space-between;
    align-items: center;
    display: flex;
    width: 100%;
    height: 100px;
    z-index: 3;
    background: rgba(0,0,0, 0.9);
}

header > .logo_container{
    margin: 15px;
}

#buttons_container_control_side{
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#buttons_container_control_side > button{
    width: 50px;
    height: 50px;
    background: none;
    border: solid white 1px;
    border-radius: 10px;
}

#buttons_container_control_side > #menu_button{
    display: flex;
}

#buttons_container_control_side > #back_button{
    display: none;
}


aside{
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 80%) 80%,
        rgba(51, 83, 132, 0) 100%
    );
    position: fixed;
    z-index: 2;
    height: 100%;
    width: 80%;
    top: 0px;
    left: 0px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

main{
    position: fixed;
    z-index: 1;
    height: 100%;
    width: 100%;
    background: black;
    left: 0px;
    top: 0px;
}

#accessible_message, #all_product_created_displayer{
    display: flex;
    justify-content: center;
    align-items: center;
}

#background_video_container{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: url('../medias/images/famous-view-pont-neuf-by-night-toulouse.webp');
    background-size: cover;
}

#background_video{
    height: 100%;
    opacity: 100%;
}

.logo_container{
    width: 50px;
    height: 50px;
}

.logo_container > img{
    width: 100%;
}


#img_profil_container{
    width: 100px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    border-radius: 50%;
    overflow: hidden;
}

#img_profil_container > img{
    width: 100%;
}

#profil_infos{
    display: flex;
    flex-direction: column;
    width: 90%;
}

aside > section#up_side{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 100px;
}

aside > section#up_side > .logo_container{
    display: none;
}

aside > section#up_side > nav > a{
    padding: 10px;
    font-size: 150%;
}

#dev_title{
    font-size: 160%;
    color: rgba(97, 97, 97, 1);
    padding-top: 10px;
}

#dev_name{
    color: rgba(97, 97, 97, 1);
    margin-top: 10px;
}

#side_separator{
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(97, 97, 97, 100%) 0%,
        rgba(97, 97, 97, 0) 100%
    );
}

#down_side{
    color: #303030;
    width: 80%;
    display: flex;
    flex-direction: column;
}

#social_media_links{
    height: 100px;
    width: 100px;
    display: flex;
}

#text_container{
    position: fixed;
    z-index: 1;
    height: 100%;
    width: 100%;
    right: 0px;
    top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#accessible_message{
    margin-top: -25px;
    font-size: 250%;
    width: 80%;
    height: 10%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 80%) 50%,
        rgba(0, 0, 0, 0) 100%
    );
    text-align: center;
}

#ask_contact_container{
    width: 100%;
    height: 30%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

#ask_contact_button_container{
    display: flex;
}

#delai_recontact_infos{

    width: 70%;
    height: 5%;
    font-size: 140%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 80%) 100%
    );
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5%;
    margin-bottom: 40%;
    text-align: center;
}

#all_product_created{
    display: none;
}

#all_product_created_displayer > p > strong{
    text-decoration: underline #0099ff 1px;
    text-underline-offset: 5px;
}

#all_product_created_displayer{
    text-align: center;
    font-size: 200%;
    width: 80%;
    height: 10%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 80%) 50%,
        rgba(0, 0, 0, 0) 100%
    );
}

#contact_container{
    width: 100%;
    min-height: 150px;
    display: none;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}


#ask_contact_button{
    color: white;
    font-size: 200%;
    padding: 40px;
    border: solid rgba(51, 83, 132, 1) 10px;
    border-radius: 40px;
    cursor: pointer;
    background: rgba(66, 135, 245, 80%);
    font-family: "Times New Roman", Times, serif;
    transition: color 0.1s ease, border 0.1s ease, background 0.1s ease;
}

#submit_ask_contact_button{
    color: white;
    font-size: 120%;
    padding: 20px;
    border: solid rgba(51, 83, 132, 1) 10px;
    border-radius: 25px;
    cursor: pointer;
    background: rgba(66, 135, 245, 80%);
    font-family: "Times New Roman", Times, serif;
    transition: color 0.1s ease, border 0.1s ease, background 0.1s ease;
}


#contact_inputs_container{
    color: black;
    width: 50%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

#contact_form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#ask_contact_button:hover, #submit_ask_contact_button:hover{
    color: rgba(66, 135, 245, 1);
    border: solid rgba(66, 135, 245, 1) 10px;
    background: white;
}

#contact_inputs_container > .iti{
    display: flex;
}

input[name="tel_input"]{
    width: 400px;
    height: 50px;
    border-radius: 8px;
    border: solid 1px;
    font-size: 120%;
    transition: border 0.1s;
}

input[name="mail_input"]{
    display: none;
    width: 400px;
    height: 50px;
    border-radius: 8px;
    border: solid 1px;
    font-size: 120%;
    text-align: center;
}

#contact_buttons_container{
    width: 40%;
    display: flex;
    justify-content: space-around;
}

#contact_buttons_container > button{
    width: 60px;
    height: 60px;
    border-radius: 10px;
    border: solid black 1px;
    cursor: pointer;
}

#mail_button{
    background: gray;
}

#ask_contact_confirmed_message{
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 180%;
    width: 80%;
    height: 100px;
    color: black;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0) 0%,
        rgba(255, 255, 255, 80%) 10%,
        rgba(255, 255, 255, 80%) 90%,
        rgba(0, 0, 0, 0) 100%
    );
    text-align: center;
}

#request_loader_container{
    display: none;
}

@media screen and (min-aspect-ratio: 1/1) {  /* largeur est superieur à la hauteur (ordi) */


    header{
        display: none;
    }

    aside{
        display: flex;
        width: 25%;
    }

    aside > section#up_side > .logo_container{
        display: flex;
        margin-top: 30px;
    }

    aside > section#up_side > nav{
        width: 60%;
        display: flex;
        flex-direction: column;
        border-left: dashed #636363 3px;
        margin-top: 30px;
        margin-bottom: 60px;
    }

    #social_media_links > a{
        height: 50px;
        width: 50px;
        padding: 5px;
    }

    #text_container{
        width: 75%;
        top: 0px;
    }

    #delai_recontact_infos{
        padding-left: 150px;
        padding-right: 150px;
        margin-bottom: 15%;
    }

    #contact_buttons_container{
        width: 15%;
    }

    #ask_contact_confirmed_message{
        font-size: 250%;
        width: 80%;
    }

}
