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

html {
    overflow-x: hidden;
    --side-margin: calc((100vw - var(--page-width) + 13px) / -2);
    /* 13px to compensate for width of scrollbar */
}

body {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #4D4D4D;
    overflow-x: hidden;
}

p {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #4D4D4D;
    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: 'Archivo', sans-serif;
    font-weight: 700;
    color: #000000;
    margin: 0px;
    padding: 0px;
    padding-bottom: 15px;
}

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

h1 {
    font-size: 28px;
    color: #000000;
}

h2 {
    font-size: 24px;
    color: #000000;
}

h3 {
    font-size: 22px;
    color: #000000;
}

h4 {
    font-size: 18px;
}

h1.title {
    margin-top: 15px;
}

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

a:hover,
a:focus {
    color: #1CADEB;
}

a.button {}

a.button:hover,
a.button:focus {
    text-decoration: none;
}

a.button+* {
    padding-top: 1.5em;
}


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

.center-block {
    display: block !important;
}
#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: #F0F2F7;
    height: 40px;
    padding: 6px 0px;
}

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


/* Social Media Icons */

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

.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: 15px;
}

@media (max-width: 580px) {
    .social-media-outside-wrap ul>li {
        margin-right: 10px;
    }
    .social-media-outside-wrap svg {
        width: 14px;
        height: 14px;
    }
}

.social-media-outside-wrap ul>li:last-child {
    margin-right: 0px;
}

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

svg#tiktok-icon path {
    fill: #4d4d4d !important;
}

.top-menu-links-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}

.top-menu-links-wrap a {
    color: #fff;
    padding: 12px 10px;
    text-decoration: none;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .top-menu-links-wrap a {
        padding: 12px 10px;
    }
}

@media (max-width: 480px) {
    .top-menu-links-wrap {
        margin-right: 0px;
    }
    .top-menu-links-wrap a {
        padding: 12px 6px;
        font-size: 13px;
    }
}

ul.top-header-list-wrap {
    padding: 0;
    margin: 0;
    list-style: none;
    float: right;
}

ul.top-header-list-wrap li {
    position: relative;
    display: inline;
    float: left;
}

ul.top-header-list-wrap li a {
    background: #3A3A3A;
    color: #fff;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 20px;
    border-left: 1px solid #646464;
    position: relative;
    display: block;
    text-decoration: none;
}

ul.top-header-list-wrap li:last-child a {
    border-right: 1px solid #646464;
}

ul.top-header-list-wrap li a:hover {
    background: #545454;
    color: #fff;
    text-decoration: none;
}


/* Login */

li.login-wrap {
    margin-left: 10px;
}

.login-wrap a {
    border: 1px solid #E1E4EA;
    border-radius: 2px;
    padding: 7px 14px 10px !important;
}

.login-wrap.open a,
.login-wrap a:hover,
.login-wrap a:focus {
    border: 1px solid #E1E4EA !important;
}


/* Become a Range Partner */

#become-ranger-wrap {
    display: inline-block;
    vertical-align: middle;
}

#become-ranger-wrap a {
    background: #3E6EDF;
    color: #fff;
    padding: 8px 21px 12px;
    position: relative;
    text-decoration: none;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    border-radius: 0px;
}

@media (max-width: 480px) {
    #become-ranger-wrap a {
        padding: 12px 7px;
    }
}

#become-ranger-wrap a:hover,
#become-ranger-wrap a:focus {
    background: #002060;
}


/* Mobile Login */

.mobile-login {
    border: 0px !important;
    margin-left: 15px;
    margin-top: 25px;
}

.mobile-login a {
    background: #3E6EDF !important;
    color: #fff;
    padding: 8px 19px 11px !important;
    position: relative;
    text-decoration: none;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    border: 0px !important;
    border-radius: 2px;
    width: 100px !important;
}


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

#search-input {
    max-width: 260px;
    display: inline-block;
    vertical-align: middle;
    color: #4D4D4D;
    position: relative;
}

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

.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: #4D4D4D;
}

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

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

#search-input :-ms-input-placeholder {
    color: #4D4D4D;
}

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

#search-input input {
    box-shadow: none;
    height: 31px;
    color: #4D4D4D;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Archivo', sans-serif;
    padding: 0px 10px;
    border: 0px;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

#search-input button {
    background: transparent;
    box-shadow: none;
    border: 0;
    color: #fff;
    padding: 4px 14px 0px;
    height: 31px;
    border-radius: 0px;
    outline: none;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.input-group.search-input-wrap {
    border: 1px solid #F2F2F2;
    background: #fff;
    border-radius: 2px;
}


