*, *:before, *:after {
  -webkit-box-sizing: border-box; 
  -moz-box-sizing: border-box; 
  box-sizing: border-box;
}
/*This changes the box model of everything in the website and can be overwriten per component if needed. To read more about box-sizing and why you'd want to overwrite it see https://css-tricks.com/international-box-sizing-awareness-day/ or https://www.w3schools.com/cssref/css3_pr_box-sizing.asp*/
/*--------------------------------------------------------
    FONT ASSIGNMENTS
--------------------------------------------------------*/
body {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 24px;
    overflow: inherit;
}
p {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 24px;
    margin-bottom: 20px;
}

#subpage-main p:empty { display: none; } 
/*^^ Break tags shouldn't be used to space out lines, only to make text within a paragraph break to a new line*/
/*--------------------------------------------------------
    H1 - H6
--------------------------------------------------------*/
h1, h2, h3, h4, h5 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0px;
    padding: 0px;
    padding-bottom: 15px;
}
h1 a, h2 a, h3 a, h4 , h5 a {
    font-family: 'Libre Baskerville', serif;
}

h1 {
    font-size: 40px;
}
h2 {
    font-size: 36px;
}
h3 {
    font-size: 30px;
}
h4 {
    font-size: 28px;
}
h5 {
    font-size: 24px;
}
h6 {
    font-size: 20px;
}

h1.title{
    margin-top: 15px;
    display: none;
}
h1.title:empty{ display:none; }
/*^^Hides the extra margin that is added on pages without a title*/
#subpage-main p:not(:empty) + h2,
#subpage-main p:not(:empty) + h3,
#subpage-main p:not(:empty) + h4,
#subpage-main ul + h2,
#subpage-main ul + h3,
#subpage-main ul + h4,
#subpage-main table + h2,
#subpage-main table + h3,
#subpage-main table + h4 {
    margin-top: 1.5em;
}
#subpage-main h2 + ul,
#subpage-main h3 + ul,
#subpage-main h4 + ul {
    margin-top: -.75rem; /*Adjusts for the margin-bottom placed on these headings to make the ul's look like they belong to that heading*/
}
/*--------------------------------------------------------
    LINKS
--------------------------------------------------------*/
a {
    color: ;
    text-decoration: none;
}
a:hover, 
a:focus {
    color: ;
    text-decoration: none;
}
a.button {}
a.button:hover,
a.button:focus
 {
    text-decoration: none;
}
a.button + * {
    padding-top: 1.5em;
}


/*--------------------------------------------------------
    Objects
--------------------------------------------------------*/

html {
    overflow-x: hidden;
    --side-margin: calc((100vw - var(--page-width) + 30px) / -2);
    /* 13px to compensate for width of scrollbar */
}
@media (min-width:992px) {
     :root {
        --page-width: 970px;
    }
    .wrapper {
        width: 970px;
    }
}

@media (min-width:1200px) {
     :root {
        --page-width: 1170px;
    }
    .wrapper {
        width: 1170px;
    }
}
@media (max-width: 990px) {
    .container,
    .wrapper {
        /* Extra wiggle room at a breakpoint that needs it  */
        width: 100%;
    }
    #full-width {
        --side-margin: unset;
        left: unset;
        right: unset;
        width: unset !important;
    }
}


#full-width {
    /* Make an element span the width of the viewport */
    position: relative;
    left: var(--side-margin);
    right: var(--side-margin);
    width: calc(100vw + 13px);
}
#full-width .carousel-inner .item img,
#full-width img {
    width: 100% !important;
}
#full-width .column.col-md-12:not(#gm-canvas #full-width .column.col-md-12) {
    padding: 0;
}
#gm-canvas #full-width {
    left: unset;
    right: unset;
    width: unset;
}

.offscreen {
    /* This class allows an element to be read by a screenreader without appearing in the viewport  */
    position: absolute;
    left: -666vw;
}


/*  Wrappers
    *.wrapper acts as a more symantic stand in for <container><row><col-md-12></col-md-12></row></container> in sections of this build that don't require stacking columns 
 */

.wrapper {
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
    position: relative;
    height: inherit;
    padding-left: 15px;
    padding-right: 15px;
}

.full-width {
    /* Make an element span the width of the viewport */
    position: relative;
    left: var(--side-margin);
    right: var(--side-margin);
    width: calc(100vw + 13px);
}

.img-responsive.full-width:not(#mycanvas img) {
    /* Make sure that when the system automatically adds the class .img-responsive that it doesn't break .full-width. This is not applied to images viewed on the Grid Editor page. */
    max-width: unset;
}

#gm-canvas .full-width {
    left: unset;
    right: unset;
    width: unset;
}

.row-background:not(#mycanvas .row-background) {
    position: relative;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    padding-left: 15px;
}

.row-background:not(#mycanvas .row-background)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    display: block;
    background-color: var(--background);
}

