/* @group Image With Text
------------------------------------ */
.image-with-text {
    position: relative;
}
.image-with-text .image-box .bp-multimedia {
    height: 24.9rem;
    width: 100%;
}
@media only screen
and (min-width : 961px) {
    .image-with-text > .row {
        height: var(--heightImage);
    }
    .image-with-text .image-box {
        position: absolute;
        left: 0;
        top: 7.2rem;
        bottom: 7.2rem;
    } 
    .image-with-text .image-box .bp-multimedia {
        height: 100%;
    }
    .image-with-text :is(.text-box, #important) {
        padding-block: 10.2rem;
        padding-left: 7.2rem;
    }
}
@media only screen
and (min-width : 1920px) {
    .image-with-text :is(.text-box, #important) {
        margin-right: 0;
    }
}
@media only screen
and (min-width : 0)
and (max-width : 960px) {
    .image-with-text :is(.row, #important) {
        padding-inline: 0;
    }
    .image-with-text :is(.text-box, #important) {
        margin-top: 3.2rem;
        padding-inline: var(--_row-extra-pad)!important;
    }
    .image-with-text .image-box {
        width: 100%;
    }
    .image-with-text .image-box:has(.bp-multimedia) {
        height: 24.9rem;
    }
    .image-with-text .text-box {
        text-align: center;
    }
    .image-with-text .text-box .bp-button {
        margin: 0 auto;
    }
}

/* @end */


/* ANIMATIONS */
:where(#wrapper) .image-with-text :is(.text-box, .image-box) {
	opacity: 0;
	--duration: 1s;
}
:where(#wrapper) .image-with-text.animateActive :is(.text-box, .image-box) {
	animation: fade var(--duration) forwards;
	animation-delay: var(--delay, 0);
}
:where(#wrapper) .image-with-text.animateActive :is(.image-box) {
	--delay: 0.4s;
}
:where(#wrapper) .image-with-text.animateActive :is(.text-box) {
	--delay: 0.6s;
}
/* @end */