/*------------------------------------------------------------------
    Version: 1.0
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
    IMPORT FONTS
-------------------------------------------------------------------*/



/*------------------------------------------------------------------
    IMPORT FILES
-------------------------------------------------------------------*/




/*------------------------------------------------------------------
    SKELETON
-------------------------------------------------------------------*/



.gallery-single{
	margin: 30px 15px;;
}

.gallery-single{
    text-align: center;
    overflow: hidden;
    position: relative;
	border: 10px solid #f9ba1f;
}
.gallery-single img{
    width: 100%;
    height: auto;
    transform: scale(1.6);
    transition: all 0.3s ease 0s;
}
.gallery-single:hover img{
    filter: grayscale(100%);
    transform: scale(1.2);
}
.gallery-single .box-content{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: all 0.2s ease 0s;
}
.gallery-single:before,
.gallery-single:after,
.gallery-single .box-content:before,
.gallery-single .box-content:after{
    content: "";
    width: 100%;
    height: 25%;
    background: linear-gradient(to right,rgba(0,0,0,0.9),rgba(0,0,0,0.7),transparent,rgba(0,0,0,0.7),rgba(0,0,0,0.9));
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease 0s;
}
.gallery-single:before{ transform: translateX(100%); }
.gallery-single:after{
    height: 25.1%;
    top: 25%;
    transform: translateX(-100%);
    transition-delay: 0.05s;
}
.gallery-single .box-content:before{
    top: 50%;
    transform: translateX(100%);
    transition-delay: 0.1s;
}
.gallery-single .box-content:after{
    top: 75%;
    transform: translateX(-100%);
    transition-delay: 0.15s;
}
.gallery-single:hover:before,
.gallery-single:hover:after,
.gallery-single:hover .box-content:before,
.gallery-single:hover .box-content:after{ transform: translateX(0); }
.gallery-single .inner-content{
    padding: 7px 0;
    text-align: right;
    position: absolute;
    bottom: 10px;
    right: 20px;
    z-index: 2;
    transition: all 0.3s ease 0s;
}
.gallery-single .title{
    font-size: 22px;
    font-weight: 700;
    color: #f9ba1f;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 3px 0;
    opacity: 0;
    transform: translateY(150px);
    transition: all 0.4s ease 0s;
}
.gallery-single .post{
    display: inline-block;
    padding: 0 5px;
    font-size: 16px;
    font-style: normal;
    color: #fff;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.4s ease 0s;
}
.gallery-single:hover .title,
.gallery-single:hover .post{
    opacity: 1;
    transform: translate(0, 0);
}
.gallery-single .icon{
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    top: -200px;
    left: 10px;
    z-index: 2;
    transition: all 0.4s ease 0.2s;
}
.gallery-single:hover .icon{ top: 15px; }
.gallery-single .icon li a{
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #f9ba1f;
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    transition: all 0.3s ease 0s;
}
.gallery-single .icon li a:hover{
    text-decoration: none;
    border-radius: 30%;
    background: #fff;
    color: #faac01;
}
.gallery-grid.d-none {
    display: none !important;
}