@media (min-width: 992px) {
    .row-background:not(#mycanvas .row-background)>.col-md-9 {
        width: calc(75% - 15px);
    }
    .row-background:not(#mycanvas .row-background)>.col-md-8 {
        width: calc(66.7% - 15px);
    }
    .row-background:not(#mycanvas .row-background)>.col-md-7 {
        width: calc(58.3% - 15px);
    }
    .row-background:not(#mycanvas .row-background)>.col-md-6 {
        width: calc(50% - 15px);
    }
    .row-background:not(#mycanvas .row-background)>.col-md-5 {
        width: calc(41.7% - 15px);
    }
    .row-background:not(#mycanvas .row-background)>.col-md-4 {
        width: calc(33.3% - 20px);
    }
    .row-background:not(#mycanvas .row-background)>.col-md-3 {
        width: calc(25% - 20px);
    }
    .row-background:not(#mycanvas .row-background)>.col-md-2 {
        width: calc(20% - 20px);
    }
}

@media (max-width: 990px) {
    .container,
    .wrapper {
        /* Extra wiggle room at a breakpoint that needs it  */
        width: 100%;
    }
    .full-width {
        --side-margin: -15px;
        left: var(--side-margin);
        right: var(--side-margin);
        width: calc(100vw + 30px);
    }
    .row-background:not(#mycanvas .row-background) {
        padding-right: 15px;
    }
    .row-background::before {
        left: 0;
        right: 0;
    }
}

@media (max-width: 767px) {
    .row-background {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

#subpage-main img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}
figcaption {
    font-style: italic;
    font-size: .9em;
    padding-top: 5px;
}
@media (max-width: 767px) {
    figcaption {
        font-size: 1em;
    }
}
@media (min-width: 767px) {
    /*The following styles are meant to give more space to the label column in contact forms that are too narrow for the entire label to be read normally*/
    .col-md-5 form[action="contact_form_resp.php"] .col-sm-2, 
    .col-md-4 form[action="contact_form_resp.php"] .col-sm-2, 
    .col-md-3 form[action="contact_form_resp.php"] .col-sm-2, 
    .col-md-2 form[action="contact_form_resp.php"] .col-sm-2, 
    .col-md-1 form[action="contact_form_resp.php"] .col-sm-2 {
        width: 25%;
        padding-right: 1em;
    }
    .col-md-5 form[action="contact_form_resp.php"] .col-sm-10, 
    .col-md-4 form[action="contact_form_resp.php"] .col-sm-10, 
    .col-md-3 form[action="contact_form_resp.php"] .col-sm-10, 
    .col-md-2 form[action="contact_form_resp.php"] .col-sm-10, 
    .col-md-1 form[action="contact_form_resp.php"] .col-sm-10 {
        width: 75%;
        padding-left: 0;
    }
    .col-md-5 form[action="contact_form_resp.php"] .col-sm-offset-2, 
    .col-md-4 form[action="contact_form_resp.php"] .col-sm-offset-2, 
    .col-md-3 form[action="contact_form_resp.php"] .col-sm-offset-2, 
    .col-md-2 form[action="contact_form_resp.php"] .col-sm-offset-2, 
    .col-md-1 form[action="contact_form_resp.php"] .col-sm-offset-2 {
        margin-left: 25%;
    }
    /*^^Adjusts the form-group placement of the reCAPTCHA iframe and submit buttom to match the new widths from the styles above*/
}
blockquote {
    font-size: inherit;
}
/*Styles below are taken from Bootstrap's table style to ensure that tables on content pages are responsive and neat whether Bootstrap classes are added or not*/
#subpage-main table {
    max-width: 100%;
    border-collapse: collapse;
    color: #212529;
    margin-bottom: 1em;
}
#subpage-main table td, 
#subpage-main table th {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
    text-align: inherit;
}
#subpage-main table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
    border-top: none;
}
#subpage-main table caption {
    padding-top: .75rem;
    padding-bottom: .75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom;
}
#subpage-main table tbody tr:hover {
    color: #212529;
    background-color: rgba(0,0,0,.075);
}
grammarly-btn {
    display: none;
    /*If someone copy/pastes text from Grammarly it will add this invisible button and cause the page to scroll horizontally. This style hides that.*/
}




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


#main-header {
    padding: 20px 0px 10px;
    font-family: 'Inter Tight', sans-serif;
}
    @media (max-width: 767px) {
        #main-header {
            padding: 15px 0px;
        }
    }

svg#main-logo {
    width: 300px;
    height: auto;
    max-width: 100%;
}

#right-side-wrap {
    text-align: right;
    margin-top: 13px;
}





.join-login-wrap {
    margin-bottom: 8px;
    display: inline-block;
}

/* Join */
.join-wrap {
    display: inline-block;
    vertical-align: middle;
}
.join-wrap a {
    background: #009ac9;
    color: #fff;
    padding: 5px 15px 5px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border-radius: 3px;
    transition: background 0.5s ease;
    width: 150px;
    display: inline-block;
    max-width: 100%;
}
    @media (max-width: 767px) {
        .join-wrap a {
            width: auto;
            padding: 5px 15px 5px;
        }
    }
    @media (max-width: 480px) {
        .join-wrap a {
            width: auto;
            padding: 5px 10px 5px;
            font-size: 14px;
        }
    }
    @media (max-width: 380px) {
        .join-wrap a {
            width: auto;
            padding: 5px 10px 5px;
            font-size: 12px;
        }
    }


