.text-left {
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: flex-start;
  max-width: 35rem;
  margin-left: 5vw;
  margin-right: 5rem;
  display: flex;
  position: relative;
}

.text-right-image-animated-over-text-wrapper{
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.image-part-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: -40px;
    z-index: 9999;
	object-position:top;
}

@media (max-width: 992px) {
  .text-right-image-animated-over-text-wrapper {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .text-right-image-animated-over-text-wrapper .text-part,
  .text-right-image-animated-over-text-wrapper .image-part {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .text-right-image-animated-over-text-wrapper .image-part {
    order: -1;
    min-height: 42vh;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius, 20px);
    margin-bottom: 30px;
  }

  .image-part-img {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 100%;
    min-height: 42vh;
    object-fit: cover;
    z-index: 1;
  }

  .text-part > .d-flex {
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
  }

  .text-left {
    margin-left: 1rem;
    margin-right: 1rem;
    max-width: calc(100% - 2rem);
    align-items: center;
    text-align: center;
  }

  .text-left h2 {
    font-size: 2.8rem;
    line-height: 3.2rem;
  }

  .text-left .small-title {
    font-size: 1rem;
    line-height: 1.2rem;
    letter-spacing: 0.08rem;
  }

  .text-left .circle-icon-cta {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 2780px){
	.text-left{
		max-width: 110rem;
	}
}