*, *: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: 'Nunito Sans', sans-serif;
    font-size: 16px;
    color: #4C4C4C;
}

p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    color: #4C4C4C;
    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: 'Raleway', sans-serif;
    font-weight: 700;
    color: #3A3D3F;
    margin: 0px;
    padding: 0px;
    padding-bottom: 15px;
}

h1 a, h2 a, h3 a, h4 , h5 a {
    font-family: 'Raleway', sans-serif;
}



h1 {
    font-size: 30px;
    color: #3A3D3F;
}

h2 {
    font-size: 26px;
    color: #3A3D3F;
}

h3 {
    font-size: 23px;
    color: #3A3D3F;
}

h4 {
    font-size: 20px;
}



h1.title{
    margin-top: 15px;
	color: #364A9C;
}

h1.header{
    /*font-family: 'Montserrat';*/
	font-size: 35px;
}

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: ;
}

a:hover, 
a:focus {
    color: ;
}

a.button {}
a.button:hover,
a.button:focus {
    text-decoration: none;
}
a.button + * {
    padding-top: 1.5em;
}

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

#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.*/

}



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

#top-header {
    background: #fff;
    border-top: 1px solid #D9DADD;
    border-bottom: 1px solid #D9DADD;
    height: 53px;
}

#top-right-wrap {
    text-align: right;
}   



    @media (max-width: 767px) {
        #top-right-wrap {
            margin-top: 10px;
        }
    }



/* Social Media Icons */



.social-media-outside-wrap {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-top: 8px;
}

.social-media-wrap {
    float: left;
    vertical-align: middle;
}

    @media (min-width: 1200px) {
        .social-media-wrap {
            display: inline-block !important;
        }   
    }

.social-media-outside-wrap ul {
    float: left;
    margin: 0;
    text-align: right;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.social-media-outside-wrap ul>li {
    position: relative;
    vertical-align: middle;
    margin-right: 9px;
}

.social-media-outside-wrap svg {
    width: 33px;
    height: 33px;
}



.header-tagline-wrap {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-top: 10px;
    margin-left: 10px;
}

svg#lg-tagline {
    width: 407px;
    max-width: 100%;
    height: 16px;
}

    @media (min-width: 768px) and (max-width: 990px) {
        svg#lg-tagline {
            width: 357px;
            height: 14px;
        }
    }


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


#search-input {
    max-width: 265px;
    display: inline-block;
    vertical-align: middle;
    color: #3F4444;
    border-left: 1px solid #D9DADD;
    border-right: 1px solid #D9DADD;
    margin-right: -4px;
}

    @media (max-width: 420px) {
        #search-input {
            max-width: 230px;
        }
    }

    @media (max-width: 360px) {
        #search-input {
            max-width: 180px;
        }
    }    



.search-main-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-top: 20px;
}

.search-input {
    background: transparent;
    border: 2px solid #fff;
}

#search-input ::-webkit-input-placeholder {
   color: #646464;
}


#search-input :-moz-placeholder { /* Firefox 18- */
   color: #646464;  
}


#search-input ::-moz-placeholder {  /* Firefox 19+ */
   color: #646464;  
}


#search-input :-ms-input-placeholder {  
   color: #646464;  
}

.icon-search:before {
    content: url("../images/search-icon.png");
}

#search-input input {
    border: 0px;
    box-shadow: none;
    height: 51px;
    color: #646464;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Nunito Sans', sans-serif;
    padding: 0px 15px;
}

#search-input button {
    background: #EBEDF2;
    box-shadow: none;
    border: 0;
    color: #fff;
    padding: 5px 13px 0px;
    height: 51px;
    border-radius: 0px;
    outline: none;
}

.input-group.search-input-wrap {
    border: 0px;
    background: #EBEDF2;
    border-radius: 0px;
}



/* Mobile Search Bar */


li.mobile-search-wrap {
    margin-top: 35px;
    margin-bottom: 0px;
    padding-left: 0px;
    width: 260px;
}

li.mobile-search-wrap a {
    padding-left: 0px !important;
    padding-right: 0px !important;
    border-bottom: 0px !important;
}

li.mobile-search-wrap .input-group.search-input-wrap {
    border: 1px solid #bcb2d8;
    background: #fff;
}

/*li.mobile-search-wrap .icon-search:before {
    content: url(../images/mobile-search-icon.png);
}*/

