/*
// VALUE:COLOR_1:var(--color-1)
// VALUE:COLOR_2:var(--color-2)
// VALUE:COLOR_3:var(--color-3)
*/


/*--------------------------------------------------------
	FONT ASSIGNMENTS
--------------------------------------------------------*/

html {
    --color-1: #000000;
    --color-2: #DD9933;
    --color-3: #fec013;
    font-size: 18px;
    overflow-x: hidden;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--color-1);
    font-size: inherit;
    /* Overwrites BS default */
}

p {
    margin-bottom: .5em;
}


/*--------------------------------------------------------
	H1 - H6
--------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    margin-bottom: .25em;
}

#homepage-main h1,
#homepage-main h2,
#homepage-main h3,
#homepage-main h4,
#homepage-main h5,
#homepage-main h6 {
    text-transform: uppercase;
}

h1 {
    font-size: 48px;
    color: ;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 28px;
}

h6 {
    font-size: 25px;
}


/*--------------------------------------------------------
	LINKS
--------------------------------------------------------*/

a {
    color: var(--color-2);
    transition: color .125s ease-in-out;
}

a:hover,
a:focus {
    color: var(--color-3);
}

a.view {
    color: #fff;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 5px;
    border: 1px solid #fff;
    padding: 10px 85px;
    font-style: normal;
    font-family: 'Oswald', sans-serif;
}

a.view:hover,
a.view:focus {
    text-decoration: none;
    background: #fff;
    color: var(--color-1);
}

.more-info {
    text-transform: uppercase;
    color: var(--color-2);
    /* REPLACE:COLOR_2 */
    font-size: 24px;
    font-weight: bold;
    display: block;
    margin: 35px auto 0;
}

.more-info::before {
    content: '→';
    display: inline-block;
    margin-right: .5ch;
    top: -.175em;
    position: relative;
}


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


/*  Wrappers
    *.wrapper acts as a more symantic stand in for <container><row><col-md-12></col-md-12></row></container> in sections of this build that don't require stacking columns 
 */

.wrapper {
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
    position: relative;
    height: inherit;
    padding-left: 15px;
    padding-right: 15px;
}

.full-width {
    /* Make an element span the width of the viewport */
    --side-margin: calc((100vw - var(--page-width) + 13px) / -2);
    /* 13px to compensate for width of scrollbar */
    position: relative;
    left: var(--side-margin);
    right: var(--side-margin);
    width: calc(100vw + 13px);
}

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

@media (min-width:992px) {
     :root {
        --page-width: 970px;
    }
    .wrapper {
        width: 970px;
    }
}

@media (min-width:1200px) {
     :root {
        --page-width: 1170px;
    }
    .wrapper {
        width: 1170px;
    }
}

@media (max-width: 990px) {
    .container,
    .wrapper {
        /* Extra wiggle room at a breakpoint that needs it  */
        width: 100%;
    }
    .full-width {
        --side-margin: unset;
        left: unset;
        right: unset;
        width: unset;
    }
}

.row-background {
    color: white;
    position: relative;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.row-background::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    display: block;
    background-color: var(--color-1);
}

.row-background * {
    color: white;
}

@media (max-width: 767px) {
    .row-background {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}


/* Slideshows defaults */

.carousel {
    font-size: 20px;
}


/*--------------------------------------------------------
	Custom Fonts
--------------------------------------------------------*/


/* @font-face {
    font-family: 'Letter Gothic Std';
    font-style: normal;
    font-weight: normal;
    src: local('Letter Gothic Std'), url('LetterGothicStd.woff') format('woff');
} */


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

#top-header-wrap {
    position: relative;
    min-height: 100vh;
    background: none;
}

#top-header-wrap>img {
    position: absolute;
    z-index: -1;
    width: 100% !important;
    height: 100%;
    max-height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
}

.top-opacity {
    position: relative;
    min-height: inherit;
    padding-top: 80px;
    text-align: center;
}

.top-opacity::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: .3;
    z-index: -1;
    background: var(--color-1);
}

