.centered-content {
  width: 100vw;
  min-height: 750px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; }
  .centered-content .image-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0; }
    .centered-content .image-wrapper img {
      width: 100%;
      height: 100%;
      z-index: 0;
      object-fit: cover;
      object-position: center top; }
    .centered-content .image-wrapper::after {
      content: '';
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
      /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#7d7e7d+0,0e0e0e+100;Black+3D */
      background: linear-gradient(to bottom, rgba(99, 98, 98, 0.3), rgba(13, 13, 13, 0.6) 100%);
      /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }
  .centered-content__inner {
    max-width: 1280px;
    width: 90%;
    margin: 0 auto;
    padding: 50px 0;
    position: relative;
    z-index: 1; }
    .centered-content__inner .content__container {
      font-family: var(--lora);
      font-size: 25px;
      font-weight: normal;
      line-height: 40px;
      font-style: normal;
      text-align: center;
      color: #ffffff; }
      @media (min-width: 768px) {
        .centered-content__inner .content__container {
          font-size: 40px;
          line-height: 55px; } }
