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

#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: 'Poppins', sans-serif;
    font-weight: 700;
    color: #3F4444);
    margin: 0px;
    padding: 0px;
    padding-bottom: 15px;
}
h1 a, h2 a, h3 a, h4 , h5 a {
    font-family: 'Poppins', sans-serif;
}

h1 {
    font-size: 30px;
    color: #3F4444));
}
h2 {
    font-size: 26px;
    color: #3F4444;
}
h3 {
    font-size: 22px;
    color: #3F4444;
}
h4 {
    font-size: 20px;
}

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

/*--------------------------------------------------------
                        LANDING PAGE
--------------------------------------------------------*/

.landing-logo-wrap {
    margin: 0 auto;
    text-align: center;
    padding: 50px 30px;
}
svg#landing-logo {
    max-width: 1150px;
    height: auto;
    width: 100%;
}

.login-page-wrap {
    background: #0B6623;
    margin-top: 20px;
    padding: 50px 0px 85px;
}
.login-sign-text-wrap {
    margin-bottom: 20px;
}
.login-sign-text-wrap, .login-sign-text-wrap a {
    color: #fff;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
}
.login-sign-text-wrap a {
    text-decoration: underline;
}
.login-form-wrap .input-group {
    display: inline-block;
    vertical-align: middle;
}
.login-form-wrap .input-group span.input-group-addon {
    display: none;
}
.login-form-wrap .input-group input.form-control {
    margin-left: 0px !important;
    border-radius: 4px !important;
    width: 360px !important;
    height: 50px;
    font-size: 18px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 30px;
    color: #606060;
}
.login-form-wrap .input-group input::-webkit-input-placeholder {
   color: #606060;
}
.login-form-wrap .input-group input:-moz-placeholder { /* Firefox 18- */
   color: #606060;  
}
.login-form-wrap .input-group input::-moz-placeholder {  /* Firefox 19+ */
   color: #606060;  
}
.login-form-wrap .input-group input:-ms-input-placeholder {  
   color: #606060;  
}
.login-form-wrap .login-form a {
    left: 33.5%;
    position: absolute;
    color: #fff;
    padding-top: 12px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
}
.login-form-wrap .login-form a:hover, .login-form-wrap .login-form a:focus {
    color: #fff;
}
.login-form-wrap .login-form input[type="submit"] {
    background: #3C9954;
    border: 2px solid #3C9954;
    border-radius: 3px !important;
    color: #fff;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 10.5px 10px;
    margin: 0;
    width: 130px !important;
    text-align: center;
}
.login-form-wrap .login-form input[type="submit"]:hover {
    background: #3C9954;
    border: 2px solid #3C9954;
}


@media (min-width: 990px) and (max-width: 1199px) {
    .login-form-wrap .login-form a {
        left: 40.4%;
    }

}

@media (min-width: 768px) and (max-width: 990px) {
    .login-form-wrap .input-group input.form-control {
        width: 220px !important;
    }

}

@media (max-width: 767px) {
    .landing-logo-wrap {
        padding: 50px 30px 20px;
    }
    .login-form-wrap .input-group {
        width: 100%;
    }
    .login-form-wrap .input-group input.form-control {
        margin: 0 auto 20px!important;
        max-width: 100% !important;
        width: 100% !important;
    }
    .login-form-wrap .login-form a {
        left: 0%;
        padding-top: 20px;
    }

}




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


#main-header {
    padding: 20px 0px 15px;
}
@media (max-width: 767px) {
    #main-header {
        padding: 10px 0px 15px;
    }
}

#logo-wrap a {
    text-decoration: none;
}
.logo-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}
    @media (max-width: 767px) {
        .logo-wrap {
            margin-right: 15px;
        }
    }
    @media (max-width: 480px) {
        .logo-wrap {
            margin-right: 10px;
        }
    }
    @media (max-width: 380px) {
        .logo-wrap {
            margin-right: 5px;
        }
    }
.logo-wrap svg {
    max-width: 100%;
    width: 238px;
    height: 100px;
}


