/*
// VALUE:COLOR_1:#235faa
// VALUE:COLOR_2:#0f51c6
// VALUE:COLOR_3:#fdbe29
*/


/*--------------------------------------------------------
    FONT ASSIGNMENTS
--------------------------------------------------------*/

body {
    font-size: 16px;
    font-family: "Crimson Text", serif;
}

p {
    color: #202123;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Crimson Text", serif;
}


/*--------------------------------------------------------
    ALIGNMENT
--------------------------------------------------------*/

.txt-c {
    text-align: center;
}

.txt-l {
    text-align: left;
}

.txt-r {
    text-align: right;
}


/*--------------------------------------------------------
    H1 - H6
--------------------------------------------------------*/

h1,
h2,
h3 {
    margin: 0px;
    padding: 0px;
}

h1 {
    color: #235faa;
    /* REPLACE:COLOR_1 */
    font-size: 48px;
    font-weight: bold;
    margin: 10px 0 20px 0;
    font-family: "Crimson Text", serif;
}

h2 {
    color: #235faa;
    /* REPLACE:COLOR_1 */
    font-size: 32px;
    font-weight: bold;
    margin: 10px 0 25px 0;
    font-family: "Crimson Text", serif;
}

h3 {
    color: #000000;
    font-size: 22px;
    font-weight: bold;
    font-family: "Crimson Text", serif;
    margin: 10px 0;
}


/*--------------------------------------------------------
    LINKS
--------------------------------------------------------*/

a {
    color: #990000;
    cursor: pointer;
}

a:hover {
    color: #EF373B;
}

a.black {
    color: #000000;
}

a.white {
    color: #ffffff;
}

a.white:hover {
    color: #cecece;
}


.button-link {
    color: white;
    border: none;
    text-transform: capitalize;
    font-weight: 700;
    padding: .75em 2ch;
    display: block;
    width: fit-content;
    margin: 1.25em 0;
    transition: .125s background-color ease-in-out, .125s color ease-in-out;
    line-height: 1;
    text-decoration: none;
    background-color: #235faa;
    border-radius: .3rem;
    white-space: nowrap;
}

.button-link:first-child {
    margin-top: 0;
}

.button-link:last-child {
    margin-bottom: 0;
}

.button-link:is(:hover, :focus) {
    background-color: #1b5296;
    color: white;
    text-decoration: none;
}

/*--------------------------------------------------------
    IMAGES
--------------------------------------------------------*/

img {
    border: 0px;
    max-width: 100%;
}


/*--------------------------------------------------------
    MODAL LOGIN
--------------------------------------------------------*/

.modal-content {
    width: 280px;
    border-radius: 0;
}

.modal-dialog {
    display: block;
    width: 280px;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}

.modal-body {
    padding: 10px 20px 20px;
}

.modal-title {
    text-align: center;
    color: #235faa;
    font-size: 22px;
}

.modal-body #login input[type="text"],
.modal-body #login input[type="password"] {
    margin: 5px 0 5px;
    border: 1px solid #737373;
    padding: 5px 0;
    text-indent: 5px;
}

#login a {
    color: #fdbe29;
}


/*--------------------------------------------------------
    HEADER
--------------------------------------------------------*/

#header-top {
    /*padding: 30px 0 20px;*/
    background: #235faa;
}

#logo-wrap img {
    margin: 0;
    text-align: left;
    width: 300px;
    max-width: 100%;
}

#header-wrap {
    background-color: #235faa;
    /* REPLACE:COLOR_1 */
}

#header-wrap>.container>.row {
    display: flex;
    align-items: center;
}

@media (max-width: 1201px) {
    #header-wrap>.container>.row {
        display: block;
    }
}

#main-menu {
    padding-top: 10px;
    padding-bottom: 10px;
}

#nav_menu .navbar-nav>li a {
    color: #fff;
    font-size: 16px;
    font-family: "Crimson Text", serif;
    /* letter-spacing: 1px; */
    padding-left: 10px;
    padding-right: 10px;

}

#nav_menu .navbar-nav>li>a:hover,
#nav_menu .navbar-nav>li>a:focus,
#nav_menu .navbar-nav .open>a,
#nav_menu .navbar-nav .open>a:focus,
#nav_menu .navbar-nav .open>a:hover {
    text-decoration: none;
    background-color: transparent;
    color: #fdbe29;
    /* REPLACE:COLOR_3 */
}