.mobile-search-wrap input {

    border: 0px;

    box-shadow: none;

    height: 31px;

    color: #fff;

    font-size: 16px;

    font-family: 'Nunito Sans', sans-serif;

    padding: 0px 12px;

    font-weight: normal;

}

.mobile-search-wrap ::-webkit-input-placeholder {

   color: #3F4444;

}



.mobile-search-wrap :-moz-placeholder { /* Firefox 18- */

   color: #3F4444;  

}



.mobile-search-wrap ::-moz-placeholder {  /* Firefox 19+ */

   color: #3F4444;  

}



.mobile-search-wrap :-ms-input-placeholder {  

   color: #3F4444;  

}

.mobile-search-wrap button {

    background: transparent;

    box-shadow: none;

    border: 0;

    color: #fff;

    padding: 0px 10px;

    height: 31px;

    border-radius: 0px;

    border-top-right-radius: 2px;

    border-bottom-right-radius: 2px;

}

.mobile-search-wrap button:hover, .mobile-search-wrap button:focus {

    background: transparent;

    color: transparent;

}















/* Login */



#login-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-top: 15px;
}
    @media (max-width: 767px) {
        #login-wrap {
            margin-top: 5px;
        }
    }

#login-wrap a {
    background: #364A9C;
    border: 1px solid #364A9C;
    color: #fff;
    padding: 15px 15px 14px;
    position: relative;
    text-decoration: none;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

#login-wrap a:hover, #login-wrap a:focus {

    background: #263C6D;

    border: 1px solid #263C6D;

}



/* Mobile Login */



li.mobile-login {

    margin-top: 30px;

}

li.mobile-login a {

    border-bottom: 0px !important;

}

li.mobile-login span {

    margin-left: 5px;

}

li.mobile-login a {

    background: #324369 !important;

    color: #fff !important;

    padding: 5px 12px !important;

    position: relative;

    font-family: 'Roboto', sans-serif !important;

    font-size: 16px !important;

    font-weight: 700 !important;

    text-align: center;

    width: 165px !important;

    border-radius: 0px !important;

}







/*--------------------------------------------------------

                      MAIN HEADER

--------------------------------------------------------*/





#main-header {

    padding: 0px;

}

#logo-wrap {

    text-align: center;

    position: relative;

    top: 15px;

    margin-bottom: 20px;

}

svg#main-logo {

    max-width: 100%;

    width: 750px;

    height: 130px;

}

    @media (max-width: 480px) {

        svg#main-logo {

            height: 75px;

        }



    }

#right-side-wrap {

    text-align: right;

    margin-top: 20px;

}

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

        #right-side-wrap {

            margin-top: 0px;

        } 

    }

    @media (max-width: 767px) {

        #right-side-wrap {

            margin-top: 0px;

        }   

    }











/*--------------------------------------------------------

                    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 - 53px - 156px - 54px - 209px);

    /*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*/



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



.slideshow-wrap {

    margin-bottom: 90px;

    position: relative;

}

.slideshow-wrap .container {

    width: 100%;

}

.slideshow-wrap img {

    width: 100%;

}

.slideshow-wrap [class*="col-"] {

    padding: 0;

}

#slide-row{

    margin-bottom: 10px;

}

.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: 'Nunito Sans', sans-serif;

    background: rgba(54, 74, 156, 0.6);

    vertical-align: middle;

    text-align: center;

    padding-right: 2px;

    border: 0px;

    border-radius: 30px;

    margin-left: 15px;

}

.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: 'Nunito Sans', sans-serif;

    background: rgba(54, 74, 156, 0.6);

    vertical-align: middle;

    text-align: center;

    padding-left: 2px;

    border: 0px;

    border-radius: 30px;

    margin-right: 15px;

}

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

        .carousel-control.left, .carousel-control.right {

            bottom: 35%;

        }

    }

    @media (max-width: 767px) {

        .carousel-control.left, .carousel-control.right {

            height: 38px;

            width: 38px;

            bottom: 55%;

        }

    }

.carousel-control img {

    width: 15px;

    height: 23px;

    margin-top: 14px;

}

    @media (max-width: 767px) {

        .carousel-control img {

            margin-top: 7px;

        }

    }





.caption-wrapper {

    max-width: 1170px;

    margin: 0 auto;

    padding-right: 15px;

    padding-left: 15px;

}   