#right-side-wrap {
    text-align: right;
    margin-top: 23px;
}
    @media (min-width: 990px) and (max-width: 1199px) {
        #right-side-wrap {
            margin-top: 25px;
        }
    }
    @media (max-width: 767px) {
        #right-side-wrap {
            margin-top: 60px;
        }
    }
    @media (max-width: 480px) {
        #right-side-wrap {
            margin-top: 30px;
        }
    }



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

#search-login-wrap {
    display: inline-block;
}
#search-input {
    max-width: 285px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    color: #4a4f57;
}
    @media (max-width: 380px) {
        #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 input::-webkit-input-placeholder {
   color: #3F4444;
}

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

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

#search-input input:-ms-input-placeholder {  
   color: #3F4444;  
}
.icon-search:before {
    content: url("../images/search-icon.png");
}
#search-input input {
    border: 0px;
    box-shadow: none;
    height: 39px;
    color: #3F4444;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Nunito Sans', sans-serif;
    padding: 0px 12px;
    border: 1px solid #D7DED9;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
#search-input button {
    background: #0B6623;
    border-top: 1px solid #0B6623;
    border-bottom: 1px solid #0B6623;
    box-shadow: none;
    border: 0;
    color: #fff;
    padding: 4px 11px 0px;
    height: 39px;
    border-radius: 0px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
.input-group.search-input-wrap {
    border: 0px;
    background: #fff;
    border-radius: 0px;
}


/* Mobile Search Bar */

li.mobile-search-wrap {
    margin-top: 5px;
    margin-bottom: 5px;
    padding-left: 0px;
    width: 260px;
}
li.mobile-search-wrap a {
    border-bottom: 0px !important;
}
li.mobile-search-wrap .input-group.search-input-wrap {
    border: 0px;
    background: #fff;
    border-radius: 0px;
}
.mobile-search-wrap input {
    border: 0px;
    box-shadow: none;
    height: 39px;
    color: #3F4444;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Nunito Sans', sans-serif;
    padding: 0px 12px;
    border: 1px solid #D7DED9;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.mobile-search-wrap input::-webkit-input-placeholder {
   color: #3F4444;
}

.mobile-search-wrap input:-moz-placeholder { /* Firefox 18- */
   color: #3F4444;  
}

.mobile-search-wrap input::-moz-placeholder {  /* Firefox 19+ */
   color: #3F4444;  
}

.mobile-search-wrap input:-ms-input-placeholder {  
   color: #3F4444;  
}
.mobile-search-wrap span.input-group-btn {
    background: #004913;
    border: 1px solid #004913;
}
.mobile-search-wrap button {
    background: #004913;
    border-top: 1px solid #004913;
    border-bottom: 1px solid #004913;
    box-shadow: none;
    border: 0;
    color: #fff;
    padding: 4px 11px 0px;
    height: 39px;
    border-radius: 0px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
.mobile-search-wrap button:hover, .mobile-search-wrap button:focus {
    background: transparent;
    color: transparent;
}




svg#login-icon {
    width: 39px;
    height: 39px;
    background: #0B6623;
    padding: 10px 6px;
    border-radius: 5px;
}
#member-login-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    position: relative;
    top: 3px;
}
#member-login-wrap:hover .member-menu {
    display: block;
}
.member-menu {
    position: absolute;
    top: 40px;
    display: none;
    margin: 0;
    list-style: none;
    background: #fff;
    padding: 10px 20px;
    text-align: left;
    right: 0px;
    z-index: 101;
    box-shadow: 1px 0px 7px rgba(0, 0, 0, 0.3);
}
.member-menu li {
    width: 200px;
    border-bottom: 1px solid #D7DED9;
    padding: 12px 0px;
}
.member-menu li:last-child {
    border-bottom: 0px !important;
}
.member-menu  li a {
    color: #6DB37F;
    text-decoration: none;
    font-size: 16px;
}


