/*VARIABLE*/
:root{
    --white: #FFFFFF;
    --gris: #f7f7f7;
    --border-gris: #e7e7e7;
    --dark: #000000;
    --red: #e10e0e;
    --beige :#ffe4dc;
    --dark-green: #1a8245;
    --jaune: #ffcc00;
    --blue: #004c6c;
    --smallsize-radius: 10px;
    --middle-size: 16px;
    --oversize-radius: 25px;
    --cercle-radius: 50%;
    --border-gris: solid rgb(212, 212, 212) 1px;
    --transition-max: 0.5s linear;
    --transition-min: 0.3s linear;
}

.admin-layout {
    overflow: hidden;
}

#Box_top{
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    position: fixed;
    width: 40px;
    height: 40px;
    background: var(--dark);
    transform: translate(-50%, -50%);
    top: 85%;
    left: 95%; 
    opacity: 0;
    transition: 0.5s linear;
}

#Box_top.show {
    opacity: 1;
    transition: 0.3s linear;
}

body.Maintenance {
    position: fixed;
    display: flex;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
}

/*LOADER LOADING*/
.Container_loader{
    position: fixed;
    display: none;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background: var(--white);
    opacity: 1;
    transition: opacity .5s ease;
}

.Loader_path {
  width: 12em;
  height: 12em;
}

.Loader_path path {
  stroke: #000;
  stroke-width: 0.6px;
  animation: dashArray 4s ease-in-out infinite,
    dashOffset 4s linear infinite;
}

@keyframes dashArray {
  0% {
    stroke-dasharray: 0 1 359 0;
  }

  50% {
    stroke-dasharray: 0 359 1 0;
  }

  100% {
    stroke-dasharray: 359 1 0 0;
  }
}

@keyframes dashOffset {
  0% {
    stroke-dashoffset: 365;
  }

  100% {
    stroke-dashoffset: 5;
  }
}


/*EFFET MAINTENANCE*/
.loader {
    display: block;
    --height-of-loader: 4px;
    width: 130px;
    height: var(--height-of-loader);
    border-radius: 30px;
    background-color: var(--gris);
    position: relative;
  }
  
  .loader::before {
    content: "";
    position: absolute;
    background: var(--blue);
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-radius: 30px;
    animation: moving 1s ease-in-out infinite;
  }
  
  @keyframes moving {
    50% {
      width: 100%;
    }
  
    100% {
      width: 0;
      right: 0;
      left: unset;
    }
  }
  

body{
    background: var(--white);
    margin: 0%;
    padding: 0%;
    --sb-track-color: #000000;
    --sb-thumb-color: #ffffff;
    --sb-size: 12px;
}

body::-webkit-scrollbar {
    width: var(--sb-size);
}

body::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 5px;
}

body::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 5px;
    border: 3px solid #000000;
  }

@supports not selector(::-webkit-scrollbar) {
body {
    scrollbar-color: var(--sb-thumb-color)
                    var(--sb-track-color);
}
}


*{
    font-family: "Caveat", cursive;
}

p{
    font-size: 18px;
    margin: 8px;
}

a{
    color: var(--dark);
    text-decoration: none;
}

.error{
    color: red;
    font-size: 14px;
    text-align: center;
    margin: 1%;
    font-weight: bold;
}
/*CLASSE CSS POUR AFFICHAGE CONDITIONNELLE*/
.underlined, .underlined_black {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 7px;
    text-decoration-color: var(--white);
}

.underlined_black{
    text-decoration-color: var(--dark);
    text-decoration-thickness: 2px;
    text-underline-offset: 7px;
}

.Dark{
    background: var(--dark)!important;
}

.White{
    color: var(--white)!important;
}

.Background_white{
    background: var(--white)!important;
}

.Color_black{
    color: var(--dark)!important;
}

/*BOUTON*/
button{
    border: none;
    cursor: pointer;
}

.Btn_more{
    width: auto;
    height: auto;
    background: #000000;
    color: white;
    margin: 2%;
    transition: 0.3s;
}

.Btn_more:hover{
    background: white;
    color: black;
    transition: 0.5s;
}

.Container_form_btn{
    display: flex;
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
}

.Btn_connect, .Btn_forget, .Btn_sign, .Btn_sign_newletter, .Btn_sign_newletter_dark{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 35px;
    border-radius: 3px;
    padding: 1%;
    margin: 1%;
    color: var(--white);
    font-size: 14px;
    background: var(--blue);
    text-wrap: nowrap;
}

.Btn_forget{
    width: 110px;
    background: var(--red);
}

.Btn_sign, .Btn_sign_newletter, .Btn_sign_newletter_dark{
    background: var(--dark);
    border-radius: 0px;
    font-family: "Anonymous Pro", monospace;
    font-weight: bold;
    width: auto;
    height: auto;
    padding: 1.5%;
    margin: 1.5%;
    transition: 0.3s ease-in-out;
    border: solid var(--dark) 1px;
}

.Btn_sign:hover, .Btn_sign_newletter:hover{
    background: var(--white);
    color: var(--dark);
    transition: 0.5s ease-in-out;
}

.Btn_sign_newletter, .Btn_sign_newletter_dark{
    min-width: 200px;
    min-height: 55px;
}

.Btn_sign_newletter_dark{
    background: var(--white);
    color: var(--dark);
    border: solid var(--white) 1px;
}

.Btn_sign_newletter_dark:hover{
    background: var(--dark);
    color: var(--white);
    transition: 0.5s ease-in-out;
}

.form-btn{
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
}

.Btn_add, .Btn_edit, .Btn_delete, .Btn_pagination, .Btn_back{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 25px;
    border-radius: 3px;
    color: var(--white);
    font-size: 14px;
}

