.corps{
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 100vh;

    flex-direction: column;

    background-color: #FCFCFC;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' width='1920' height='800' preserveAspectRatio='none' viewBox='0 0 1920 800'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1091%26quot%3b)' fill='none'%3e%3cpath d='M 0%2c62 C 128%2c160.8 384%2c559.2 640%2c556 C 896%2c552.8 1024%2c64.6 1280%2c46 C 1536%2c27.4 1792%2c379.6 1920%2c463L1920 800L0 800z' fill='rgba(246%2c 246%2c 246%2c 1)'%3e%3c/path%3e%3cpath d='M 0%2c666 C 48%2c584.4 144%2c240.6 240%2c258 C 336%2c275.4 384%2c756.4 480%2c753 C 576%2c749.6 624%2c278.4 720%2c241 C 816%2c203.6 864%2c596.2 960%2c566 C 1056%2c535.8 1104%2c109.6 1200%2c90 C 1296%2c70.4 1344%2c452.4 1440%2c468 C 1536%2c483.6 1584%2c163.4 1680%2c168 C 1776%2c172.6 1872%2c426.4 1920%2c491L1920 800L0 800z' fill='rgba(237%2c 237%2c 237%2c 1)'%3e%3c/path%3e%3cpath d='M 0%2c112 C 48%2c206.2 144%2c599.8 240%2c583 C 336%2c566.2 384%2c26.8 480%2c28 C 576%2c29.2 624%2c568.8 720%2c589 C 816%2c609.2 864%2c117.8 960%2c129 C 1056%2c140.2 1104%2c604 1200%2c645 C 1296%2c686 1344%2c348 1440%2c334 C 1536%2c320 1584%2c588 1680%2c575 C 1776%2c562 1872%2c330.2 1920%2c269L1920 800L0 800z' fill='rgba(227%2c 227%2c 227%2c 1)'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1091'%3e%3crect width='1920' height='800' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e");

    background-position: bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 80%;
}
.galery{
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
}

.image{
    width: calc(88vw/3);
    height: calc(88vw/3);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 10px;
    transition: 0.5s;
}

.image img, .image iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}




.filtres{
    margin: 150px 0 20px 0;
    text-align: center;
    padding: 0 5vw;
}

select {

    background-color: transparent;
    margin-bottom: 1em;
    padding: .75em;
    border: 0;
    border-bottom: 1px solid currentcolor; 
    /* font-weight: bold; */
    letter-spacing: .15em;
    border-radius: 0;
    font-size: 1rem;

    margin: 20px 20px;
    width: fit-content;
    
  }

  h1{
    text-align: center;
    margin-bottom: 40px;
  }



  .cat2,.cat3,.cat4{
    display: none;
      }


      .flex{
        display: flex;
        align-items: center;
        justify-content: center;
      }




  @media screen and (max-width: 1200px) {

    .corps{
        background-size: auto;
    }
    .image{
        width: calc(88vw/2);
        height: calc(88vw/2);
        padding: 10px;
    }
  }
  @media screen and (max-width: 747px) {


    .image{
        width: 90vw;
        height: 90vw;
        padding: 10px;
    }
    .fullscreen,.close{
        display: none;
    }
  }

  @media screen and (min-width: 748px) {


    .image:hover{
        transform: scale(1.03);
        transition: 0.5s;
        cursor: pointer;
    }
      
      
      .fullscreen{
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 99999;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100vw;

}

.fullscreen img:nth-child(2), .fullscreen iframe{
    z-index: 99999;
    position: relative;
    min-height: unset;
    min-width: unset;
    max-width: 80%;
    max-height: 80%;
    width: max-content;
    height: max-content;

}
.fullscreen iframe{
    width: 80%;
    height: 80%;
    
}


.fullscreen:hover{
    transform: none;
    z-index: 99999;
}

.fleches{
    width: 55px;
    position: relative;
    margin: 20px;
    z-index: 999991;
}

.fleches:hover, .close:hover{
    cursor: pointer;
}

.close{
    position: fixed;
    z-index: 999991;
    top: 20px;
    right: 20px;
    width: 50px;
}

}
.hide{
    display: none;
}

option{
    text-transform: capitalize;
}

#loadMoreBtn{
    background-color: white;
    padding: 10px 20px;
    cursor: pointer;
    border:  solid #979797 1px;
}