#nav_menu .dropdown-menu li a {
    color: #333;
}

#search-area {
    padding-top: 8px;
    vertical-align: middle;
}

#searchbox input#q {
    background-color: #fff;
    padding: 2px 0;
    width: 186px;
    height: 30px;
    border: 0;
}

input.search-button {
    border: none;
    height: 34px;
    width: 34px;
    background-repeat: no-repeat;
    background-color: transparent;
    background-image: url(../images/search-icon.png);
    position: relative;
    top: 0;
    left: 10px;
}

.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

#slide-container img {
    width: 100%;
}

#slide-container .carousel-inner>.item>img {
    width: 100%;
}

.carousel-caption {
    text-shadow: none;
}

.carousel-control {
    display: none;
}


/*--------------------------------------------------------
    MOBILE MENU
--------------------------------------------------------*/

#mobileMenuWrapper {
    position: fixed;
    top: -1px;
    bottom: 0px;
    z-index: 100;
    overflow-y: auto;
    overflow-x: hidden;
    left: -120%;
    width: 225px;
    max-width: 100%;
    background-color: #AD6336;
    transition: all 300ms cubic-bezier(1, 0.01, 0, 1) 0s;
}

#mobileMenuWrapper.open {
    left: 0px;
    bottom: 0px;
}

#mobileMenuWrapper #mobile-menu {
    overflow: auto;
    padding: 0px 20px 10px;
}

#mobileMenuWrapper ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

#mobile-menu>li#triggerClose {
    color: #fff;
    float: right;
    display: inline;
    font-size: 22px;
    cursor: pointer;
    transform: rotate(45deg);
}

#mobileMenuWrapper #mobile-menu a {
    width: 100%;
    color: #ffffff;
    display: inline-block;
    margin: 10px 0 0 0;
    font-size: 16px;
}

#mobileMenuWrapper ul.mDropdown {
    margin: 0 15px;
    display: none;
}

#mobileMenuWrapper .mDropdown.open {
    display: block;
}

#mobile-menu a {}

#mobile-toggle {
    border: none;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
}

#mobile-menu-col {
    top: 3px;
    right: 20px;
    float: right;
    position: relative;
}

#mobile-logo {
    width: 40%;
    float: left;
    margin-top: 27px;
    margin-bottom: 20px;
}

#mobile-logo a {
    margin: 0 !important;
}

#mobile-logo svg#logo {
    width: 250px;
    max-width: 250px;
}

svg#burger {
    width: 35px;
    height: 35px;
}
svg#burger rect {
    fill: #235faa;
}

#mobile-menu li.search-wrap {
    margin-top: 40px;
}


/*--------------------------------------------------------
    INDEX / MAIN BODY
--------------------------------------------------------*/

.index-content .container {
    padding-top: 30px;
    padding-bottom: 30px;
}

#link-wrap h1 {
    text-align: center;
}

#link-wrap h3 {
    text-align: center;
}

#link-wrap p {
    text-align: center;
    font-family: "Crimson Text", serif;
    font-size: 16px;
}

#link-wrap img {
    border: 3px solid #2D2D2D;
    border-radius: 5px;
    padding: 50px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

#content-wrap {
    margin: 30px 0 2px;
}

.row_background {
    color: #ffffff;
    background-color: #235faa;
    /* REPLACE:COLOR_1 */
}

.row_background h1,
.row_background h2,
.row_background h3,
.row_background h4,
.row_background p,
.row_background a {
    color: #ffffff;
}

.column_background {
    color: #ffffff;
    background-color: #235faa;
    /* REPLACE:COLOR_1 */
}

.column_background h1,
.column_background h2,
.column_background h3,
.column_background h4,
.column_background p,
.column_background a {
    color: #ffffff;
}

#content-wrap h2 {
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
}

#content-wrap p {
    color: #fff;
}

#feed-container {
    height: 297px;
    margin: 55px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../docs/B0.121570001554493106.jpg');
}

#feed-wrap {
    top: 30px;
    position: relative;
}

#feed-wrap h1 a {
    color: #fff;
    text-transform: uppercase;
    font-size: 30px;
    float: right;
    margin: 0 25px 0;
    text-align: left;
    font-family: "Crimson Text", serif;
}