.join-wrap a:hover, .join-wrap a:focus {
    background: #ffa30f;
}


/* Login */
.login-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-left: 18px;
}
.login-wrap a {
    background: #ffa30f;
    color: #fff;
    padding: 5px 12px 5px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    border-radius: 3px;
    transition: background 0.5s ease;
    width: 150px;
    display: inline-block;
    max-width: 100%;
}
.login-wrap a:hover, .login-wrap a:focus {
    background: #009ac9;
}



/* Mobile login */
#mobileMenuWrapper #mobile-menu li.mobile-login {
    border-bottom: 0px !important;
    margin-top: 25px;
    margin-left: 20px;
}
#mobileMenuWrapper #mobile-menu li.mobile-login a {
    background: #ffa30f;
    color: #fff;
    padding: 5px 12px 5px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    border-radius: 3px;
    transition: background 0.5s ease;
    width: 150px;
    display: inline-block;
    max-width: 100%;
}


/* Mobile Social icon */
#mobileMenuWrapper #mobile-menu li.mobile-social-wrap {
    margin-top: 20px;
    margin-left: 20px;
    border-bottom: 0px !important;
}
#mobileMenuWrapper #mobile-menu li.mobile-social-wrap > ul li {
    display: inline-block;
    vertical-align: middle;
    border-bottom: 0px !important;
}
#mobileMenuWrapper #mobile-menu li.mobile-social-wrap > ul li a {
    padding: 0;
    margin-right: 23px;
}




/*--------------------------------------------------------
                    Desktop Navigation
--------------------------------------------------------*/

.dropdown-menu li{
    width: 100%;
}
.nav>li>a:hover, .nav>li>a:focus {
    background-color: transparent;
}

/*--------------------------------------------------------
                    Index / Main Body
--------------------------------------------------------*/
main {
    min-height: calc(100vh - 44px - 149px - 48px - 130px);
    /*The minimum height of the main section of the page should be the height of the screen minus the header and footer*/
    position: relative;
}
main#subpage-main {
    padding-top: 20px;
}
#subpage-main
#mms-main {
    margin-bottom: 2.5em;
}
@media (max-width: 900px) {
    #subpage-main
    #mms-main {
        margin-bottom: 2em;
    }
}
@media (min-width: 767px) { 
    #subpage-main .row {
        margin-bottom: 1em;
    }
}
@media (max-width: 767px) {
    #subpage-main div[class^="col-md"] {
        margin-bottom: 1em;
    }
}
/*^^These two styles can be tweaked if needed, but they are a handy default for spacing rows (and then columns once the screen hits the col-xs breakpoint on subpages*/


#subpage-main .panel-body ul {
    margin-bottom: 25px;
}




/*----------------Slideshow----------*/

.slideshow-wrap {
    position: relative;
}
/*.slideshow-wrap .container  {
    width: 100%;
}*/
.slideshow-wrap img{
    width: 100%;
}  
/*.slideshow-wrap .carousel-inner .item img {
    max-height: 842px;
    object-fit: cover;
}*/
.slideshow-wrap a {
    text-decoration: none;
}
/*.slideshow-wrap [class*="col-"] {
    padding: 0;
}*/

.slideshow-wrap a {
    text-decoration: none;
}
#slide-row{
    margin-bottom: 10px;
}

.slideshow-wrap .caption-slide-wrap {
    background: rgba(26,26,26,0.75);
    text-align: center;
    width: 556px;
    margin: 0 auto;
    padding: 20px 25px;
}

.carousel-control.left, .carousel-control.right, .carousel-control:hover{
    background-image: none;
    font-size: ;
    font-weight: ;
    z-index: 101;
}
.carousel-control {
    margin: auto 0px;
}
.carousel-control.left {
    height: 50px;
    width: 50px;
    color: #fff;
    top: 0px;
    left: auto;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: 'Inter Tight', sans-serif;
    background: rgba(0,154,201,0.6);
    vertical-align: middle;
    text-align: center;
    padding-right: 2px;
    border: 0px;
    border-radius: 0px;
    margin-left: 0px;
}
.carousel-control.right {
    height: 50px;
    width: 50px;
    color: #fff;
    top: 0px;
    left: auto;
    right: 0px;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: 'Inter Tight', sans-serif;
    background: rgba(0,154,201,0.6);
    vertical-align: middle;
    text-align: center;
    padding-left: 2px;
    border: 0px;
    border-radius: 0px;
    margin-right: 0px;
}
.slideshow-wrap .carousel-control {
    margin: auto 0px;
    display: block;
    text-indent: -9999px;
    line-height: 0;
    transition: .25s all ease-in;
}
.slideshow-wrap .carousel-control.left:after {
    content: url(../images/prev-btn.png);
    width: 13px;
    height: 19px;
    display: block;
    text-indent: 0;
    position: relative;
    top: 15px;
    left: 18px;
}
.slideshow-wrap .carousel-control.right:after {
    content: url(../images/next-btn.png);
    width: 13px;
    height: 19px;
    display: block;
    text-indent: 0;
    position: relative;
    top: 15px;
    left: 18px;
}