.carousel-caption {

    position: absolute;

    z-index: 100;

    background: rgba(54, 74, 156, .7);

    left: auto;

    top: auto;

    right: 0px;

    bottom: 0px;

    width: 100%;

    text-align: center;

    text-shadow: none;

    padding-top: 15px;

    padding-bottom: 15px;

    min-height: 100px;

}

    @media (max-width: 990px) {

        .carousel-caption {

            background: rgba(54, 74, 156, .85);

            display: block;

            position: static;

            width: 100%;

            height: auto !important;

            min-height: 150px !important;

        }

    }

    @media (max-width: 460px) {

        .carousel-caption {

            min-height: 180px !important;

        }

    }

p.caption-text {

    font-size: 30px;

    font-weight: 700;

    display: block;

    color: #ffffff;

    font-family: 'Raleway', sans-serif;

    text-align: center;

    margin-bottom: 8px;

    word-wrap: break-word;

    line-height: normal;

}

    @media (max-width: 767px) {

        p.caption-text {

            font-size: 26px;

        }

    }



p.alt-text {

    font-size: 18px;

    font-family: 'Nunito Sans', sans-serif;

    color: #ffffff;

    margin-bottom:0px;

    text-align: center;

    display: inline-block;

    word-wrap: break-word;

    line-height: 22px;

}

    @media (max-width: 767px) {

        p.alt-text {

            font-size: 16px;

        }

    }



.carousel-indicators {

    bottom: 0px;

    display: none;

}

.carousel-indicators li {

    width: 13px;

    height: 13px;

    margin-left: 8px !important;

    margin: 0 auto;

    background-color: #ffffff;

    border: 1px solid #ffffff;

    border-radius: 15px;

}

.carousel-indicators li.active {

    width: 13px;

    height: 13px;

    margin-left: 8px !important;

    margin: 0 auto;

    background-color: #fcb424;

    border: 1px solid #fcb424;

    border-radius: 15px;

}







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



/*--------------------------------------------------------

                    News and Events Feeds

--------------------------------------------------------*/





/*--------------------------------------------------------

                    Index / Home Page

--------------------------------------------------------*/





.btn-wrap {

    margin-top: 40px;

}

.btn-wrap a {

    background: #B0946D;

    border: 1px solid #B0946D;

    color: #fff;

    font-size: 18px;

    font-family: 'Nunito Sans', sans-serif;

    font-weight: 600;

    padding: 11px 40px;

    text-decoration: none;

    text-align: center;

    border-radius: 3px;

}

.btn-wrap a:hover, .btn-wrap a:focus {

    background: #A38057;

    border: 1px solid #A38057;

}





#welcome-section-wrap h1 {

    padding-bottom: 22px;

}

#welcome-quicklink-section {

    margin-bottom: 90px;

}





/* Quicklinks Section */

#quicklinks-section-wrap ul {

    padding: 0px;

    margin: 0px;

}

#quicklinks-section-wrap ul li {

    list-style: none;

    padding-left: 0px;

    padding-top: 5px;

    padding-bottom: 13px;

    border-bottom: 1px solid #EAEAEA;

}

#quicklinks-section-wrap ul li:last-child {

    border-bottom: 0px;

}

#quicklinks-section-wrap ul li:before {

    content: "";

    display: block;

    position: relative;

    width: 10px;

    height: 10px;

    cursor: pointer;

    background: #07A6AA;

    border: none;

    border-radius: 5px;

    top: 1em;

}

#quicklinks-section-wrap ul li a {

    display: block;

    color: #3A3D3F;

    font-size: 18px;

    font-family: 'Raleway', sans-serif;

    text-decoration: underline;

    font-weight: 700;

    padding-left: 20px;

}

#quicklinks-section-wrap ul li a:hover {

    color: #364A9C;

}









/* Upcoming Events */

#events-news-wrap {

    margin-bottom: 100px;

}

#events-section-wrap h2 {

    padding-bottom: 0px;

}

.event-content {

    padding: 10px 0px;

}

#events-section-wrap .event-item {

    border-bottom: 1px solid #EAEAEA;

    padding: 20px 0px;

}

#events-section-wrap .event-item:nth-child(3) {

    border-bottom: 0px;

}

.event-img-wrap {

    display: inline-block;

    vertical-align: middle;

    margin-right: 20px;

}

.event-img-wrap img {

    min-height: 135px;

    height: 135px;

    max-width: 100% !important;

    width: 135px;

    object-fit: cover;

}

