/* 19 Alumni - Style Overwrite
****************************** */
/* Global */
.flex-row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;

}
.flex-col {
    display: flex;
    flex-basis: 0;
    flex-grow: 1;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* Header */
.structHead {
    padding: 0;
    box-shadow: 1px 1px 6px rgba(51,51,51,.6);
}
.structHead .header-left {
    flex: 1 1 33.33333333%;
    width: 33.33333333%;
    max-width: 33.33333333%;
}
.header-right {
    justify-content: flex-end;
}
.structHead .head-logo {
    padding: 15px 0;
}
.structHead .head-logo.mobile {
    display: none;
}
@media (max-width: 699px) {
    .structHead {
        padding: 0;
        z-index: 999;
    }
    .structHead .header-left {
        display: none;
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
    }
    .structHead .head-logo {
        text-align: center;
    }
    .header-right {
        justify-content: space-between;
        margin-top: 0;
        border: none;
        padding-right: 0;
    }
    .structHead .head-logo.mobile {
        display: block;
        order: 2;
    }
}

/* Header - Search */
.head-search--wrap {
    position: relative;
    display: flex;
}
.head-search--wrap .head-search {
    display: flex;
    padding: 0 20px;
    align-items: center;
}
.head-search--wrap .head-search .search-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
}
.head-search--wrap .head-search .search-toggle span.fas {
    font-size: 20px;
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.head-search--wrap .head-search--panel {
    display: none;
    transition: none;
    opacity: 1;
    z-index: 999;
    top: 50%;
    transform: translateY(-50%);
    right: 100%;
    left: auto;
    bottom: auto;
}
@media (max-width: 1023px) {
    .head-search--wrap .head-search--panel {
        top: 26%;
    }
    #siteSearchWindow  {
        margin-top: 13px;
    }
    .head-search--wrap .head-search {
        padding-left: 0;
        padding-right: 10px;
    }
}
@media (max-width: 699px) {
    .head-search--wrap {
        display: none;
    }
}

/* Header - Quick Links */
.head-quickLinks {
    display: flex;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 20px;
    font-size: 1.25rem;
    color: #000;
}
.head-quickLinks ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    height: 100%;
}
.head-quickLinks ul li {
    display: flex;
    justify-content: center;
    align-items: center;
}
.head-quickLinks ul li a {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 20px;
    font-size: 1.25rem;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #000;
    padding: 0 20px;
}
.head-quickLinks ul li a:hover {
    color: #b3ab69;
}
.head-quickLinks ul li.highlight a {
    color: #fff;
    background: #EEB211;
    padding: 0 25px;
}
.head-quickLinks ul li.highlight a:hover {
    color: #fff;
    background: #cc9600;
    padding: 0 25px;
}
@media (max-width: 1023px) {
    .head-quickLinks ul li a {
        font-size: 18px;
        font-size: 1.125rem;
        padding: 0 15px;
    }
}
@media (max-width: 870px) {
    .head-quickLinks ul li a {
        font-size: 16px;
        font-size: 1rem;
    }
}
@media (max-width: 699px) {
    .head-quickLinks {
        display: none;
    }
}
/* Header - Call to action */
.head-cta {
    display: none;
}
.head-cta a {
    text-transform: uppercase;
    font-size: 16px;
    font-size: 1rem;
    color: #545454;
    text-decoration: none;
    background: #b3a369;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}
.head-cta a:hover {
    background: #f5d580;
}
@media (max-width: 699px) {
    .head-cta {
        display: flex;
        order: 3;
    }
}

/* Header - Main Menu Toggle Btn */
.menu-toggle-wrap {
    display: flex;
    align-items: center;
    padding: 0 0 0 20px;
}
.menu-toggle-wrap .menu-toggle-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
}
.menu-toggle-wrap .menu-toggle-btn .hamburger-box {
    width: 50px;
    height: 28px;
}
.menu-toggle-wrap .menu-toggle-btn .hamburger-inner,
.menu-toggle-wrap .menu-toggle-btn .hamburger-inner::after,
.menu-toggle-wrap .menu-toggle-btn .hamburger-inner::before {
    height: 3px;
}
@media (max-width: 1023px) {
    .menu-toggle-wrap {
        padding-left: 10px;
    }
}
@media (max-width: 699px) {
    .menu-toggle-wrap {
        padding: 12px 0;
        order: 1;
    }
}

