.bg-img {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.bg-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.5);
}
.list a:before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.link {
  text-align: center;
}
.three-col .list,
.four-col .list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-flex-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.three-col .col-list,
.four-col .col-list {
  position: relative;
  background: #f4f4f4;
}
.three-col .col-list {
  width: calc((100% - (11px * (3 - 1)))  / 3);
}
.three-col .col-list:not(:nth-of-type(3n + 3)) {
  margin-right: 11px;
}
.four-col .col-list {
  width: calc((100% - (14px * (4 - 1)))  / 4);
  max-width: 205px;
}
.four-col .col-list:not(:nth-of-type(4n + 4)) {
  margin-right: 14px;
}
.text-wrapper {
  padding: 20px 20px 25px;
}
.text-wrapper .text,
.text-wrapper p {
  line-height: 1.5;
}
.text-wrapper .teaser p {
  line-height: 1.25;
}
.js-collapsible-cta {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 1.5em;
  padding-right: 2em;
  text-align: left;
  background: none;
  border: solid #DCDCDC;
  border-width: 0 0 1px;
  cursor: pointer;
}
.js-collapsible-cta::after {
  font-family: 'font-icon';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90b";
  position: absolute;
  right: 0;
  top: -4px;
  padding: 8px 0;
  box-sizing: border-box;
  font-size: 1.4em;
  transition: all 0.3s ease-in-out;
}
.js-collapsible-content {
  visibility: hidden;
  max-height: 0;
  margin-bottom: 0;
  opacity: 0;
  transition: opacity 1s, max-height 1s;
}
.js-collapsible.is-expanded .js-collapsible-content {
  visibility: visible;
  max-height: inherit;
  opacity: 1;
}
.js-collapsible.is-expanded .js-collapsible-cta::after {
  transform: rotate(180deg);
}
.section-video {
  margin: 40px 0;
}
