/*gallery*/

.home-gallery-style {
  display: inline-block;
  position: relative;
  transition: box-shadow 0.2s ease-in; }

.home-gallery-style img { max-width: 100%; position: relative; z-index: -1; }

.home-gallery-style:hover {
  -moz-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 55px inset;
  -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 55px inset;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 55px inset; }

.home-gallery-style:before {
    content:"";
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
    height: 100%;
    transition: 0.2s; }

.home-gallery-style:hover:before { background: transparent; }

/*end of gallery*/