body {
    background-color: white;
}
.img-card {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.img-card img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.img-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    z-index: 1;
    pointer-events: none;
}

.img-card:hover img {
    transform: scale(1.1);
}

.img-card:hover {
    transform: scale(1.03);
}
.img-card {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.img-text {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);

    color: white;
    font-size: 20px;
    font-weight: bold;
}
.img-card {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.img-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 50%,
        rgba(0,0,0,0.75) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.img-text {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 20px;
    font-weight: bold;
    z-index: 2;
}
.gallery {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 20px;
}

.gallery img {
  height: 450px;
  object-fit: cover;
}


.divider {
    width: 2px;
    height: 450px;          
    background: rgba(255,255,255,0.3);
}