.Container_btn_add{
    display: flex;
    min-width: 100%;
    height: auto;
    margin-left: 5%;
    justify-content: space-between;
}

.Btn_add, .Btn_back, .Btn_delete, .Btn_edit{
    background: var(--dark);
    height: 40px;
    width: 100px;
}

.Btn_back{
    background:var(--jaune);
}

.Btn_edit{
    background: var(--dark);
}

.Btn_delete{
    background: var(--red);
}

.Btn_title_box{
    width: 250px;
}

.Btn_pagination{
    background: var(--gris);
    color: #000000;
    transition: background-color 0.3s, transform 0.3s;
}

.Btn_pagination:hover{
    background-color: var(--white); /* Fond blanc lors du survol */
    color: var(--dark); /* Texte gris foncé lors du survol */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ombre légère */
    border: var(--gris);
}

.Btn_box{
    display: flex;
    width: auto;
    justify-content: space-around;
}
/*FIN CLASSE CSS POUR AFFICHAGE CONDITIONNELLE*/

.hover-category {
    position: relative;
    display: inline-block;
    font-size: var(--middle-size);
    font-weight: 500;
    color: #333;
    cursor: pointer;
}

.hover-category::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: width 0.3s ease-in-out;
}

.Category_title:hover .hover-category::after {
    width: 100%; 
}


.Logo{
    width: 35px;
    height: 35px;
    cursor: pointer;
}

.Mini_logo{
    width: 15px;
    height: 15px;
    cursor: pointer;
    margin: 1.5%;
}

/*HEADER*/
header{
    position: fixed;
    z-index: 99;
    display: flex;
    width: 100%;
    height: 75px;
    justify-content: space-between;
    align-items: center;
    border-bottom: var(--border-gris);
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.Container_header{
    display: flex;
    width: auto;
    height: auto;
    justify-content: space-between;
    align-items: center;
    margin: 1%;
}

.Container_flag{
    display: flex;
    min-width: 100px;
    height: auto;
    justify-content: space-around;
}

.Container_name, .Container_name_admin{
    display: flex;
    width: auto;
    height: auto;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-min);
    margin-left: 50px;
}

.Container_name_admin{
    margin: 1.5rem;
}

.Name, .Name1{
    display: flex;
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
    word-spacing: 10px;
    letter-spacing: 5px;
    font-weight: bold;
    font-size: 20px;
    text-decoration: underline;
    text-align: center;
}

.Name1{
    font-size: 14px;
    text-decoration: none;
}

.Name:hover, .Name1:hover{
    cursor: pointer;
}

.Container_task{
    display: flex;
    width: 50%;
    height: 100%;
    border-left: var(--border-gris);

}

.Container_page, .Container_page_footer{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    border-right: var(--border-gris);
    cursor: pointer;
}

.Link_header{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;

}

.Container_page:hover{
    background: var(--dark);
    transition: var(--transition-max);
}

.Container_page:hover .Title{
    color: white;
    text-decoration: underline;
    transition: var(--transition-max);
}

.Bloc_header_space{
    display: flex;
    width: auto;
    height: max-content;
    flex-direction: column;
}

/*FOOTER*/
footer{
    display: flex;
    position: absolute;
    bottom: -9999;
    width: 100%;
    height: 60px;
    justify-content: space-between;
    align-items: center;
    background: var(--dark);
}

.Container_footer_title{
    display: flex;
    width: 40%;
    height: 100%;
}

.Container_page_footer{
    border-top: var(--border-gris);
}

.Container_page_footer:hover{
    background: var(--white);
    transition: var(--transition-max);
}

.Title_footer{
    color: var(--white);
    transition: var(--transition-min);
    font-size: 12px;
    font-weight: 500;
}

.Container_page_footer:hover .Title_footer{
    text-decoration: underline;
    color: var(--dark);
    transition: var(--transition-max);
}

.Container_condition{
    display: flex;
    width: auto;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    border-top: solid var(--dark) 1px;
}

.General{
    color: var(--white);
    text-decoration: underline;
    font-size: 14px;
    transition: var(--transition-min);
}

.General:hover{
    cursor: pointer;
    scale: 1.1;
    transition: var(--transition-min);
}

.Container_social_media{
    display: flex;
    width: 200px;
    height: 100%;
    justify-content: center;
    align-items: center;
    background: var(--white);
}

.Effect_footer{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    transition: var(--transition-min);
}

.Social_a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    transition: var(--transition-max);
}

.Effect_footer:hover .Social_a{
    position: absolute;
    display: flex;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    margin-bottom: 100px;
    cursor: pointer;
    border-radius: 20px;
    background: #33333379;
    transition: var(--transition-min);
}

/*HOME*/
.Container_global, .Container_administration{
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
}

.Container_administration{
    position: absolute;
    width: 84%;
    height: 100%;
    justify-content: start;
    flex-direction: row;
    right: 0;
}

.Container_part{
    display: flex;
    width: 100%;
    height: auto;
    margin-top: 6%;
    justify-content: center;
    align-items: center;
}


.Container_slider, .Container_newletter, .Container_newletter_contact, .Container_legal_condition{
    position: relative;
    display: flex;
    width: 70%;
    height: 550px;
    justify-content: center;
    align-items: center;
}

.Container_legal_condition{
    height: auto;
    flex-direction: column;
    align-items: start;
}

.Container_legal_condition::before{
    content: "";
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateX(-10px) translateY(-50%);
    height: 30%;
    border-left: 1px solid black;
}


.Container_slider::before, .Container_slider::after, .Container_bloc::after, .Container_newletter::before, .Container_galerie::after, .Container_collectible::after, .Container_newletter_contact::before, .Container_picture_detail::before, .Container_bloc_oeuvre::after{
    content: "";
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateX(-10px) translateY(-50%);
    height: 70%;
    border-left: 1px solid black;
}

