﻿.controls button{
    margin-right:15px;
    text-align:center;
    min-width:100px;
}
.photo-gallery-item {
    min-height: 250px;
    border-radius: 5px;
    border: 1px solid #607d8b;
    padding: 5px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    align-items: center;
    display: flex;
}

.photo-gallery-item > img {
    width: 100%;
    display: flex;
}

.photo-gallery-item-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #607d8b99;
    top: 100%;
    left: 0;
    transition: all 1s;
    color: #FFF;
    font-weight: bold;
    text-align: center;
    padding-top: 40%;
}

.photo-gallery-item:hover .photo-gallery-item-caption{
    top:0px;
}

.photo-gallery-item-info {
    font-size: 16px;
    color: #808080;
}

.photo-gallery-item-info > div{
    width: 50%;
    padding:5px;
}

.photo-gallery-item-info > div.float-right {
    text-align: right;
}


#gallery {
    text-align: center;
    width: 90%;
    margin: auto;
    padding: 0px;
}

.box {
    box-sizing: padding-box;
    width: 22%;
    height: 256px;
    float: left;
    border: 1px solid #afafaf;
    margin: 10px;
    box-shadow: 1px 1px 0px -53px rgba(0,0,0,0.5), 1px 1px 8px -2px rgba(0,0,0,0.3);
    opacity: 0.7;
    cursor: pointer;
    overflow:hidden;
}

.box img {
    width: 100%;
    margin: 0;
    padding: 0;
    object-fit: cover;
    height: 200px;
}

#gallery .caption {
    padding: 10px;
    margin: 0;
    font-size: 12px;
    font-weight: bold;
    height:54px;
    overflow:hidden;
}

#gallery .box:hover {
    opacity: 1;
    transition: transform 0.5s ease-in-out;
    z-index: 999999;
    transform: scale(1.05);
}