body{background-size: cover;background-attachment: fixed}
*{
    margin:0;
    box-sizing: border-box;
}
body{
    height:100vh;
}
img{
    max-width: 100%;
    vertical-align: middle;
}
/*.gallery*/
.gallery{
    /*width: 100%;*/
    display: block;
    min-height: 100vh;
}
.gallery .gallery-filter{
    padding: 0 15px;
    /*width: 100%;*/
    text-align: center;
    margin-bottom: 40px;
}
.gallery .gallery-filter .filter-item {
    color: #ffffff;
    font-size: 17px;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 5px;
    cursor: pointer;
    padding: 8px 20px 8px 20px;
    line-height: 1.2;
    transition: all 0.3s ease;
}
.gallery .gallery-filter .filter-item.active{
    color: white;
    border-color : #7b0100;
    background: #7b0100;
}
.gallery .gallery-item{
    /*width: 100%;*/
    padding: 25px;
    margin-bottom: 20px;
}
.gallery .gallery-item-inner img{
    width: 100%;
}
.gallery .gallery-item.show{
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
.gallery .gallery-item.hide{
    display: none;
}
.gallery-item-inner img {
    transition: 0.3s all;
}
.gallery-item-inner img:hover {
    transform: scale(1.1);
}