#mobile-member-login-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    position: relative;
    top: 3px;
}
#mobile-member-login-wrap:hover .member-menu {
    display: block;
}
#mobile-member-login-wrap a, #mobile-loginout-wrap a {
    border-top: 0px !important;
}
#mobile-member-login-wrap .member-menu {
    right: auto;
    padding: 8px 20px !important;
    margin: 0 !important;
    top: 50px;
}


#loginout-wrap {
    display: inline-block;
    vertical-align: middle;
}
#loginout-wrap a {
    color: #0B6623;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    text-decoration: none;
}

#mobile-loginout-wrap {
    display: inline-block;
    vertical-align: middle;
}
#mobile-loginout-wrap a {
    color: #0B6623;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    text-decoration: none;
}
#mobile-member-login-wrap svg#login-icon {
    background: #004913;
}






/*--------------------------------------------------------
                    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 - 125px - 52px - 190px);
    /*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;
    }
}

.question-wrapper .input-label, .question-wrapper .form-input select, .question-wrapper .form-input select option {
    font-size: 16px;
}
/*^^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 {
    position: relative;
}
.slideshow-wrap .container {
    width: 100%;
}
.slideshow-wrap img {
    width: 100%;
}
.slideshow-wrap [class*="col-"] {
    padding: 0;
}
#slide-row{
    margin-bottom: 10px;
}
.slideshow-wrap .carousel-caption {
    top: 30%;
    bottom: auto;
}
.slideshow-wrap .carousel-caption .caption-inside-wrap {
    background: rgba(0,43,11,0.6);
    padding: 28px 20px 23px;
    width: 48.7%;
}

    @media (max-width: 767px) {
         .slideshow-wrap .carousel-caption .caption-inside-wrap {
            width: 100%;
            padding-bottom: 80px;
            min-height: 300px;
        }
        #slideshow-inside-wrap .carousel-indicators {
            bottom: 60px !important;
        }

    }

.slideshow-wrap .carousel-caption .caption-inside-wrap p.caption-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: #fff;
    padding-bottom: 20px;
}
.slideshow-wrap .carousel-caption .caption-inside-wrap p.alt-text {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    font-style: normal;
    color: #fff;
    text-decoration: none;
    padding-bottom: 0px;
    line-height: 26px;
}
.slideshow-wrap .carousel-control {
    display: none;
}


.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: 44px;
    width: 44px;
    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(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: 44px;
    width: 44px;
    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(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 {
            bottom: 5%;
        }
    }
    @media (max-width: 767px) {
        .carousel-control.left, .carousel-control.right {
            height: 38px;
            width: 38px;
        }
    }
.carousel-control img {
    width: 15px;
    height: 23px;
    margin-top: 10px;
}
    @media (max-width: 767px) {
        .carousel-control img {
            margin-top: 5px;
        }
    }


.caption-wrapper {
    max-width: 1170px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}   
    @media (min-width: 768px) and (max-width: 990px) {
        .caption-wrapper {
            padding: 0;
        }
    }
    @media (max-width: 767px) {
        .caption-wrapper {
            padding: 0;
        }
    }
.carousel-caption {
    position: absolute;
    z-index: 100;
    background: transparent;
    padding: 0px;
    left: inherit;
    bottom: 0px;
    right: 0px;
    top: inherit;
    width: 100%;
    text-align: left;
    text-shadow: none;
}
    @media (max-width: 767px) {
        .carousel-caption {
            position: relative;
            width: 100%;
            padding: 0;
        }
    }


.carousel-caption p.caption-text {
    font-size: 17px;
    font-weight: 600;
    line-height: 25px;
    display: block;
    color: #ffffff;
    margin-bottom: 0px;
}
.carousel-caption p.alt-text{
    font-size: 16px;
    font-family: serif;
    font-style: italic;
    color: white;
    margin-bottom: 10px;
}
.carousel-indicators {
    display: none;
}

#slideshow-inside-wrap .carousel-indicators {
    display: block;
    bottom: 30px;
}
#slideshow-inside-wrap .carousel-indicators li {
    width: 12px;
    height: 12px;
    margin-left: 8px !important;
    margin: 0 auto;
    background-color: transparent;
    border: 1px solid #ffffff;
    border-radius: 15px;
}
#slideshow-inside-wrap .carousel-indicators li.active {
    width: 12px;
    height: 12px;
    margin-left: 8px !important;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 15px;
}



/* Slideshow Ticker Bar */
.slideshow-ticker-bar {
    position: relative;
    top: -32px;
    z-index: 101;
}

    @media (max-width: 767px) {
        .slideshow-ticker-bar {
            top: -55px;
        }
        .slideshow-ticker-bar .container {
            padding: 0;
        }
        .ticker-bar-wrap {
            line-height: 24px !important;
        }

    }

