body {
    background: #FCAE17;
}

header .navigation__strip__default {
    background: #0B2240;
}

header .navigation__strip__default .link__home {
    background: #0B2240;
}

.navigation__overlay__default,
.navigation__overlay__default .section__links > .collapsible__checkbox:checked + .item {
    background: #0B2240;
}

footer .footer__main__default {
    background: #0B2240;
}

header .section__banner > * {
    background-image: url('/storage/assets/images/backgrounds/background_6.png');
}

.text__basic {
    color: #0B2240;
}

.animated-text.whiteglow {
    color: #FFFFFF;
    animation: whiteGlow 2s ease-in-out infinite alternate; 
}

/* Define the animation sequence using keyframes */
@keyframes whiteGlow {
    /* Start of the animation */
    from {
        /* Initial text shadow: no offset, small blur, white color */
        text-shadow: 0 0 2px white; 
    }
    /* End of the animation */
    to {
        /* Final text shadow: increased blur for a stronger glow */
        text-shadow: 0 0 20px white, 0 0 30px white, 0 0 40px white;
    }
}