.full-width-image {
  position: relative;
}
.full-width-image img, .full-width-image picture {
  width: 100%;
  min-height: 500px !important;
  object-fit: cover;
  object-position: center;
}
@media screen and (min-width: 992px) {
  .full-width-image img, .full-width-image picture {
    height: auto !important;
  }
}
@media screen and (max-width: 991px) {
  .full-width-image img, .full-width-image picture {
    position: relative !important;
  }
  .full-width-image img.invisible, .full-width-image picture.invisible {
    display: none !important;
  }
  .placement-left .full-width-image img, .placement-left .full-width-image picture {
    object-position: right center;
  }
  .placement-right .full-width-image img, .placement-right .full-width-image picture {
    object-position: left center;
  }
}
@media screen and (min-width: 992px) {
  .has-content .full-width-image--cover-holder {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media screen and (min-width: 992px) {
  .fwi--wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 991px) {
  .fwi--wrapper .wrapper {
    padding: 0;
  }
}
@media screen and (min-width: 992px) {
  .fwi--wrapper .wrapper {
    position: relative;
    height: 100%;
  }
}
.fwi--content-container {
  width: 100%;
  background-color: var(--block-bg);
  color: #fff;
  padding: 20px 20px 40px;
}
@media screen and (min-width: 992px) {
  .fwi--content-container {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 5px;
    padding: 35px 45px;
    max-width: 620px;
  }
  .placement-right .fwi--content-container {
    left: auto;
    right: 20px;
  }
}
.fwi--content-container * {
  color: #fff;
}
.fwi--content-container small {
  font-size: 0.875rem;
  line-height: 1.063rem;
  letter-spacing: 0.1px;
}
.fwi--heading {
  margin-bottom: 20px;
}