.ticker-bar-wrap {
    background: #881D0F;
    color: #fff;
    padding: 5px 7px 5px 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
}
/* Style the close button (span) */
.slideshow-ticker-bar .tickerclose {
    float: right;
    margin-top: 1px;
    cursor: pointer;
    color: #881D0F;
    text-shadow: none;
    opacity: 1;
    background: #fff;
    border-radius: 50px;
    width: 18px;
    height: 18px;
    text-align: center;
    font-size: 14px;
    padding-top: 1px;
    font-weight: 700;
    line-height: 16px;
}



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

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

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


.btn-wrap {
    margin-bottom: 40px;
    margin-top: 40px;
}
.btn-wrap a {
    background: #0B6623;
    font-size: 17px;
    border: 1px solid #0B6623;
    padding: 13px 44px;
    font-family: 'Nunito Sans', sans-serif;
    border-radius: 5px;
    color: #FFFFFF;
    text-decoration: none;
}
.btn-wrap a:hover {
    background: #3B8C4C;
    border: 1px solid #3B8C4C;
}


/* Featured Section List Boxes */
#featured-section-wrap {
    margin-top: 20px;
    margin-bottom: 20px;
}
#featured-section-wrap .col-content-wrap {
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-radius: 4px;
    background-color: #fff;
    background-image: url(../images/featured-tree.png);
    background-repeat: no-repeat;
    /*background-position: bottom right;*/
    background-position: 93% 100%;
}
.featured-text-wrap {
    color: #fff;
    padding-left: 25px;
    position: relative;
    top: -200px;
    height: 200px;
    padding-top: 45%;
    font-size: 22px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: -180px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
    .featured-text-wrap.remove-featured-text {
        top: 0px;
        margin-bottom: 0px;
        padding-top: 0px;
        height: auto;
    }

#featured-section-wrap img {
    min-height: 200px !important;
    height: 200px !important;
    max-width: 100%;
    width: 100% !important;
    object-fit: cover;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
#featured-section-wrap ul {
    padding-left: 30px;
    margin: 0px;
}
#featured-section-wrap ul li {
    list-style: none;
    padding-left: 15px;
    padding-bottom: 0px;
    font-size: 18px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    color: #3F4444;
    line-height: 18px;
}
#featured-section-wrap ul li:before {
    content: "";
    display: block;
    position: relative;
    width: 12px;
    height: 12px;
    cursor: pointer;
    background: #3C9954;
    border: none;
    border-radius: 5px;
    top: 0.83em;
    right: 1.5em;
}
#featured-section-wrap ul li a {
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    color: #3C9954;
    padding-left: 12px;
    text-decoration: none;
}





/* Quick Links List Boxes */
#quicklinks-section-wrap {
    margin-bottom: 60px;
}
#quicklinks-section-wrap .col-md-2 {
    width: 19.5%;
    margin-left: 0px;
    padding-left: 0px;
    padding-right: 0px;
}
    @media (min-width: 990px) and (max-width: 1199px) {
        #quicklinks-section-wrap .col-content-wrap {
            min-height: 270px !important;
        }
    }

    @media (min-width: 768px) and (max-width: 990px) {
        #quicklinks-section-wrap .col-md-2 {
            float: left;
            width: 19.3%;
        }
        #quicklinks-section-wrap, #quicklinks-section-wrap a {
            font-size: 14px !important;
        }
        #quicklinks-section-wrap .col-content-wrap {
            min-height: 245px !important;
        }

    }
    @media (max-width: 767px) {
        #quicklinks-section-wrap .col-md-2 {
            width: 92.5%;
            margin-left: 15px !important;
        }
    }

