/* line 3, src/sass/components/brands-page.scss */
.header-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* line 8, src/sass/components/brands-page.scss */
.header-image .header-wrapper {
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
}

/* line 17, src/sass/components/brands-page.scss */
.header-image .header-wrapper .title {
  color: #fff;
  font-size: 34px;
  font-weight: 600;
  line-height: 50px;
  margin-bottom: 0;
  padding: 101px 0 40px;
}

@media (min-width: 992px) {
  /* line 3, src/sass/components/brands-page.scss */
  .header-image {
    height: 550px;
  }
  /* line 30, src/sass/components/brands-page.scss */
  .header-image .header-wrapper .title {
    padding: 0;
  }
}

/* line 36, src/sass/components/brands-page.scss */
.brands-grid {
  padding: 60px 0;
}

.brands-grid .column {
	display: none;
}

/* line 39, src/sass/components/brands-page.scss */
.brands-grid .item {
  margin: 15px;
  height: 240px;
  padding: 20px;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  -webkit-box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.25);
  width: -webkit-fill-available;
}
 
}

/* line 50, src/sass/components/brands-page.scss */
.brands-grid .brand-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  color: #4CADC9;
}

/* line 57, src/sass/components/brands-page.scss */
.brands-grid .brand-description {
  height: 3em;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  overflow: hidden;
  margin-bottom: 0;
}

/* line 66, src/sass/components/brands-page.scss */
.brands-grid .brand-image {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 71, src/sass/components/brands-page.scss */
.brands-grid .brand-image img {
	max-height: 160px;
}

/* The "show" class is added to the filtered elements */
.brands-grid .show {
	display: flex;
}

.brands-grid .masonry-filter {
	margin-left: 10px;
	overflow-y: auto;
	display: inline-table;
}

.brands-grid .masonry-filter li {
	padding: 5px;
    display: inline-block;
}

.brands-filter {
	white-space: nowrap;
    display: flex;
	overflow: -webkit-paged-x;
}