.caption-wrapper {
    max-width: 1170px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
    text-align: left;
}
.carousel-caption {
    position: absolute;
    z-index: 100;
    background: transparent;
    left: auto;
    top: auto;
    right: 0px;
    bottom: 10%;
    width: 100%;
    text-align: left;
    text-shadow: none;
    margin: 0;
    padding: 14px 0px 12px;
    display: none;
}
    @media (max-width: 767px) {
        .carousel-caption {
            position: static;
            background: rgba(0,0,0,1);
            min-height: auto;
            padding: 15px 0px 20px;
        }
        .caption-inside-wrap {
            width: 100%;
            background: transparent;
            padding: 0 !important;
        }
    }

p.caption-text {
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Inter Tight', sans-serif;
    text-align: left;
    word-wrap: break-word;
    margin-top: 0px;
    margin-bottom: 12px;
}
p.caption-text span {
    display: inline-block;
    margin-top: 10px;
    background: #7B133E;
    padding: 2px 15px;
}
p.alt-text {
    font-size: 17px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    color: #ffffff;
    text-align: left;
    display: inline-block;
    word-wrap: break-word;
    line-height: 23px;
    margin-bottom: 0px;
}

.carousel-indicators {
    bottom: 0px;
    display: none;
}
.carousel-indicators li {
    width: 12px;
    height: 12px;
    margin-left: 8px !important;
    margin: 0 auto;
    background-color: #003356;
    border: 1px solid #003356;
    border-radius: 15px;
}
.carousel-indicators li.active {
    width: 12px;
    height: 12px;
    margin-left: 8px !important;
    margin: 0 auto;
    background-color: #a31f34;
    border: 1px solid #a31f34;
    border-radius: 15px;
}
    @media (max-width: 767px) {
        .carousel-indicators li, .carousel-indicators li.active {
            width: 10px;
            height: 10px;
        }
    }
.caption-text-wrap {
    display: inline-block;
    vertical-align: middle;
    width: 74%;
}
.caption-btn-wrap {
    display: inline-block;
    vertical-align: middle;
    width: 25%;
    float: right;
    text-align: right;
    margin-top: 20px;
}
    @media (min-width: 768px) and (max-width: 990px) {
        .caption-text-wrap {
            width: 64%;
        }
        .caption-btn-wrap {
            width: 35%;
        }
    }

.caption-btn-wrap a {
    background: #4F85C4;
    border: 1px solid #4F85C4;
    color: #fff;
    font-family: 'Inter Tight', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: none;
    padding: 12px 20px;
    border-radius: 1px;
    text-align: center;
}





/*----------------End Slideshow------*/


/*--------------------------------------------------------
                    Index / Home Page
--------------------------------------------------------*/


/* Buttons */
.btn-wrap:not(#gm-canvas .btn-wrap) {
    margin-top: 30px;
}
.btn-wrap a:not(#gm-canvas .btn-wrap a) {
    font-family: 'Inter Tight', sans-serif;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    background: #ffa30f;
    color: #333333;
    border-radius: 2px;
    padding: 17px 25px 18px;
    text-align: center;
    text-transform: uppercase;
    transition: background 0.5s ease, color 0.8s ease;
}
.btn-wrap a:not(#gm-canvas .btn-wrap a):hover {
    color: #fff;
    background: #009ac9;
}




/* Welcome - Become Section */
#welcome-become-wrap {
    padding: 75px 0px 30px;
}

    @media (min-width: 768px) and (max-width: 990px) {
        #welcome-become-wrap > .column {
            margin-bottom: 40px;
        }
    }

    @media (max-width: 767px) {
        #welcome-become-wrap {
            padding: 35px 0px 20px;
        }
        #welcome-become-wrap > .column {
            margin-bottom: 25px;
        }
        main#homepage-main .container > .row:not(.slideshow-wrap .container > .row) {
            margin-top: 15px;
        }
    }

#welcome-section-wrap h1 {
    margin-bottom: 5px;
}
#welcome-section-wrap p {
    margin-bottom: 10px;
    font-family: 'Libre Baskerville', serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 35px;
}


#become-member-wrap h2 {
    font-size: 35px;
}
#become-member-wrap p {
    font-size: 23px;
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    line-height: 34px;
    padding-top: 10px;
    padding-bottom: 10px;
}



#feat-second-img-wrap {
    margin-top: 10px;
    margin-bottom: 20px;
}
#feat-second-img-wrap img {
    width: 100% !important;
    max-width: 100%;
}


