@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --white: #ffffff;
    --midgrey: #707070;
    --darkblue: #254156;
    --blue: #0064ee;
    --black: #000000;
    --darkgrey: #212529;
    --light: #f9f9f9;
    ;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */

body {
    font-family: "Montserrat", sans-serif !important;
}

p {
    margin-bottom: 1rem !important;
    margin-top: 0;
}

#fixednavigation ul li {
    border: none;
}

/* Header */

header {
    position: relative;
    width: 100%;
    z-index: 100;

}

.header-wrapper::before {
    background-color: var(--blue);
    content: "";
    display: inline-block;
    height: .4rem;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.header-wrapper {
    background-color: var(--white);
    color: var(--black);
    padding: 15px 0;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    position: relative;
}

.header-wrapper .logo a {
    display: flex;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px auto;
    padding: 0 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: space-between;

}

.nav-links li {
    margin-right: 20px;
}

.nav-links a {
    color: var(--darkgrey);
    padding: 8x;
    font-weight: bold;
    text-decoration: none;
    font-size: 1rem;
}

.nav-links a:hover {
    background-color: var(--blue);
    border-radius: 0px;
    color: var(--white);
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.logo img {
    width: clamp(110px, 50%, 110px);
    max-width: 110px;
}


/* Itrent Tables and Navigation */

table.page_header,
table.sect_header {
    font-family: "Montserrat", sans-serif !important;
}

table.page_header td.page_title h1 {
    font-family: "Montserrat", sans-serif !important;
    color: var(--darkgrey) !important;
    font-size: 1.2em;
}

table.sect_header td.theader h2,
table.sect_header div.header h2,
div.sect_header h2 {
    font-family: "Montserrat", sans-serif !important;
    font-size: 1.2em !important;
}

.label,
.label_no_data {
    font-family: "Montserrat", sans-serif !important;
    font-weight: bold;
}

#fixednavigation {
    background-color: transparent !important;
}

#fixednavigation ul li {
    background-color: transparent !important;
    border-left: none !important;
    border-right: none !important;
}


#wr_navigation {
    background: rgb(179, 209, 250);
    background: linear-gradient(360deg, rgb(255, 255, 255) 0%, rgb(179, 209, 250) 100%) !important;
    padding: 20px 0 20px 0;
}


/* Footer */
footer {
    background-color: var(--blue);
    color: var(--white);
    text-align: center;
    margin-top: 20px;
}

footer a {
    color: var(--white);
    text-decoration: underline;
}

.footer-text {
    background-color: var(--light);
    color: var(--darkgrey);
}

.footer-text a {
    color: var(--darkgrey);
}

.footer-text p {
    margin: 0rem 0.4rem;
    text-align: center;
    padding: 20px 10px;
}

.footer-links {
    padding: 20px 0px;
    display: flex;
    list-style: none;
    justify-content: center;
}


.footer-links a {
    color: var(--white);
    text-decoration: underline;
    padding: 0 5px 0 5px;
}

.footer-logos-wrapper {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    background-color: var(--white);
    border-top: 1px var(--darkgrey);
    border-top-style: solid;
}

.footer-logos {
    margin: 20px;
    text-align: center;
    color: var(--darkgrey);
}




@media (max-width: 768px) {
    nav {
        display: block;
    }

    .logo {
        text-align: center;
    }

    .nav-links {
        margin-top: 1rem;
        display: block;
    }

    .nav-links li {
        margin-right: 0;
    }

    .intro-text {
        flex-direction: column;
        text-align: center;
    }

    .intro-text p {
        margin: 1rem 2rem;
    }

    .intro-text button {
        margin: 1rem 2rem;
        width: 10rem;
    }

    .footer-logos-wrapper {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .footer-links {
        padding: 0px 0px 10px 0px;
        display: block;
        list-style: none;
    }
}

@media (max-width: 1024px) {
    #fixednavigation ul li {
        display: block;
        text-align: center;
        margin: 1px 7px;
        width: calc(100% - 16px);
        padding: 0 !important;
    }
}