*,
*: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
--------------------------------------------------------*/
:root {
    overflow-x: clip;
}
body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #434343;
    overflow-x: hidden;
}

p {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #434343;
    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: 'Poppins', sans-serif;
    font-weight: 700;
    color: #434343;
    margin: 0px;
    padding: 0px;
    padding-bottom: 15px;
}

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

h1 {
    font-size: 35px;
    color: #434343;
}

h2 {
    font-size: 25px;
    color: #434343;
}

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

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

a:hover,
a:focus {
    color: #23527c;
}

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

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

button.btn {
    background: #9cc827;
    border-color: #9cc827;
}
button.btn:hover, button.btn:focus, button.btn:active,button.btn:active:hover {
    background: #9cc827;
    border-color: #9cc827;
}

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

#subpage-main img:not(.poster-row 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.*/
}


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

#search-input {
    max-width: 295px;
    display: inline-block;
    vertical-align: middle;
    color: #3F4444;
    position: relative;
    margin-right: 10px;
}

@media (max-width: 767px) {
    #search-input {
        margin-right: 0px;
    }
}

@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: #3F4444;
}

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

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

#search-input :-ms-input-placeholder {
    color: #3F4444;
}

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

#search-input input {
    box-shadow: none;
    height: 39px;
    color: #434343;
    font-size: 16px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    padding: 0px 13px;
    border: 1px solid #DCDFE5;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    grid-column-end: none !important;
    margin-bottom: 0px !important;
}

#search-input .searchbox .input-group-btn {
    grid-column-end: none !important;
}

#search-input button {
    background: #fff;
    box-shadow: none;
    border: 0;
    color: #fff;
    padding: 5px 13px 0px;
    height: 39px;
    border-radius: 0px;
    outline: none;
    border-top: 1px solid #DCDFE5;
    border-bottom: 1px solid #DCDFE5;
    border-right: 1px solid #DCDFE5;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.input-group.search-input-wrap {
    border: 0px;
    background: #fff;
    border-radius: 3px;
    display: table;
}


/* Mobile Search Bar */

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

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 #DCDFE5;
    background: #fff;
}

.mobile-search-wrap input {
    border: 0px;
    box-shadow: none;
    height: 39px;
    color: #434343;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    padding: 0px 12px;
    font-weight: normal;
}

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

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

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

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

.mobile-search-wrap button {
    background: transparent;
    box-shadow: none;
    border: 0;
    color: #fff;
    padding: 10px 10px;
    height: 39px;
    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;
}

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

#ev-calen-wrap,
#join-wrap,
#donate-wrap,
#store-wrap,
#member-area-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
}

#ev-calen-wrap a {
    background: #E5642A;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    padding: 10px 19px;
    border-radius: 2px;
    text-decoration: none;
}
#join-wrap a {
    background: #E5642A;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    padding: 10px 19px;
    border-radius: 2px;
    text-decoration: none;
}
#donate-wrap a {
    background: #E5642A;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    padding: 10px 16px;
    border-radius: 2px;
    text-decoration: none;
}
#store-wrap a {
    background: #E5642A;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    padding: 10px 19px;
    border-radius: 2px;
    text-decoration: none;
}
#member-area-wrap a {
    background: #E5642A;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    padding: 10px 16px;
    border-radius: 2px;
    text-decoration: none;
}


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

#main-header {
    padding: 1rem;
}

#main-header .row {
    display: flex;
    align-items: center;
}

#logo-wrap {
    position: relative;
}

#events-logo-wrap img {
    max-width: 100%;
    max-height: 300px;
}

svg#main-logo {
    max-width: 100%;
    width: 140px;
    height: 110px;
    vertical-align: inherit;
}

#right-side-wrap {
    text-align: right;
    /* margin-top: 48px; */
}


/*--------------------------------------------------------
                    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 - 135px - 50px - 100px);
    /*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;
    }
}

/* grid+ */
.row[data-gjs-type="x_row"] {
    margin-bottom: 1em;
}
.column[data-gjs-type="x_col"] {
    margin-bottom: 1em;
}