#feed-wrap h1 {
    margin: 0;
}

#feed-wrap h1 a:hover {
    text-decoration: none;
}

#recent-news,
#upcoming-events {
    margin: 0 47px;
    /*padding: 45px 55px;*/
    border: 3px solid #ffffff;
}

#recent-news {
    padding: 45px 58px;
}

#upcoming-events {
    padding: 45px 20px;
}

#recent-news:hover {
    background-color: #0f51c6;
    /* REPLACE:COLOR_2 */
    transition: 0.7s cubic-bezier(0, 0, 0.2, 1);
}

#recent-news img {
    position: relative;
    /*width: 77px;*/
    float: left;
}

#upcoming-events:hover {
    background-color: #0f51c6;
    /* REPLACE:COLOR_2 */
    transition: 0.7s cubic-bezier(0, 0, 0.2, 1);
}

#upcoming-events img {
    position: relative;
    /*width: 75px;*/
    float: left;
}

#quick-links-wrap {
    height: 355px;
}

#quick-links>div>a {
    text-decoration: none;
}

#quick-links:hover {
    box-shadow: 0px 0px 8px 2px rgba(86, 82, 82, 0.53);
    transition: 0.7s cubic-bezier(0, 0, 0.2, 1);
}

#quick-links:hover img {
    border: 3px solid white;
}


/*--------------------------------------------------------
    CSS STYLE FOR INNER PAGES
--------------------------------------------------------*/


/*#main-container-page {
    background-color: #fff;
}*/


/*#page {
    color: #cbcbcb;
    padding-top: 30px;
    padding-bottom: 50px;
}
#page h2 {
    margin: 0 0 25px 0;
}*/


/* Sub Pages */

#page {
    min-height: calc(100vh - 326px);
}


/*--------------------------------------------------------
    FOOTER
--------------------------------------------------------*/

#footer-container {
    padding: 25px 0 15px;
    background-color: #235faa;
    /* REPLACE:COLOR_1 */
}

#credits {
    text-align: left;
}

#credits p {
    margin: 10px 0 20px;
}

#credits p {
    color: #fff;
}

#credits a {
    color: #fdbe29;
}

#footer-social {
    text-align: right;
}

#footer-social img {
    display: inline-block;
}

#footer-social a {
    text-decoration: none;
}

#footer-social a.facebook img:hover {
    background-color: #3B5999;
    transition: 0.7s cubic-bezier(0, 0, 0.2, 1);
}

#footer-social a.twitter img:hover {
    background-color: #5EA9DD;
    transition: 0.7s cubic-bezier(0, 0, 0.2, 1);
}

#footer-social a.linkedin img:hover {
    background-color: #0274B3;
    transition: 0.7s cubic-bezier(0, 0, 0.2, 1);
}

#footer-social a.google img:hover {
    background-color: #DD4B3E;
    transition: 0.7s cubic-bezier(0, 0, 0.2, 1);
}


/*--------------------------------------------------------
    MEDIA QUERY
--------------------------------------------------------*/

@media (min-width: 1000px) {
    .container {}
}

@media (min-width: 990px) and (max-width: 1199px) {
    .container {}
    #main-menu,
    #search-area {
        display: none;
    }
    #feed-container {
        /*position: relative;
        top: -110px;
        height: 285px;*/
    }
    #recent-news,
    #upcoming-events {
        margin: 0 38px;
    }
    #feed-wrap {
        top: 60px;
    }
    #recent-news {
        padding: 20px 40px;
    }
    #upcoming-events {
        padding: 20px 8px;
    }
}

@media (min-width: 768px) and (max-width: 990px) {
    .container {}
    #feed-wrap {
        top: -20px;
        /*padding-top: 15px;*/
    }
    #recent-news,
    #upcoming-events {
        padding: 15px 150px !important;
        margin: 10px 0;
        border: #0f51c6;
        /* REPLACE:COLOR_2 */
        background-color: #0f51c6;
        /* REPLACE:COLOR_2 */
    }
    #feed-container {
        top: 0;
    }
    #feed-wrap h1 {
        text-align: center;
    }
    #quick-links {
        margin: 20px 0;
        padding: 0 25px;
    }
    #quick-links:hover {
        /*margin: 30px 200px;
        padding: 20px 15px;
        box-shadow: 0px 0px 8px 2px rgba(86, 82, 82, 0.53);
        transition: 0.7s cubic-bezier(0, 0, 0.2, 1);*/
    }
    #link-wrap a:hover {
        text-decoration: none;
    }
}