#feat-third-img-wrap {
    margin-top: 40px;
    margin-bottom: 20px;
}
#feat-third-img-wrap img {
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
}




/* Mission - Vision */
#mission-vision-wrap {
    position: relative;
    margin-bottom: 25px;
    padding: 60px 0px 45px;
}
#mission-vision-wrap:not(#gm-canvas #mission-vision-wrap):before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    display: block;
    background-color: #009ac9;
    z-index: -1;
}
#mission-vision-wrap .col-content-wrap * {
    color: #fff;
}
#mission-vision-wrap .col-content-wrap h4 {
    text-align: center;
    overflow: hidden;
}
#mission-vision-wrap .col-content-wrap h4:before {
    background-color: #ffa30f;
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 50%;
    right: 0.5em;
    margin-left: -50%;
}
#mission-vision-wrap .col-content-wrap h4:after {
    background-color: #ffa30f;
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 50%;
    left: 0.5em;
    margin-right: -50%;
}
#mission-vision-wrap .col-content-wrap p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    padding-left: 15px;
    padding-right: 15px;
}


    @media (max-width: 991px) {
        #mission-section-wrap {
            margin-bottom: 30px;
        }
    }



/* Core Values */
#core-section-wrap {
    padding: 55px 0px;
}
#core-title-section .col-content-wrap {
    padding-left: 15%;
    padding-right: 15%;
}
    @media (max-width: 580px) {
        #core-title-section .col-content-wrap {
            padding-left: 0;
            padding-right: 0;
        }
    }

#core-title-section .col-content-wrap h1 {
    color: #009ac9;
    text-align: center;
    padding-bottom: 40px;
    overflow: hidden;
}
#core-title-section .col-content-wrap h1:before {
    background-color: #ffa30f;
    content: "";
    display: inline-block;
    height: 4px;
    position: relative;
    vertical-align: middle;
    width: 50%;
    right: 0.5em;
    margin-left: -50%;
}
#core-title-section .col-content-wrap h1:after {
    background-color: #ffa30f;
    content: "";
    display: inline-block;
    height: 4px;
    position: relative;
    vertical-align: middle;
    width: 50%;
    left: 0.5em;
    margin-right: -50%;
}


#core-section-wrap .col-md-4 .col-content-wrap {
    background: #009ac9;
    text-align: center;
    padding: 30px 20px;
    min-height: 300px;
    margin-bottom: 40px;
}
    @media (min-width: 990px) and (max-width: 1199px) {
        #core-section-wrap .col-md-4 .col-content-wrap {
            min-height: 355px;
        }
    }

    @media (max-width: 991px) {
        #core-section-wrap .col-md-4 .col-content-wrap {
            margin-bottom: 30px;
            min-height: auto;
            padding-bottom: 40px;
        }
    }

#core-section-wrap .col-content-wrap * {
    color: #fff;
}
#core-section-wrap .col-content-wrap h3 {
    margin-bottom: 5px;
}
#core-section-wrap .col-content-wrap p {
    font-size: 20px;
    font-weight: 300;
    line-height: 26px;
    margin-bottom: 0px;
}






/* Upcoming Events */
#events-section-wrap {
    margin-bottom: 50px;
}
#events-section-wrap h2 {
    margin-bottom: 20px;
    color: #009ac9;
}
.events-feed-item {
    width: 50%;
    display: inline-block;
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 20px;
}
.events-feed-item h3 {
    padding-bottom: 5px;
}
a.ev-title-link {
    color: #1a1a1a;
    font-size: 26px;
    font-weight: 400;
    text-decoration: none;
    font-family: 'Libre Baskerville', serif;
    word-wrap: break-word;
    line-height: 38px;
}
.events-feed-item:nth-child(3) h3 a.ev-title-link, .events-feed-item:nth-child(4) h3 a.ev-title-link {
    border-top: 2px solid #ffc65c;
    display: inline-block;
    padding-top: 25px;
}
/*#events-section-wrap .btn-wrap:not(#gm-canvas #events-section-wrap .btn-wrap):before {
    content: url(../images/arrow-icon.png);
    display: inline-block;
    position: relative;
    width: 90px;
    height: 90px;
    cursor: pointer;
    border: none;
    top: 0em;
    left: 0;
    vertical-align: middle;
}*/
#events-section-wrap .btn-wrap:not(#gm-canvas #events-section-wrap .btn-wrap) {
    margin-top: 35px;
    position: relative;
}
#events-section-wrap .btn-wrap a:not(#gm-canvas #events-section-wrap .btn-wrap a) {
    background: transparent;
    text-transform: none;
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: 34px;
    color: #1a1a1a;
    padding: 0;
    /* width: 65%; */
    display: inline-block;
    text-align: left;
    line-height: 50px;
    vertical-align: middle;
    padding-left: 115px;
}
#events-section-wrap .btn-wrap a:not(#gm-canvas #events-section-wrap .btn-wrap a):before {
    content: url(../images/arrow-icon.png);
    display: inline-block;
    position: relative;
    width: 90px;
    height: 90px;
    cursor: pointer;
    border: none;
    vertical-align: middle;
    top: 4px;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
}
#events-section-wrap .btn-wrap a:not(#gm-canvas #events-section-wrap .btn-wrap a):hover {
    color: #1a1a1a;
}

    @media (min-width: 990px) and (max-width: 1199px) {
        a.ev-title-link {
            font-size: 22px;
            line-height: 30px;
        }
        #events-section-wrap .btn-wrap a:not(#gm-canvas #events-section-wrap .btn-wrap a) {
            font-size: 30px;
            line-height: 40px;
        }
    }

    @media (max-width: 767px) {
        #events-section-wrap .column img {
            width: 150px !important;
            margin-bottom: 25px;
            max-width: 100%;
        }
        .events-feed-item {
            width: 100%;
            text-align: left;
            padding-left: 0px;
            padding-bottom: 6px;
        }
        .events-feed-item:first-child h3 a.ev-title-link {
            border-top: 0px;
        }
        .events-feed-item h3 a.ev-title-link {
            border-top: 2px solid #ffc65c;
            display: block !important;
            padding-top: 6px !important;
            font-size: 20px;
            width: 100%;
        }
        #events-section-wrap .btn-wrap a {
            font-size: 24px;
            line-height: 38px;
        }
    }





