#galeri{
    padding: 40px 24px;
    margin-top: 100px;
}


@media (min-width: 992px) {
    #galeri{
        padding: 64px 100px 34px 100px;
    }
}


#galeri .desc{
    color: var(--Neutral400);
    font-weight: 500;
}

#galeri .title{
    font-size: 28px;
    line-height: 36px;
}

@media (min-width: 992px) {
    #galeri .title{
        font-size: 56px;
        line-height: 64px;
    }
}


#galeri .btn-arrow-line{
    width: 50%;
}

@media (min-width: 992px) {
    #galeri .btn-arrow-line{
        width: 20%;
    }
}
.gallery-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 20px;
}
.gallery-item {
    flex: 0 1 calc(25% - 15px);

    cursor: pointer;
    transition: transform 0.3s;
}
.gallery-item:hover {
    transform: scale(1.05);
}
.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.modal-content {
    max-width: 100%;
    max-height: 100%;
}