.header-social-media {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    max-width: 100%;
    margin: 0 auto;
}
.header-social-media li {
    margin-right: 30px;
}
.header-social-media li:last-child {
    margin-right: 0px;
}

.header-social-media a {
    background: var(--color-2);
    transition: background .125s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.header-social-media a:hover,
.header-social-media a:focus {
    background: var(--color-3);
}

.header-social-media rect {
    display: none;
}


.login-member-wrap {
    margin-top: 1.2em;
}
.login-member-wrap .button-link {
    background: #e74c3c;
    color: #fff;
    padding: 0.5em 1em;
    text-decoration: none;
}
.login-member-wrap .button-link:hover {
    background: var(--color-2);
}



#logo-wrap svg,
footer svg {
    width: 250px;
    margin-top: 1rem;
}

#logo-wrap path {
    fill: white;
}

#logo-wrap img {
    margin: 1rem auto;
    width: 200px;
}
#footer-logo img {
    margin: 1rem auto;
    width: 180px;
}

#logo-wrap g[fill="#422F84"] {
    fill: white;
}

#top-featured-section {
    color: #fff;
    padding: 60px 0px;
    font-size: 20px;
    margin-bottom: 123px;
}

#top-featured-section h1 {
    font-size: 80px;
    padding-bottom: 35px;
}

@media (max-width: 767px) {
    #top-featured-section h1 {
        font-size: 50px;
    }
}

.search-wrap svg {
    width: 28px;
    height: 28px;
}


/*------------------------------------------------------------------------------------
    Desktop menu
--------------------------------------------------------------------------------------*/

#main-menu {
    position: relative;
}

#main-menu::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: .7;
    background: var(--color-2);
    z-index: -1;
}

#main-menu.fixed {
    background: var(--color-2);
    width: 100%;
    position: fixed;
    top: 0;
    bottom: unset;
    z-index: 10;
}

#nav_menu>ul {
    float: none;
    display: flex;
    justify-content: space-between;
}

#nav_menu::before,
#nav_menu::after,
#nav_menu>ul::before,
#nav_menu>ul::after {
    content: none;
}

#nav_menu .nav>li>a {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    height: 116px;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
}

#nav_menu .nav>li a {
    color: #fff;
    transition: color .125s ease-in-out, background .125s ease-in-out;
}

#nav_menu .nav>li a:hover,
#nav_menu .nav>li a:focus {
    background: #fff;
    color: var(--color-2);
}

.search-wrap path {
    fill: white;
    transition: fill .125s ease-in-out;
}

.search-wrap a:hover path,
.search-wrap a:focus path {
    fill: var(--color-2);
}


/* Dropdowns */

#nav_menu .dropdown-menu {
    background: var(--color-2);
    border: 0;
    border-radius: 0px;
    padding: 0;
}

#nav_menu .dropdown-menu li {
    width: 100%;
    position: relative;
}

#nav_menu .dropdown-menu>li>a {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    padding-top: 15px;
    padding-bottom: 15px;
}


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

.modal-open .modal {
    display: flex;
}

.modal-dialog {
    max-width: 100%;
    font-size: 16px;
    margin: auto;
    width: 300px;
}

.modal-content {
    margin-top: 20px;
    border-radius: 0;
}

.modal-header,
.modal-body {
    padding: .5rem 1rem;
}

.modal-header .close {
    opacity: 1;
    z-index: 1;
    position: relative;
}

.modal h2 {
    font-size: 24px;
    text-transform: none;
}

.modal-header,
.modal-body {
    padding: 1em 2ch;
}

.modal input[name="Username"],
.modal input[name="Password"] {
    width: 100%;
    padding-left: .25em;
    padding-right: .25em;
    margin-bottom: 0.5em;
    height: 2em;
    border: 1px solid rgba(68, 68, 68, .5);
}

.modal a {
    display: block;
    margin-bottom: .5em;
}


/*---------------------------------------------
        Mobile Menu
---------------------------------------------*/


