@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;700&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    color: #000;
    margin: 1rem 0;
    font-weight: 500;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #1B1F7B;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

    a:hover {
        text-decoration: underline;
        color: #000;
    }

    a:visited {
        color: #1B1F7B;
    }

        a:visited:hover {
            text-decoration: underline;
            color: #000;
        }

.Normal {
    line-height: 1.7em;
    font-size: 18px;
    color: #000;
}

.bi {
    font-size: 1.5rem;
    margin: 0 5px;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

/*------------------------------------------------*/
/* NAVBAR */
/*------------------------------------------------*/

.navbar {
    background-color: #e8e8e8;
    padding: 0;
}

.sticky-top {
    -webkit-box-shadow: 0 3px 3px 1px rgba(0,0,0,.3);
    -moz-box-shadow: 0 3px 3px 1px rgba(0,0,0,.3);
    box-shadow: 0 3px 3px 1px rgba(0,0,0,.3);
}

.active .nav-link {
    border-bottom: 5px solid #1B1F7B;
}

.nav-link {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    border-bottom: 5px solid rgba(0,0,0,0);
    color: #1B1F7B !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .nav-link:hover {
        background-color: #fff;
        border-bottom: 5px solid #1B1F7B;
    }

    .nav-link a:hover {
        color: #1B1F7B !important;
    }

.navbar-toggler {
    margin: 2%;
}

.dropdown-menu {
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: #e8e8e8;
}

    .dropdown-menu .px-lg-4 {
        padding: .2rem .5rem !important;
    }

    .dropdown-menu .nav-link {
        border-bottom: 5px solid #fff;
        text-transform: initial;
    }

        .dropdown-menu .nav-link:hover {
            background-color: rgba(0,0,0,.8);
            color: #fff !important;
            border-bottom: 5px solid #ccc;
        }

/*------------------------------------------------*/
/* MAIN CONTENT */
/*------------------------------------------------*/

#MainContent {
    padding-top: 60px;
    padding-bottom: 20px;
}

/*------------------------------------------------*/
/* FOOTER */
/*------------------------------------------------*/

footer {
    background-color: #e8e8e8;
    padding: 3% !important;
}

    footer h1,
    footer h2,
    footer h3,
    footer h4 {
        color: #000;
    }

#Footer p {
    color: #000 !important;
    margin-top: 1rem;
}

/*------------------------------------------------*/
/* MEDIA QUERIES */
/*------------------------------------------------*/

@media screen and (max-width: 992px) {
}
