.my_row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
    background-color: #FFFFFF;
}

/* Create four equal columns that sits next to each other */
.my_column {
    flex: 20%;
    max-width: 20%;
    padding: 0.5em;
    text-align: center;
}

.my_column img {
    vertical-align: middle;
    max-width: 100%;
}

@media screen and (min-width: 992px) and (max-width: 1200px){
    .my_column {
        flex: 25%;
        max-width: 25%;
        text-align: center;
    }
}

@media screen and (min-width: 768px) and (max-width: 992px){
    .my_column {
        flex: 50%;
        max-width: 50%;
        text-align: center;
    }
}
@media screen and (max-width: 768px){
    .my_column {
        flex: 100%;
        max-width: 100%;
        text-align: center;
    }
}

figcaption{
    display: none;
}

.oeuvreName{
    text-align: center;
    margin: 1em 0 0 0;
    color: #000;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 0.8em;
    font-family: 'FuturaBold';
}

/* ================
     FANCY BOX
 ================  */

.fancybox-caption h6{
    font-weight: 600;
}

.fancybox-caption .about{
    font-size: 0.7em;
    font-style:normal;
    margin-left:32px;
    font-family: Georgia, "Times New Roman", serif;
    padding-left: 48px;
    background:url('../img/blockquote.png');
    background-repeat:no-repeat;
    text-align: left;
}

.fancybox-caption {
    background: none;
    color: rgb(107, 107, 107);
    font-family: "Open Sans";
    line-height: 22px;
    font-size: 1.2em;
    z-index: 99993;
}
.fancybox-is-open .fancybox-bg {
    opacity: 1;
}
.fancybox-bg {
    background: #fff;
}

/* Bouton noir sur fond transparent */
.fancybox-button{
	background: rgba(255,255,255,0);
	color: #000;
}
.fancybox-button svg path {
	 fill: initial;
}