/*Estilo customizado*/
.flexBannerr {
  display: table;
  width: 764px;
  margin: 25px auto 0;
}

.flexBannerr .Banners {
  display: inline-block;
  list-style: outside none none;
  margin: 0px;
}

.Banners > li {
  margin-bottom: 20px;
  margin-right: 20px;
  overflow: hidden;
  float: left;
  border: 1px solid #ccc;
  background-color: #fff;
  transition: filter .3s;
}

.Banners > li,
.Banners .overlay {
  height: 250px;
  width: 370px;
}

.Banners li:nth-child(2n+1) {
  clear: left;
}

.Banners li img {
  height: 100%;
  width: 100%;
  filter: brightness(0.85);
  transition: transform .3s;
}
.Banners li:hover img {
  transform: scale(1.1);
  filter: brightness(1);
}

#swxcfs_wrapper h2 {
  text-align: center;
}

.Banners > li:nth-child(2n) { 
  margin-right: 0;
}

.Banners .overlay {    
    position: absolute;
    transition: opacity .5s linear;
    opacity: 0;
    background-color: #000;    
}

.Banners li:hover .overlay {
    opacity: 0.5;
}
.Banners .description {
    text-align: center;
    margin: -20% 20px 0;
    position: relative;
}
.Banners .banner-title {
  color: #fff;
  border-bottom: 2px solid #fff;
  display: initial;
  text-transform: uppercase;
  padding-bottom: 5px;
}
.Banners .legend {
    color: #fff;
    margin-top: 10px;
    width: 100%;
}

/* Responsividade*/

@media only screen and (min-width: 1024px) and (max-width : 1299px) {
	.home .Banners>li,
	.home .Banners .overlay {
		height: 160px;
	}
}
@media only screen and (min-width: 768px) and (max-width : 1023px) {
  div.flexBannerr {
    float: none;
    margin: 25px auto;
    width: 665px;
  }
  ul.Banners > li,
  ul.Banners .overlay { width: 320px; height: 240px;}
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
	div.flexBannerr {
		display: flex;
		margin: 25px auto;
		width: 340px;
		float: none;
	}
	div.flexBannerr .Banners { margin: 0;}
	ul.Banners > li,
	ul.Banners .overlay {
		height: 240px;
		width: 340px;
	}
	.Banners li img {
		filter: brightness(85%);
	}
}

@media only screen and (max-width: 479px){
	div.flexBannerr{ width: 100%; display: inline-block; }
	.home ul.Banners > li,
	.home ul.Banners .overlay { width: 100%; height: 164px;}
	div.flexBannerr .Banners { 
		float: none;
		width: 245px;
		margin: 0 auto;
		display: block;
	}
	.Banners li img {
		filter: brightness(85%);
	}
}
