.anchor-navigation-module {
    transition: opacity 0.3s ease, top 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); 
}
a.anchor-link, a.external-link {
    background: #d6dee1;
    color: #0e3067;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 25px;
    text-transform: uppercase;
    box-shadow: rgba(255, 255, 255, 0.15) 0px 5px 15px 0px;
}
a.anchor-link:hover, a.external-link:hover {
    background: #ffffff;
}
.anchor-navigation-container > div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.anchor-navigation-container {
    background: #083169;
    padding: 20px 0;
}

/* Responsive */
@media (min-width: 1200px) {
    .anchor-navigation-module.sticky {
        position: fixed;
        top: 100px;
        z-index: 998;
        background: #083169;
        width: 100%;
    }
}
@media (max-width: 1199px) {
    .anchor-navigation-module.sticky {
        position: static;
        opacity: 1;
    }

@media only screen and (max-width: 600px) {
   .anchor-navigation-container > div {
        align-items: center;
    }
}