/* Galleri */

.gallery-main {
    display: flex;
    justify-items: center;
    justify-content: center;
    align-items: center;
    padding-top: 3rem;
}

.container-fluid .img-gallery {
    width: 80%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
}

    .container-fluid .img-gallery img {
        min-height: 250px;
        width: 100%;
        cursor: pointer;
        border-radius: 15px;
    }

.container-fluid .img-gallery-container {
    background-color: #184A31;
    border: 5px solid #184A31;
    border-radius: 15px;
    transition: all 1s ease;
}

    .container-fluid .img-gallery-container:hover {
        transform: scale(0.8) rotate(-15deg);
        border-radius: 20px;
        box-shadow: 0 32px 75px rgba(68,77,136,0.2);
        /*transition: 0.5s ease-in-out;*/
    }

    .flex-row-reverse{
        display: flex;
        flex-direction:row-reverse;
    }


.container-fluid .full-img {
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

    .container-fluid .full-img img {
        max-width: 1100px;
        width: 90%;
    }

    .container-fluid .full-img span {
        position: absolute;
        top: 5%;
        right: 5%;
        font-size: 30px;
        color: #fff;
        cursor: pointer;
    }


    .full-img {
        position: relative;
    }

    #imageTitle {
        position: absolute;
        bottom: 20px;
        left: 0;
        width: 100%;
        text-align: center;
        color: white;
        font-weight: bold;
        background-color: rgba(0, 0, 0, 0.7);
        padding: 5px 0;
    }