/* Mobile Search Bar */

li.mobile-search-wrap {
    margin-top: 0px;
    margin-bottom: 5px;
    width: 100%;
    border-top: 0px !important;
}

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

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

.mobile-search-wrap input {
    box-shadow: none;
    height: 37px;
    color: #4D4D4D;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    padding: 0px 13px;
    border: 0px;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

.mobile-search-wrap ::-webkit-input-placeholder {
    color: #4D4D4D;
}

.mobile-search-wrap :-moz-placeholder {
    /* Firefox 18- */
    color: #4D4D4D;
}

.mobile-search-wrap ::-moz-placeholder {
    /* Firefox 19+ */
    color: #4D4D4D;
}

.mobile-search-wrap :-ms-input-placeholder {
    color: #4D4D4D;
}

.mobile-search-wrap button {
    background: transparent;
    box-shadow: none;
    border: 0;
    color: #fff;
    padding: 5px 10px 0px;
    height: 37px;
    border-radius: 0px;
    outline: none;
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.mobile-search-wrap button:hover,
.mobile-search-wrap button:focus {
    background: transparent;
    color: transparent;
}

li.mobile-search-wrap form.searchbox {
    margin-left: 15px;
    margin-right: 15px;
}


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


/*header#header-outer-wrap {
    background: #fff;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    position: sticky;
    top: 0;
    z-index: 99;
}*/

#main-header {
    padding: 28px 0px 18px;
}

svg#main-logo {
    max-width: 100%;
    width: 200px;
    height: 82px;
}

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

#join-donate-wrap {
    padding-top: 4px;
    display: inline-block;
}

.join-wrap,
.donate-wrap {
    display: inline-block;
    vertical-align: middle;
}

.join-wrap a {
    background: #F65848;
    color: #fff;
    border-radius: 3px;
    padding: 10px 14px 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Archivo', sans-serif;
}

.donate-wrap {
    margin-left: 12px;
}

.donate-wrap a {
    background: #0F63C2;
    color: #fff;
    border-radius: 3px;
    padding: 10px 18px 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Archivo', sans-serif;
}

.mobile-join-wrap,
.mobile-donate-wrap {
    margin-left: 15px;
}

@media (max-width: 767px) {
    .mobile-join-wrap,
    .mobile-donate-wrap {
        display: inline-block !important;
        vertical-align: middle;
        margin-top: 10px;
        border: 0px !important;
    }
}

.mobile-join-wrap a {
    background: #F65848 !important;
    color: #fff !important;
    border-radius: 3px !important;
    padding: 7px 10px !important;
    text-decoration: none !important;
    font-size: 16px !important;
    font-weight: 500 !important;
}

.mobile-donate-wrap a {
    background: #fff !important;
    color: #0F63C2 !important;
    border-radius: 3px !important;
    padding: 7px 10px !important;
    text-decoration: none !important;
    font-size: 16px !important;
    font-weight: 500 !important;
}


