*, *: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 {
    --gap: 1em;
    --page-width: 100vw;
    --side-margin: calc((100vw - var(--page-width)) / -2);
    --gray: #f2f2f2;
    --green: #336617;
    --green-light: #3e8f12;
    --header-height: 159px;
    --footer-height: 173px;
}

@media (min-width: 768px) {
     :root {
        --page-width: 765px;
    }
}

@media (min-width: 992px) {
     :root {
        --page-width: 985px;
    }
}

@media (min-width: 1201px) {
     :root {
        --page-width: 1185px;
    }
}



body {
	font-family: 'Muli', sans-serif;
	font-size: 15px;
    font-weight: 400;
	color: #2a2e38;
}
p {
    font-family: 'Muli', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #2a2e38;
}
    @media (max-width: 990px) {
        body, p {
            font-size: 16px;
        }
    }
p:empty { display: none; }
/*br + br { 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: 'Lato', sans-serif;
    font-weight: 900;
    color: #212c38;
	margin: 0px;
	padding: 0px;
    padding-bottom: 15px;
}
h1 a, h2 a, h3 a, h4 , h5 a {
    font-family: 'Latoo', sans-serif;
}

h1 {
    font-size: 30px;
    color: #212c38;
    font-weight: 900;
}
h2 {
    font-size: 26px;
    font-weight: 900;
}
h3 {
    font-size: 20px;
    color: #021C2B;
}
h4 {
    font-size: 17px;
}

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: var(--green);
	cursor: pointer;
    text-decoration: underline;
}
a:hover, 
a:focus {
	color: var(--green-light);
}
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);
}




#gm-canvas .background-row {
    left: unset;
    right: unset;
    width: unset;
}

.background-row {
    position: relative;
    padding-block: var(--gap);
    margin-bottom: var(--gap);
}

.background-row::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    background: var(--gray);
}

#subpage-main:has(.background-row:last-child) {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
    padding-bottom: 0;
}

#subpage-main>.background-row:last-child {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
}


/*--------------------------------------------------------
						HEADER
--------------------------------------------------------*/

#main-header {
    padding: 20px 0px 10px;
}
    @media (max-width: 480px) {
        #main-header {
        }
    }
#logo-wrap {
    padding-left: 0px;
}
    @media (min-width: 1000px) {
        #logo-wrap {
            padding-left: 0px;
        }
    }
#logo-wrap a {
	text-decoration: none;
}
.logo-wrap {
    display: inline-block;
    vertical-align: middle;
}
svg#main-logo {
    width: 245px;
    height: 90px;
    max-width: 100%;
}
#right-side-wrap {
    text-align: right;
    margin-top: 35px;
}



/*--------------------------------------------------------
					Search Bar
--------------------------------------------------------*/


/*--------------------------------------------------------
					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 - var(--header-height) - var(--footer-height));
	/*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#mms-main a {
    text-decoration: none;
}

#subpage-main
#mms-main {
	margin-bottom: 2.5em;
}
@media (max-width: 900px) {
	#subpage-main
	#mms-main {
		margin-bottom: 2em;
	}
}
/* @media (min-width: 767px) {    
    main:not(#homepage-main, #mms-main) .row {
        margin-bottom: 1em;
    }
} */

main>.row {
    position: relative;
    padding-block: var(--gap);
    /* padding-top: var(--gap); */
}

main:is(#subpage-main, #mms-main)>.row {
    padding-block: calc(var(--gap) / 4);
}

main:is(#subpage-main, #mms-main)>.row:first-child {
    padding-top: var(--gap);
}

main:is(#subpage-main, #mms-main)>.row:last-child {
    padding-bottom: var(--gap);
}

@media (max-width: 767px) {
    main {
        --gap: 1em;
    }
}

/* @media (max-width: 767px) {
    main:not(#homepage-main, #mms-main) div[class^="col-md"],
    main:not(#homepage-main, #mms-main) div[class*="col-md"] {
        margin-bottom: 1em;
    }
} */

@media (max-width: 990px) {
    main:is(#homepage-main, #subpage-main) > .row > .column:not(:first-child) {
        margin-top: var(--gap);
    }
}

