.custom-gallery {
    line-height: 0;
    -webkit-column-count: 2;
    -webkit-column-gap:   0px;
    -moz-column-count:    2;
    -moz-column-gap:      0px;
    column-count:         2;
    column-gap:           0px;

}
.custom-gallery img {
    display: block;
    max-width: 100%;
    width: 100%;
}
.custom-gallery figure {
    padding: 1px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}
.custom-gallery figure a {
    position: relative;
    display: block;
}
.mcustom-gallery figcaption {
    display: none;
}
.project-background {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: black;
    top: 0;
    left: 0;
    opacity: 0;
    text-align: right;
    transition: 0.2s linear;
}
.project-icon-click {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #f7f7f7;
    padding: 5px;
    font-size: 25px;
    opacity: 0;
    transition: 0.2s linear;
}
.custom-gallery figure:hover .project-background {
    opacity: 0.5;
}
.custom-gallery figure:hover .project-icon-click {
    opacity: 1;
}
.project-icon-click span {
    font-size: 27px;
}
.touche-background-wrapper .touche-background {

}
@media (max-width: 800px) {
    .custom-gallery {
        -moz-column-count:    1;
        -webkit-column-count: 1;
        column-count:         1;
    }


}