.quelquesphotos{
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 85%;
    padding-block: 3em;
    max-width: 1400px;
}
.mainGallery{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    gap:20px
}
.imgGalleryDiv{
    display: flex;
    width: 100%;
    position: relative;
    border-radius: 3px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;

}
.imgGalleryDiv:hover img{
    transform: scale(1.1);
}
.photoPlat{
    width: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1;
    transition: 1s;
}
.nomPlat{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    inset: 0;
    font-family:'Noto Sans Bengali', sans-serif;;
    border-radius: 3px;
    transition: 0.3s;
    background-color: #161616b0;
    opacity: 0;
    color:#ffffff;
    cursor: pointer;
}
.nomPlat:hover{
    opacity: 1;
}
.voirPlusPhoto{
    margin-inline: auto;
    margin-top: 2em;
    min-width: 100px;
    width: 70%;
    max-width: 200px;
    font-size: 18px;
    font-family: 'Noto Sans Bengali', sans-serif;
    background: linear-gradient(to left, #00669F 20%, #00659fc7 100%);
    border-radius: 3px;
    border: none;
    color: #ffffff;
    padding: 1em;
    cursor: pointer;
}
.voirPlusPhoto:hover{
    background: linear-gradient(to left, #018ada 20%, #0183cec7 100%);
}
.modalPhoto{
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    inset: 0 0 0 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.815);
    z-index: 1002;
}

.imageZoom{
    width: 90%;
    max-height: 80vh;
    z-index: 1003;
    aspect-ratio: 1;
    object-fit: cover;
    max-width: 800px;
}
.nomZoom{
    color: #ffffff;
    margin-top:20px ;
    font-family: 'Noto Sans Bengali', sans-serif;
    font-size: 16px;
}

@media screen and (min-width:400px){
    
    .imgGalleryDiv{
        width: calc(50% - 10px);
    }
    .voirPlusPhoto{
        width: 200px;
    }  
}

@media screen and (min-width:450px){

    .imgGalleryDiv{
        max-height: 225px;
    }  
}

@media screen and (min-width:1024px){

    .imgGalleryDiv{
        width: calc(25% - 22.5px);
    }
    .mainGallery{
        gap: 30px;
    }
}