/* Box featured */
#box-featured-wrap {
    margin-top: 80px;
    margin-bottom: 90px;
}
#box-featured-wrap h4 {
    color: #009ac9;
    font-size: 26px;
    margin-bottom: 10px;
}
#box-featured-wrap .column img {
    max-width: 100%;
    height: auto;
}
#box-featured-wrap .btn-wrap:not(#gm-canvas #box-featured-wrap .btn-wrap) {
    margin-top: 40px;
}

#box-featured-wrap .btn-wrap a:not(#gm-canvas #box-featured-wrap .btn-wrap a) {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: none;
    padding: 12px 27px 14px;
}
    
    @media (min-width: 768px) and (max-width: 990px) {
        #box-featured-wrap h4 {
            font-size: 20px;
        }
    }

    @media (min-width: 580px) and (max-width: 767px) {
        #box-featured-wrap .column {
            width: 50%;
        }
    }

    @media (max-width: 767px) {
        #box-featured-wrap .column {
            margin-bottom: 60px;
        }
        #box-featured-wrap .column:last-child {
            margin-bottom: 0px;
        }
    }








/* Recent News */
.news-section-outer-wrap {
    background: #f9f9f9;
    padding: 75px 0px 80px;
    margin-top: 25px;
    margin-bottom: 70px;
}
#news-section-wrap h2 {
    margin-bottom: 12px;
}
.news-details-inside-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: left;
}
.news-image img {
    border-radius: 8px;
    width: 70px;
    height: 70px;
}
#news-section-wrap h3 {
    margin-bottom: 0px;
    padding-bottom: 0px;
    margin-left: 15px;
}
.news-item {
    background: #fff;
    border: 1px solid #e6e6e6;
    padding: 22px 22px 30px;
    border-radius: 2px;
    min-height: 145px;
    box-shadow: 0px 1px 10px rgb(0 0 0 / 5%);
    margin-bottom: 30px;
}
a.news-title-link {
    color: #003356;
    font-family: 'Inter Tight', sans-serif;
    font-size: 18px;
    font-weight: 600;
    display: block;
    line-height: 25px;
    text-decoration: underline;
}
a.news-title-link:first-line {
    text-transform: capitalize;
}
a.news-title-link:hover {
    color: #042a3f;
    text-decoration: underline;
}
.news-date {
    margin-top: 18px;
    margin-bottom: 23px;
}
.news-date img {
    display: inline-block;
    vertical-align: middle;
}
.news-date span {
    margin-left: 10px;
    color: #666666;
    font-size: 15px;
    font-weight: 500;
    padding-top: 2px;
}
.news-description {
    font-size: 15px;
    color: #666666;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
}
#news-section-wrap .btn-wrap {
    margin-top: 15px;
}





/*--------------------------------------------------------
                CSS Styles for Inner Pages
--------------------------------------------------------*/
/*----------Responsive Nivo*/
div[id^=slider-container-FD], div[id^=slider_FD], .nivoSlider img {
    max-width: 100% !important;
    height: auto !important;
}
/*----------Nivo Controls*/
.nivo-prevNav, .nivo-nextNav {
    background-image: none !important;
    width: 25px !important;
    top: 25% !important; /*Fallback for browsers that don't support calc*/
    top: calc( 50% - 50px) !important;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 75px;
    font-family: Arial, sans-serif;
    text-shadow: 0px 0px 10px rgba(51,51,51,0.4);
}
.nivo-prevNav:hover, .nivo-nextNav:hover {
    text-decoration: none;
    color: #ae0e0d;
    text-shadow: none;
}
.nivo-prevNav {
    left: 10px !important;
}
.nivo-nextNav {
    right: 10px !important;
}
.nivo-prevNav:after {
    content: "‹";
}
.nivo-nextNav:after {
    content: "›" ;
}