/*changes as per ticket 280955 - note 24 */
#donation-submit {
    background: #9cc827;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    padding: 10px 16px;
    border-radius: 2px;
    text-decoration: none;
    border: 0px;
}




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

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

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

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

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

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

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

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

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

#slide-row {
    margin-bottom: 10px;
}

.carousel-control.left,
.carousel-control.right,
.carousel-control:hover {
    background-image: none;
    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: "Poppins", sans-serif;
    background: rgba(57, 53, 54, 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: "Poppins", sans-serif;
    background: rgba(57, 53, 54, 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: 16px;
    height: 24px;
    margin-top: 13px;
}

@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: transparent;
    left: auto;
    top: auto;
    right: 0px;
    bottom: 0px;
    width: 100%;
    text-align: center;
    text-shadow: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 990px) {
    .carousel-caption {
        background: rgba(57, 53, 54, 0.8);
        display: block;
        position: static;
        width: 100%;
        height: auto !important;
        min-height: 85px !important;
    }
}

@media (max-width: 460px) {
    .carousel-caption {
        min-height: 140px !important;
    }
}

.caption-inside-wrap {
    background: rgba(57, 53, 54, 0.8);
    padding: 10px 0px 12px;
}

@media (max-width: 990px) {
    .caption-inside-wrap {
        background: transparent;
    }
}

p.caption-text {
    font-size: 25px;
    font-weight: 700;
    display: block;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    text-align: center;
    margin-bottom: 3px;
    word-wrap: break-word;
    line-height: normal;
}

p.alt-text {
    font-size: 16px;
    font-weight: 400;
    font-family: "Poppins", 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
--------------------------------------------------------*/


/* Buttons */

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

.btn-wrap a {
    background: #393536;
    border-radius: 2px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 16px;
    text-decoration: none;
}

.orange-btn-wrap {
    margin-top: 40px;
}

.orange-btn-wrap a {
    background: #E5642A;
    border-radius: 2px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 16px;
    text-decoration: none;
}


.simple-button-plugin {
    display: inline-block;
    background-color: rgb(156, 200, 39);
    border: 1px solid rgb(156, 200, 39);
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 1.2em;
}
.simple-button-plugin:hover {
    color: #fff;
    text-decoration: none;
}


/* Featured Big Wrap */

#featured-big-wrap .col-content-wrap img {
    min-height: 388px;
    height: 388px !important;
    max-width: 100% !important;
    width: 555px !important;
    object-fit: cover;
}

#featured-big-wrap .col-content-wrap a {
    background: rgba(26, 26, 26, .7);
    width: 555px;
    max-width: 100%;
    text-align: left;
    position: relative;
    top: auto;
    height: 50px;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: left;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    color: #E5642A;
    bottom: auto;
    margin-top: -50px;
    word-break: break-word;
    padding-left: 15px;
}

#featured-big-wrap .col-content-wrap a:hover {
    text-decoration: underline;
}


/* Events - FB wrap */

#events-fb-wrap {
    margin-top: 50px;
}

/*#events-fb-wrap .row::before,
#events-fb-wrap .row::after {
    content: none;
}

#events-fb-wrap .row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    grid-gap: 20px 30px;
    margin: 0;
}*/


/* Featured Mini Wrap */

#featured-mini-wrap .col-content-wrap {
    margin-bottom: 28px;
}

#featured-mini-wrap .col-content-wrap img {
    min-height: 180px;
    height: 180px !important;
    max-width: 100% !important;
    width: 263px !important;
    object-fit: cover;
}

#featured-mini-wrap .col-content-wrap a {
    background: rgba(26, 26, 26, .7);
    width: 263px;
    max-width: 100%;
    text-align: left;
    position: relative;
    top: auto;
    height: 42px;
    line-height: 15px;
    display: flex;
    align-items: center;
    justify-content: left;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    color: #E5642A;
    bottom: auto;
    margin-top: -42px;
    word-break: break-word;
    padding-left: 15px;
}

#featured-mini-wrap .col-content-wrap a:hover {
    text-decoration: underline;
}


