.heading {
    text-align: center;
    font-size: 2.0em;
    letter-spacing: 1px;
    padding: 40px;
    color: white;
}

.gallery-image {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #ffac26;
    border-radius: 20px;
    width: 100%;
}

.gallery-image img {
    transform: scale(1.0);
    transition: transform 0.4s ease;
}

.img-box {
    box-sizing: content-box;
    margin: 5px;
    overflow: hidden;
    display: inline-block;
    color: white;
    position: relative;
    background-color: #ffac26;
}

.caption-gallery {
    position: absolute;
    bottom: 5px;
    left: 20px;
    opacity: 0.0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.transparent-box {
    background-color:rgba(0, 0, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
    transition: background-color 0.3s ease;
}

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

.img-box:hover .transparent-box {
    background-color:rgba(0, 0, 0, 0.5);
}

.img-box:hover .caption-gallery {
    transform: translateY(-20px);
    opacity: 1.0;
}

.img-box:hover {
    cursor: pointer;
}

.caption-gallery > p:nth-child(2) {
    font-size: 0.8em;
}

.opacity-low {
    opacity: 0.5;
}

.gallery-content{display: none;}
.show-more-gallery{font-size: 14px;margin: auto;border-radius:5px;width:150px;height: 40px;background:black;color: white;text-align: center;line-height: 40px;}
.show-more-gallery:hover{background: black;color: white !important;}