/*--------------------------------------------------------
                        Footer
--------------------------------------------------------*/


footer#main-footer {
    background: #009ac9;
    padding: 60px 0px 71px;
    font-size: 16px;
    font-weight: 300;
    font-family: 'Inter Tight', sans-serif;
    color: #fff;
    line-height: 24px;
    margin-top: 30px;
}
footer#main-footer p {
    color: #fff;
    font-size: 16px;
    font-family: 'Inter Tight', sans-serif;
    margin: 0;
    line-height: 28px;
    font-weight: 300;
    padding-top: 0px;
    padding-bottom: 0px;
}
.footer-credit-section .text-left p:nth-child(2) {
    margin-top: 12px !important;
}
footer#main-footer a {
    color: #fff;
    text-decoration: none;
    font-weight: 300;
}
footer#main-footer a:hover {
    color: #cccccc;
    text-decoration: underline !important;
}
footer#main-footer strong {
    color: #fff;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 300;
}
footer#main-footer span.footer-credit, footer#main-footer span.footer-privacy,
footer#main-footer span.footer-poweredby {
    border-left: 1px solid #fff;
    margin-left: 12px;
    padding-left: 12px;
}
footer#main-footer .text-right a {
    text-decoration: none;
    font-weight: 300;
}

    @media (min-width: 768px) and (max-width: 990px) {
        footer#main-footer .text-left, footer#main-footer .text-right {
        }
        .footer-info-wrap {
            width: 45%;
        }

    }

    @media (max-width: 767px) {
        footer#main-footer {
            padding: 30px 0px 50px;
        }
        #footer-top-info-wrap {
            margin-bottom: 50px !important;
        }
        footer#main-footer .text-left, footer#main-footer .text-right {
            text-align: center;
        }
        footer#main-footer p {
            margin-bottom: 5px;
        }
        footer#main-footer span.footer-credit, footer#main-footer span.footer-privacy,
        footer#main-footer span.footer-poweredby {
            display: block;
            border-left: 0px;
            padding-left: 0px;
            margin-left: 0px;
        }
        .footer-nav-wrap {
            margin-top: 20px;
        }
        .footer-menu-links-wrap, .footer-info-wrap {
            margin-top: 25px;
        }
        .footer-policy-wrap {
            margin-top: 20px;
        }
        .footer-logo-wrap, .footer-info-wrap {
            width: 100%;
            margin-left: 0;
            display: block;
        }

    }




#footer-top-info-wrap {
    margin-bottom: 85px;
}


.footer-menu-links-wrap #nav_menu .nav li {
    display: inline-block;
    float: none;
    width: 100%;
    padding: 0;
}
.footer-menu-links-wrap #nav_menu .nav li a {
    color: #fff;
    padding: 0px 0px 12px;
    font-size: 16px;
    font-weight: 300;
}
.footer-menu-links-wrap #nav_menu .nav li a:hover {
    color: #cccccc;
    text-decoration: underline;
}
.footer-menu-links-wrap #nav_menu .nav li b.caret {
    display: none;
}
.footer-menu-links-wrap #nav_menu .nav li .dropdown-menu {
    display: none;
}

    @media (max-width: 991px) {
        .footer-menu-links-wrap #nav_menu {
            display: block !important;
            margin-bottom: 45px;
            border: 0px !important;
            box-shadow: none !important;
        }
    }



.footer-logo-wrap {
    display: inline-block;
    vertical-align: top;
    width: 125px;
    position: relative;
    top: -12px;
}
svg#footer-logo {
    width: 125px;
    height: 120px;
}
.footer-info-wrap {
    display: inline-block;
    vertical-align: text-top;
    white-space: normal;
    word-break: break-word;
    margin-left: 15px;
    line-height: 28px;
}





/*--------------------------------------------------------
                 Footer Search Bar
--------------------------------------------------------*/


#search-input {
    position: relative;
    top: 2px;
}
.searchbox {
    width: 260px;
    max-width: 45vw;
    display: inline-block;
    vertical-align: middle;
    color: #808080;
    position: relative;
    padding: 5px 1ch;
    height: 40px;
    background: #fff;
    border: 1px solid #E6E6E6;
    transition: .125s border ease-in-out;
    border-radius: 3px;
}
    @media (max-width: 1200px) {
        .searchbox {
            max-width: 100%;
        }
    }   



.searchbox ::-webkit-input-placeholder {
    color: #808080;
}

.searchbox :-moz-placeholder {
    /* Firefox 18- */
    color: #808080;
}

.searchbox ::-moz-placeholder {
    /* Firefox 19+ */
    color: #808080;
}

.searchbox :-ms-input-placeholder {
    color: #808080;
}