/* Featlinks */

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

#featlinks-section-wrap ul li {
    list-style: none;
    padding-left: 0px;
    padding-bottom: 3px;
}

#featlinks-section-wrap ul li a {
    display: block;
    color: #3A3D3F;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    text-decoration: underline;
    font-weight: 400;
    padding-left: 20px;
}

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

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


/* Upcoming Events */

#events-section-wrap h2 {
    margin-bottom: 5px;
}

.event-item {
    margin-bottom: 20px;
    border: 1px solid #DFE3E8;
    min-height: 180px;
}

#events-section-wrap .event-item:nth-child(3) {
    border-bottom: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.event-date-wrap {
    background: transparent;
    width: 100%;
    display: inline-flex;
    vertical-align: middle;
    max-width: 60px;
    border-right: 1px solid #DFE3E8;
    height: 180px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.event-details-wrap {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 65px);
    width: -webkit-calc(100% - 65px);
    width: -moz-calc(100% - 65px);
    position: relative;
    padding: 15px 5px;
}

.event-month {
    text-align: center;
    color: #434343;
    font-size: 18px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}

.event-date {
    text-align: center;
    color: #333333;
    font-size: 30px;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
}

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

h3.event-title {
    padding-bottom: 3px;
}

a.ev-title-link {
    color: #9CC827;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    text-transform: none;
    word-wrap: break-word;
}

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

.event-content {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #434343;
}
.event-content br {
    display: none;
}
.event-content .row {
    margin-bottom: 0px !important;
}
.event-content div[class^="col-md"] {
    margin-bottom: 0px !important;
}



/* About - Business - Admission */

.about-contact-more-wrap {
    background: #393536;
    margin-top: 90px;
    padding: 50px 0px 60px;
}

.about-contact-more-wrap * {
    color: #fff;
}

.about-contact-more-wrap h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

#about-section-wrap ul,
#contact-section-wrap ul {
    padding: 0px;
    margin: 0px;
    margin-bottom: 30px;
}

#about-section-wrap ul li,
#contact-section-wrap ul li {
    list-style: none;
    padding-left: 20px;
    padding-bottom: 0px;
    display: block;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 16px;
}

#about-section-wrap ul li a,
#contact-section-wrap ul li a,
#about-section-wrap ul li a span,
#contact-section-wrap ul li a span {
    color: #E5642A;
}

#about-section-wrap ul li:before,
#contact-section-wrap ul li:before {
    content: "";
    display: block;
    position: relative;
    width: 8px;
    height: 8px;
    cursor: pointer;
    background: #848484;
    border: none;
    border-radius: 5px;
    top: 0.8em;
    right: 20px;
}

#contact-map-wrap {
    margin-top: 20px;
}

#map-section-wrap iframe {
    width: 100%;
}


/*--------------------------------------------------------
                CSS Styles for Inner Pages
--------------------------------------------------------*/


/* .poster-row */

.poster-row img{
    width: 200px;
    height: 290px !important;
    object-fit: cover;
    margin: 0 auto;
}

.poster-row button {
    display: block;
    margin: 10px auto 0;
}


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



/*--------------------------------------------------------
                       Top Footer
--------------------------------------------------------*/
.top-footer {
    position: relative;
    max-width: 100%;
    padding: 50px 0px 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem 30px;
}
.top-footer:before {
    content: '';
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    background: #393536;
    position: absolute;
    z-index: -1;
    display: block;
}
.top-footer * {
    color: #fff;
}
.top-footer a:not(.simple-button-plugin) {
    color: #9CC827;
}
.top-footer ul {
    margin: 0;
    padding: 0;
}
.top-footer ul li {
    list-style: none;
}
.top-footer>*:not(*:first-child) {
    margin-left: auto;
}
.footer-top-right {
    text-align: center;
}


    @media (max-width: 767px) {
        .top-footer {
            display: block;
            text-align: left;
            padding: 50px 15px;
            width: 100%;
        }
        .footer-top-right {
            text-align: left;
        }
    }   



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

footer#main-footer {
    background: #9CC827;
    padding: 35px 0px;
}

