.image-content-block {
  max-width: 1400px;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0 auto;
  border-radius: 40px;
  overflow: hidden;
  background-color: #f5f5f5;
}

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

    .image-content-right,
    .image-content-left {
      width: 50%;

      .image-background-section {
        height: 100%;
      }
    }
    .content-section {
      padding: 80px 40px;
      width: calc(50% - 80px);

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

@media screen and (max-width: 1024px) {
  .image-content-block {
    min-height: 0 !important;
    .image-content-container {
      .image-content-left,
      .image-content-right {
        display: none;
      }
      .content-section {
        width: 100%;
        padding: 40px 20px;
      }
    }
  }
}