/*--------------------------------------------------------
                    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 {
    margin-bottom: 80px;
    position: relative;
}

@media (min-width: 768px) and (max-width: 990px) {
    .slideshow-wrap {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .slideshow-wrap {
        margin-bottom: 40px;
    }
}

.slideshow-wrap .container {
    width: 100%;
}

.slideshow-wrap img {
    width: 100%;
}

.slideshow-wrap .carousel-inner .item img {
    max-height: 500px;
    object-fit: cover;
}

.slideshow-wrap a {
    text-decoration: none;
}

.slideshow-wrap [class*="col-"] {
    padding: 0;
}

.slideshow-wrap p.caption-text {
    background: rgba(26, 26, 26, 0.75);
    display: inline-block;
    text-align: center;
    padding: 4px 18px;
}

.slideshow-wrap p.alt-text {
    background: rgba(26, 26, 26, 0.75);
    display: inline-block;
    text-align: center;
    padding: 9px 15px;
}

#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;
    display: none;
}

.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: 'Archivo', sans-serif;
    background: rgba(0, 0, 0, 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: 'Archivo', sans-serif;
    background: rgba(0, 0, 0, 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 {}
}

@media (max-width: 767px) {
    .carousel-control.left,
    .carousel-control.right {
        height: 38px;
        width: 38px;
    }
}

.carousel-control img {
    width: 16px;
    height: 22px;
    margin-top: 13px;
}

@media (max-width: 767px) {
    .carousel-control img {
        margin-top: 5px;
        width: 12px;
        height: 16px;
    }
}

.caption-wrapper {
    max-width: 1170px;
    padding-right: 15px;
    padding-left: 15px;
    text-align: center;
    padding-top: 18em;
    margin: auto;
}

.carousel-caption {
    display: flex;
    position: absolute;
    z-index: 100;
    left: auto;
    top: 0;
    right: 0px;
    bottom: 0px;
    width: 100%;
    text-align: left;
    text-shadow: none;
    margin: 0;
    padding: 12px 0px;
    min-height: 80px;
}

@media (max-width: 767px) {
    .carousel-caption {
        position: static;
        min-height: auto;
    }
}

.caption-inside-wrap {
    padding: 14px 0px;
}

p.caption-text {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Archivo', sans-serif;
    text-align: center;
    word-wrap: break-word;
    margin-top: 0px;
    margin-bottom: 12px;
    line-height: 48px;
}

p.caption-text span {
    display: inline-block;
    margin-top: 10px;
    background: #7B133E;
    padding: 2px 15px;
}

p.alt-text {
    font-size: 18px;
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    display: inline-block;
    word-wrap: break-word;
    line-height: 26px;
    margin-bottom: 0px;
    width: 70%;
}


.carousel-indicators {
    bottom: -5px;
}

.carousel-indicators li {
    width: 13px;
    height: 13px;
    margin-left: 8px !important;
    margin: 0 auto;
    background-color: #DFE1E5;
    border: 1px solid #DFE1E5;
    border-radius: 15px;
}

.carousel-indicators li.active {
    width: 13px;
    height: 13px;
    margin-left: 8px !important;
    margin: 0 auto;
    background-color: #000;
    border: 1px solid #fff;
    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: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: none;
    padding: 12px 20px;
    border-radius: 1px;
    text-align: center;
}


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

.subpage-outer-slideshow {
    margin-bottom: 60px;
    position: relative;
    border-bottom: 10px solid #002060;
}

@media (min-width: 768px) and (max-width: 990px) {
    .subpage-outer-slideshow {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .subpage-outer-slideshow .subpage-outer-slideshow {
        margin-bottom: 40px;
    }
}

.subpage-outer-slideshow .container {
    width: 100%;
}

.subpage-outer-slideshow img {
    width: 100%;
}

.subpage-outer-slideshow .carousel-inner .item img {
    max-height: 500px;
    object-fit: cover;
}

.subpage-outer-slideshow a {
    text-decoration: none;
}

.subpage-outer-slideshow [class*="col-"] {
    padding: 0;
}

#subpage-main .members-plan-outer-wrap {
    position: relative;
}

#subpage-main .members-plan-outer-wrap:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    display: block;
    background-color: #F0F2F7;
    z-index: -1;
}


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


/*--------------------------------------------------------
                    News and Events Feeds
--------------------------------------------------------*/


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

main#homepage-main h1,
main#homepage-main h2 {
    border-top: 2px solid #000000;
    padding-top: 20px;
    padding-bottom: 22px;
}


/* Buttons */

.btn-wrap {
    margin-top: 30px;
}

.btn-wrap a {
    font-family: 'Archivo', sans-serif;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    background: #000000;
    color: #fff;
    padding: 11px 18px 12px;
    text-align: center;
    border: 1px solid #000000;
    border-radius: 1px;
}

.btn-wrap a:hover {
    color: #000000;
    background: #fff;
}

.btn-wrap a:after {
    content: url(../images/btn-icon.png);
    display: none;
    position: relative;
    vertical-align: middle;
    width: 12px;
    height: 9px;
    top: -8px;
    padding-left: 6px;
}


/* News */

#news-quicklinks-section-wrap {
    margin-bottom: 60px;
}
    @media (max-width: 767px) {
        #news-quicklinks-section-wrap {
            margin-bottom: 40px;
        }
    }

#news-inside-wrap .col-content-wrap {
    width: 100%;
    height: auto;
    background: linear-gradient(180deg, rgba(8, 51, 66, 0.5), rgba(8, 51, 66, 0.5)), url(../images/news-bg.png) no-repeat;
    background-position: center;
    overflow: hidden;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    background-size: cover;
    padding: 31px 30px 48px;
}

.news-date {
    margin-bottom: 20px;
}

#news-inside-wrap .col-content-wrap .news-item .news-date img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
}

#news-inside-wrap .col-content-wrap .news-date span {
    color: #fff;
    font-size: 16px;
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    position: relative;
    top: 2px;
}

