.gallery-container{
    padding: 50px 0;
    background-color: #282f31;
}

.gallery-heading{
    font-size: 35px;
    color: #0798ff;
    text-align: center;
    margin-bottom: 40px;
}

.gallery-content-container{
    position: relative;
}

.gallery-banner{
    width: auto;
    height: 70px;
}

.gallery-banner-tag{
    font-size: 1.75rem;
    color: #fff;
}

.gallery-sub-content-container{
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.gallery-link-container{
    display: flex;    
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.gallery-link{
    text-decoration: none;
    color: #fff;
    position: absolute;
    z-index: 3;
}

.gallery-image-back{
    width: 100%;
    position: relative;
    z-index: 2;
    filter: blur(4px);
}

.gallery-image{
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* gallery-section */
.gallery-section-container{
    padding: 50px 0;
    background-color: #282f31;
    color: #fff;
}

.gallery-section-content {
   line-height:0;
   -webkit-column-count:5; /* split it into 5 columns */
   -webkit-column-gap:5px; /* give it a 5px gap between columns */
   -moz-column-count:5;
   -moz-column-gap:5px;
   column-count:5;
   column-gap:5px;
   
}

.gallery-img{
    width: 100%;
    height: auto;
}