.round-textimage { 
    display        : flex;
    flex-direction : row;
    flex-wrap      : wrap;
    z-index        : 1;
}
.round-textimage--style-1 .round-textimage__content {
    width: 40%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px;
}
.round-textimage--style-1 .round-textimage__content.style_centered_mode {
    justify-content: center;
}
.round-textimage--style-1 .round-textimage__content.style_centered_mode .round-textimage__content-wrapper {
    order: 99;
}
.round-textimage--style-1 .round-textimage__image {
    width: 60%;
}
.round-textimage--style-1 .round-textimage__image-wrapper {
    height: 100%;    
}
.round-textimage__img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.round-textimage__content-cta {
    display     : flex;
    align-items : baseline;
    gap         : 20px;
    flex-wrap   : wrap;
    padding-top : 16px;
}
.round-textimage__content-cta a {
    white-space: nowrap;
}
/* style-2-right */
.round-textimage--style-2-right,
.round-textimage--style-2-left,
.round-textimage--style-3 {
    position: relative;
}
.round-textimage--style-2-right {
    flex-direction: row-reverse;
}
.round-textimage--style-2-right .round-textimage__content,
.round-textimage--style-2-left .round-textimage__content,
.round-textimage--style-3 .round-textimage__content  {
    width: 35%;
}
.round-textimage--style-2-right .round-textimage__image,
.round-textimage--style-2-left .round-textimage__image {
    z-index: 10;
    width: 65%;
    position: absolute;
    top: 6%;
    height: 88%;
}
.round-textimage--style-2-left .round-textimage__image,
.round-textimage--style-2-left .round-textimage__image  {
    right: 0;
}
.round-textimage--style-2-right .round-textimage__image {
    left: 0;
}
.round-textimage--style-2-right .round-textimage__image .round-textimage__image-wrapper,
.round-textimage--style-2-left .round-textimage__image .round-textimage__image-wrapper,
.round-textimage--style-3 .round-textimage__image .round-textimage__image-wrapper {
    height: 100%;
}
.round-textimage--style-2-right .round-textimage__image .round-textimage__img,
.round-textimage--style-2-left .round-textimage__image .round-textimage__img {
    object-position: bottom;
}

.round-textimage__image-wrapper.video {
    position: relative;
    width: 100%;
    height: auto !important;
    aspect-ratio: 16/9;
}
body .round-textimage__image.video {
    height: auto !important;
} 
@media screen and (min-width: 1024px) {
    body .round-textimage__image.video,
    body .round-textimage__image-wrapper.video  {
        height: 100% !important;
    }   
}
.round-textimage__image-wrapper.video video {
    width      : 100%;
    height     : 100%;
    object-fit : cover;
    position   : absolute;
}
.round-textimage__image-wrapper.video .player-control {
    position        : absolute;
    inset           : 0;
    z-index         : 1;
    background      : url(./images/play.svg) 50% 50% no-repeat;
    background-size : 100px auto;
    overflow        : hidden;
    text-indent     : -10000em;
    opacity         : 0.5;
    transition: opacity 1s;
}
.round-textimage__image-wrapper.video.playing .player-control {
    background      : url(./images/pause.svg) 50% 50% no-repeat;
    background-size : 100px auto;
    opacity: 0;
}
.round-textimage__image-wrapper.video.playing:hover .player-control {
    display: block;
    opacity: 0.5;
}