#news-inside-wrap .col-content-wrap .news-item h4 {
    padding-bottom: 8px;
    font-size: 26px;
    width: 70%;
    margin-bottom: 55px;
}
    @media (max-width: 767px) {
        #news-inside-wrap .col-content-wrap .news-item h4 {
            width: 100%;
        }
    }

#news-inside-wrap .col-content-wrap a.news-title-link {
    color: #fff;
    font-size: 26px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    text-decoration: none;
    line-height: 36px;
}

#news-inside-wrap .col-content-wrap .news-item .description {
    color: #fff;
    font-size: 16px;
    font-family: 'Archivo', sans-serif;
}

#news-section-wrap .btn-wrap {
    margin-top: 25px;
}

#news-inside-wrap .col-content-wrap .btn-wrap a {
    background: #fff;
    color: #000;
    padding: 11px 15px 12px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 1px;
    font-weight: 500;
    font-size: 16px;
}

.news-item h4 {
	color: white;
}


/* Quicklinks */

#quicklinks-section-wrap ul {
    padding: 0px;
    margin: 0px;
}

    @media (max-width: 767px) {
        #quicklinks-section-wrap {
            margin-top: 50px;
        }
    }

#quicklinks-section-wrap ul li {
    list-style: none;
    padding-left: 0px;
    padding-bottom: 6px;
    color: #000000;
}

#quicklinks-section-wrap ul li a {
    display: block;
    color: #000000;
    font-size: 16px;
    font-family: 'Archivo', sans-serif;
    text-decoration: underline;
    font-weight: 400;
    padding-left: 20px;
}

#quicklinks-section-wrap ul li a:hover,
#quicklinks-section-wrap ul li a:focus {
    color: #1CADEB;
    text-decoration: underline;
}

#quicklinks-section-wrap ul li:before {
    content: "";
    display: block;
    position: relative;
    width: 8px;
    height: 8px;
    cursor: pointer;
    background: #666666;
    border: none;
    border-radius: 5px;
    top: 1em;
}


/* Upcoming Events */

#events-section-wrap {
    margin-bottom: 50px;
    margin-top: 20px;
}

#events-section-wrap h2 {
    padding-bottom: 30px;
}

.event-img-wrap img {
    margin-bottom: 20px;
    display: block;
    max-width: 100%;
    height: auto;
}

.event-date {
    margin-bottom: 10px;
}

.event-date img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
}

.event-date span {
    display: inline-block;
    vertical-align: text-top;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #4D4D4D;
}

h3.event-title {
    padding-bottom: 0px;
    margin-bottom: 10px;
    font-size: 19px;
    line-height: 26px;
}

a.ev-title-link {
    color: #000000;
    font-size: 19px;
    font-weight: 500;
    text-decoration: none;
    font-family: 'Nunito Sans', sans-serif;
    text-transform: none;
    word-wrap: break-word;
}

a.ev-title-link:hover {
    color: #1CADEB;
    text-decoration: underline;
}

.event-content {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #4D4D4D;
}
    @media (max-width: 767px) {
        .event-content {
            margin-bottom: 25px;
        }
        #events-section-wrap .btn-wrap {
            margin-top: 20px;
        }
    }

#events-section-wrap .btn-wrap {
    margin-top: 40px;
}


/*--------------------------------------------------------
                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: #000000;
    padding: 23px 0px 25px;
    margin-top: 35px;
}

footer#main-footer p {
    color: #fff;
    font-size: 16px;
    font-family: 'Archivo', sans-serif;
    margin: 0;
    line-height: 28px;
    font-weight: 300;
}

.footer-credit-section .text-left p:nth-child(2) {
    margin-top: 12px !important;
}

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

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

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

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

footer#main-footer .text-right a {
    text-decoration: underline;
    font-weight: 300;
}

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

@media (max-width: 767px) {
    footer#main-footer .text-left,
    footer#main-footer .text-right {
        text-align: left;
    }
    footer#main-footer p {
        margin-bottom: 5px;
    }
    footer#main-footer span.footer-privacy {
        display: block;
        border-left: 0px;
        padding-left: 0px;
        margin-left: 0px;
    }
    .footer-nav-wrap {
        margin-top: 20px;
    }
    .footer-featured-logo {
        margin-top: 35px;
    }
}

.footer-credit-section * {
    color: #fff;
}

.footer-social-wrap {
    margin-bottom: 15px;
}

.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: 12px;
}

.footer-social-wrap ul li:first-child {
    margin-left: 0px;
}

.footer-social-wrap ul li img {
    width: 34px !important;
    height: 34px;
}

.footer-nav-wrap ul {
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

.footer-nav-wrap ul li {
    display: block;
    padding: 15px 10px;
    position: relative;
    float: left;
    list-style-type: none;
}

.footer-nav-wrap ul li:first-child {
    padding-left: 0px;
}

.footer-nav-wrap ul li:last-child {
    padding-right: 0px;
}

@media (min-width: 990px) and (max-width: 1199px) {
    .footer-nav-wrap ul li {
        padding: 15px 10px 0px;
    }
}

@media (min-width: 768px) and (max-width: 990px) {
    .footer-nav-wrap ul li {
        padding: 15px 10px 0px;
    }
}

@media (max-width: 767px) {
    .footer-nav-wrap ul li {
        width: 100%;
        padding: 3px 0;
        text-align: center;
    }
}

.footer-nav-wrap ul li a {
    color: #fff;
    font-size: 16px;
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    text-decoration: underline;
    outline: none;
}

@media (min-width: 990px) and (max-width: 1199px) {
    .footer-nav-wrap ul li a {
        font-size: 15px;
    }
}

.footer-featured-logo {
    margin-bottom: 25px;
}

.footer-contact-info {
    margin-top: 5px;
}


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

/* Larger fonts for the news archive per ticket #258796 */
#news-result-wrapper #news-results .month-header{
    font-size: 20px;
}

