
.clearGallerie {
    clear: both;
    float: none;
    width: 100%;
  }

  

/* line 22, ../sass/demo.scss */
.containerGallerie {
    max-width: 1400px;
    width: 100%;
    padding-right: 15px;
    padding-left: 10%;
    margin-right: auto;
    margin-left: auto;
  }  


.containerGallerie .fotogallery a img {
    width: 20%;
    height: auto;
    border: 2px solid #fff;
    -webkit-transition: -webkit-transform .15s ease;
    -moz-transition: -moz-transform .15s ease;
    -o-transition: -o-transform .15s ease;
    -ms-transition: -ms-transform .15s ease;
    transition: transform .15s ease;
    position: relative;
}

.containerGallerie .fotogallery a:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    z-index: 5;
}
 
.containerGallerie .fotogallery a.bigger img {
    width: 40%;
}