.event-details-wrap {

    display: inline-block;

    vertical-align: top;

    width: calc(100% - 170px);

    width: -webkit-calc(100% - 170px);

    width: -moz-calc(100% - 170px);

    position: relative;

    padding: 0px;

    top: -3px;

}

.event-date {

    font-size: 15px;

    font-weight: 400;

    color: #4a4f57;

    padding-top: 3px;

    margin-bottom: 12px;

}

.event-date img {

    display: inline-block;

    vertical-align: middle;

    margin-right: 10px;

}

.event-date span {

    display: inline-block;

    vertical-align: sub;

}

h3.event-title {

    font-weight: 600;

    font-size: 16px;

    line-height: 21px;

    padding-top: 0px;

    padding-bottom: 8px;

}

a.ev-title-link {

    font-size: 18px;

    font-weight: 700;

    color: #3F4444;

    font-family: 'Raleway', sans-serif;

    text-decoration: underline;

}

a.ev-title-link:hover {

    color: #364A9C;

}

.event-location img {

    display: inline-block;

    vertical-align: middle;

    margin-right: 10px;

}

.event-location span {

    display: inline-block;

    vertical-align: middle;

}
.event-more {
    margin-top: 10px;
}
.event-more a {
    text-decoration: underline;
    color: #B0946D;
}
.event-more a:hover {
    text-decoration: underline;
    color: #364A9C;
}








/* Recent News */

#news-section-wrap h2 {

    padding-bottom: 0px;

}

#news-section-wrap .news-item {

    border-bottom: 1px solid #EAEAEA;

    padding: 20px 0px;

}

#news-section-wrap .news-item:nth-child(4) {

    border-bottom: 0px;

    padding-bottom: 15px;

}

.news-date img {

    display: inline-block;

    vertical-align: middle;

    margin-right: 10px;

}

.news-date span {

    display: inline-block;

    vertical-align: middle;

}

h3.news-title {

    padding: 15px 0px 8px 30px;

}

a.news-title-link {

    font-size: 18px;

    font-weight: 700;

    color: #3F4444;

    font-family: 'Raleway', sans-serif;

    text-decoration: underline;

}

a.news-title-link:hover {

    color: #364A9C;

}







/* Introducing New Members & Sponsors Section */

#members-sponsors-wrap {

    margin-bottom: 80px;

}

#sponsors-section-wrap h2 {

    padding-bottom: 0px;

}

#sponsors-section-wrap ul {

    padding: 0px;

    margin: 0px;

    -webkit-column-count: 2;

    -moz-column-count: 2;

    column-count: 2;

    -webkit-column-gap: 20px;

    -moz-column-gap: 20px;

    column-gap: 20px;

}

#sponsors-section-wrap ul li {

    list-style: none;

    padding-left: 25px;

    padding-bottom: 0px;

    display: inline-block;

    width: 100%;

    font-family: 'Nunito Sans', sans-serif;

    font-size: 16px;

    height: 0px;

    margin-top: -40px;

}

#sponsors-section-wrap ul li:before {

    content: "";

    display: block;

    position: relative;

    width: 3px;

    height: 68px;

    cursor: pointer;

    background: #07A6AA;

    border: none;

    border-radius: 0px;

    top: 4.8em;

    right: 1.4em;

}

#sponsors-section-wrap ul li strong {

    font-family: 'Raleway', sans-serif;

    font-size: 18px;

    line-height: 35px;

}









/* Member Benefits Section */

#member-benefits-wrap h2 {

    padding-bottom: 10px;

}

#member-benefits-wrap ul {

    padding: 0px;

    margin: 0px;

}

#member-benefits-wrap ul li {
    list-style: none;
    padding-left: 25px;
    padding-top: 5px;
    padding-bottom: 13px;
    border-bottom: 1px solid #EAEAEA;
}

#member-benefits-wrap ul li:last-child {
    border-bottom: 0px;
}

#member-benefits-wrap ul li:before {
    content: "";
    display: block;
    position: relative;
    width: 10px;
    height: 10px;
    cursor: pointer;
    background: #07A6AA;
    border: none;
    border-radius: 5px;
    top: 1em;
    right: 1.4em;
}




