/* line 16, ../sass/style.scss */
.clear {
  clear: both;
  float: none;
  width: 100%;
}

/* line 22, ../sass/style.scss */
.container {
  /*max-width: 1170px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;*/
}
/* line 32, ../sass/style.scss */
.container .gallery a img {
  /* float: left; */
  display: inline-block;
  /*width: 16%;
  height: auto;*/
  height: 180px;
  margin: 0 8px;
  border: 0px 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;
}

@media (max-width: 667px) {
	.container .gallery a img {
	  width: 20%;
	}	
}
@media (max-width: 480px) {
	.container .gallery a img {
	  width: 25%;
	}	
}
@media (max-width: 380px) {
	.container .gallery a img {
	  width: 50%;
	}	
}
@media (max-width: 320px) {
	.container .gallery a img {
	  /* width: 100%; */
	}	
}

/* line 46, ../sass/style.scss */
.container .gallery 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;
}
/* line 57, ../sass/style.scss */
.container .gallery a.big img {
  width: 40%;
}

/* line 65, ../sass/style.scss */
.align-center {
  text-align: center;
}
