* {
    box-sizing: border-box;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    max-width: 1128px;
    column-gap: 24px;
    row-gap: 24px;
    padding: 0;
    margin: auto;
}

.gallery-item {
    width: 360px;
    height: 200px;
    border-radius: 8px;
    position: relative;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    box-shadow: 0px 2px 4px 0px rgba(46, 47, 66, 0.8);
    transition: all 0.3s ease-in-out;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.04);
}

/* .basicLightbox {
    background: rgba(46, 47, 66, 0.8);
} */