#news-result-wrapper #news-results .article-headline{
    font-size: 16px;
}

a#returnToSearch, a#copyURL {
    font-size: 16px !important;
}

/*--------------------------------------------------------------
                      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: 'Archivo', sans-serif;
    color: #9B9B9B;
    box-shadow: none !important;
    border: 1px solid #CCCCCC;
    border-radius: 18px;
}

.login-form input[type="submit"] {
    background: #3E6EDF;
    border: 1px solid #3E6EDF;
    color: #fff;
    font-size: 15px;
    font-weight: normal;
    border-radius: 3px;
    font-family: 'Archivo', 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: #002060;
    border: 1px solid #002060;
    text-decoration: none;
}

.login-form a {
    color: #3A3A3A;
    font-size: 14px;
    font-family: 'Archivo', sans-serif;
    display: block;
    margin-left: 15px;
    padding-bottom: 10px;
    text-decoration: underline;
}

.login-form a:hover,
.login-form a:focus {
    color: #002060;
}

.login-form input:last-of-type {
    width: 100px;
    margin: none;
}

h6.modal-title {
    color: #527785;
    font-size: 24px;
    font-weight: 400;
    font-family: 'Archivo', sans-serif;
}

h4#myModalLabel {
    font-family: 'Archivo', 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 (min-width: 991px) {
    .mobile-menu-wrap {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .caption-wrapper {
        max-width: 750px;
        padding-top: 0px;
        padding-bottom: 40px;
    }
}

@media (min-width: 768px) and (max-width: 990px) {
    .container {}
    #mobile-menu-col {
        margin-left: 20px;
    }
    #center-menu-wrap {
        text-align: right;
    }
    #right-index-content {
        margin-top: 30px;
    }
    .news-content {
        min-height: 260px;
    }
    #membership-benefits-wrap {
        margin-top: 70px;
    }
    #search-input {
        display: inline-block !important;
    }
}

@media (max-width: 767px) {
    .container {}
    .news-date-title {
        width: 58%;
    }
    #right-index-content {
        margin-top: 30px;
    }
    #welcome-section-wrap p {
        width: 100%;
    }
    #welcome-section-wrap img.img-responsive {
        float: none;
        margin-top: 0;
        margin-bottom: 25px;
    }
    #membership-benefits-wrap {
        margin-top: 70px;
    }
    #member-sponsors-section-wrap .col-sm-2,
    #sponsors-section-wrap .col-sm-2 {
        width: 50%;
        margin-bottom: 20px;
        display: inline-block;
    }
    #range-feat-content {
        margin-top: 30px;
    }
}

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

@media (max-width: 767px) {
    .carousel-caption {
        background: rgba(26, 26, 26, 0.75);
    }
    .caption-wrapper {
        padding-bottom: 20px !important;
    }
    p.caption-text {
        width: 100%;
        line-height: 34px;
        margin-bottom: 0px;
        text-align: left !important;
        padding-top: 12px !important;
        background: transparent !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    p.alt-text {
        text-align: left !important;
        width: 100%;
        background: transparent !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}

@media (max-width: 480px) {
    .container {}
    .news-date-title {
        width: 58%;
    }
    #silver-sponsor-wrap img,
    #bronze-sponsor-wrap img {
        margin-right: 10px;
    }
}

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


/*  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);
}

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

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