/* Main Menu */
.main-menu--wrap {
    /*display: none;*/
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 99;
}
.main-menu--wrap .flex-col {
    justify-content: flex-end;
    padding: 0;
}
.main-menu--inner {
    position: fixed;
    display: flex;
    flex-direction: column;
    width: 335px;
    background: #fff;
    border: 1px solid #999999;
    padding: 100px 45px 35px;
    z-index: 99999;
    top: 0;
    right: 0;
    height: 100%;
    transition: right 1.0s linear;
}
@media (max-width: 699px) {
    .main-menu--inner {
        /*position: absolute;*/
        width: 100%;
        /* margin: 0 -15px; */
    }
}

/* Main Menu -- Search */
.main-menu--search {
    display: none;
    position: relative;
}
.main-menu--search input {
    width: 100%;
    background: #e5e5e5;
    color: #a2a2a2;
    border: 1px solid #808080;
    border-radius: 10px;
    padding: 10px 50px 10px 10px;
}
.main-menu--search img[id*="imgbtnSearch"] {
    position: absolute;
    right: 0;
    top: 0;
    padding: 10px 15px;
}
@media (max-width: 699px) {
    .main-menu--search {
        display: block;
        padding-bottom: 20px;
    }
}

/* Main Menu -- Nav */
.main-menu--nav {
    display: block;
}
.main-menu--nav ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
.main-menu--nav > ul > li {
    /* display: flex;
    justify-content: space-between; */
    border-bottom: 1px solid #a0a6ac;
}
.main-menu--nav ul li a {
    display: flex;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 20px;
    font-size: 1.25rem;
    color: #000;
    text-decoration: none;
    padding: 10px 5px;
    margin-right: 0 !important;
}
.main-menu--nav ul li a:hover {
    text-decoration: underline;
}
.main-menu--nav ul li li a {
    font-size: 0.85rem;
    padding: 3px 5px;
    color: #a2a2a2;
    font-weight: 400;
}
.main-menu--nav ul li.has-subnav.active ul {
    padding-bottom: 10px;
}
.main-menu--nav ul li .accordion-btn-wrap {
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 100% !important;
}
.main-menu--nav ul li .accordion-btn-wrap .accordion-btn {
    height: 45px !important;
    width: 100% !important;
}
.main-menu--nav ul li .accordion-btn-wrap .accordion-btn button {
    border: none;
    background: none;
    padding: 0;
    color: #000;
    width: 100%;
    height: 100%;
    text-align: right;
}
.main-menu--nav ul li .accordion-btn-wrap .accordion-btn button span {
    color: #000;
    font-size: 14px;
    padding-right: 5px;
}

/* Main Menu -- Social */
.main-menu--wrap .main-menu--social {
    padding-left: 5px;
}
.main-menu--wrap .main-menu--social .social-label {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 500;
    color: #EEB211;
    padding: 10px 0 6px;
}
.main-menu--wrap .main-menu--social ul.social {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}
.main-menu--wrap .main-menu--social ul.social li {
    display: flex;
    padding-right: 20px;
}
.main-menu--wrap .main-menu--social ul.social li a {
    display: flex;
    text-decoration: none;
    padding: 0;
    height: 40px;
    width: 40px;
    background: #545454;
    color: #fff;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.main-menu--wrap .main-menu--social ul.social li a:hover {
    color: #EEB211;
    background: #fff;
}

/* Main */
.home .structBody {
    float: left;
    width: 100%;
    margin-top: 133px;
}

