/* 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: #A4925A ;
    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;
        text-align: 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: #A4925A ;
}
.newsWrapper .newsInner .text .title a {
    color: #b3a369;
}
footer {
    background: #e5e5e5;
    color: #545454;
}
.footer-links ul {
    border-bottom: none;
}
.footer-brand address a {
    color: #A4925A ;
}
@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: #fff;
}

.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 197307 SB 12102021 */
@media only screen and (max-width:699px) {
    .intEvent .date {
        margin-right: 22px;
    }
}
@media (max-width: 1023px) {
    #inner-wrap .intEvent .thumb img {
        margin-top: 20px;
    }
}

/* MAINT 128909 DT 11262019 // Edited: AU 08/14/20, adding transition effect for shortened logo on scroll */
#ContentHeadLogo19 a img {
    max-height: 100px !important;
    transition: all .5s;
}

.sticky-on #ContentHeadLogo19 a img {
    max-height: 50px !important;
    transition: all .5s;
}

#ContentHeadLogo19Mobile a img {
    max-height: 70px !important;
}

@media only screen and (max-width: 699px) {
    #ContentHeadLogo19Mobile img {
        max-height: 50px !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%;
}

/* 2020 Class Notes PCB */
.notes {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.loggedin .filter-pcb {
    top: 0;
}
.filter-pcb {
    position: relative;
    top: -140px;
    background: rgba(255, 255, 255, .95);
}

@media only screen and (max-width: 1023px) {
    .filter-pcb {
        top: -100px;
    }
}

@media only screen and (max-width: 699px) {
    .filter-pcb {
        top: -90px;
    }
}

.pcb-filters {
    padding: 40px 60px;
    box-shadow: 0 2px 28px 9px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}

@media only screen and (max-width: 1023px) {
    .pcb-filters {
        padding: 30px 15px;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 699px) {
    .pcb-filters {
        padding: 20px;
        margin-bottom: 30px;
    }
}

.notes .filtersLabel {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    padding: 0 0 25px;
    border-bottom: 2px solid #B3A369;
    align-items: flex-start;
    margin-bottom: 25px;
}

.notes .filtersLabel>* {
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

.notes .filtersLabel h2 {
    color: #000;
    text-transform: none;
    font-size: 2rem;
    line-height: 1;
    font-weight: bold;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-bottom: 10px;
    margin: 0;
}

.notes .filtersLabel p {
    margin: 0;
}

.notes #clearButtonWrap {
    display: none;
}

.notes .filtersWrap {
    margin-bottom: 15px;
}

@media only screen and (max-width: 1023px) {
    .notes .filtersWrap .filterItem {
        margin-bottom: 10px;
    }
}

.notes .filtersWrap .filterItem>* {
    background: #fff;
    position: relative;
}

.notes .filtersWrap .filterItem>*.dropdown::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 50px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    z-index: 3;
}

.notes .filtersWrap .filterItem>*.tag-search::after {
    content: "\f002";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 50px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    z-index: 3;
}

.notes .filtersWrap .filterItem>*.dropdown>select {
    padding-right: 40px;
}

.notes .filtersWrap .searchWrap {
    margin-top: 30px;
}

@media only screen and (max-width: 699px) {
    .notes .filtersWrap .searchWrap {
        margin-top: 0;
    }
}

.notes .filtersWrap input,
.notes .filtersWrap select {
    height: 50px;
    border: none;
    border-radius: 0;
    -webkit-appearance: none;
    width: 100%;
    padding: 15px 20px;
    color: #333333;
    font-weight: normal;
    line-height: 1;
    cursor: pointer;
    position: relative;
    z-index: 2;
    background: #F0ECE1;
}

.notes .filtersWrap input:focus,
.notes .filtersWrap select:focus {
    outline: 2px solid #333;
}
@media only screen and (max-width: 699px) {

    .notes .filtersWrap input,
    .notes .filtersWrap select {
        padding-left: 15px;
        height: 55px;
    }
}

.notes .filtersWrap .button {
    margin: 0;
    min-width: 0;
    background: #333;
    border: none;
    padding: 0;
    color: B3A369;
    color: #B3A369;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100% !important;
}

.notes .filtersWrap .button:hover,
.notes .filtersWrap .button:focus {
    background: #B3A369;
    color: #333;
}

@media only screen and (max-width: 699px) {
    .notes .filtersWrap .button {
        height: 55px;
        width: 40% !important;
    }
}

.notes .filtersWrap .button.button-sm {
    display: none;
}

@media only screen and (min-width: 700px) and (max-width: 1024px) {
    .notes .filtersWrap .button.button-sm {
        display: flex;
    }

    .notes .filtersWrap .button.button-all {
        display: none;
    }
}

@media only screen and (max-width: 699px) {
    .notes .noResults {
        padding-top: 50px;
    }

    .notes .clear-button {
        margin: 15px 0;
    }
}

.notes .clear-button button {
    border: 1px solid #d7d7d7;
    height: 60px;
    width: 100%;
    position: relative;
    text-align: left;
    padding-left: 85px;
    font-weight: bold;
    background: #e3e3e3;
    transition: all ease .2s;
}

.notes .clear-button button .icon {
    position: absolute;
    left: -1px;
    top: -1px;
    height: 60px;
    width: 60px;
    transition: all ease .2s;
    background: #d7d7d7;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.notes .clear-button button:hover,
.notes .clear-button button:focus {
    border-color: #B3A369;
}

.notes .clear-button button:hover .icon,
.notes .clear-button button:focus .icon {
    background: #B3A369;
}

.notes .error-box {
    background: #a3320b;
    color: #fff;
    position: absolute;
    bottom: 70px;
    left: 15px;
    width: 100%;
    border-radius: 3px;
    padding: 15px;
    font-size: 0.75em;
    line-height: 1.25;
    display: none;
}

.notes .error-box p {
    margin: 0;
}

.notes .error-box:after {
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    color: #a3320b;
    position: absolute;
    left: 15px;
    bottom: -19px;
    font-size: 30px;
}

.notes #filterContent {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
}

@media only screen and (max-width: 699px) {
    .notes #filterContent {
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.notes #filterContent .noteItem {
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    padding: 15px;
    margin: 0 -1px;
}

@media screen and (max-width: 579px) {
    .notes #filterContent .noteItem {
        padding-left: 0;
        padding-right: 0;
    }
}