/*^^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;
}
.carousel-control {
    margin: auto 0px;
}

#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: 35px;
    width: 35px;
    color: #fff;
    top: 0px;
    left: auto;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: 'Lato', sans-serif;
    background: rgba(28,53,12,0.5);
    vertical-align: middle;
    text-align: center;
    padding-right: 2px;
    border: 0px;
    border-radius: 0px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.carousel-control.right {
    height: 35px;
    width: 35px;
    color: #fff;
    top: 0px;
    left: auto;
    right: 0px;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: 'Lato', sans-serif;
    background: rgba(28,53,12,0.5);
    vertical-align: middle;
    text-align: center;
    padding-left: 2px;
    border: 0px;
    border-radius: 0px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
	@media (min-width: 768px) and (max-width: 990px) {
		.carousel-control.left, .carousel-control.right {
		    bottom: 40%;
		}
	}
    @media (max-width: 767px) {
        .carousel-control.left, .carousel-control.right {
		    height: 34px;
		    width: 34px;
		    bottom: 40%;
		}
    }

	@media (max-width: 480px) {
		.carousel-control.left, .carousel-control.right {
		    bottom: 60%;
		}
	}
.carousel-control img {
    width: 7px;
    height: 15px;
    margin-top: 5px;
}
	@media (max-width: 767px) {
        .carousel-control img {
		    margin-top: 4px;
		}
    }


.caption-wrapper {
    max-width: 1170px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}
.caption-inside-wrap {
    background: rgba(28, 53, 12, 0.75);
    padding: 10px 20px;
}
	@media (max-width: 767px) {
		.caption-inside-wrap {
		    background: transparent;
		    padding: 10px 0px;
		}
	}
.carousel-caption {
    position: absolute;
    z-index: 100;
    background: transparent;
    left: auto;
    top: auto;
    right: 0px;
    bottom: 0px;
    width: 100%;
    text-align: left;
    text-shadow: none;
    padding-top: 0px;
    padding-bottom: 0px;
}
	@media (max-width: 767px) {
		.carousel-caption {
			background: rgba(28, 53, 12, 0.9);
		    display: block;
		    position: static;
		    width: 100%;
		    height: auto !important;
		    border: none;
		}
	}
	

.carousel-caption p.caption-text {
    font-size: 26px;
    font-weight: bold;
    font-family: 'Lato', sans-serif;
    color: #fff;
    display: block;
    text-align: left;
    margin-bottom: 0px;
    word-wrap: break-word;
    overflow: hidden;
    max-height: 1.25em;
    line-height: normal;
}
    @media (max-width: 767px) {
        .carousel-caption p.caption-text {
            max-height: 1.25em !important;
        }
    }
    @media (max-width: 560px) {
        .carousel-caption p.caption-text {
            max-height: 2.25em !important;
        }
    }
    @media (max-width: 480px) {
        .carousel-caption p.caption-text {
            max-height: 2.35em !important;
        }
    }
    @media (max-width: 353px) {
        .carousel-caption p.caption-text {
            max-height: 2.5em !important;
            font-size: 24px;
        }
    }

.carousel-caption p.alt-text {
    font-size: 16px;
    font-family: 'Muli', sans-serif;
    color: #fff;
    margin-bottom: 23px;
    text-align: left;
    display: inline-block;
    word-wrap: break-word;
    overflow: hidden;
    max-height: 1.3em;
    line-height: 22px;
}
    @media (max-width: 767px) {
        .carousel-caption p.alt-text {
            max-height: 2.7em !important;
        }
    }
    @media (max-width: 560px) {
        .carousel-caption p.alt-text {
            max-height: 4.25em !important;
        }
    }
    @media (max-width: 480px) {
        .carousel-caption p.alt-text {
            max-height: 4.1em !important;
        }
    }
    @media (max-width: 353px) {
        .carousel-caption p.alt-text {
            max-height: 5.5em !important;
        }
    }
.carousel-caption a {
    display: none;
}
.slideshow-wrap a:hover {
    color: #fff; 
    text-decoration: none;
}

.carousel-indicators {
    bottom: 8px;
    text-align: left;
    z-index: 102;
    width: 100%;
    max-width: 1170px;
    margin: auto;
    left: 0;
    right: 0;
    padding-left: 27px;
}
    @media (max-width: 767px) {
        .carousel-indicators {
            bottom: 5px;
    		padding-left: 7px;
        }
    }
.carousel-indicators li {
    width: 13px;
    height: 13px;
    background: #fff;
    border: 1px solid #c7cfd3;
    border-radius: 20px;
    margin: 0 auto;
    margin-left: 8px;
}
.carousel-indicators .active {
    width: 13px;
    height: 13px;
    background: #336617;
    border: 1px solid #c7cfd3;
    border-radius: 20px;
    margin-left: 8px;
}


/*----------------End Slideshow------*/

/*--------------------------------------------------------
					News and Events Feeds
--------------------------------------------------------*/

/*--------------------------------------------------------
					Index / Home Page
--------------------------------------------------------*/