/* Footer */
footer {
    background: #000;
    float: left;
    width: 100%;
}
.footer-left {
    flex-direction: column;
    flex: 1 1 66.66666667%;
    width: 66.66666667%;
    max-width: 66.66666667%;
}
.footer-right {
    flex: 1 1 33.33333333%;
    width: 33.33333333%;
    max-width: 33.33333333%;
    justify-content: flex-end;
}
@media (max-width: 699px) {
    .footer-left,
    .footer-right {
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
        justify-content: center;
        align-items: center;
    }
}
.footer-links {
    display: flex;
    margin-bottom: 20px;
}
.footer-links ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid #fff;
}
.footer-links ul li {
    display: flex;
}
.footer-links ul li a {
    display: flex;
    flex: 1 1 auto;
    padding: 20px 15px;
    color: #b3a369;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500;
}
.footer-links ul li a:hover {
    text-decoration: underline;
}
.footer-links ul li:first-child a {
    padding-left: 0;
}
@media (max-width: 699px) {
    .footer-links {
        width: 100%;
        justify-content: center;
        align-items: center;
        border-bottom: 1px solid #fff;
        padding-bottom: 10px;
    }
    .footer-links ul {
        flex-direction: column;
        border: none;
    }
    .footer-links ul li a {
        justify-content: center;
        align-items: center;
        padding: 12px 15px;
    }
}
.footer-social {
    display: flex;
    justify-content: flex-start;
}
.loggedin .footer-social .HoverToolBar2 {
    display: flex;
}
.footer-social ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-social ul li {
    display: flex;
}
.footer-social ul li a {
    display: flex;
    flex: 1 1 auto;
    text-decoration: none;
}
.footer-social ul.social {
    justify-content: flex-start;
    margin-right: 50px;
    align-items: center;
}
.footer-social ul.social li {
    margin: 0 10px 0 0;
}
.footer-social ul.social li a {
    height: 40px;
    width: 40px;
    background: #545454;
    color: #e5e5e5;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
}
.footer-social ul.social li a:hover {
    color: #e5e5e5;
    background: #b3a369;
}
@media (max-width: 699px) {
    .footer-social {
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .footer-social ul.social {
        margin-right: 0;
    }
}
.footer-social ul.app-stores {
    justify-content: center;
}
.footer-social ul.app-stores li a {
    padding: 0 5px;
}
@media (max-width: 699px) {
    .footer-social ul.app-stores {
        align-items: center;
        flex-direction: column;
        padding: 25px 0;
    }
    .footer-social ul.app-stores li:first-child {
        padding-bottom: 20px;
    }
}
.footer-brand {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
}
.footer-brand .footer-logo {
    margin-bottom: 30px;
}
.footer-brand address {
    text-align: right;
    font-style: normal;
}
.footer-brand address a {
    text-decoration: none;
}
.footer-brand address a:hover {
    text-decoration: underline;
    color: #EEB211;
}
@media (max-width: 699px) {
    .footer-brand {
        justify-content: center;
        align-items: center;
    }
    .footer-brand .footer-logo {
        margin: 10px 0;
        display: flex;
    }
    .footer-brand address {
        text-align: center;
    }
}

/* Video Background */
.video-module {
    position: relative;
}

.video-module .video-wrap {
    position: relative;
    overflow: hidden;
    /* height: 360px; */
    padding-bottom: 25%;
}
@media (max-width: 699px) {
    .video-module .video-wrap {
        padding-bottom: 50%;
    }
}
@media (max-width: 560px) {
    .video-module .video-wrap {
        padding-bottom: 60%;
    }
}

.video-module .text,
.banner .text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    z-index: 9;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner .text {
    height: 100%;
}
.video-module .text .text-wrap,
.banner .text .text-wrap {
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.video-module .text h1,
.video-module .text h2,
.banner .text h1,
.banner .text h2 {
    font-family: Arial, sans-serif;
    font-size: 2em;
    font-weight: lighter;
    text-transform: uppercase;
    text-align: center;
    margin: 0 auto;
    line-height: 1.25;
    padding: 1em;
    color: #fff;
    width: 80%;
    max-width: 750px;
    text-shadow: 1px 1px #3c3c3c;
}
.video-module .text .button,
.video-module .text .banner__button,
.banner .text .button,
.banner .text .banner__button {
    background: #b3a369;
    color: #545454;
    border: none;
    padding: 1em 2em;
    font-weight: bold;
    cursor: pointer;
    margin: 10px auto;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
}
.video-module .text .button:hover,
.video-module .text .banner__button:hover,
.banner .text .button:hover,
.banner .text .banner_button:hover {
    background: #cc9600;
}
@media (max-width: 1023px) {
    .video-module .text h1,
    .video-module .text h2,
    .banner .text h1,
    .banner .text h2 {
        font-size: 20px;
        font-size: 1.25rem;
    }
    .video-module .text .button,
    .video-module .text .banner__button,
    .banner .text .button,
    .banner .text .banner__button {
        padding: 12px 15px;
    }
}
@media (max-width: 560px) {
    .video-module .text .button,
    .video-module .text .banner__button,
    .banner .text .button,
    .banner .text .banner__button {
        padding: 10px 15px;
        font-size: 14px;
    }
}
@media only screen and (max-width: 699px) {
    .video-module .text h1,
    .video-module .text h2,
    .banner .text h1,
    .banner .text h2 {
        font-size: 16px;
        font-size: 1rem;
    }
}

/* .video-module .gradientOverlay {
    display: none;
} */
/* .video-module .gradientOverlay {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.2);
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.75) 100%);
} */

.video-module .ftImg {
    position: relative;
    z-index: 1;
}

/* Video background */
.videobg {
    position: absolute;
    width: 100%;
    /* Set video container element width here */
    height: 100%;
    /* Set video container element height here */
    overflow: hidden;
    background: #111;
    /* bg color, if video is not high enough */
    top: 0;
    left: 0;
    z-index: 2;
}

/* horizontally center the video */
.videobg-width {
    position: absolute;
    width: 100%;
    /* Change width value to cover more area*/
    height: 100%;
    left: -9999px;
    right: -9999px;
    margin: auto;
}

@media (max-width: 699px) {
    .videobg-width {
        width: auto;
        max-width: 250%;
    }
}

/* set video aspect ratio and vertically center */
.videobg-aspect {
    position: absolute;
    width: 100%;
    height: 0;
    top: -9999px;
    bottom: -9999px;
    margin: auto;
    padding-bottom: 56.25%;
    /* 16:9 ratio */
    overflow: hidden;
}

.videobg-make-height {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

#inner-wrap .videobg-hide-controls {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    position: relative;
    height: 100%;
    width: 100%;
    /* Vimeo timeline and play button are ~55px high */
    padding: 55px 97.7777px;
    /* 16:9 ratio */
    top: -55px;
    left: -97.7777px;
    /* 16:9 ratio */
}

.videobg iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 0 none;
}

/* Video - Embed Responsively */
.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-module.large .video-wrap {
    padding-bottom: 40%;
}

/* video bg breakpoints from org templates */
/* @media (min-width: 320px) {
	.video-module.large .video-wrap {
		height: 240px;
    }
}
@media (min-width: 480px) {
	.video-module.large .video-wrap {
		height: 320px;
    }
}
@media (min-width: 768px) {
	.video-module.large .video-wrap {
		height: 480px;
    }
}
@media (min-width: 992px) {
	.video-module.large .video-wrap {
		height: 640px;
    }
}
@media (min-width: 1200px) {
    .video-module.large .video-wrap {
		height: 800px;
    }
} */

/* Donation Module - Giving Amounts */
.giving-module--wrap {
    position: relative;
    width: 100%;
    height: 100%;
}
.giving-module--wrap .module-background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 580px;
}
.giving-module--wrap .module-background img {
    opacity: 0;
    visibility: hidden;
}