#quicklink-one-wrap {
    margin-left: 15px !important;
}
#quicklink-one-wrap .col-content-wrap, #quicklink-three-wrap .col-content-wrap, #quicklink-five-wrap .col-content-wrap {
    background: rgba(210,230,215,1);
    text-align: center;
    padding: 54px 20px;
    min-height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
#quicklink-two-wrap .col-content-wrap, #quicklink-four-wrap .col-content-wrap {
    background: rgba(210,230,215,.6);
    text-align: center;
    padding: 54px 20px;
    min-height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
#quicklink-one-wrap .col-content-wrap {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
#quicklink-five-wrap .col-content-wrap {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
#quicklinks-section-wrap, #quicklinks-section-wrap a {
    color: #3F4444;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
}
#quicklinks-section-wrap .col-content-wrap a {
    width: 100%;
}
#quicklinks-section-wrap .col-content-wrap img {
    margin: 0 auto 20px;
}




/* Upcoming Events */

#events-section-wrap h2 {
    margin-bottom: 20px;
}
.event-item {
    margin-bottom: 35px;
    border-bottom: 1px solid #EFEFEF;
    padding-bottom: 35px;
}
#events-section-wrap .event-item:nth-child(4) {
    border-bottom: 0px;
    margin-bottom: 0px;
}
#events-wrap {
    margin-bottom: 30px;
}
.event-date-wrap {
    background: transparent;
    width: 100%;
    display: inline-block;
    vertical-align: top;
    max-width: 90px;
    margin-right: 20px;
    padding: 0px;
}
.event-details-wrap {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 120px);
    width: -webkit-calc(100% - 120px);
    width: -moz-calc(100% - 120px);
    position: relative;
    top: -2px;
}
.event-month {
    text-align: center;
    color: #fff;
    font-size: 21px;
    padding: 5px 0px;
    font-weight: 400;
    background: #004913;
    border: 1px solid #004913;
    font-family: 'Poppins', sans-serif;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.event-date {
    text-align: center;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 4px;
    background: #3C9954;
    border: 1px solid #3C9954;
    line-height: 68px;
    font-family: 'Poppins', sans-serif;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}
#event-container {
    padding-left: 0px;
    margin-left: -15px;
}
.event-time {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
}
.event-time img {
    display: inline-block;
    vertical-align: sub;
    margin-right: 10px;
}
h4.event-title {
    font-weight: normal;
    padding-bottom: 0px;
    line-height: 16px;
    margin-bottom: 3px;
}
a.ev-title-link {
    color: #3F4444;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    text-transform: none;
    word-wrap: break-word;
    overflow: hidden;
    max-height: 2.2em;
    line-height: 22px;
    display: inline-block;
}
a.ev-title-link:hover {
    color: #3F4444;
    text-decoration: none;
}
p.event-blurb {
    padding-top: 0px;
    margin-bottom: 0px;
    color: #464849;
    line-height: 20px;
    word-wrap: break-word;
    overflow: hidden;
}
a.events-btn {
    display: block;
    background: #76A8A1;
    width: 195px;
    padding: 5px 10px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 3px;
    margin-top: 10px; 
    font-family: 'PT Sans', sans-serif;  
}

.more-info-btn {
    margin-top: 9px;
}
.more-info-btn a {
    color: #3C9954;
    font-size: 16px;
    border: 1px solid #3C9954;
    padding: 5px 20px;
    font-family: 'Nunito Sans', sans-serif;
    border-radius: 3px;
    text-decoration: none;
}
.more-info-btn a:hover {
    color: #fff;
    background: #3C9954;
    border: 1px solid #3C9954;
}
.more-info-btn a span {
    padding-left: 16px;
}