@media (max-width: 767px) {
    .container {}
    #credits p {
        margin: 0px 0 20px;
    }
    #credits p,
    #footer-social {
        text-align: center;
    }
    #feed-wrap {
        top: -20px;
        /*padding-top: 15px;*/
    }
    #recent-news,
    #upcoming-events {
        padding-top: 15px;
        padding-bottom: 15px;
        margin: 10px 0;
        border: #0f51c6;
        /* REPLACE:COLOR_2 */
        background-color: #0f51c6;
        /* REPLACE:COLOR_2 */
    }
    #feed-container {
        top: 0;
    }
    #feed-wrap h1 {
        text-align: center;
    }
    #quick-links {
        margin: 20px 0;
        padding: 0 25px;
    }
    #quick-links:hover {
        /* margin: 30px 70px;
        padding: 20px 0;
        box-shadow: 0px 0px 8px 2px rgba(86, 82, 82, 0.53);
        transition: 0.7s cubic-bezier(0, 0, 0.2, 1);*/
    }
    #link-wrap a:hover {
        text-decoration: none;
    }
}

@media (max-width: 480px) {
    .container {}
    #credits p {
        margin: 0px 0 20px;
    }
    #credits p,
    #footer-social {
        text-align: center;
    }
    #feed-wrap {
        top: -10px;
        /*padding-top: 15px;*/
    }
    #recent-news,
    #upcoming-events {
        padding-top: 20px;
        padding-bottom: 20px;
        margin: 10px 0;
        border: #0f51c6;
        /* REPLACE:COLOR_2 */
        background-color: #0f51c6;
        /* REPLACE:COLOR_2 */
    }
    #feed-container {
        top: 0;
    }
    #feed-wrap h1 {
        text-align: center;
        font-size: 22px;
    }
    #recent-news img,
    #upcoming-events img {
        width: 60px;
    }
    #quick-links {
        margin: 20px 0;
        padding: 0 25px;
    }
    #quick-links:hover {
        /* margin: 30px 0px;
        padding: 20px 0px;
        box-shadow: 0px 0px 8px 2px rgba(86, 82, 82, 0.53);
        transition: 0.7s cubic-bezier(0, 0, 0.2, 1);*/
    }
    #link-wrap a:hover {
        text-decoration: none;
    }
}


/*------------------------------------------------------------------------------------
                            Dropdown Menus - full/collapsed
--------------------------------------------------------------------------------------*/

.dropdown-menu li {
    width: 100%;
}


/*----------------------------
    Mobile Menu
    
    --- INSTRUCTIONS ---
    For the most part, these mobile menu styles will be exactly like your regular navigation styles.
    There are a few things to watch out for however. I've marked specific items with two hash tags and caps,
    like ##ITEM. 
    
    ##TOP - There are three places where this exists, and each one should be the same as the other three.
            This item tells the mobile menu to start lower than the toggle button.
            
    ##DIRECTION - This item tells your mobile menu which direction to slide in from, and has a few
        different parts. Changing "left" to "top" in each ##DIRECTION would have the menu slide in from the top. Bottom is a bad choice here.
        ##DIRECTION-01 - slides in from the side you specify. This one is set negative as it is the starting position of the menu.
        ##DIRECTION-02 - sets the duration of the slide, and again which direction it slides from.
        ##DIRECTION-03 - sets the "open" position. This will be the zeroed out version of ##DIRECTION-01
    
    --------------------
------------------------------*/


/*---------------------------------------------
        Mobile Menu
---------------------------------------------*/


/*-------------------------------------toggle*/

button#mobile-toggle {
    width: 37px;
    height: 37px;
    display: none;
    position: absolute;
    right: 15px;
    bottom: 30px;
    border: 2px solid #002857;
    border-radius: 4px;
    padding: 8px 5px;
    background-color: white;
    box-shadow: 0px 1.5px 1px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

@media (max-width: 990px) {
    button#mobile-toggle {
        display: inline-block;
    }
}

button#mobile-toggle svg * {
    fill: #002857;
}


/*--------------------------------end--toggle*/