/* Donation Modules */
.giving-module--inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}
@media (max-width: 699px) {
    .giving-module--inner {
        flex-direction: column;
    }
}
.donation-module {
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.9);
    padding: 30px;
    border-radius: 3px;
}
.donation-module.one-time {
    margin-right: 10px;
}
.donation-module.monthly {
    max-width: 300px;
}
@media (max-width: 699px) {
    .donation-type.gift-amounts {
        height: auto !important;
    }
    .donation-module.one-time {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .donation-module.monthly {
        max-width: 100%;
    }
}
.donation-module.monthly .donation-module--title {
    text-align: center;
}
.donation-module .donation-module--title,
.donation-module .donation-module--title h1,
.donation-module .donation-module--title h2,
.donation-module .donation-module--title h3 {
    color: #545454;
}
@media (max-width: 1023px) {
    .donation-module .donation-module--title,
    .donation-module .donation-module--title h1,
    .donation-module .donation-module--title h2,
    .donation-module .donation-module--title h3 {
        font-size: 24px;
        font-size: 1.5rem;
    }
}
@media (max-width: 699px) {
    .donation-module .donation-module--title,
    .donation-module .donation-module--title h1,
    .donation-module .donation-module--title h2,
    .donation-module .donation-module--title h3 {
        font-size: 20px;
        font-size: 1.25rem;
    }
    .donation-module .donation-module--title,
    .donation-module .donation-module--preview {
        text-align: center;
    }
}
.donation-module .donation-module--preview {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1.125rem;
    line-height: normal;
    color: #606060;
    margin-bottom: 20px;
}
.donation-module.monthly .donation-module--preview {
    text-align: center;
}
/* Gift Amount Buttons */
.donation-module .gift-amounts {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}
.donation-module .gift-amounts li {
    display: flex;
    padding: 0 10px;
}
.donation-module .gift-amounts li:first-child {
    padding-left: 0;
}
.donation-module .gift-amounts li.other {
    flex: 1 1 auto;
}
.donation-module .gift-amount,
.donation-module .gift-amounts li a.gift-amount {
    display: flex;
    flex: 1 1 auto;
    padding: 15px;
    border: 2px solid #545454;
    border-radius: 3px;
    color: #545454;
    background: #fff;
    box-shadow: 2px 0px 9px rgba(63,63,63,.36);
    text-decoration: none;
}
.donation-module .gift-amount:hover,
.donation-module .gift-amounts li a.gift-amount:hover {
    color: #fff;
    background: #545454;
    box-shadow: none;
}
.donation-module .gift-amount.other,
.donation-module .gift-amounts li a.gift-amount.other {
    color: #fff;
    background: #545454;
    flex: 1 1 auto;
    text-align: center;
    justify-content: center;
    max-width: 150px;
}
.donation-module .gift-amount.other:hover,
.donation-module .gift-amounts li a.gift-amount.other:hover {
    background: #fff;
    color: #545454;
}
@media (max-width: 699px) {
    .donation-module .gift-amounts {
        flex-wrap: wrap;
        justify-content: center;
    }
    .donation-module .gift-amounts li.other {
        justify-content: center;
        margin-top: 15px;
    }
}
.donation-module.monthly .donation-type {
    display: flex;
    justify-content: center;
    align-items: center;
}
.donation-module.monthly .donation-type .monthly-donation {
    display: inline-flex;
}

/* Build Revisions RD2 - 08/30/19:AU */
.head-quickLinks ul li a {
      font-size: 16px;
  }

.main-menu--nav ul li a {
    font-size: 16px;
    color: #545454;
}

.searchBox {
    width: 500px;
    background: #fff;
    height: 80px;
}
.searchBox input {
    color: #545454;
    background: #fff;
    border: 1px solid #545454;
    border-radius: 6px;
    padding: 10px 20px;
    margin-top: 5px;
}
.main-menu--nav li.off-color a {
    color: #b3a369;
}
/*.main-menu--inner {*/
     /*max-height: 480px;*/
     /*overflow: hidden;*/
     /*overflow-y: scroll;*/
/*}*/
.main-menu--wrap .main-menu--social {
    padding: 20px 0;
}
.main-menu--nav ul li a:hover,
.main-menu--nav ul li .accordion-btn-wrap .accordion-btn button:hover {
    background: rgba(212,216,210,.35);
    text-decoration: none;
}
.head-quickLinks ul li:last-child a {
    color: #b3a369;
}
.newsWrapper .newsInner .text .title a {
    color: #b3a369;
}
footer {
    background: #e5e5e5;
    color: #545454;
}
.footer-links ul {
    border-bottom: none;
}
.footer-brand address a {
    color: #b3a369;
}
@media (max-width: 1023px) {
    #inner-wrap img {
        max-width: 100%;
        margin: 0 auto;
    }
    #inner-wrap .head-logo img {
        max-width: 90%;
        margin: 0 auto;
    }
}
a {
    color: #b3a369;
}
.interior .mainContent {
    border-left: none;
}

