

/*Gallery*/


.section-gallery .box{
    position: relative;
    padding: 0px;
}
.section-gallery .box img:not(.button-icon-img){
    height: 200px;
    width: 100%;
    vertical-align: middle;
    object-fit: cover;
}
.section-gallery .icon-gallery{
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
}
.section-gallery .button-icon-img{
    width: 22px !important;
    height: auto;
}
.section-gallery .box .box-caption{
    color: white;
    opacity: 0;
    display: block;
    background: rgba(0, 0, 0, 0.75);
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
}
.section-gallery .box .box-content{
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.section-gallery .box .box-caption:hover{
    opacity: 1;
}

.section-gallery .box .box-content .box-text{
    font-family: var( --secondary-font-family);
    padding: 0 15px;
    font-size: 22px;
    margin-bottom: 0px;
}
.section-gallery .box .box-content .box-title{
    font-family: var( --secondary-font-family);
    padding: 0 15px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
}
