/* @group Image With List
------------------------------------ */

.image-with-list .title-row .title-col .bp-multimedia {
    height: 3.5rem;
    margin: 0 auto;
}
.image-with-list .image-row .image-col {
    width: 100%;
}
.image-with-list .image-row .image-col .bp-multimedia {
    height: 17.2rem;
}
.image-with-list .list-row .list-col .wp-block-list {
    list-style: none;
    padding-left: 0;
}
.image-with-list .list-row .list-col .wp-block-list li {
    padding-block: 1rem;
    border-bottom: 1px solid var(--blue);
}
.image-with-list .list-row .list-col .wp-block-list li:first-of-type {
    padding-top: 0;
}

@media only screen
and (min-width : 961px) {
    .image-with-list .image-row .image-col .bp-multimedia {
        height: 80rem;
    }
}
@media only screen
and (min-width : 961px)
and (max-width : 1440px) {
}
@media only screen
and (min-width : 0)
and (max-width : 960px) {
    .image-with-list .image-row:is(.full-width-mobile) .image-col .bp-multimedia {
        height: 28.8rem;
    }
    .image-with-list .list-row .text-col .has-heading-5-font-size {
        --fs: 1.8rem;
    }
    .image-with-list .list-row .list-col {
        margin-top: 3rem;
    }
}

/* @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;
}