﻿:root {
    --color-blue: #0067b1;
    --color-blue-dark: #025a91;
    --color-blue-light: #5bc2e7;
    --color-blue-navy: #1a2753;
    --color-green: #6cc24a;
    --color-orange: #eca154;
    --color-pink: #fb637e;
    --color-purple: #61549b;
    --color-red: #ef3e42;
    --color-blue-light-10: rgba(91,194,231,.1);
}

.lato-thin {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.lato-light {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.lato-regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.lato-bold {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.lato-black {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.lato-thin-italic {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.lato-light-italic {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.lato-regular-italic {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.lato-bold-italic {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.lato-black-italic {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: italic;
}

a {
    color: var(--color-blue);
}

body {
    margin: 0;
    padding: 0;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
}

h2 {
    font-weight: normal;
    font-size: 2.5rem;
    color: var(--color-blue);
}

h3 {
    font-weight: normal;
    font-size: 2.2rem;
}

h4 {
    font-weight: normal;
    font-size: 2rem;
}

hr {
    border-bottom: solid 1px;
    opacity: 1;
}

sup {
    line-height: 0;
}

.table {
    color: #000;
    margin: 0;
}

    .table th {
        background-color: var(--color-blue-navy);
        color: #fff;
    }

    .table tr:nth-of-type(odd) td {
        background-color: #abdaea;
    }

    .table tr:nth-of-type(even) td {
        background-color: #f0f6fe;
    }

    .table td {
        border-right: solid 4px #fff;
    }

        .table td:last-of-type {
            border-right: none;
        }

.bg-blue {
    background-color: var(--color-blue);
    color: white;
}

.bg-blue-navy {
    background-color: var(--color-blue-navy);
    color: #000;
}


.bg-blue-light {
    background-color: var(--color-blue-light);
    color: #000;
}

.bg-blue-light-10 {
    background-color: var(--color-blue-light-10);
    color: #000;
}

.bg-red {
    background-color: var(--color-red);
    color: white;
}

.bg-red {
    background-color: var(--color-red);
    color: #fff;
}

.bottom-shadow {
    box-shadow: 0px 10px 5px -5px rgba(0, 0, 0, 0.5);
}

.cta {
    border-radius: .4rem;
    padding: .5em 2em;
    font-size: 1em;
    text-decoration: none;
    opacity: .95;
}

    .cta:active,
    .cta:focus,
    .cta:hover,
    .cta:visited {
        opacity: 1;
    }

.icon {
    width: 150px;
}

.logo {
    width: 275px;
    height: auto;
}

.text-blue {
    color: var(--color-blue);
}

#tabs .nav-tabs {
    border-left: none;
    border-right: none;
    border-top: solid 2px var(--color-blue-dark);
    border-bottom: none;
}


#tabs .nav-item {
    width: 50%;
    border: none;
}



    #tabs .nav-item a {
        border: none;
        border-radius: 0;
        background-color: var(--color-blue);
        color: white;
        position: relative;
        font-size: 2rem;
        line-height: 2rem;
        border-bottom: solid 6px var(--color-blue);
        padding: 1em;
    }

        #tabs .nav-item a.active {
            background-color: var(--color-blue-light);
            color: var(--color-blue-dark);
            border-bottom: solid 6px var(--color-blue-light);
        }

            #tabs .nav-item a.active::after {
                content: '';
                position: absolute;
                bottom: -6px;
                left: 0;
                height: 6px;
                width: 100%;
                background: url(../img/bg-gold.png);
                background-repeat: no-repeat;
                background-size: cover;
                background-position: center center;
                display: block;
            }