.Container_newletter::before{
    transform: translateX(-10px) translateY(-40%);
}

.Container_picture_detail::before{
    left: -1%;
    transform: translateX(-10px) translateY(-55%);
}

.Container_slider::after {
    left: initial;
    right: -105px;
    transform: translateX(10px) translateY(-50%);
}

.Container_describ_slider{
    display: flex;
    width: 80%;
    height: 100%;
    background: rgba(255, 255, 255, 0.71);
    overflow: hidden;
    position: relative;
    -webkit-box-shadow: 0px 10px 13px -7px #8a8a8a, 5px 5px 15px 5px rgba(0,0,0,0); 
    box-shadow: 0px 10px 13px -7px #8a8a8a, 5px 5px 15px 5px rgba(0,0,0,0);
}

.Slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    width: 100%;
}

.Slider {
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.Slider img {
    width: 100%;
    object-fit: cover; 
}


.Container_subject_slider{
    position: absolute;
    display: flex;
    width: 60%;
    height: 60%;
    background: rgba(255, 255, 255, 0.71);
    border: solid black 1px;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.Container_subject_slider .Title_slider{
    font-size: 68px;
    font-weight: 500;
    text-align: center;
    text-decoration: underline;
}

.Container_subject_slider span{
    text-align: center;
    font-size: 24px;
}

.Mini_box, .Mini_box_detail{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 40px;
    background: var(--white);
    bottom: 0;
    right: 0;
}

.Mini_box_detail{
    right: initial;
}

.Box_bouton{
    display: flex;
    width: auto;
    height: 80%;
    justify-content: center;
    align-items: center;
    margin: 1%;
}

.Circle_button{
    display: flex;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--gris);
    border: solid black 1px;
    justify-content: center;
    align-items: center;
}

.Logo_slider{
    width: 80px;
    height: 80px;
    transition: 0.3s ease-in-out;
}

.Logo_slider:hover{
    scale: 1.1;
    transition: 0.5s ease-in-out;
}

.Container_title_project, .Container_title_project_right{
    position: absolute;
    left: 0%;
    display: flex;
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
    transform: rotate(-90deg);
}

.Container_title_project_right{
    left: initial;
    right: -7%;
    transform: rotate(90deg);
}

.Title_project{
    width: max-content;
    height: max-content;
    font-family: "Anonymous Pro", monospace;
    font-size: 38px;
    font-weight: bold;
}

.Trait{
    position: relative;
    width: 300px;
    height: 1px;
    background: var(--dark);
}

.Container_bloc, .Container_galerie, .Container_collectible, .Container_picture_detail, .Container_bloc_oeuvre{
    position: relative;
    display: flex;
    width: 82%;
    height: auto;
    border-top: var(--dark) solid 1px;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 2%;
}

.Container_bloc::after, .Container_collectible::after, .Container_bloc_oeuvre::after{
    left: initial;
    right: 0px;
    height: 45%;
    transform: translateX(10px) translateY(-55%);
}

.Container_bloc_oeuvre{
    border-top: none;
    margin-top: 0%;
}

.Container_galerie{
    border-top: none;
    border-bottom: var(--dark) solid 1px;
}

.Container_picture_detail{
    border-top: none;
}

.Container_galerie::after{
    left: 0px;
    height: 45%;
    transform: translateX(10px) translateY(-50%);
}

.Container_collectible{
    border: none;
    margin-bottom: 2%;
}

.Cubicle_box, .Cubicle_box_none, .Cubicle_box_exposure, .Cubicle_box_none_exposure{
    display: flex;
    width: 350px;
    height: 350px;
    border: solid var(--dark) 1px;
    -webkit-box-shadow: 0px 10px 13px -7px #8a8a8a, 5px 5px 15px 5px rgba(0,0,0,0); 
    box-shadow: 0px 10px 13px -7px #8a8a8a, 5px 5px 15px 5px rgba(0,0,0,0);
    overflow: hidden;
    position: relative;
    object-fit: cover;
    cursor: pointer;
    margin: 2%;
    flex-shrink: 0;
    justify-content: center;
}
.Img_collectible, .Img_exposure, .Img_picture_cubicle_box, .Img_caroussel{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Cubicle_box_none{
    align-items: center;
}

img{
    transition: 0.3s ease-in-out;
}

.Cubicle_box:hover img, .Cubicle_box_exposure:hover img {
    transform: scale(1.05);
    transition: 0.5s ease-in-out;
}

.Cubicle_box:hover .Box_surface{
    opacity: 1;
    transition: 0.3s ease-in-out;
}

.Box_surface, .Box_surface_show{
    position: absolute;
    bottom: 0;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--white);
    width: 350px;
    height: auto;
    min-height: 185px;
    transition: 0.5s ease-in-out;
}

.Box_surface_show{
    opacity: 1;
    background: none;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 350px;
    text-align: center;
}

.Box_surface_show p{
    color: var(--white);
}

.Exposure_button{
    display: flex;
    width: max-content;
    height: auto;
    background: var(--jaune);
    font-weight: bold;
    padding: 10px;
    font-style: normal;
    justify-content: center;
    align-items: center;
}

.Title_cubicle_box{
    font-size: 24px;
    text-decoration: underline;
    text-align: start;
}

.Describ_cubicle_box{
    font-size: 20px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.Box_button_cubicle{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
}

.Line_cubicle{
    display: inline-flex;
    width: auto;
    height: auto;
    justify-content: space-between;
    align-items: center;
}

.Container_minibox, .Container_minibox_collectible{
    display: flex;
    width: auto;
    height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.Container_minibox_collectible{
    align-items: start;
    margin-left: 2%;
}

.Bouton_ensavoir{
    position: relative;
    font-family: "Anonymous Pro", monospace;
    font-weight: bold;
    font-size: 18px;
    background: var(--white);
    border: solid var(--dark) 1px;
    padding: 4%;
    margin: 3%;
    transition: 0.3s ease-in-out;
    text-align: center;
}

.Bouton_ensavoir::before{
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    border: 1px solid var(--dark);
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    padding: 3%;
}

.Bouton_ensavoir:hover{
    background: var(--dark);
    color: white;
    transition: 0.5s ease-in-out;
    border: solid var(--white) 1px;
}

.Line_btn{
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
}

.Container_newletter, .Container_newletter_contact{
    height: 700px;
    margin-bottom: 3%;
}

.Container_newletter::after {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    width: 90%;
    height: 1px;
    background-color: var(--dark);
}

.Container_form_letter, .Container_form_letter_right{
    display: flex;
    width: 50%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.Container_form_letter_right{
    background: var(--dark);
    justify-content: space-evenly;
}

.Title_newletter{
    margin: 2%;
    font-size: 44px;
    text-align: center;
    color: var(--white);
}
/*OEUVRE DETAIL*/
.Container_detail{
    display: flex;
    width: 70%;
    height: auto;
    justify-content: center;
    align-items: start;
}

.Img_detail_picture{
    max-width: 800px;
}

.Container_line_detail{
    display: flex;
    width: 60%;
    height: auto;
    justify-content: center;
    align-items: center;
    margin: 3%;
}

.Left_detail_picture, .Right_detail_picture{
    display: flex;
    width: 40%;
    height: 100%;
}

.Left_detail_picture{
    flex-direction: column;
}

.Mini_title_project{
    font-family: "Anonymous Pro", monospace;
    font-size: 22px;
    font-weight: bold;
}

.Title_detail{
    font-size: 38px;
    font-weight: bold;
    text-decoration: underline;
}

.Describ_detail{
    font-size: 24px;
    max-width: 90%;
}

.Mini_bold_title{
    font-weight: bold;
    font-size: 20px;
    text-wrap: nowrap;
}

.Line{
    width: 100%;
    height: 1px;
    background: var(--dark);
}

.Right_detail_picture{
    position: relative;
    width: auto;
    height: auto;
    overflow: hidden;
    object-position: center;
    object-fit: cover;
    box-shadow: 0px 10px 13px -7px #8a8a8a, 5px 5px 15px 5px rgba(0, 0, 0, 0);
    border: solid var(--dark) 1px;
    transition: 0.3s ease-in-out;
}

.Right_detail_picture:hover img{
    scale: 1.05;
    transition: 0.5s ease-in-out;
}

.Shadow{
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.Shadow p{
    background: rgba(255, 255, 255, 0.71);
    border: solid black 1px;
    padding: 2%;
    z-index: 1;
    transition: 0.5s ease-in-out;
}

.Cubicle_box:hover .Shadow p{
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.Blurred {
    filter: blur(5px);
}

.Cubicle_box:hover img{
    filter: blur(0px);
}

.Left_detail_picture .Line_cubicle{
    text-wrap: nowrap;
    width: max-content;
}

.overlay-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.2); /* assombri un peu */
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 99;
    justify-content: center;
    align-items: center;
}

/*CONTACT*/
.Container_mention_contact{
    display: flex;
    width: 100%;
    height: 500px;
    border-top: var(--dark) solid 1px;
}

.Container_left_contact, .Container_right_contact{
    position: relative;
    display: flex;
    width: 50%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.Container_left_contact{
    justify-content: end;
}

.Container_left_contact::after {
    content: '';
    position: absolute;
    top: 20%; /* pour centrer verticalement */
    right: 0;
    width: 1px;
    height: 60%;
    background-color: var(--dark);
}

.Slider_contact{
    display: none;
    height: 80%;
}

.Slider_contact:first-child {
    display: block;
}

.Mini_container{
    display: flex;
    width: auto;
    height: 85%;
    margin-right: 1%;
}

.Mini_container_mention{
    display: flex;
    flex-direction: column;
    width: 80%;
    height: auto;
    justify-content: center;
    align-items: start;
    text-align: start;
}

.Picture_contact{
    max-height: 200px;
}

/*GALERIE*/
.Container_collectible{
    flex-wrap: nowrap;
}

.Collectible_track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.Collectible_wrapper {
    overflow: hidden;
    width: 82%;
}

.Img_collectible, .Img_exposure, .Img_exposure_other {
    width: auto;
    height: auto;
    object-fit: scale-down;
    display: block;
}

.Img_exposure{
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.3s ease-in-out;
}

.Cubicle_box_exposure:hover .Img_exposure{
    filter: grayscale(0%);
    transition: 0.5s ease-in-out;
}

.Btn_collectible_slider_left, .Btn_collectible_slider_right{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 70px;
    background: var(--dark);
    z-index: 3;
    cursor: pointer;
}

.Btn_collectible_slider_left{
    left: 10px;
}

.Btn_collectible_slider_left .Mini_logo{
    transform: rotate(-90deg);
    width: 20px;
}

.Btn_collectible_slider_right{
    right: 10px;
}

.Btn_collectible_slider_right .Mini_logo{
    width: 20px;
    transform: rotate(90deg);
}

/*ACTUALITÉ*/
.Cubicle_box_exposure, .Cubicle_box_none_exposure{
    width: 300px;
    align-items: center;
}

.Left_exposure, .Right_exposure{
    display: flex;
    width: 50%;
    height: 600px;
    justify-content: center;
    align-items: center;
}

.Left_exposure{
    flex-direction: column;
    overflow-y: auto;
}

.Other_exposure{
    object-fit: cover;
    overflow: hidden;
}

.Box_surface_exposure, .Box_surface_exposure_popular{
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background: var(--white);
    width: 300px;
    height: auto;
    transition: 0.3s ease-in-out;
}

.Box_surface_exposure_popular{
    width: 100%;
}

.Box_surface_exposure p{
    color: var(--dark);
}

.Container_popular_exposure{
    display: flex;
    width: 60%;
    height: 500px;
    justify-content: center;
    align-items: center;
    border: solid var(--dark) 1px;
    overflow: hidden;
    position: relative;
    object-fit: cover;
    box-shadow: 0px 10px 13px -7px #8a8a8a, 5px 5px 15px 5px rgba(0, 0, 0, 0);
    cursor: pointer;
}

.Container_popular_btn{
    z-index: 1;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

.Btn_popular_exposure{
    display: flex;
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
    background: var(--jaune);
    color: var(--dark);
    font-size: 18px;
    font-weight: bold;
    padding: 2%;
    font-family: "Anonymous Pro", monospace;
}

.Img_exposure_popular{
    max-width: 750px;
    transition: 0.3s ease-in-out;
    filter: grayscale(100%);
}

.Container_popular_exposure:hover .Img_exposure_popular{
    scale: 1.05;
    transition: 0.5s ease-in-out;
    filter: grayscale(0%);
}

.Container_other_exposure{
    display: flex;
    width: 70%;
    height: 145px;
    justify-content: center;
    align-items: center;
    margin: 2%;
    overflow: hidden;
    position: relative;
    object-fit: cover;
    border: solid var(--dark) 1px;
    box-shadow: 0px 10px 13px -7px #8a8a8a, 5px 5px 15px 5px rgba(0, 0, 0, 0);
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.Container_other_exposure:hover .Other_exposure{
    scale: 1.05;
    transition: 0.5s ease-in-out;
}

.Container_other_btn{
    display: flex;
    width: 50%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--dark);
    background: var(--white);
}

.Img_exposure_other{
    filter: grayscale(100%);
    transition: 0.3s ease-in-out;
    min-width: 50%;
}

.Container_other_exposure:hover .Img_exposure_other{
    scale: 1.05;
    transition: 0.5s ease-in-out;
    filter: grayscale(0%);
}

.Popular_item{
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/*MENTION LEGALE*/
.Title_legal_condition{
    font-size: 22px;
    font-weight: bold;
    text-decoration: underline;
    text-align: start;
}






/*FORM*/
.Container_filter_table{
    min-width: 90%;
    max-width: 90%;
}

.margin{
    margin: 2%;
}

.form-group form, .form-group-column form{
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

.form-group-column form{
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.form-group form div, .form-group-column form div{
    display: flex;
    align-items: center;
}

form{
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    flex-direction: column;
}

.form-group, .form-group-column{
    text-align: left;
}

.Container_form_group{
    display: flex;
    width: 420px;
    flex-wrap: wrap;
    height: auto;
    justify-content: space-between;
    align-items: center;
}

.row, .column{
    display: flex;
    flex-direction: row;
    width: 96%;
    height: auto;
    justify-content: end;
    background: var(--gris);
    border-radius: 10px 10px 0px 0px;
    padding: 2%;
}

.form-group label, .Row_form label {
    display: block;
    font-size: 15px;
    margin-bottom: 6px;
    color: var(--dark);
    margin-right: 10px;
    margin: 5px;
}

.form-group input, .form-group select, .form-group textarea, .form-group-column input, .form-group-column select{
    width: 200px;
    padding: 8px;
    margin: 5px;
    font-size: 16px;
    border: 1px solid #dddddd;
    border-radius: 3px;
    box-sizing: border-box;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus, .form-group-column input:focus, .form-group-column select:focus {
    outline: none;
    border-color: #0176c4;
    box-shadow: 0px 0px 2px 3px #0176c49f;
    border-radius: 3px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input::placeholder, .form-group select::placeholder, .form-group textarea::placeholder, .form-group-column input::placeholder,  .form-group-column select::placeholder {
    color: #888;
    font-size: 14px;
    opacity: 1;
}

.Row_form input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 5px;
    background: white;
    position: relative;
    cursor: pointer;
    margin-right: 8px;
    transition: 0.3s;
    background-size: 12px 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.Row_form input[type="checkbox"]:checked {
    background: var(--blue);
    border-color: var(--blue);
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16"%3E%3Cpath fill="none" stroke="%23ffffff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 8.5l2.5 2.5l5.5 -5.5"/%3E%3C/svg%3E');
}

.custom-file-upload input[type="file"] {
    display: none;
}

.custom-file-upload label {
    display: inline-flex;
    padding: 5px 20px;
    font-size: 14px;
    color: #fff;
    background-color: var(--blue);  /* Couleur bleue */
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

/* Effet de survol du bouton */
.custom-file-upload label:hover {
    background-color: var(--blue); 
}

.custom-file-upload label i {
    margin-right: 8px;
    font-size: 18px;
}

.Type_text{
    min-height: 10px;
    resize: vertical;
    padding: 10px;
}

.Row_container_add{
    display: flex;
    width: auto;
    height: auto;
    margin: 3%;
}

.Row_container_add .Container_add{
    padding: 3%;
}

.Row_container_add .Container_btn_add{
    margin: 0%;
}

/*CONNEXION ET INSCRIPTION*/
.Container_security{
    display: flex;
    width: 100%;
    height: 93.4vh;
    justify-content: center;
    align-items: center;
}

.Container_login_global, .Container_register_global, .Container_reset_global{
    display: flex;
    width: auto;
    height: 400px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: var(--white);
    border-radius: 3px;
    padding: 1rem;
}

.Container_register_global{
    width: 500px;
    height: 500px;
}

.Container_reset_global{
    height: 300px;
}
.Row_form{
    display: flex;
    justify-content: end;
    width: 97%;
    height: auto;
    margin: 5px 5px 5px 5px;
    flex-wrap: nowrap;
}

.Href{
    color: var(--blue);
    cursor: pointer;
}

.Title_sign{
    display: flex;
    color: var(--blue);
    font-size: 12px;
    margin-top: 3px;
    margin-bottom: 3px;
    cursor: pointer;
}

.Title_sign:hover, .Href:hover{
    text-decoration: underline;
}

.Container_title{
    display: flex;
    width: 50%;
    justify-content: center;
}

.Container_register{
    display: flex;
    flex-direction: column;
    width: auto;
    height: auto;
    background: white;
    align-items: start;
    padding: 1%;
    border-radius: 10px;
}

.Trait-form {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px; /* Espace entre le trait et le contenu */
    margin-top: 5%;
    margin-bottom: 5%;
    width: 300px;
}

.Trait-form::before,
.Trait-form::after {
    content: "";
    flex-grow: 1; /* Pour que le trait prenne tout l'espace disponible */
    height: 2px; /* Épaisseur du trait */
    background: var(--gris) /* Couleur du trait */
}






/*ADMINISTRATION*/
.preview-container{
    display: flex;
    width: 235px;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: start;
    align-items: center;
}

.preview-image, .preview-image-box, .preview-image-list {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 5px;
}

.preview-image-box{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
}

.preview-image-box-total {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: start;
    gap: 10px;
    max-width: 358px;
    max-height: 80vh;
    overflow-y: auto;
}

.Task_bar_administration{
    display: flex;
    position: fixed;
    width: 100%;
    height: 85px;
    background: var(--white);
    justify-content: end;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    right: 0;
    padding-right: 1%;
    z-index: 2;
}

.Container_box-admin{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.White-container{
    display: flex;
    width: 95%;
    height: 700px;
    background: var(--white);
    border-radius: 10px;
    justify-content: start;
    align-items: center;
    flex-direction: column;
}

.White-container::before{
    position: absolute;
    content: "";
    background: var(--dark);
    height: 700px;
    width: 5px;
    left: 40px;
    border-radius: 10px;
}


.Title-admin{
    font-size: 22px;
}

.text-center{
    text-align: center;
    background: var(--gris);
    width: max-content;
    padding: 5px;
    border-radius: 10px;
}

.Max_width{
    width: 170px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
}

.pagination{
    display: flex;
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
}

.Container-title{
    display: flex;
    width: 100%;
    height: auto;
    align-items: center;
    text-wrap: nowrap;
    margin-bottom: 2%;
    margin-left: 5%;
}

.Container_profile_img{
    display: flex;
    min-width: 200px;
    height: auto;
    justify-content: space-between;
    align-items: center;
}

.Task_bar_horizontal{
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 300px;
    height: 100%;
    border-right: var(--border-gris);
    background: var(--white);
    z-index: 2;
    left: 0;
}

.Container_name_admin .Name{
    font-size: 16px;
}

.Container_name_admin .Name1{
    font-size: 12px;
}

.Category_admin{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    border-top: var(--border-gris);
}

.Category_title{
    display: flex;
    width: 100%;
    height: 50px;
    border-bottom: solid var(--dark) 1px;
    position: relative; /* Nécessaire pour positionner le pseudo-élément */
    overflow: hidden; /* Assure que le pseudo-élément ne déborde pas */
    transition: 0.3s ease-in-out; /* Transition douce */
    z-index: 1;
}

.Category_title:hover::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Hauteur à moitié de la div */
    background: var(--dark); /* Fond noir */
    transition: height 0.3s ease-in-out; /* Animation douce */
}

.Category_title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0; /* Initialement invisible */
    background: var(--dark); /* Fond noir */
    z-index: -1; /* Derrière le contenu */
    transition: height 0.3s ease-in-out; /* Animation douce */
}

.Category_title:hover .hover-category{
    color: var(--white);
}

/*TABLEAU*/
table {
    width: 100%;
    border-collapse: separate; /* Change 'collapse' pour permettre le border-radius */
    margin: 0px 0px 20px 0px;
    border-radius: 10px; /* Ajoute un arrondi global au tableau */
    overflow: hidden; /* Assure que l'arrondi soit visible sur les bords */
    border: var(--border-gris); /* Ajoute une bordure extérieure */
}

thead {
    background: var(--gris);
    color: var(--dark); /* Couleur sombre pour les titres */
    border-radius: 0;
}

td, th {
    border: 1px solid var(--border-gris); /* Bordure grise */
    text-align: center;
    padding: 10px; /* Espacement interne */
}

th{
    text-wrap: nowrap;
}

/*Ajout*/
.Container_add{
    display: flex;
    width: auto;
    height: max-content;
    align-items: center;
    margin-left: 5%;
    padding: 1%;
    background: var(--gris);
    border-radius: 10px;
    flex-direction: column;
    justify-content: space-around;
}

/*Personnel*/
.Container_personnel{
    display: flex;
    width: 88%;
    height: 500px;
    justify-content: center;
    align-items: center;
}

.form_profil{
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
}

.Container_left{
    display: flex;
    width: 50%;
    height: auto;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.img_thumbnail, .img_thumbnail_cubicle{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.img_thumbnail_cubicle{
    border-radius: 0%;
    width: auto;
    height: 150px;
}

/*Statistic*/
#visitorsChart{
    width: 100%;
    max-height: 200px;
}

#deviceChart{
    max-height: 400px;
}

.Container_box_default{
    display: flex;
    width: 100px;
    height: 100px;
    border: var(--border-gris);
}

.Connect_class_input{
    width: 300px!important;
}

/*MOBILE*/
@media screen and (max-width: 420px) {
  
}

/*TABLETTE*/
@media screen and (max-width: 1366px) {
    header{
        height: 65px;
    }
    .Container_task{
        display: none;
    }
    .Container_flag{
        position: absolute;
        left: 0;
        margin-left: 1%;
    }
    .Container_header{
        width: 100%;
        justify-content: center;
    }
    .Container_subject_slider .Title_slider{
        font-size: 50px;
    }
    .Container_subject_slider span{
        font-size: 18px;
    }
    .Cubicle_box, .Cubicle_box_none, .Cubicle_box_exposure, .Cubicle_box_none_exposure{
        width: 250px;
        height: 250px;
    }
    .Title_project, .Title_newletter{
        font-size: 30px;
    }
    .Container_galerie::after{
        height: 25%;
    }
    .Circle_button{
        width: 80px;
        height: 80px;
    }
    .Logo_slider{
        width: 50px;
        height: 50px;
    }
    .Container_describ_slider{
        height: 60%;
    }
    .Container_slider::after{
        right: -65px;
        height: 50%;
    }
    .Container_slider::before{
        left: -60px;
        height: 50%;
    }
    .Container_title_project{
        left: -5%;
    }
    .Container_slider{
        height: 450px;
    }
    .Container_part{
        margin-top: 3%;
    }
    .Container_newletter::after{
        top: -20px;
    }
    .Container_newletter::before{
        height: 45%;
        left: -70px;
    }
    .Container_form_letter, .Container_form_letter_right{
        height: 75%;
    }
    #Box_top{
        width: 35px;
        height: 35px;
    }
    .Btn_sign_newletter, .Btn_sign_newletter_dark{
        min-width: 165px;
        min-height: 45px;
    }
    .Btn_sign{
        padding: 2%;
        margin: 2%;
    }
    .form-group label, .Row_form label{
        font-size: 12px;
    }
    p{
        font-size: 14px;
    }
    .Logo{
        width: 30px;
        height: 30px;
    }
    .Box_surface, .Box_surface_show{
        width: 250px;
        min-height: auto;
    }
    .Title_cubicle_box{
        font-size: 20px;
    }
    .Describ_cubicle_box{
        font-size: 16px;
    }
    .Bouton_ensavoir{
        font-size: 14px
    }
    /*GALERIE*/
    .Container_galerie{
        margin-top: 6%;
    }
    .Btn_collectible_slider_left, .Btn_collectible_slider_right{
        width: 30px;
        height: 55px;
    }
}

/* LAPTOPS CLASSIQUE */
@media screen and (min-width: 1366px) and (max-width: 1800px) {
    p{
        font-size: 16px;
    }
    header{
        height: 65px;
    }
    .Name{
        font-size: 20px;
    }
    .Name1{
        font-size: 16px;
    }
    .Logo{
        width: 32px;
        height: 32px;
    }
    .Container_slider{
        height: 420px;
    }
    .Title_project{
        font-size: 30px;
    }
    .Circle_button{
        width: 100px;
        height: 100px;
    }
    .Logo_slider{
        width: 70px;
        height: 70px;
    }
    .Container_slider::before{
        left: -75px;
    }

    .Container_newletter::before{
        height: 40%;
        left: -90px;
    }
    .Cubicle_box, .Cubicle_box_none, .Cubicle_box_exposure, .Cubicle_box_none_exposure{
        width: 325px;
        height: 325px;
    }
    .Box_surface, .Box_surface_show{
        width: 325px;
    }
    .Title_cubicle_box{
        font-size: 22px;
    }
    .Describ_cubicle_box{
        font-size: 16px;
    }
    .Bouton_ensavoir{
        font-size: 16px;
    }
    .Title_newletter{
        font-size: 41px;
    }
    #Box_top{
        width: 35px;
        height: 35px;
    }
    .Btn_sign, .Btn_sign_newletter, .Btn_sign_newletter_dark{
        padding: 2%;
    }
    /*GALERIE*/
    .Btn_collectible_slider_left, .Btn_collectible_slider_right{
        width: 38px;
        height: 65px;
    }
    .Container_galerie::after{
        left: -25px;
    }
    /*DETAILS*/
    .Title_detail{
        font-size: 36px;
    }
    .Describ_detail{
        font-size: 22px;
    }
    .Mini_title_project {
        font-size: 20px;
    }
    .Mini_box, .Mini_box_detail{
        width: 95px;
        height: 35px;
    }
    .preview-image-box-total{
        max-width: 281px;
    }
    .Container_bloc_oeuvre::after{
        right: 15px;
        transform: translateX(10px) translateY(-50%);
    }
    /*ACTUALITE*/
    .Container_other_exposure{
        height: 125px;
    }
    .Container_popular_exposure{
        height: 400px;
    }
    .Box_surface_exposure{
        width: 325px;
    }
    .Container_other_exposure{
        width: 75%;
    }
    /*CONTACT*/
    .Container_newletter_contact::before{
        top: 53%;
        height: 25%;
    }
    .Slider_contact{
        height: 70%;
    }
    .form-group input, .form-group select, .form-group textarea, .form-group-column input, .form-group-column select{
        width: 190px;
        padding: 7px;
    }
    /*ADMINISTRATION*/
    .Container_name_admin .Name1, .Container_name_admin .Name{
        font-size: 12px;
    }
    .Task_bar_administration{
        height: 65px;
    }
    .Task_bar_horizontal{
        width: 250px;
    }
    .White-container{
        width: 85%;
    }
    .White-container::before{
        width: 3px;
        left: 55px;
    }
    .Title-admin{
        font-size: 20px;
    }
    .Container-title{
        margin-left: 12px;
    }
    #deviceChart{
        max-height: 345px;
    }
    .Btn_add, .Btn_back, .Btn_delete, .Btn_edit{
        height: 35px;
        width: 95px;
    }
    .preview-image, .preview-image-box{
        width: 75px;
        height: 75px;
        font-size: 20px;
    }
    .Btn_box{
        flex-wrap: wrap;
    }
    .Container_add{
        margin-left: 3%;
    }
    .Row_container_add .Container_add{
        padding: 2%;
    }
    .preview-container{
        width: 185px;
    }
    .Max_width{
        width: 50px;
        text-wrap: wrap;
    }
    td, th{
        padding: 6px;
    }
    .Container_title{
        width: auto;
    }
}

/*ECRAN 2K*/
@media screen and (min-width: 2560px) {
    p, ul, .Mini_bold_title{
        font-size: 24px;
    }

    .Title_project, .Title_detail{
        font-size: 47px;
    }

    /*PREVIEW*/
    .preview-container{
        width: 300px;
    }
    .preview-image, .preview-image-box{
        width: 130px;
        height: 130px;
    }

    .preview-image-box-total{
        max-width: 450px;
    }

    /*HEADER*/
    header{
        height: 100px;
    }

    .Name, .Name1{
        font-size: 32px;
    }

    .Name1{
        font-size: 24px;
    }

    .Container_flag{
        min-width: 165px;
    }

    .Logo{
        width: 50px;
        height: 50px;
    }

    #Box_top{
        width: 55px;
        height: 55px;
    }

    .Mini_logo{
        width: 20px;
        height: 20px;
    }

    /*ACCUEIL*/
    .Container_slider, .Container_newletter{
        height: 880px;
    }

    .Container_subject_slider .Title_slider{
        font-size: 88px;
    }

    .Mini_box, .Mini_box_detail{
        width: 140px;
        height: 50px;
        font-size: 24px;
    }

    .Container_subject_slider span, .Describ_detail{
        font-size: 28px;
    }

    .Logo_slider{
        width: 100px;
        height: 100px;
    }

    .Circle_button{
        width: 140px;
        height: 140px;
    }

    .Title_newletter{
        font-size: 57px;
        margin: 4%;
    }

    .Cubicle_box, .Cubicle_box_none, .Cubicle_box_exposure, .Cubicle_box_none_exposure{
        width: 450px;
        height: 450px;
    }

    .Box_surface, .Box_surface_show{
        width: 450px;
        min-height: 250px;
    }

    .Box_surface_show{
        height: 450px;
    }

    .Bouton_ensavoir{
        font-size: 24px;
        margin: 4%;
    }

    .Title_cubicle_box, .Title_legal_condition{
        font-size: 34px;
    }

    .Describ_cubicle_box, .form-group label, .Row_form label{
        font-size: 24px;
    }

    .Btn_connect, .Btn_forget, .Btn_sign, .Btn_sign_newletter, .Btn_sign_newletter_dark{
        font-size: 22px;
    }

    .Btn_sign_newletter, .Btn_sign_newletter_dark{
        width: 265px;
        height: 75px;
    }

    .form-group input, .form-group select, .form-group textarea, .form-group-column input, .form-group-column select{
        width: 350px;
        font-size: 24px;
        padding: 4%;

    }

    .margin{
        margin: 3%;
    }


    /*FOOTER*/
    footer{
        height: 90px;
    }

    .Title_footer, .General{
        font-size: 21px;
    }

    .Container_social_media{
        width: 350px;
        justify-content: space-evenly;
    }

    /*GALERIE*/
    .Btn_collectible_slider_left, .Btn_collectible_slider_right{
        width: 50px;
        height: 80px;
    }

    .Box_button_cubicle{
        align-items: end;
    }

    /*ACTUALITE*/
    .Img_collectible, .Img_exposure, .Img_exposure_other{
        max-width: none;
    }

    .Box_surface_exposure, .Box_surface_exposure_popular{
        width: 100%;
    }

    .Mini_title_project{
        font-size: 24px;
    }

    .Exposure_button{
        font-size: 28px;
    }

    .Container_other_exposure{
        height: 200px;
    }

    /*CONTACT*/
    .Container_newletter_contact{
        height: auto;
    }

    .Slider_contact{
        width: 65%;
        object-fit: cover;
    }

    /*CONDITON LEGALE*/
    .Container_legal_condition{
        height: auto;
    }

    /*ADMINISTRATION*/
    .Container_name_admin .Name{
        font-size: 30px;
    }

    .Container_name_admin .Name1, .hover-category{
        font-size: 24px;
    }
    .Container_name_admin{
        margin: 2.5rem;
    }

    .Task_bar_horizontal{
        width: 450px;
    }

    .Category_title{
        height: 80px;
    }

    .Container_administration{
        height: 100%;
        left: 20%;
    }

    .White-container{
        height: auto;
        position: relative;
    }

    .White-container::before{
        height: 100%;
        left: 0;
    }

    .Container_personnel{
        height: auto;
    }

    .hover-category::after{
        height: 5px;
    }

    .underlined, .underlined_black{
        text-decoration-thickness: 5px;
    }

    .Container_profile_img{
        min-width: 300px;
    }

    .Title-admin{
        font-size: 28px;
    }

    .Btn_add, .Btn_back, .Btn_delete, .Btn_edit{
        height: 50px;
        width: 120px;
    }

    .Btn_title_box{
        width: 275px;
    }

    .Row_container_add .Container_add{
        height: max-content;
        width: 400px;
    }

    .row, .column{
        height: auto;
    }

    label{
        text-wrap: nowrap;
    }
    td, th{
        font-size: 24px;
    }

    .Btn_add, .Btn_edit, .Btn_delete, .Btn_pagination, .Btn_back{
        font-size: 22px;
    }

}

/*ECRAN 4K*/
@media screen and (min-width: 3840px) {

}