@media only screen and (max-width: 699px) {
    .notes #filterContent .noteItem {
        max-width: 290px;
    }

    .notes #filterContent .noteItem+.noteItem {
        padding-top: 15px;
    }
}

.notes #filterContent .noteItem .noteInner {
    background: #f2f2f2;
    font-size: 0.88889em;
    line-height: 1;
    width: 100%;
    position: relative;
    padding-bottom: 38px;
}

.notes #filterContent .noteItem .thumb {
    width: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #b4b4b4;
    background-image: url(images/noteThumbs/noPic.png);
    border-bottom: 2px solid#B3A369;
}

.notes #filterContent .noteItem .thumb::after {
    content: "";
    display: block;
    padding-bottom: 65%;
}

.notes #filterContent .noteItem .data {
    padding: 35px 25px;
}

@media only screen and (max-width: 1023px) {
    .notes #filterContent .noteItem .data {
        padding: 30px 20px;
    }
}

.notes #filterContent .noteItem .previewText {
    color: #333333;
    line-height: 1.758;
}

.notes #filterContent .noteItem .data .noteTitle {
    color: #545454;
    text-transform: uppercase;
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: bold;
    padding-bottom: 10px;
}

.notes #filterContent .noteItem .data .name {
    font-weight: bold;
    color: #006C93;
    border-bottom: 1px solid #E9E9E9;
    display: block;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.notes #filterContent .noteItem .noteInner .category {
    padding: 12px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #B3A369;
    bottom: 0;
    position: absolute;
    width: 100%;
    height: 38px;
    font-size: 0.8125rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #333333;
}

@media only screen and (max-width: 1023px) {
    .notes #filterContent .noteItem .noteInner .category {
        padding: 12px 10px;
        justify-content: flex-start;
    }
}

/* .notes .modal .modal-dialog .modal-content .modal-body .modal-buttons .close::after {
    content: "\f057";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    right: 15px;
    font-size: 18px;
    color: #333;
} */
.notes #filterContent .noteItem .data .category .subType {
    display: none;
}

.notes #filterContent .noteItem.birth .data .category .type,
.notes #filterContent .noteItem.wedding-engagement .data .category .type {
    display: none;
}

.notes #filterContent .noteItem.birth .data .category .subType,
.notes #filterContent .noteItem.wedding-engagement .data .category .subType {
    display: inline;
}

.notes #filterContent .noteItem .noteInner .category::after {
    content: "\f055";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    right: 20px;
    font-size: 19px;
}

@media only screen and (max-width: 1023px) {
    .notes #filterContent .noteItem .noteInner .category::after {
        right: 10px;
    }
}

.notes .modal .modal-dialog {
    width: 700px;
}

@media only screen and (max-width: 699px) {
    .notes .modal .modal-dialog {
        padding: 10px;
        width: 100%;
        margin: 0;
    }
}

.notes .modal .modal-dialog .modal-content {
    border-radius: 0;
    padding: 45px;
}

@media only screen and (max-width: 699px) {
    .notes .modal .modal-dialog .modal-content {
        padding: 20px;
    }
}

.notes .modal .modal-dialog .modal-content .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-left: 2px solid #B3A369;
    position: relative;
    border-bottom: 0;
    padding: 0;
}

