.animated-banner {
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid var(--khaki);
}
.animated-banner .column-sun {
    display: flex;
    justify-content: center;
}
.animated-banner .sun-container {
    width: 600px;
    height: 200px;
    position: relative;
}
.animated-banner .sun {
    position: absolute;
    top: 0;
    left: 0;
    width: 3rem;
    height: 3rem;
    will-change: transform, opacity;
    transform: translateZ(0);
}
.animated-banner--bottom-image {
    width: 100%;
    height: 30.7rem;
}
.animated-banner--bottom-image .bp-multimedia {
    width: 100%;
}
@media only screen
and (min-width : 961px) {
    .animated-banner--bottom-image {
        padding-left: 10.3rem;
        padding-right: 3.8rem;
    }
    .animated-banner .column-text {
        margin-top: -3rem;
    }
}
@media only screen
and (min-width : 0)
and (max-width : 960px) {
    .animated-banner::before {
        content: "";
        width: 77.27%;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        height: 2px;
        background-color: var(--khaki);
    }
    .animated-banner :is(.col-default-20, #important) {
        max-width: 25rem;
        margin: 0 auto!important;
    }
    .animated-banner :is(.col-default-20, #important).column-text {
        margin-top: -8rem!important;
    }
    .animated-banner--bottom-image {
        position: relative;
        top: 2px;
    }
}

/* Animations
------------------------------------ */
:where(#wrapper) .animated-banner .col-default-20 :is(.wp-block-heading, p) {
	opacity: 0;
	--duration: 1s;
}
:where(#wrapper) .animated-banner.animateActive .col-default-20 :is(.wp-block-heading, p) {
	animation: fade var(--duration) forwards;
	animation-delay: var(--delay, 0);
}
:where(#wrapper) .animated-banner.animateActive .col-default-20 :is(.wp-block-heading) {
    --delay: 0.3s;
}
:where(#wrapper) .animated-banner.animateActive .col-default-20 :is(p) {
    --delay: 0.5s;
}