/* Toggle*/

#mobile-toggle {
    border: none;
    background: var(--color-2);
    width: 100%;
    display: flex;
    justify-content: flex-end;
    transition: background .125s ease-in-out;
    position: sticky;
    top: 0;
    z-index: 10;
}

#mobile-toggle:hover,
#mobile-toggle:focus {
    background: var(--color-1);
    outline: none;
}

#mobile-menu .mobileMenuTrigger {
    background: none;
    border: none;
    font-size: 1.5em;
}

#burger {
    width: 40px;
    height: 40px;
}

#mobileMenuWrapper {
    position: fixed;
    top: 0px;
    bottom: 0px;
    z-index: 200;
    overflow-y: auto;
    overflow-x: hidden;
    left: -120%;
    width: 300px;
    background: white;
    box-shadow: 0 3px 14px -2px rgba(0, 0, 0, .4);
    transition: left 300ms cubic-bezier(1.000, 0.010, 0.0, 1.000);
    padding: 1rem;
}

#mobileMenuWrapper.open {
    left: 0;
    bottom: 0;
}

#mobileMenuWrapper ul {
    padding: 0;
    list-style-type: none;
}

#mobileMenuWrapper .mDropdown {
    display: none;
}

#mobileMenuWrapper .mDropdown.open {
    display: block;
}

#mobile-menu li {
    padding: .25rem 0;
}

#mobile-menu a {
    display: inline-block;
    width: 100%;
}

#mobile-menu>#triggerClose {
    text-align: right;
}

#mobile-menu .mobileMenuTrigger {
    background: none;
    border: none;
    font-size: 1.5em;
}


/*--------------------------------------------------------
			HOME FEATURED CSS
--------------------------------------------------------*/


/* Home Featured Events and News */

#home-featured-section {
    margin-top: 4px;
}

#home-featured-section .column,
#featured-news-wrap .column {
    min-height: 50vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding-top: 1rem;
    padding-bottom: 1rem;
    overflow: hidden;
}

@media (max-width: 1200px) {
    #home-featured-section .column {
        min-height: 40vh;
    }
}

@media (max-width: 990px) {
    #home-featured-section .column {
        min-height: 30vh;
    }
}

@media (max-width: 767px) {
    #home-featured-section .column+.column {
        /*border-top: 4px solid white;*/
        border-left: none;
    }
}

#home-featured-section .column::before,
#featured-news-wrap .column::before {
    /* Overlay for background photos */
    content: '';
    background: black;
    opacity: .4;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

#home-featured-section h2,
#featured-news-wrap h2,
#home-featured-section .icon,
#featured-news-wrap .icon,
#home-featured-section .view,
#featured-news-wrap .view {
    position: relative;
    z-index: 1;
}

#home-featured-section img:not(.icon),
#featured-news-wrap img:not(.icon) {
    width: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
}

@media (min-width: 991px) {
    #home-featured-section h2,
    #featured-news-wrap h2 {
        font-size: 72px;
    }
}


/* GPE fixes for Home Featured Section */

.gm-tools {
    position: relative;
    z-index: 3;
}

#featured-news-wrap .gm-editable-region .icon {
    margin: 0 auto 3em;
}


/* Home What's Happening (News) */

#featured-news-wrap .icon {
    width: 200px;
    margin-bottom: 1em;
}

@media (max-width: 990px) {
    #featured-news-wrap .column {
        min-height: unset;
        overflow: hidden;
    }
    #featured-news-wrap .icon {
        width: 100px;
    }
}


/*--------------------------------------------------------
	INDEX / MAIN BODY
--------------------------------------------------------*/

#homepage-main {
    font-size: 24px;
    padding-top: 2em;
}

main:not(#homepage-main) {
    min-height: calc(100vh - 337.63px - 175.63px);
    min-height: calc(100vh - 175.63px);
    /* Remove header height from style to prevent shorter pages from flicker on scroll as documented in message #26 of #216962 */
    padding-top: 4rem;
    padding-bottom: 2rem;
}

