/* @group Images Row - Overfloating Text
------------------------------------ */
.images-row {
	--heightImages: 50rem;
}
.images-row .box-wrapper .bp-multimedia {
	height: var(--heightImages);
}
@media only screen
and (min-width : 961px) {
	.images-row .box-wrapper {
		flex: 1 1 50%;
	}
}
@media only screen
and (min-width : 961px)
and (max-width : 1440px) {
}
@media only screen
and (min-width : 0)
and (max-width : 960px) {
	.images-row .box-wrapper {
		width: 100%;
	}
}

/* @end */


/* Animations
------------------------------------ */
:where(#wrapper) .contenedor .elemento {
	opacity: 0;
	--duration: 1s;
}
:where(#wrapper) .contenedor.animateActive .elemento {
	animation: fade var(--duration) forwards;
	animation-delay: var(--delay, 0);
}
:where(#wrapper) .contenedor.animateActive .elemento {
    --delay: 0.3s;
}


/* Editor
------------------------------------ */
:where(.editor-styles-wrapper) .images-row .row > .block-editor-inner-blocks > .block-editor-block-list__layout {
	flex-wrap: wrap;
}
:where(.editor-styles-wrapper) .images-row .box-wrapper {
	flex: 0 1 50%;
}