.btn-wrap {
    margin-top: 10px;
    margin-bottom: 40px;
}
.btn-wrap a {
    background: #336617;
    border: 1px solid #336617;
    color: #fff;
    border-radius: 1px;
    font-size: 15px;
    font-family: 'Muli', sans-serif;
    font-weight: 700;
    padding: 7px 19px 8px 16px;
    text-decoration: none;
    text-align: center;
}
.btn-wrap a:hover, .btn-wrap a:focus {
    background: #1c350c;
    border: 1px solid #1c350c;
}
.btn-wrap a:after {
    content: url(../images/btn-icon.png);
    width: 14px;
    height: 12px;
    display: inline-block;
    padding-left: 5px;
    position: relative;
    top: 2px;
}


/* Welcome Message */

.welcome-ouside-wrap {
    background: #f2f2f2;
    margin-bottom: 50px;
}
#welcome-section-wrap {
    padding: 50px 0px 40px;
}
#welcome-section-wrap p {
    line-height: 22px;
    margin-bottom: 25px;
}
#welcome-section-wrap p:last-child {
    margin-bottom: 0px;
}


/* News Section */

#news-section-wrap {
    margin-bottom: 50px;
}
	@media (max-width: 580px) {
		#news-section-wrap {
		    margin-bottom: 0px;
		}
	}
#news-inside-wrap .column:nth-child(2) {
    border-left: 1px solid #d9dadd;
    border-right: 1px solid #d9dadd;
}
	@media (max-width: 580px) {
		#news-inside-wrap .column:nth-child(2) {
		    border-left: 0px;
		    border-right: 0px;
		    border-top: 1px solid #d9dadd;
		    border-bottom: 1px solid #d9dadd;
		    padding-top: 20px;
		    margin-bottom: 10px;
		}
		.news-item {
		    margin-bottom: 40px;
		}
	}
.news-month {
    text-align: center;
    padding-bottom: 15px;
}
a.news-title-link {
    font-size: 20px;
    font-weight: 900;
    color: #212c38;
    font-family: 'Lato', sans-serif;
}
	@media (min-width: 768px) and (max-width: 990px) {
		a.news-title-link {
		    font-size: 18px;
		}
	}
	@media (min-width: 580px) and (max-width: 767px) {
		a.news-title-link {
		    font-size: 18px;
		}
	}
a.news-title-link:hover {
    color: #1c350c;
    text-decoration: none;
}
.news-date {
    font-size: 15px;
    color: #2a2e38;
    font-family: 'Muli', sans-serif;
}
    @media (max-width: 990px) {
        .news-date {
            font-size: 16px;
        }
    }
.news-btn {
    margin-top: 25px;
    text-align: center;
}
.news-btn a {
    background: #336617;
    border: 1px solid #336617;
    color: #fff;
    border-radius: 1px;
    font-size: 15px;
    font-family: 'Muli', sans-serif;
    font-weight: 700;
    padding: 7px 19px 8px 16px;
    text-decoration: none;
    text-align: center;
}
.news-btn a:hover {
    background: #1c350c;
    border: 1px solid #1c350c;
}
.news-btn a:after {
    content: url(../images/btn-icon.png);
    width: 14px;
    height: 12px;
    display: inline-block;
    padding-left: 5px;
    position: relative;
    top: 2px;
}




#event-login-fb-wrap {
    margin-top: 20px;
    margin-bottom: 20px;
}


/* Upcoming Events */

#events-section-wrap h2 {
    padding-bottom: 25px;
}
.event-content {
    padding-bottom: 30px;
    cursor: pointer;
}
.event-date-wrap {
    background: #fff;
    border: 1px solid #87b36b;
    text-transform: uppercase;
    font-size: 20px;
    text-align: center;
    width: 20%;
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
    max-width: 51px;
    border-radius: 1px;
    padding: 4px 0px;
}
.event-month {
    color: #4c5360;
    padding-bottom: 0px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 15px;
}
.event-date {
    color: #4c5360;
    padding-bottom: 0px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
}
.event-details-wrap {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 100px);
    width: -webkit-calc(100% - 100px);
    width: -moz-calc(100% - 100px);
    margin-top: -5px;
}
#event-container {
    padding-left: 0px;
    margin-left: -15px;
}

h3.event-title {
    font-weight: normal;
    padding: 0;
    text-transform: none;
}
.event-item.ev-highlight a.ev-title-link {
    text-decoration: underline;
}
a.ev-title-link {
    color: #2a2e38;
    font-size: 17px;
    font-weight: 600;
    font-family: 'Muli', sans-serif;
    text-decoration: underline;
}
.event-item.ev-highlight a.ev-title-link:hover, a.ev-title-link:hover {
    color: #1c350c;
    text-decoration: none;
}
p.event-blurb {
    padding-top: 10px;
    color: #3b4256;
    line-height: 21px;
}


/* Member Login */

