@charset "utf-8";
/* CSS Document */
/*************************/
.li_filters{
	display: flex;
  	justify-content: center;
	max-width: auto;
	margin-right: auto;
	margin-left: auto;
}
.li_filters li.active{
	background-color:#03aefc;
}
.li_filters li:hover{
	background-color:#0056b3;
}
.li_filters li{
	background-color: #000000;
    color: white;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    padding: 5px 10px;
    margin-left: 5px;
    transition-property: background, border-radius;
    transition-duration: .5s;
    transition-timing-function: linear;
}
/***************************/
div.cig_gallery {
	border: none;
	overflow: hidden;
	position: relative;
  height: 190px;
  width:190px;
	background-color: black;
}
div.cig_gallery a{
	text-decoration:none;
}
div.cig_gallery img {
  width: 100%;
  height: 100%;
}
.cig_responsive {
  padding: 4px;
  float: left;
  width: 19.99999%;
}
/*ipad landscape*/
@media only screen and (max-width:1024px){ 
  .cig_responsive {
    width: 15.99999%;
    margin: 9px 35px;
  }
}
/*ipad portrait*/
@media only screen and (max-width:768px){ 
  .cig_responsive {
    width: 20.99999%;
    margin: 9px 38px;
  }
}
@media only screen and (max-width:720px){ 
  .cig_responsive {
    width: 19.99999%;
    margin: 9px 38px;
  }
}
@media only screen and (max-width: 540px)
.cig_responsive {
    width: 30.99999%;
    margin: 15px 38px;
}
/*iphone 6/7/8 plus*/
@media only screen and (max-width:414px){ 
  .cig_responsive {
    width: 41.99999%;
    margin: 4px 11px;
  }
  div.cig_gallery {
    height: 170px;
    width:170px;
  }
}
/*iphone x*/
@media only screen and (max-width:375px){ 
  .cig_responsive {
    width: 41.99999%;
    margin: 4px 11px;
  }
  div.cig_gallery {
    height: 150px;
    width:150px;
  }
}
/*s5*/
@media only screen and (max-width:360px){ 
  .cig_responsive {
    width: 32.99999%;
    margin: 6px 35px;
  }
}
/*iphone se*/
@media only screen and (max-width:320px){ 
  .cig_responsive {
    width: 100%;
    margin: 4px 1px;
  }
  div.cig_gallery {
    height: 275px;
    width: 275px;
  }
}

.cig_clearfix:after {
  content: "";
  display: table;
  clear: both;
}