.gallery-fold-main {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-fold-item {
    width: calc((100% / 4) - 8px);
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.gallery-fold-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-fold-item:hover img {
    transform: scale(1.1);
}

.gallery-fold-item img {
    transition: all 500ms ease;
}

.gallery-fold {
    padding: 60px 0px;
}

.gallery-fold-item::before {
    content: '\f002';
    font-family: 'Font Awesome 6 Pro';
    position: absolute;
    left: 50%;
    top: 50%;
    color: #fff;
    font-size: 35px;
    z-index: 1;
    transform: translateX(-50%) translateY(-50%) scale(0);
    opacity: 0;
    transition: all 500ms ease;
    transform-origin: center;
}

.gallery-fold-item:hover::before {
    transform: translateX(-50%) translateY(-50%) scale(1);
    opacity: 1;
}

.gallery-fold-item::after {
    content: '';
    background: #00000060;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 500ms ease;
}

.gallery-fold-item:hover::after {
    opacity: 1;
}