/* flyer style */
.flyer {
  margin: 0 -.5em;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}

.flyer__item {
  background-color: #fff;
  border: 1px solid #dedede;
  width: calc(25% - 1em - 2px);
  float: left;
  margin: .5em;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.flyer__img {
  padding: .7rem;
  text-align: center;
}

.flyer__img a img {
  height: 100px;
  margin: 0 auto !important;
}
.flyer__text {
	-webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
	padding: 0 .7rem .7rem;
	word-wrap: break-word;
}

.flyer__text a {
	display: block;
  color: #000;
  text-decoration: none;
}

.flyer__text a:hover,
.flyer__text a:focus {
  text-decoration: underline;
}

.flyer__download {
  background: #dedede;
  padding: .7rem;
}

.flyer__download a {
  color: #000;
  text-decoration: none;
}

.flyer__download a:hover,
.flyer__download a:focus {
  text-decoration: underline;
}

/* media queries folderpage */
@media (max-width: 992px) {
  .flyer__item {
    width: calc(33.3% - 1em - 2px);
  }
}

@media (max-width: 768px) {
  .flyer__item {
    width: calc(33.3% - 1em - 2px);
  }
}

@media (max-width: 480px) {
	.flyer__item {
		width: calc(50% - 1em - 2px);
	}
}
