.gallery-container{
    padding: 50px 0;
}

.gallery-sub-container{
    max-width: 1800px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.gallery-heading{
    text-align: center;
    color: #5938B7;
    font-weight: 700;
}

.gallery-content-container{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 15px;
    margin-top: 60px;
}

.gallery-body{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.gallery-body > img{
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
    max-height: 350px;
}

.gallery-body-1{
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.gallery-body-1::after{
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url("../assets/gallery/01.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    position: absolute;
    z-index: 1;
}

/* .gallery-body-2{
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.gallery-body-2::after{
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url("../assets/gallery/02.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    position: absolute;
    z-index: 1;
} */

/* .gallery-body-2 > img, */
.gallery-body-1 > img{
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.gallery-body-1{
    grid-column: 1/6;
    grid-row: 1/3;
}

.gallery-body-2{
    grid-column: 6/10;
    grid-row: 1/3;
}

.gallery-body-3{
    grid-column: 10/13;
    grid-row: 1/3;
}

.gallery-body-3 img{
    object-position: 58%;
}

.gallery-body-4{
    grid-column: 1/4;
    grid-row: 3/5;
}

.gallery-body-5{
    grid-column: 4/9;
    grid-row: 3/5;
}

.gallery-body-7{
    grid-column: 9/13;
    grid-row: 3/5;
}

.gallery-body-7 > img{
    object-position: top;
}

.gallery-body-8 {
    grid-column: 1/5;
    grid-row: 5/7;
}

.gallery-body-9 {
    grid-column: 5/9;
    grid-row: 5/7;
}

.gallery-body-10 {
    grid-column: 9/13;
    grid-row: 5/7;
}


.gallery-btn-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.gallery-btn{
    margin-top: 20px;
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
}

/* .gallery-body::after {
    content: 'Show More';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #00000066;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all ease 0.2s;
}

.gallery-body:hover::after {
    opacity: 1;
    transform: scale(1);
} */


@media screen and (max-width: 768px){
    .gallery-content-container{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .gallery-body{
        height: auto;
        width: 100%;
    }
    .gallery-body > img{
        max-height: unset;
    }
}