.image-content-block {
  max-width: none;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0 auto;
  border-radius: 0px;
  overflow: hidden;
  margin-bottom: 0px;
}

.image-content-block.no-bg {
  background-color: transparent;
  border: 0px;
  margin-bottom: 0;

  .content-section {
    & > *:not(.lite-button) {
      color: #fff;
    }
  }
}

.image-content-block {
  .image-content-container {
    display: flex;
    width: 100%;

    .image-content-right,
    .image-content-left {
      width: 50%;
      /* padding: 40px; */

      .image-background-section {
        height: 100%;
        min-height: 300px !important;
        border-radius: 0px;
      }
    }
    .content-section {
      /* padding: 80px 40px; */
      /* width: calc(50% - 80px); */
      width: 50%;
      padding: 40px;
      align-content: center;

      & > :last-child {
        margin-bottom: 0;
      }
    }
  }
  .image-content-container.reverse {
    flex-direction: row-reverse;
    height: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .image-content-block {
    min-height: 0 !important;
    height: auto;
    .image-content-container.reverse {
      flex-direction: column-reverse;
    }
    .image-content-container {
      flex-direction: column;

      .image-content-left .image-background-section,
      .image-content-right .image-background-section {
        min-height: 400px !important;
      }

      .image-content-left,
      .image-content-right,
      .content-section {
        width: 100%;
        padding: 20px;
      }
    }
  }
}