#mobile-menu>li#triggerClose {
    display: inline;
    float: right;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    font-size: 22px;
    cursor: pointer;
}

#mobile-menu>li#mobile-logo {
    position: relative;
    left: -15px;
    top: -10px;
}

#mobile-menu>li#mobile-logo>a {
    display: inline;
    max-width: 80%;
}

#mobile-menu>li #q {
    width: 80%;
}

#mobile-menu>li>a {
    width: 174px;
    min-height: 32px;
    margin-bottom: 6px;
    border-radius: 3px;
    background-color: transparent;
    padding-left: 8px;
    padding-top: 10px;
    padding-right: 5px;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: #5485A3;
    -webkit-transition: color .25s;
    transition: color .25s;
    text-decoration: none;
}

#mobileMenuWrapper {
    /*
    The menu wrapper is the div that surrounds the mobile menu.
    You'll want to make sure this has a background of some sort so the text shows up/doesn't appear over other text
    Setting bottom:0px; is needed to make a long menu scroll-able.
    
    
    
    /* REQUIRED */
    position: fixed;
    top: 0px;
    bottom: 0px;
    /* If having the menu slide in from the top or bottom, comment out this line */
    z-index: 200;
    overflow-y: auto;
    overflow-x: hidden;
    /* CHANGEABLE-ISH */
    left: -120%;
    /* Change this to left, right, top, or bottom.  You'll also have to make a change in the open state */
    width: 300px;
    /* The mobile menu works best with a pre-defined width. Percentages also work great here. */
    /* CHANGEABLE */
    background-color: #235faa;
    /* Transition - bump */
    transition: left .3s;
    /* ##DIRECTION-02 */
    -webkit-transition: all 300ms cubic-bezier(1.000, 0.010, 0.0, 1.000);
    /* older webkit */
    -webkit-transition: all 300ms cubic-bezier(1.000, 0.010, 0.0, 1.000);
    -moz-transition: all 300ms cubic-bezier(1.000, 0.010, 0.0, 1.000);
    -o-transition: all 300ms cubic-bezier(1.000, 0.010, 0.0, 1.000);
    transition: all 300ms cubic-bezier(1.000, 0.010, 0.0, 1.000);
}

#mobileMenuWrapper.open {
    left: 0px;
    /* This is required.  If you changed the direction attribute above, change it here too. */
    bottom: 0px;
    /* This line is here for bottom/top slide-ins.  See note on bottom above.*/
}


/* REQUIRED - Dropdown menu item transition states*/

#mobileMenuWrapper .mDropdown {
    display: none;
}

#mobileMenuWrapper .mDropdown.open {
    display: block;
}


/* REQUIRED - Sets the ULs to not have dots, or be spaced in the typical UL fashion. */

#mobileMenuWrapper ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}


/* OPTIONAL-ISH - These are the settings for the base menu UL */

#mobileMenuWrapper #mobile-menu {
    overflow: auto;
    padding: 15px 15px 15px 10px;
}


/* OPTIONAL-ISH - This sets each link on its own line fo' sho' */


/*#mobileMenuWrapper a, #mobileMenuWrapper div{
    display: block;
}*/


/* OPTIONAL - The actual A's. Style them as you wish*/


/* Top Level / all*/

#mobileMenuWrapper #mobile-menu a {
    display: inline-block;
    width: 100%;
}


/* dropdown only */

#mobileMenuWrapper .mDropdown a {
    padding: 8px;
    margin-bottom: 10px;
}

#mobile-menu>li>ul {
    background-color: rgba(0, 0, 0, .04);
}


/*------------------------------------------------------------------------------------
                                @Media and Sizes
--------------------------------------------------------------------------------------*/


/*------ Nav collapse @ Tablet size ------*/

@media (max-width: 991px) {
    .navbar-header {
        float: none;
    }
    .navbar-toggle {
        display: block;
    }
    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-nav {
        float: none!important;
        margin: 7.5px -15px;
    }
    .navbar-nav>li {
        float: none;
    }
    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    /* since 3.1.0 */
    .navbar-collapse.collapse.in {
        display: block!important;
    }
    .collapsing {
        overflow: hidden!important;
    }
    /*.dropdown-menu {
        border: none;
        background-color: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
    }*/
}

@media (min-width: 768px) and (max-width: 990px) {}

@media (max-width: 767px) {}

@media (max-width: 480px) {}