@media(max-width: 990px) {
    main:not(#homepage-main) {
        padding-top: 3rem;
        padding-bottom: 1rem;
    }
}

@media(max-width: 767px) {
    main:not(#homepage-main) {
        padding-top: 2rem;
    }
}


/* Home Content */

.home-intro-section {
    color: #fff;
    padding: 255px 0px;
    font-size: 20px;
    text-align: center;
}

.home-intro-section h1 {
    font-size: 72px;
    color: #fff;
    padding-bottom: 70px;
}

.home-primary-section,
.home-secondary-section {
    padding: 80px 0px;
    text-align: center;
}

@media (max-width: 990px) {
    .home-primary-section,
    .home-secondary-section {
        padding: 50px 0px;
    }
}

@media (max-width: 767px) {
    .home-primary-section,
    .home-secondary-section {
        padding: 30px 0px;
    }
}

.home-primary-section h1,
.home-secondary-section h2 {
    text-transform: uppercase;
    font-size: 48px;
    padding-bottom: 35px;
    font-weight: bold;
    border-bottom: 1px solid rgba(124, 124, 124, 0.5);
    text-align: center;
    margin-bottom: 1em;
}

.home-secondary-section h2 {
    font-size: 42px;
}


/*---------- news_feed_pages function ----*/

div#news-button-container {
    margin: 10px 0px 0px 0px;
    text-align: right;
}

div#news-button-verbiage {
    margin-right: 10px;
    display: inline-block;
    color: #5DB2D7;
}

div#news-button-container:active {
    margin: 9px 0px 0px -1px;
    /* keeps buttons from jumping around when pressed*/
}

div.news-button {
    display: inline-block;
    padding: 5px 10px;
    background-color: #5DB2D7;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
    margin: 0px;
}

div.nb-number:hover {
    opacity: 0.7;
    /*buttons move toward backgound color when hovered over*/
    cursor: pointer;
}

div.nb-number:active {
    /* make buttons look like they are being pressed when clicked*/
    opacity: 0.6;
    border-width: 2px 0px 0px 2px;
}

div.nb-selected {
    /* style the selected button */
    opacity: 0.5;
}

div#nb-ellipsis-left,
div#nb-ellipsis-right {
    background-color: transparent;
    color: #5DB2D7;
    border: 0px;
    margin: 0px;
    padding: 5px;
    font-weight: bold;
}


/*---------- END: news_feed_pages ----*/


/*----------------------------------Primary-Content*/


/*--------------------------------------------------------
	CSS STYLE FOR INNER PAGES
--------------------------------------------------------*/


/*--------------------------------------------------------
	FOOTER
--------------------------------------------------------*/

footer {
    background: #ffffff;
    padding: 20px 0px 20px;
    text-align: center;
    font-size: 18px;
}


/*----------------------------
    MMS Member Icons Menu
------------------------------*/

@media (min-width: 1200px) {
    .nav-tabs li.dropdown {
        width: 190px;
    }
}

@media (min-width: 990px) and (max-width: 1200px) {
    .nav-tabs li.dropdown {
        width: 155px;
    }
}

@media (min-width: 767px) and (max-width: 990px) {
    .nav-tabs li.dropdown {
        width: 120px;
    }
}


#system-page [class*="-card"] > input:disabled {
    background: transparent;
}


/*------------------------------------------------------------------------------------
                                @Media and Sizes
--------------------------------------------------------------------------------------*/


/*------ Nav collapse @ Tablet size ------*/

@media (max-width: 991px) {
    .navbar-header {
        float: none;
    }
    .navbar-toggle {
        display: block;
    }
    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-nav {
        float: none!important;
        margin: 7.5px -15px;
    }
    .navbar-nav>li {
        float: none;
    }
    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    /* since 3.1.0 */
    .navbar-collapse.collapse.in {
        display: block!important;
    }
    .collapsing {
        overflow: hidden!important;
    }
}