/*--------------------------------------------------------
                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: #364A9C;
    padding: 40px 0px 30px;
}

footer#main-footer p {
    color: #F1F1F1;
    font-size: 17px;
    font-family: 'Nunito Sans', sans-serif;
    margin: 0;
    line-height: 30px;
}

footer#main-footer a {
    color: #fff;
    text-decoration: underline;
}

footer#main-footer a:hover {
    color: #ffffff;
}

footer#main-footer strong {
    color: #fff;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
}

footer#main-footer span.footer-privacy {
    border-left: 1px solid #c7d1e5;
    margin-left: 24px;
    padding-left: 24px;
}

footer#main-footer .text-right a {
    text-decoration: none;
}



    @media (max-width: 767px) {
        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-privacy {
            display: block;
            border-left: 0px;
            padding-left: 0px;
            margin-left: 0px;
        }

        .back-top-wrap {
            padding-top: 0px !important;
            margin-bottom: 15px;
        }
    }





.footer-tagline-section {
    border-bottom: 1px solid #213882;
    padding-bottom: 27px;
    margin-bottom: 23px;
}

.footer-tagline-wrap svg#lg-tagline {
    width: 560px;
    height: 22px;
}

.footer-tagline-wrap svg#lg-tagline .cls-1 {
    fill: #B0946D !important;
}





/*--------------------------------------------------------

                        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;

}





/*--------------------------------------------------------------

                      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: 'Nunito Sans', sans-serif;

    color: #9B9B9B;

    box-shadow: none !important;

    border: 1px solid #CCCCCC;

    border-radius: 18px;

}

.login-form input[type="submit"] {

    background: #364A9C;

    border: 1px solid #364A9C;

    color: #fff;

    font-size: 15px;

    font-weight: normal;

    border-radius: 0px;

    font-family: 'Nunito Sans', sans-serif;

    margin-left: 10px;

    outline: none;

    text-decoration: none;

    text-align: center;

    padding: 8px 20px;

    height: auto;

}

.login-form input[type="submit"]:hover, .login-form input[type="submit"]:focus {

    background: #263C6D;

    border: 1px solid #263C6D;

    text-decoration: none;

}

.login-form a {

    color: #0076CE;

    font-size: 14px;

    font-family: 'Nunito Sans', sans-serif;

    display: block;

    margin-left: 15px;

    padding-bottom: 10px;

    text-decoration: underline;

}

.login-form a:hover, .login-form a:focus {

    color: #E57200;

}

.login-form input:last-of-type{

    width: 100px;

    margin: none;

}

h6.modal-title {

    color: #527785;

    font-size: 24px;

    font-weight: 400;

    font-family: 'Nunito Sans', sans-serif;

}

h4#myModalLabel {

    font-size: 22px;

    color: #4A4F56;

    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 {}



    #nav_menu .navbar-nav>li a {

        font-size: 14px !important;

        padding: 17px 12px !important;

    }

    #search-input {

        max-width: 230px;

    }



}





@media (max-width: 991px) {

    .caption-wrapper {

        max-width: 750px;

    }

}





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

    .container {}



    #quicklinks-section-wrap {

        margin-top: 20px;

    }

    #quicklinks-section-wrap ul {

        -webkit-column-count: 2;

        -moz-column-count: 2;

        column-count: 2;

        -webkit-column-gap: 20px;

        -moz-column-gap: 20px;

        column-gap: 20px;

    }

    #news-section-wrap, #member-benefits-wrap {

        margin-top: 80px;

    }



}





@media (max-width: 767px) {

    .container {}



    #welcome-quicklink-section {

        margin-bottom: 50px;

    }

    #quicklinks-section-wrap {

        margin-top: 20px;

    }

    #events-section-wrap {

        margin-bottom: 70px;

    }

    .event-location span {

        width: 85%;

        vertical-align: text-top;

    }

    #members-sponsors-wrap {

        margin-bottom: 60px;

    }

    #sponsors-section-wrap ul {

        -webkit-column-gap: 48px;

        -moz-column-gap: 48px;

        column-gap: 48px;

    }

    #sponsors-section-wrap ul li:before {

        top: 4.5em;

    }

    #sponsors-section-wrap ul li strong {

        font-size: 17px;

        line-height: 20px;

    }

    #member-benefits-wrap {

        margin-top: 80px;

    }

    .footer-tagline-wrap svg#lg-tagline {

        height: 17px;

    }





}



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



}



@media (max-width: 580px) {





}



@media (max-width: 480px) {

    .container {}



}



@media (max-width: 380px) {
    #sponsors-section-wrap ul {
        -webkit-column-gap: 7px;
        -moz-column-gap: 7px;
        column-gap: 7px;
    }
}




/* 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) {  





}