/***portfolio hover***/
/*---------------*/
/***** Bubba *****/
/*---------------*/
.caption-hover{
    height: 100%;
    width: 100%;
    max-width: 100%;
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.effect-bubba .caption-hover p {
    color: #fff;
    margin: 0;
}
.effect-bubba {
    background: #000000;
    position:relative;
}

.effect-bubba .image {
    opacity: 0.7;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
    max-width: 100%;
    width: 100%;
    height: 261px;
}
.effect-bubba:hover .image {
    opacity: 0.4;
}
.one-column .effect-bubba .image,
.two-column .effect-bubba .image{
    height: auto;
}

.masonry-container{
    width:100%;
    position:relative;
}
.masonry-container .masonry-box{
    margin-bottom: 15px;
    float: left;
    max-width: 100%;
}
.masonry-container .effect-bubba .image {
    height: auto;
}

.effect-bubba .caption-hover::before,
.effect-bubba .caption-hover::after {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    min-height: 26px;
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}
.effect-bubba .caption-hover::before {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: scale(0,1);
    transform: scale(0,1);
}
.effect-bubba .caption-hover::after {
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform: scale(1,0);
    transform: scale(1,0);
}
.effect-bubba h2 {
    padding-top: 30%;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0,-20px,0);
    transform: translate3d(0,-20px,0);
}
.effect-bubba p {
    color: #f8f8f8;
    font-weight: bold;
    font-size: 18px;
    padding:0 30px;
    text-align: center;
    text-transform: uppercase;
    word-wrap: normal;
    z-index: 1;
}
.effect-bubba:hover .caption-hover::before,
.effect-bubba:hover .caption-hover::after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.effect-bubba:hover h2,
.effect-bubba:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
/****portfolio css paart end****/