footer#main-footer p {
    color: #F1F1F1;
    font-size: 16px;
    font-family: "Poppins", 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: "Poppins", sans-serif;
    font-weight: 700;
}

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

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

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


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

.grid-slideshow-content {
    background: transparent;
    margin-left: 0px;
    padding: 0px 15px;
}

.grid-bottom-featured-wrap {
    background-image: none;
}

.grid-bottom-featured-wrap-h2 {
    color: #527785;
    margin-bottom: 0px;
}

.grid-bottom-featured-wrap-p {
    color: #323233;
}

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


/*--------------------------------------------------------------
                      Modal Member Login
--------------------------------------------------------------*/

.modal {
    overflow-y: visible;
}

.modal-dialog {
    max-width: 280px;
    margin: 50px auto;
}

.modal-header {
    text-align: center;
}

.modal-body {
    padding: 15px 23px;
}

.login-form input {
    width: 203px!important;
    height: 30px;
    margin: 0px auto;
    margin-bottom: 10px;
    padding: 0px 15px;
    margin-left: 15px;
    background: #fff;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: #9B9B9B;
    box-shadow: none !important;
    border: 1px solid #CCCCCC;
    border-radius: 18px;
}

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

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

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

.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) {
    .caption-wrapper {
        max-width: 970px;
    }
}

@media (min-width: 1000px) {

}

@media (min-width: 990px) and (max-width: 1199px) {
    .event-date-wrap {
        padding: 15% 5px;
    }
    #search-input {
        margin-bottom: 20px;
    }
}

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

@media (min-width: 768px) and (max-width: 990px) {
    #logo-wrap {
        padding-right: 0px;
    }
    #ev-calen-wrap {
        margin-left: 0px;
    }
    #ev-calen-wrap,
    #join-wrap,
    #donate-wrap,
    #store-wrap,
    #member-area-wrap {
        margin-bottom: 25px;
    }

    #search-input {
        max-width: 235px;
        margin-bottom: 20px;
    }
    #mobile-menu-col {
        top: 0px;
    }
    #featured-big-wrap .col-content-wrap a {
        font-size: 17px;
    }
    #featured-mini-wrap .col-content-wrap a {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    #logo-wrap {
        padding-right: 0px;
    }
    #right-side-wrap {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    #ev-calen-wrap {
        margin-left: 0px;
    }
    #ev-calen-wrap,
    #join-wrap,
    #donate-wrap,
    #store-wrap,
    #member-area-wrap {
        margin-bottom: 25px;
    }
    #ev-calen-wrap a,
    #join-wrap a,
    #donate-wrap a,
    #store-wrap a,
    #member-area-wrap a {
        font-size: 14px;
        padding: 10px 10px;
    }

    #featured-big-wrap {
        margin-bottom: 30px;
    }
    #featured-mini-wrap .col-content-wrap a {
        width: 100%;
        position: relative;
    }
    #featured-big-wrap .col-content-wrap img,
    #featured-mini-wrap .col-content-wrap img {
        width: 100% !important;
    }
    #fb-section-wrap {
        margin-top: 80px;
    }
    #admission-section-wrap,
    #business-section-wrap {
        margin-top: 25px;
    }
    #contact-map-wrap {
        margin-top: 60px;
    }
}

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

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

@media (max-width: 480px) {
    #logo-wrap {
        padding-right: 0px;
    }
    #right-side-wrap {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    #ev-calen-wrap {
        margin-left: 0px;
    }
    #ev-calen-wrap,
    #join-wrap,
    #donate-wrap,
    #store-wrap,
    #member-area-wrap {
        margin-bottom: 25px;
    }
    #ev-calen-wrap a,
    #join-wrap a,
    #donate-wrap a,
    #store-wrap a,
    #member-area-wrap a {
        font-size: 12px;
        padding: 10px 10px;
    }
    #featured-big-wrap .col-content-wrap a {
        width: 345px;
        font-size: 17px;
    }
}

@media (max-width: 355px) {
    #mobile-menu-col {
        top: 20px;
    }
}