@media (min-width: 1200px) {
    .banner {
        height: 720px;
    }
    .video-player--banner {
        /* (1200 - 800) / 2 = 200 */
        top: -240px;
        height: 1200px;
    }
}

.banner.short-video .banner__background {
    padding-bottom: 40%;
}

.center-box__body .banner__button {
    background: #b3a369;
    color: #545454;
}

@media (max-width:450px) {
    .banner.short-video .banner__content .txt-title.txt-title--banner span {
        text-shadow: 1px 1px #3c3c3c;
        color: #fff;
    }
}

.main-menu--wrap.is-open {
    display: block;
}

/*Short Video Mobile settings, static background, no video. Text dictates height. */
@media (max-width: 699px) {
    .banner.short-video .banner__background {
        position: static;
        padding-bottom: 0;
        height: 100%;
    }
    .banner.short-video .banner__background iframe {
        display: none;
    }
    .banner.short-video .banner__background .video-placeholder {
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
    .banner.short-video .text {
        position: relative;
        transform: none;
        height:100%;
        padding: 30px 0;
    }
}

.main-menu--wrap .main-menu--inner {
    transform: translateX(100%);
    transition: transform .75s;
}

.main-menu--wrap.is-open .main-menu--inner {
    transform: translateX(0);
    overflow: scroll;
}

.loggedin .main-menu--wrap .main-menu--inner {
    top: 83px;
}

@media only screen and (max-width: 1023px) {
    body.menu-is-open {
        overflow: hidden;
    }
    #ContentFooterBrand .footer-logo img {
        max-width: 80%;
        margin: unset;
    }
    #ContentFooterBrand .footer-logo {
        text-align: right;
    }
}

