﻿:root {
    --theme-blue-light: #deeaf6;
    --theme-blue: #2f5986;
    --theme-blue-dark: #294563;
    --theme-grey: #ddd;
    --theme-grey-light: #f2f2f2;
}


/* -----------------------------
   Backgrounds
------------------------------ */
.background-white {
    background-color: white;
}

.background-theme-blue {
    background-color: var(--theme-blue)
}

.background-theme-blue-dark {
    background-color: var(--theme-blue-dark)
}

.background-theme-blue-light {
    background-color: var(--theme-blue-dark)
}

.background-theme-grey-light {
    background-color: var(--theme-grey-light)
}

.background-theme-grey {
    background-color: var(--theme-grey)
}

/* -----------------------------
   Navigation Bar(s)
------------------------------ */
.navbar-main {
    border-top: 1px solid var(--theme-blue);
}

    .navbar-main .nav-centered > li > a {
        font-size: 16px;
        font-weight: bold;
        color: white;
    }

    .navbar-main a:hover,
    .navbar-main a:focus {
        font-weight: normal;
        border: 1px solid white;
        border-radius: 5px
    }

@media (max-width: 767px) {
    .navbar-main .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        text-align: left;
    }
}

/* nav bar for navigation*/
.navbar-utility {
   
}

    .navbar-utility ul {
        display: flex;
        justify-content: space-between;
        list-style:none;
        padding: 0;
        margin: 0;
    }

    .navbar-utility ul li {
        padding-bottom: 5px;
    }

/* centered navigation using flexbox */
.nav-centered {
    margin-bottom: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

    .nav-centered > li {
        flex: 1;
        display: flex;
        padding: 10px 5px;
        justify-content: center;
    }

    .nav-centered a {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 150px;
        padding: 5px;
        text-align: center;
    }

/* Mobile responsiveness */
@media (max-width: 768px) {
    .nav-centered {
        flex-direction: column;
    }

        .nav-centered li {
            padding: 5px;
        }

        .nav-centered dropwdown {
            width: 100px;
        }
}

/* top level navgation style  */
.nav-tabs-primary {
}

    .nav-tabs-primary a {
        background-color: white;
        border: 1px solid var(--theme-blue);
        border-radius: 10px;
        min-height: 50px;
    }

    .nav-tabs-primary .active a {
        color: white;
        background-color: var(--theme-blue);
    }

@media (max-width: 768px) {
    .nav-tabs-primary {
    }
}

/* second level navgation style  */
.nav-tabs-secondary {
}

    .nav-tabs-secondary li {
        background-color: var(--theme-grey);
        flex: 2;
        border-bottom: 1px solid var(--theme-blue);
        color: var(--theme-dark-blue);
    }

        .nav-tabs-secondary li a {
            color: var(--theme-dark-blue);
        }

    .nav-tabs-secondary .active {
        border: 1px solid var(--theme-blue);
        border-bottom: 0;
        background-color: white;
        flex: 1;
    }

        .nav-tabs-secondary .active a {
            text-decoration: underline;
            text-decoration-thickness: 2px;
            text-underline-position: under;
        }


@media (max-width: 768px) {
    .nav-tabs-secondary {
        flex-direction: initial !important;
        flex-wrap: wrap;
    }


        .nav-tabs-secondary .active,
        .nav-tabs-secondary li {
            border: 0;
            background: white;
            flex: 1;
            min-width: 200px;
        }
}

.nav-tabs-primary a:hover,
.nav-tabs-primary a:focus,
.nav-tabs-secondary a:hover,
.nav-tabs-secondary a:focus {
    background-color: var(--theme-light-grey);
    color: var(--theme-dark-blue);
}

.tabs-page-border {
    border: 1px solid var(--theme-blue);
    margin: -1px;
}

.tabs-page-padding {
    padding: 10px 20px;
}

@media (max-width: 768px) {
    .tabs-page-border {
        border: 0;
    }

    .tabs-page-padding {
        padding: 0;
    }
}

/* header items logo responsive */
.header-container {
    margin: 0 20px;  
    background: #ffffffdd;
    border: 1px solid white;
}

.header-logo {
    max-height: 300px;
    width:100%;
    padding-top: 20px;
}


.header-radio-form {
    border: 2px solid;
    display: inline-block;
    border-radius: 20px;
    background: white;
}

