﻿.gallery-item-single figure figcaption h5, .gallery-item-single figure figcaption .link {
    color: #ffffff;
}

.gallery-item-single {
    margin-bottom: 2rem;
    overflow: hidden;
}

    .gallery-item-single figure {
        position: relative;
        margin: 0;
    }

        .gallery-item-single figure figcaption {
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            visibility: hidden;
            opacity: 0;
            transition: all 0.3s ease;
            padding:5px;
            text-align:center;
        }

            .gallery-item-single figure figcaption h5 {
                margin-bottom: 1rem;
            }

            .gallery-item-single figure figcaption h5, .gallery-item-single figure figcaption span {
                transform: scale(1.3);
                transition: all 0.3s ease;
            }


        .gallery-item-single figure:hover figcaption {
            opacity: 1;
            visibility: visible;
        }

            .gallery-item-single figure:hover figcaption h5, .gallery-item-single figure:hover figcaption span {
                transform: scale(1);
            }

            .gallery-item-single figure:hover figcaption .link {
                top: 0;
                right: 0;
            }