@media only screen and (max-width: 699px) {
    .structHead {
        position: fixed;
    }

    .home .structBody {
        margin-top: 54px !important;
    }

    #ContentFooterBrand .footer-logo {
        justify-content: center;
        text-align: center;
    }
    #ContentFooterBrand .footer-logo img {
        height: 50px !important;
    }
}

/* OPEN AIR TASKS 
------------------ */
/* 10/3/19 JF */
.newsItemMag.twoAcross .newsItemMagInner .thumb .readMore {
    margin-top: 5px;
}

.newsItemMag.twoAcross .newsItemMagInner .thumb .readMore .fa:before,
.newsItemMag.wide .newsItemMagInner .thumb .readMore .fa:before {
    color: #b3a369;
}

.event-date .month {
    background:#b3a369;
    color: #545454;
}

.paginatedEvent .title:hover {
    color: #b3a369;
}

.newsAccItem.accOpen .newsAccInner .newsAccTitle a{color:#b3a369;}
.newsAccItem.accOpen .newsAccInner .newsAccTitle a:before{color:#b3a369;}
.featFourAcross .title {color: #545454;}
.featFourAcross .title:hover {color: #b3a369;}
.featFourAcross .title a {color: #545454;}
.featFourAcross .title a:hover {color: #b3a369;}

.customPagingWrap .currentSlidePager {
    color: #b3a369;
}

.magItem .txt .inner-wrap {
    border-top: solid 3px #b3a369;
}
@media only screen and (min-width: 1101px) {
    .magItem .txt .inner-wrap {
        border-bottom: solid 3px #b3a369;
    }
}

/* .magSlider .sldBtns .magArw {
    background: #b3a369;
} */

.newsWrapper .newsInner .text .title {
    color: #545454;
}
  
/* .newsWrapper .newsInner .text .title:hover {
    color: #b3a369;
} */

.eventSliderWrap .slideItem .eventInner .date .day {
    color: #5f5959;
}

/* .eventSliderWrap .slideItem:hover .eventInner .title {
    color: #b3a369;
} */

/* .featuredItem .title .fa {
    color: #b3a369;
} */

/* .featuredItem .title:hover {
    color: #b3a369;
} */

.featuredItem, .featuredFlexItem {
    background: #e5e5e5;
}

.featuredItem {
    border: solid 3px 
}

.newsWrapper .newsInner .text .title:hover,
.eventSliderWrap .slideItem:hover .eventInner .title,
.featuredItem .title .fa-chevron-circle-right,
.featuredFlexItem .title .fa-chevron-circle-right,
.featuredItem .title:hover,
.featuredFlexItem .title:hover,
.newsItemMag.wide .text .fa-chevron-circle-right {
    color: #b3a369;
}

.magSlider .sldBtns .magArw {
    background: #b3a369;
}

body.interior .imageRotator {
    margin-bottom: 0;
}

body.interior .topImage {
    margin-top: 0;
}

body.interior .structBody {
    padding: 4em 0 2em;
}

.gsc-input-box {
    border-radius: 0 !important;
    margin-right: 10px !important;
}

.gsc-search-button-v2, .gsc-search-button-v2:hover, .gsc-search-button-v2:focus {
    background: #b3a369 !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center;
    height: 46px;
}

/* MAINT 128480 DT 11212019 */
@media only screen and (max-width:699px) {
    .donation-module.one-time {
        margin-right: 0;
        margin-bottom: 10px;
        height: 100% !important;
   }   
}

/* MAINT 128909 DT 11262019 */
#ContentHeadLogo19 a img {
    max-height: 55px !important;
}

#ContentHeadLogo19Mobile a img {
    max-height: 70px !important;
}

/* MAINT 129816 DT 12032019 */
.interior .imageRotator {
    text-align: center;
}

@media only screen and (min-width: 700px) and (max-width: 1100px) {
    .imageRotator {
        margin-top: 0px !important;
    }
}

.FullImage {
    width: 100%;
}

.topPhoto img {
    width: 100%;
}