#memberlogin-section-wrap form.login-form {
    color: #2a2e38;
    font-size: 16px;
    font-family: 'Muli', sans-serif;
}
#memberlogin-section-wrap input {
    width: 100% !important;
    height: 40px;
    border-radius: 1px;
    margin: 0px auto;
    margin-bottom: 18px;
    border: 1px solid #a0a8bd;
    padding: 10px;
    margin-top: 2px;
}
#memberlogin-section-wrap .login-form a {
    margin-bottom: 15px;
    display: block;
    color: #336617;
    font-size: 15px;
    position: relative;
    right: 0px;
    top: 0px;
    margin: 0px;
    font-style: italic;
    font-family: 'Muli', sans-serif;
    text-decoration: underline;
}
#memberlogin-section-wrap .login-form  a:hover {
    color: #008EB4;
    text-decoration: none;
}
#memberlogin-section-wrap .login-form input[type="submit"] {
    background: #336617;
    color: #fff;
    border: 1px solid #336617 !important;
    border-radius: 2px !important;
    padding: 0px;
    width: 75px !important;
    margin-top: 15px;
    font-size: 16px;
    font-family: 'Muli', sans-serif;
    font-weight: 600;
}
#memberlogin-section-wrap .login-form input[type="submit"]:hover {
    background: #1c350c;
    border: 1px solid #1c350c !important;
}





/*--------------------------------------------------------
				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: "›" ;
}


/*--------------------------------------------------------------
                        Modal Log In
--------------------------------------------------------------*/
.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: 15px;
    color: #9B9B9B;
    box-shadow: none !important;
    border: 1px solid #CCCCCC;
    border-radius: 18px;
}
.login-form input[type="submit"] {
    background: #336617;
    border: 1px solid #336617;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 18px 7px;
    border-radius: 2px;
    font-family: 'Nunito Sans', sans-serif;
    text-align: center;
    margin-left: 10px;
    outline: none;
    text-decoration: none;
    padding: 6px 20px;
    height: auto;
}
.login-form input[type="submit"]:hover, .login-form input[type="submit"]:focus {
    background: #1c350c;
    border: 1px solid #1c350c;
    text-decoration: none;
}
.login-form a {
    color: #336617;
    font-size: 15px;
    font-family: 'Lato', sans-serif;
    display: block;
    margin-left: 15px;
    padding-bottom: 10px;
    text-decoration: underline;
}
.login-form a:hover, .login-form a:focus {
    color: #1c350c;
}
.login-form input:last-of-type{
    width: 100px;
    margin: none;
}
h4.modal-title {
    color: #212c38;
    font-size: 20px;
    line-height: normal;
    padding: 0;
}



/*--------------------------------------------------------
						Footer
--------------------------------------------------------*/


footer#main-footer {
    background: #336617;
    padding: 38px 0px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-top: 30px;
}
footer#main-footer a {
    color: #fff;
    text-decoration: underline;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
}
footer#main-footer p {
    color: #fff;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    margin-bottom: 0px;
}
footer#main-footer .text-right {
    padding-top: 10px;
}

.footer-social-media-wrap {
    display: inline-block;
}
.footer-social-media-wrap ul {
    float: left;
    margin: 0;
    padding: 0;
    text-align: right;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.footer-social-media-wrap ul>li {
    float: left;
    position: relative;
    display: block;
    margin-right: 5px;
}
.footer-social-media-wrap ul>li:last-child {
    margin: 0px;
}
.footer-social-media-wrap svg {
    width: 30px;
    height: 30px;
    margin-right: 3px;
}
.footer-social-media-wrap ul>li:last-child svg {
    margin: 0px;
}
.privacy-wrap {
    display: inline-block;
    width: 100%;
}




/*--------------------------------------------------------
						MMS Styling
--------------------------------------------------------*/


#member_menu_wrap_5 .navbar {
    min-height: unset;
}

#admin_menu_wrap_5 .navbar {
    min-height: unset;
}



/*----------- MEDIA QUERY --------------------*/


@media (min-width: 1200px) {

}

@media (min-width: 1000px) {
	.container {}


}

@media (min-width: 990px) and (max-width: 1199px) {
	.container {}

}



@media (min-width: 768px) and (max-width: 990px) {
	.container {}


}


@media (max-width: 767px) {
	.container {}

    #featured-link-wrap .column {
        margin-bottom: 20px;
    }
	#events-section-wrap {
	    margin-top: 40px;
	}
    #fb-section-wrap {
	    text-align: center;
	    margin-bottom: 10px;
	    margin-top: 30px;
	}
	#footer-credit-wrap .text-left, #footer-credit-wrap .text-right {
        text-align: center;
    }
    #footer-credit-wrap .text-left {
	    margin-bottom: 12px;
	}
}


@media (min-width: 580px) and (max-width: 767px) {
	#news-inside-wrap .col-xs-12.column {
	    width: 33.33333333%;
	}
}


@media (max-width: 480px) {
    .container {}

}


/* 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) {  

}