.gallBox{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.galTitle{
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    font-weight: 550;
}

.galTitle::after{
    content: '';
    height: 1.5px;
    width: 50%;
    background: var(--danger);
    margin-top: 1rem;
}

.galImages{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 100%;
}

.galImages .img{
    width: 20%;
    height: auto;
}

.galImages .img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}



@media (max-width: 726px){ .galImages .img{ width: 33%; } }
@media (max-width: 420px){ .galImages .img{ width: 40%; } }

@media (max-width: 350px){
    .galImages{
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
        gap: 5px;
    } 
    
    .galImages .img{ width: 60%; }
}