.notes .modal .modal-dialog .modal-content .modal-header .name {
    color: #545454;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    padding-left: 10px;
}

.notes .modal .modal-dialog .modal-content .modal-header .schoolAndYear {
    background: #B3A369;
    font-size: 0.8125rem;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    padding: 8px 12px;
}

.notes .modal .modal-dialog .modal-content .modal-header button.close {
    background: #ff8200;
    border: none;
    padding: 12px 15px;
    display: block;
    cursor: pointer;
    transition: all .2s ease;
    line-height: 0;
    height: 50px;
    margin: 0;
}

.notes .modal .modal-dialog .modal-content .modal-header button.close:hover,
.notes .modal .modal-dialog .modal-content .modal-header button.close:focus {
    background: #006C93;
}

.notes .modal .modal-dialog .modal-content .modal-header button.close:focus {
    outline: 2px dashed #006C93;
}

.notes .modal .modal-dialog .modal-content .modal-body {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@media only screen and (max-width: 699px) {
    .notes .modal .modal-dialog .modal-content .modal-body {
        padding: 20px;
    }
}

@media only screen and (max-width: 699px) {
    .notes .modal .modal-dialog .modal-content .modal-body .modal-thumb {
        max-width: 100%;
        float: none;
    }
}

.notes .modal .modal-dialog .modal-content .modal-body .modal-thumb .thumbInner {
    box-shadow: none;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    margin-bottom: 20px;
}

/*
  .notes .modal .modal-dialog .modal-content .modal-body .modal-thumb .thumbInner:after {
    content: "";
    display: block;
    padding-bottom: 100%;
  }*/
.notes .modal .modal-dialog .modal-content .modal-body .modal-thumb .thumbInner img {
    /*position: absolute;*/
    left: 0;
    top: 0;
    width: 100%;
}

.notes .modal .modal-dialog .modal-content .modal-body .modal-text {
    padding: 0;
    font-size: 1rem;
    line-height: 1.5;
    padding-bottom: 20px;
}

@media only screen and (max-width: 699px) {
    .notes .modal .modal-dialog .modal-content .modal-body .modal-text {
        padding-top: 15px;
        padding-left: 0;
    }
}

.notes .modal .modal-dialog .modal-content .modal-body .modal-text .name {
    font-size: 1.25em;
    line-height: 1;
    color: #006C93;
    border-bottom: 1px solid #E9E9E9;
    padding: 10px 0 10px;
    margin-bottom: 20px;
}

.notes .modal .modal-dialog .modal-content .modal-body .modal-buttons {
    display: inline-block;
}

.notes .modal .modal-dialog .modal-content .modal-body .modal-buttons .learnMore {
    background: #333333;
    padding: 15px 20px;
    color: #B3A369;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    float: left;
}

.notes .modal .modal-dialog .modal-content .modal-body .modal-buttons .close {
    background: transparent;
    border: none;
    color: #333;
    text-transform: uppercase;
    font-weight: normal;
    float: right;
    margin-top: 15px;
}

.notes .modal .modal-dialog .modal-content .modal-body .modal-buttons .close:hover {
    text-decoration: underline;
}

.notes .modal .modal-dialog .modal-content .modal-body .modal-buttons .close span {
    padding-left: 10px;
}

.notes .modal .modal-dialog .modal-content .modal-body .modal-buttons .learnMore:hover,
.notes .modal .modal-dialog .modal-content .modal-body .modal-buttons .learnMore:focus {
    background: #B3A369;
    color: #333;
}

.notes .modal .modal-dialog .modal-content .modal-body .modal-text .school {
    font-weight: bold;
}

.notes .modal .modal-dialog .modal-content .modal-body .modal-text .location {
    font-weight: bold;
}

.notes .modal .modal-dialog .modal-content .modal-body .modal-text .content {
    margin-top: 20px;
}

.notes .modal .modal-dialog .modal-content .modal-body .modal-text .content p:first-child {
    margin-top: 0;
}

.notes .modal .modal-dialog .modal-content .modal-body .modal-text .content p:last-child {
    margin-bottom: 0;
}

.notes #pageControl {
    padding-top: 30px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.notes #pageControl button {
    width: 45px;
    background: #f2f2f2;
    font-weight: 900;
    border: 0;
    margin-left: 1px;
    height: 45px;
    padding: 0;
    border: 2px solid transparent;
    font-size: 0.88889em;
    line-height: 1;
}

.notes #pageControl button.selected {
    background-color: #333333;
    color: #fff;
}

.notes #pageControl button:focus {
    outline: 2px dashed #59595b;
}

/* MAINT 160709 DT 10142020 */
.IMOD94 .imod-send-email-control #sendEmailLink {
    display: none;
}