.fw-cards-section-3 .fw-section-side-one {
  flex-direction: row;
  flex-wrap: wrap;
}
.fw-cards-section-3 .single-card-item {
  position: relative;
  display: flex;
  min-height: 300px;
  overflow: hidden;
}
.fw-cards-section-3 .fw-image-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.fw-cards-section-3 .fw-image-container .fw-image-overlay {
  background-color: rgba(0, 0, 0, 0.2);
}
.fw-cards-section-3 .fw-image-container .fw-section-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-timing-normal) var(--transition-ease-1);
}
.fw-cards-section-3 .fw-content-container {
  position: relative;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.fw-cards-section-3 .fw-content-container .fw-headline {
  color: var(--color-white);
}
.fw-cards-section-3 .fw-content-container > :last-child {
  margin-bottom: 0px;
}
