/* gallery */
.box-images {
    font-size: 0;
    margin: 0 -5px;
}
.box-images .image {
    display: inline-block;
    text-align: center;
    padding: 0 5px 40px;
    width: 25%;
    vertical-align: top;
}
 
.box-images .image a {
    font-size: 18px;
    color: #222222;
    margin-top: 22px;
    transition: 0.3s;
    text-decoration:none;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    display: block;
    font-weight: 800;
    line-height: 1.4;
}

.box-images .image a:hover  {
    color:#074bd7;
}

@media(max-width:768px){

    .box-images .image{
        width:50%;
    }
}