/* News */

#news-section-wrap h2 {
    margin-bottom: 20px;
}
.news-item {
    margin-bottom: 35px;
    border-bottom: 1px solid #EFEFEF;
    padding-bottom: 35px;
}
#news-section-wrap .news-item:nth-child(4) {
    border-bottom: 0px;
}
.news-item .date {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
}
.news-item .date img {
    display: inline-block;
    vertical-align: sub;
    margin-right: 12px;
}
.news-item h4 {
    font-size: 18px;
    line-height: 26px;
}
a.news-title-link {
    color: #3F4444;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}
a.news-title-link:hover {
    color: #3F4444;
}





/*--------------------------------------------------------
                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: #0B6623;
    padding: 50px 0px 36px;
    margin-top: 30px;
}
footer#main-footer p {
    color: #C6D7CA;
    font-size: 18px;
    font-family: 'Nunito Sans', sans-serif;
    line-height: 32px;
}
footer#main-footer a {
    color: #fff;
    text-decoration: underline;
}
footer#main-footer a:hover {
    color: #fff;
}
footer#main-footer strong {
    color: #fff;
}


    @media (max-width: 767px) {
        footer#main-footer .text-left, footer#main-footer .text-right {
            text-align: center;
        }
        footer#main-footer .text-left span {
            display: block;
            border-left: 0px;
            padding-left: 0px;
            margin-left: 0px;
        }
    }

footer#main-footer .text-left span.footer-privacy,
footer#main-footer .text-left span.footer-contactweb {
    border-left: 1px solid #c7d1e5;
    margin-left: 24px;
    padding-left: 24px;
}
footer#main-footer .text-right a {
    text-decoration: none;
    color: #C6D7CA;
    font-size: 18px;
}


    @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 .text-left span.footer-privacy {
            display: inline-block;
            border-left: 0px;
            padding-left: 0px;
            margin-left: 0px;
        }
        footer#main-footer .text-left span.footer-contactweb {
            display: inline-block;
            margin-left: 15px;
            padding-left: 15px;
        }
        .back-top-wrap {
            padding-top: 0px !important;
            margin-bottom: 15px;
        }
    }

.back-top-wrap {
    padding-top: 12px;
}
.back-top-wrap a:after {
    display: inline-block;
    vertical-align: middle;
    content: url(../images/back-top-icon.png);
    margin-left: 16px;
}


/*--------------------------------------------------------
                        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: #232d69;
    border: 1px solid #232d69;
    color: #fff;
    font-size: 15px;
    font-weight: normal;
    border-radius: 50px;
    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: #232d69;
    border: 1px solid #232d69;
    text-decoration: none;
}
.login-form a {
    color: #232d69;
    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: #17224d;
}
.login-form input:last-of-type{
    width: 100px;
    margin: none;
}
h6.modal-title {
    color: #527785;
    font-size: 24px;
    font-weight: 400;
    font-family: 'Poppins', 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) {

}

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

}

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

    .slideshow-wrap .carousel-caption {
        top: 20%;
        left: 3%;
    }
    .slideshow-wrap .carousel-caption .caption-inside-wrap {
        width: 65.7%;
    }
    .featured-text-wrap {
        padding-top: 50%;
    }
}


@media (max-width: 991px) {

}


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

    .slideshow-wrap .carousel-caption .caption-inside-wrap {
        background: rgba(0,43,11,0.6);
        padding: 15px 15px 8px;
        width: 75.7%;
    }
    .slideshow-wrap .carousel-caption {
        top: 10%;
        bottom: auto;
        left: 3%;
    }
    .featured-text-wrap {
        padding-top: 74%;
        font-size: 18px;
    }
    footer#main-footer .text-left span.footer-contactweb {
        padding-left: 0px;
        margin-left: 0px;
        border-left: 0px;
        display: block;
    }

}


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

    #news-section-wrap {
        margin-top: 45px;
    }

}

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

}

@media (max-width: 580px) {


}

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

}

@media (max-width: 350px) {

}


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


}