
section.galerie .presentation{
    padding-bottom: 40px;
}

section.galerie .row_galerie{
    margin-right: 0;
    margin-left: 0;
}
section.galerie .row_galerie>*{
    padding-left: 0;
    padding-right: 0;
}
section.galerie .row_galerie .picture {
    position: relative;
    margin-bottom: 1px;
    overflow: hidden;
    display: block;
}
section.galerie .row_galerie .picture::before {
    content: "";
    display: block;
    padding-top: 75%;
}
section.galerie .row_galerie .picture img {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
section.galerie .row_galerie .picture::after {
    content: "";
    position: absolute;
    z-index: 3;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #ffffff;
}
section.galerie .row_galerie .picture .overlay-b {
    background: rgba(35, 40, 45, 0.5);
    position: absolute;
    top: -100%;
    left: 0;
    height: 100%;
    width: 100%;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    z-index: 2;
}
section.galerie .row_galerie .picture p {
    left: 0;
    right: 0;
    position: absolute;
    top: calc(50% - 20px);
    text-align: center;
    color: #ffffff;
    z-index: 3;
    font-weight: 200;
    line-height: 40px;
    font-size: 30px;
}
section.galerie .row_galerie .picture:hover .overlay-b{
    top: 0;
}

/*************/



/** Responsive *****************************************/

@media (max-width: 1199px){
}

@media (max-width: 991px){
}

@media (max-width: 767px){
}

@media (max-width: 575px){
}