.animated-banner {
    position: relative;
    background-color: var(--canopy-green, #464F3C);
    border-bottom: var(--border);
    padding: 0 0 4rem;
}
.animated-banner .row {
    gap: 0!important;
    min-height: 35rem;
}
.animated-banner .col-12-6 {
    text-align: center;
}
.animated-banner .col-12-6 .has-heading-subhead {
    margin-bottom: 4rem;
}
.animated-banner .col-12-12 .img-box {
    height: 16rem;
    margin-bottom: 2rem;
    border: var(--border);
}
.animated-banner .col-12-12 .caption {
    text-align: center;
}
.animated-banner .outer-figures {
    width: calc(100% - 7rem);
    pointer-events: none;
    padding: 3.3rem 0 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-left: 3.5rem;
}
.animated-banner .outer-figures__left {
    width: 6.93rem;
    height: 6.93rem;
}
.animated-banner .outer-figures__right {
    width: 12.2rem;
    height: 7.7rem;
    margin-top: .4rem;
}
.animated-banner :is(.big-star, .medium-star, .little-star) {
    height: auto;
}
.animated-banner .outer-figures__right {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.animated-banner .outer-figures__right .medium-star {
    align-self: flex-end;
}
.animated-banner .outer-figures__left .big-star {
    width: 6.93rem;
}
.animated-banner .outer-figures__right .medium-star {
    width:  5.62rem;
}
.animated-banner .outer-figures__right .little-star {
    width: 3.1rem;
}

@media only screen 
and (min-width: 961px) {
    .animated-banner .row {
        min-height: 70rem;
    }
    .animated-banner .col-12-6 {
        padding-block: 9.2rem 7rem !important;
        padding-inline: 4rem !important;
    }
    .animated-banner .col-12-6 .has-heading-subhead {
        padding-inline: 0;
    }
    .animated-banner .col-12-12 .img-box {
        margin: 0 4rem 4rem;
        height: 37.6rem;
    }
    .animated-banner .outer-figures {
        position: absolute;
        top: 0;
        left: 0;
        width: 90.8%;
        height: 100%;
        margin: 0 4.6%;
        display: block;
    }
    .animated-banner .outer-figures__left,
    .animated-banner .outer-figures__right {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: var(--z-index-medium-high);
        pointer-events: none;
        margin: 0;
    }
    .animated-banner .outer-figures__left {
        top: 8rem;
        left: 10rem;
        width: 13.8rem;
        height: 13.8rem;
    }
    .animated-banner .outer-figures__right {
        top: 6.7rem;
        left: auto;
        right: 6.7rem;
        width: 23.1rem;
        height: 16.4rem;
    }
    .animated-banner .outer-figures__left .big-star {
        width: 13.8rem;
    }
    .animated-banner .outer-figures__right .medium-star {
        width: 11.2rem;
    }
    .animated-banner .outer-figures__right .little-star {
        width: 6.2rem;
    }
}
@media only screen 
and (max-width: 960px) {
    .animated-banner .col-12-12,
    .animated-banner .col-12-6 {
        padding-inline: 2rem!important;
    }
    .animated-banner .col-12-6 {
        margin-bottom: 4rem;
    }
}


/* Animations 
------------------------------------ */
:where(#wrapper) .counter-block__item {
	opacity: 0;
	--duration: 1s;
}
:where(#wrapper) .counter-block.animateActive .counter-block__item {
	animation: fade var(--duration) forwards;
	animation-delay: var(--delay, 0);
}
:where(#wrapper) .counter-block.animateActive .counter-block__item:nth-child(1) {
    --delay: 0.3s;
}
:where(#wrapper) .counter-block.animateActive .counter-block__item:nth-child(2) {
    --delay: 0.5s;
}
:where(#wrapper) .counter-block.animateActive .counter-block__item:nth-child(3) {
    --delay: 0.7s;
}
:where(#wrapper) .counter-block.animateActive .counter-block__item:nth-child(4) {
    --delay: 0.9s;
}
:where(#wrapper) .counter-block.animateActive .counter-block__item:nth-child(5) {
    --delay: 1.1s;
}
:where(#wrapper) .counter-block.animateActive .counter-block__item:nth-child(6) {
    --delay: 1.3s;
}
