section.boxes .margin {
  margin-top: 15px;
  margin-bottom: 15px;
}

section.boxes img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: 2;
}

section.boxes .box {
  background-color: #fff;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  position: relative;
  box-shadow: 0 6px 10px rgba(0, 0, 0, .08), 0 0 6px rgba(0, 0, 0, .05);
  border-radius: 0.25em;
}

section.boxes .box:hover .overlay {
  opacity: 1;
}

section.boxes .box .boxlink {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  font-size: 0;
  color: rgba(0, 0, 0, 0);
}

section.boxes .box .content {
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  padding: 1rem;
}

@media (-ms-high-contrast: none),
screen and (-ms-high-contrast: active) {
  section.boxes .box .content {
    height: auto;
  }
}

section.boxes .box .content .text {
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media (-ms-high-contrast: none),
screen and (-ms-high-contrast: active) {
  section.boxes .box .content .text {
    height: auto;
  }
}

section.boxes .box .content .text.flex-end {
  -webkit-box-pack: end;
  justify-content: flex-end;
}

section.boxes .box .content .headline {
  -webkit-box-flex: 0;
  flex: none;
  position: relative;
}

section.boxes .box .content .headline i {
  color: #e9df02;
}

section.boxes .box .overlay {
  z-index: 1;
  opacity: 0;
  background-color: rgba(233, 223, 2, 0.75);
  -webkit-transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
}

section.boxes .box .overlay,
section.boxes .box .overlay .content {
  position: absolute;
  bottom: 0;
  width: 100%;
}

section.boxes .box .overlay a.slash:before {
  color: #fff;
}