:root{
    --box-shadow-light: rgba(255, 255, 255, 0);
    --border-white-high-contrast: #fff;
    --clr-cxdarkblue: #133274;
    --clr-cxlightblue: #a5bfd8;
    --clr-cxorange: #fd661e;
}

:root,
[data-bs-theme=light] {
    --bs-infobar-color: #a5bfd8;
    --bs-card-color: #133274;
}

[data-bs-theme=dark] {
    --bs-infobar-color: #fd651e6c;
    --bs-card-color: #a5bfd85d;
}

.svg{
    width: 60px;
    height: 20px;
}

.sub-navigation {
    padding:0%;
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
}

.sub-navigation ul {
    list-style: none;
    margin: 0%;
    display: flex;
    flex-direction: row;
    height: 50px;
    padding-left: 4.8em;
    gap: 10px;
}

.sub-navigation ul a{
    padding: 1em 0 0 ;
}

.sub-navigation ul li a.title span, .sub-navigation ul li button.title span {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.125;
}

.sub-navigation ul li a, .sub-navigation ul li button {
    align-items: center;
    align-self: stretch;
    background-color: transparent;
    border: none;
    color: var(--bs-navbar-active-color);
    cursor: pointer;
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    font-size: .875rem;
    justify-content: center;
    line-height: normal;
    min-width: 54px;
    text-decoration: none;
    white-space: nowrap;
}

.flex-fill{
    padding-left: 1rem;
}

.landing-page-top{
    padding-top: 2em;
    padding-bottom: 10em;
    width: 50%;
}

.landing-page-menu{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 20px;
    padding: 0%;
}

.landing-page-menu li a{
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.landing-page-menu li .box{
    background-color: var(--bs-card-color);
    /*box-shadow: 0 1.6px 3.6px 0 var(--box-shadow-light);*/
    /*border: solid #BDBDBD 1px;*/
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    display: block;
    width: 350px;
    height: 100px;
    padding: 1rem;
}

.landing-page-menu li .box span {
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
}

.nav-link.active{
    font-weight: 450;
}

.infobar {
    background-color: var(--bs-infobar-color);
    padding: 10px 4em;
    width: 100vw;
    text-align: center;
    display: none;
    justify-content: space-between;
}

#infobar--text {
    font-size: 16px;
    margin: 0;
    padding-left: 1em;
}

.infobar--close-button {
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    margin-right: 3em;
}

footer{
    background-color: var(--bs-body-bg);
}

.text-secondary {
    color: var(--bs-navbar-active-color);
}

.no-border *{
    border: none;
}

.width-25{
    width: 25%;
}

.width-50{
    width: 50%;
}

.width-75{
    width: 75%;
}

.width-100{
    width: 100%;
}