.search-input {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: none;
    width: 100%;
    padding: inherit;
    background: #fff;
    padding: 2px 10px;
    outline: none;
    color: #808080;
}
#search-input input[type="submit"]:not(#mms-main input),
.mobile-search-wrap input[type="submit"]:not(#mms-main input) {
    color: transparent;
    background: #fff;
    border: none;
    background-image: url(../images/search-new.svg.php?fc=009ac9);
    position: absolute;
    right: 0;
    top: 0px;
    bottom: 0;
    width: 36px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
    border-left: 0px;
    transition: .25s all ease-in-out;
    padding: 0;
    display: block;
    left: auto;
    margin: 0;
    text-align: left;
}

    @media (max-width: 767px) {
        .footer-search-wrap {
            margin-top: 45px;
        }
    }






.footer-social-wrap {
    margin-top: 25px;
}
.footer-social-wrap ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-social-wrap ul li {
    list-style: none;
    display: inline-block;
    vertical-align: middle;
    margin-left: 24px;
}
.footer-social-wrap ul li:first-child {
    margin-left: 0px;
}

.footer-menu-links-wrap ul {
    padding: 0;
}
.footer-menu-links-wrap ul li {
    list-style: none;
    padding-bottom: 2px;
}
.footer-menu-links-wrap ul li:last-child {
    padding-bottom: 0px;
}







/*--------------------------------------------------------
                        MMS Styling
--------------------------------------------------------*/

.grid-slideshow-content {
    background: transparent;
    margin-left: 0px;
    padding: 0px 15px;
}
.grid-bottom-featured-wrap {
    background-image: none;
}
.grid-bottom-featured-wrap-h2 {
    color: #527785;
    margin-bottom: 0px;
}
.grid-bottom-featured-wrap-p {
    color: #323233;
}

#mycanvas #news-section-wrap .column,
#mycanvas #get-involved-wrap .column {
    min-height: 415px;
}


/*--------------------------------------------------------------
                      Modal Member Login
--------------------------------------------------------------*/
.modal{
    overflow-y: visible;
}
.modal-dialog{
    max-width: 280px;
    margin: 50px auto;
}
.modal-header{
    text-align: center;
}
.modal-body {
    padding: 15px 23px;
}
.login-form input {
    width: 203px!important;
    height: 30px;
    margin: 0px auto;
    margin-bottom: 10px;
    padding: 0px 15px;
    margin-left: 15px;
    background: #fff;
    font-size: 14px;
    font-family: 'Inter Tight', sans-serif;
    color: #9B9B9B;
    box-shadow: none !important;
    border: 1px solid #CCCCCC;
    border-radius: 18px;
}
.login-form input[type="submit"] {
    background: #009ac9;
    border: 1px solid #009ac9;
    color: #fff;
    font-size: 15px;
    font-weight: normal;
    border-radius: 3px;
    font-family: 'Inter Tight', sans-serif;
    margin-left: 10px;
    outline: none;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    padding: 5px 20px;
    height: auto;
}
.login-form input[type="submit"]:hover, .login-form input[type="submit"]:focus {
    background: #ffa30f;
    border: 1px solid #ffa30f;
    text-decoration: none;
}
.login-form a {
    color: #ffa30f;
    font-size: 14px;
    font-family: 'Inter Tight', sans-serif;
    display: block;
    margin-left: 15px;
    padding-bottom: 10px;
    text-decoration: underline;
}
.login-form a:hover, .login-form a:focus {
    color: #009ac9;
}
.login-form input:last-of-type{
    width: 100px;
    margin: none;
}
h6.modal-title {
    color: #527785;
    font-size: 24px;
    font-weight: 400;
    font-family: 'Inter Tight', sans-serif;
}
h4#myModalLabel {
    font-family: 'Inter Tight', sans-serif;
    font-size: 22px;
    color: #1A1A1A;
    padding-bottom: 0px;
}




/*--------------------------------------------------------
                        MMS Styling
--------------------------------------------------------*/




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

@media (min-width: 1332px) and (max-width: 1365px) {

}

@media (max-width: 1200px) {
    .caption-wrapper {
        max-width: 970px;
    }
}

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

}

@media (min-width: 990px) and (max-width: 1199px) {
    .container {}
    



}


@media (max-width: 991px) {
    .caption-wrapper {
        max-width: 750px;
    }
}


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

     #right-side-wrap {
        margin-top: 25px;
    }
    .events-details-inside-wrap {
        display: inline-block;
    }
    h3.events-title {
        margin-left: 0px;
        margin-top: 15px;
    }

}


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

    #right-side-wrap {
        margin-top: 30px;
    }
    .footer-credit-social-wrap .col-xs-12 {
        text-align: left;
        margin-bottom: 15px;
    }
}

@media (min-width: 560px) and (max-width: 767px) {

}

@media (max-width: 580px) {

    p.caption-text {
        line-height: 34px;
    }


}

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

}

@media (max-width: 380px) {

}


/* Safari Browser */

@media only screen and (-webkit-min-device-pixel-ratio: 1) {
     ::i-block-chrome, .div {
        
     }
}

/* Internet Browser */

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {  


}