<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*,
*:before,
*:after {
    box-sizing: border-box;
}


/*
--------------------------------------------------------------------------
 Typography 
--------------------------------------------------------------------------
 */

 :root {
    overflow-x: hidden;
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    font-family: 'azo-sans-web', sans-serif;
    font-weight: 300;
    font-style: normal;
    --secondary: #D9571C;
    --primary: #435249;
    --light-green: #46B5A3;
    --black: #313133;
}

body {
    color: var(--black);
    font-size: inherit !important;
    font-family: inherit !important;
    --side-margin: 1px;
    overflow: inherit;
}

p {
    margin-bottom: .75em;
}

p:last-child {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary);
    font-family: 'Open Sans', sans-serif;
    font-family: 'azo-sans-web', sans-serif;
    margin-top: 0;
    margin-bottom: .5em;
    padding: 0;
    font-weight: bold;
    letter-spacing: -.075ch;
    line-height: 1.1;
}

h1 {
    font-size: 49.5px;
    font-size: 40.5px;
}

h2 {
    font-size: 31.5px;
}

h3 {
    font-size: 27.9px;
}

h4 {
    font-size: 24.3px;
}

h5 {
    font-size: 22.5px;
}

h6 {
    font-size: 20px;
}

@media (max-width: 990px) {
    h1 {
        font-size: calc(40.5px * .75);
    }
    h2 {
        font-size: calc(31.5px * .75);
    }
    h3 {
        font-size: calc(27.9px * .75);
    }
    h4 {
        font-size: calc(24.3px * .75);
    }
    h5 {
        font-size: calc(22.5px * .75);
    }
    h6 {
        font-size: calc(20px * .75);
    }
}


/*  Links -------------------

 */

a {
    color: inherit;
    text-decoration: none;
    transition: .125s color ease-in-out;
}

a:hover,
a:focus {
    text-decoration: underline;
    color: var(--primary);
}

.button-link,
main input[type="submit"]:not(#mms-main input) {
    /* :not exception needed to avoid messing with all sorts of different buttons in the MMS  */
    background: var(--secondary);
    text-transform: uppercase;
    padding: 0.30em 1.5ch;
    display: block;
    width: fit-content;
    color: white;
    border-radius: 0;
    border: none;
    text-align: center;
    line-height: 1;
    transition: color .125s ease-in-out, .125s background ease-in-out;
    text-shadow: none;
    font-weight: bold;
}

.button-link.green {
    background: var(--primary);
}

.button-link:not(:last-child) {
    margin-bottom: .5em;
}

.button-link:hover,
.button-link:focus {
    text-decoration: none;
    background: var(--primary);
    color: white;
}

.button-link.green:hover,
.button-link.green:focus {
    background: var(--secondary);
}

.button-link+*:not(.button-link) {
    padding-top: 1.5em;
}

.button-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: .5em .5ch;
    font-size: 36px;
}

.button-list li:last-child .button-link {
    background: var(--primary);
}

.button-list li:last-child .button-link:hover,
.button-list li:last-child .button-link:focus {
    background: var(--secondary);
}


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

.offscreen {
    /* This class allows an element to be read by a screenreader without appearing in the viewport  */
    position: absolute;
    left: -666vw;
}


/*  Wrappers
    *.wrapper acts as a more symantic stand in for &lt;container&gt;&lt;row&gt;&lt;col-md-12&gt;&lt;/col-md-12&gt;&lt;/row&gt;&lt;/container&gt; 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;
}

@media (min-width:768px) {
    body {
        --side-margin: calc((100vw - 750px) / 2);
    }
    .wrapper {
        width: 750px;
    }
}

@media (min-width:991px) {
    body {
        --side-margin: calc(((100vw - 987px) / 2) + 15px);
    }
    .wrapper {
        width: 970px;
    }
}

@media (min-width:1201px) {
    body {
        --side-margin: calc(((100vw - 1170px) / 2) + 15px);
    }
    .wrapper {
        width: 1170px;
    }
}

.full-width {
    /* Make an element span the width of the viewport */
    position: relative;
    left: calc(var(--side-margin) * -1);
    right: calc(var(--side-margin) * -1);
    width: calc(100vw + 30px);
}

@media (max-width: 990px) {
    .full-width {
        left: -15px;
        right: -15px;
    }
}

.img-responsive.full-width:not(#mycanvas img) {
    /* Make sure that when the system automatically adds the class .img-responsive that it doesn't break .full-width. This is not applied to images viewed on the Grid Editor page. */
    max-width: unset;
}

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

.row-background:not(#mycanvas .row-background) {
    position: relative;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.row-background:not(#mycanvas .row-background) h1,
.row-background:not(#mycanvas .row-background) h2,
.row-background:not(#mycanvas .row-background) p {
    color: white;
}

.row-background:not(#mycanvas .row-background)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--side-margin) * -1);
    right: calc(var(--side-margin) * -1);
    display: block;
    background-color: var(--primary);
}

.green-background:not(#mycanvas *) {
    padding-left: var(--side-margin);
    padding-right: var(--side-margin);
    background-image: url(https://aore.org/photos/2023_WebsiteTopo_04062023152658.PNG);
    color: #FFFFFF;
    background-size: cover;
}

.green-background:not(#mycanvas *):last-child {
    margin-bottom: -4rem;
}

@media (min-width: 992px) {
    .row-background:not(#mycanvas .row-background)&gt;.col-md-9 {
        width: calc(75% - 15px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-8 {
        width: calc(66.7% - 15px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-7 {
        width: calc(58.3% - 15px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-6 {
        width: calc(50% - 15px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-5 {
        width: calc(41.7% - 15px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-4 {
        width: calc(33.3% - 20px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-3 {
        width: calc(25% - 20px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-2 {
        width: calc(20% - 20px);
    }
}

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

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

@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;
    border-left-color: var(--secondary);
}

blockquote p {
    font-size: 1.05em;
}

grammarly-btn {
    display: none;
    /*If someone copy/pastes text from Grammarly it will add this invisible button and cause the page to scroll horizontally. This style hides that.*/
}

.ui-widget {
    /* Part of some pages in the MMS, this style tells it not to overwrite the font with Verdana */
    font-family: revert;
}


/* Feed items */


/* Slideshows defaults */

.carousel {
    font-size: 20px;
}

.carousel-control.left,
.carousel-control.right {
    display: none;
}


/*--end slideshow-defaults---------*/


/* Multiple slideshow */

.multiple-slideshow .carousel {
    /* margin-bottom: 3rem; */
}

.multiple-slideshow .carousel-inner {
    padding-bottom: 2rem;
}

.multiple-slideshow .carousel-indicators {
    bottom: 0;
}

.multiple-slideshow .carousel-indicators li {
    border-color: var(--primary);
    background-color: white;
}

.multiple-slideshow .carousel-indicators li.active {
    background-color: var(--primary);
}

.multiple-slideshow .carousel-control.left,
.multiple-slideshow .carousel-control.right {
    display: none;
    display: block;
    background-image: none;
    color: var(--primary);
    font-size: 30px;
    text-shadow: none;
    font-weight: bold;
    opacity: 1;
    width: 1ch;
}

.multiple-slideshow .carousel img {
    display: block;
    max-width: 100%;
    height: auto;
}

.multiple-slideshow .carousel-caption {
    left: 0;
    right: 0;
    bottom: unset;
    padding: 5px;
    margin-top: 0.5rem;
}

.multiple-slideshow .carousel-caption p {
    margin: 0;
    line-height: 1;
    color: #57896A;
}

.multiple-slideshow .caption-text {
    font-weight: bold;
}

.multiple-slideshow .alt-text {
    font-style: italic;
}

@media (min-width: 768px) {
    .multiple-slideshow .carousel-caption {
        text-shadow: none;
    }
    .multiple-slideshow .alt-text {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .multiple-slideshow .carousel-caption {
        bottom: 0;
    }
    .multiple-slideshow .carousel-caption p {
        color: white;
    }
}

@media (max-width: 500px) {
    .multiple-slideshow .carousel-caption {
        top: 0;
    }
}


/*----------Responsive Nivo*/

div[id^=slider-container-FD],
div[id^=slider_FD],
.nivoSlider img {
    max-width: 100% !important;
    height: auto !important;
}


/*----------Nivo Controls*/

.nivo-prevNav,
.nivo-nextNav {
    background-image: none !important;
    width: 25px !important;
    top: 25% !important;
    /*Fallback for browsers that don't support calc*/
    top: calc( 50% - 50px) !important;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 75px;
    font-family: Arial, sans-serif;
    text-shadow: 0px 0px 10px rgba(51, 51, 51, 0.4);
}

.nivo-prevNav:hover,
.nivo-nextNav:hover {
    text-decoration: none;
    color: #ae0e0d;
    text-shadow: none;
}

.nivo-prevNav {
    left: 10px !important;
}

.nivo-nextNav {
    right: 10px !important;
}

.nivo-prevNav:after {
    content: "â€¹";
}

.nivo-nextNav:after {
    content: "â€º";
}


/*  Modals ---------------------------------
    ----------------------------------------
 */

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

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

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

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

.modal h2 {
    font-size: 20px;
    opacity: .9;
}

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


/*  Login Forms ----------------------------
----------------------------------------
*/

.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);
}


/*--------------------------------------------------------
    Header
--------------------------------------------------------*/

header {
    font-weight: bold;
}

header&gt;section {
    display: flex;
    gap: 1rem 30px;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.logo-link svg {
    /* width: 140px;
    height: 33.85px; */
}

#LP {
    padding: 0;
}

.secondary-menu {
    position: relative;
    font-size: 22.5px;
    padding-top: .75em;
    padding-bottom: .75em;
}

.secondary-menu::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--side-margin) * -1);
    right: calc(var(--side-margin) * -1);
    z-index: -1;
    background: var(--primary);
}

.secondary-menu::after,
.secondary-menu .nav::after,
.secondary-menu .nav::before {
    content: none;
}

.secondary-menu&gt;#LP&gt;ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 1rem 40px;
    justify-content: flex-end;
    align-items: center;
    float: none;
}

.secondary-menu li {
    position: relative;
}

.secondary-menu a {
    text-transform: uppercase;
    color: white;
}

.secondary-menu .nav&gt;li&gt;a {
    padding-inline: 0;
}

.secondary-menu .nav&gt;li&gt;a:hover,
.secondary-menu .nav&gt;li&gt;a:focus {
    text-decoration: underline;
    background-color: transparent;
}

header .nav .open&gt;a,
header .nav .open&gt;a:focus,
header .nav .open&gt;a:hover {
    background: transparent;
}

#nav_menu a:hover+ul,
#nav_menu a:focus+ul,
.secondary-menu a:hover+ul,
.secondary-menu a:focus+ul,
#nav_menu .dropdown-menu:hover,
#nav_menu .dropdown-menu:focus,
.secondary-menu .dropdown-menu:hover,
.secondary-menu .dropdown-menu:focus {
    display: block;
}

#nav_menu .dropdown-menu,
.secondary-menu .dropdown-menu {
    top: calc(100% - 1px);
    border-radius: 0;
}

.secondary-menu .dropdown-menu .men-level-1 {
    left: 100%;
    top: 0;
}

#nav_menu .dropdown-menu a,
.secondary-menu .dropdown-menu a {
    font-weight: bold;
    text-transform: capitalize;
    font-size: 1rem;
}

@media (max-width: 1610px) {
    .secondary-menu .nav&gt;li:last-child .dropdown-menu {
        right: 0;
        left: unset;
    }
}

@media (max-width: 990px) {
    .secondary-menu {
        font-size: 1rem;
    }
    .secondary-menu&gt;#LP&gt;ul {
        gap: 1rem 30px;
    }
}


/* Mobile menu trigger  */

.mobileMenuTrigger:not(.triggerClose) {
    border: none;
    padding: 0;
    transition: color .125s ease-in-out;
    border-radius: 3px;
    background: transparent;
    display: flex;
    flex-direction: row-reverse;
    gap: 1ch;
    align-items: center;
}

@media (min-width: 801px) {
    .mobileMenuTrigger:not(.triggerClose) {
        display: none;
    }
}

.mobileMenuTrigger label {
    margin: 0;
    cursor: pointer;
}

.menu-trigger {
    width: 30px;
}


/* 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;
    margin-top: 0;
}

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


/*--------------------------------------------------------
    Desktop navigation
--------------------------------------------------------*/

#nav_menu {
    padding: 0;
}

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

#nav_menu&gt;ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem 1ch;
    justify-content: flex-end;
}

#nav_menu&gt;ul&gt;li&gt;a {
    padding: 0.30em 1.5ch;
    line-height: 1;
}

#nav_menu .nav&gt;li&gt;a:focus,
#nav_menu .nav&gt;li&gt;a:hover {
    background-color: unset;
}

#nav_menu&gt;ul&gt;li&gt;.join-button:hover,
#nav_menu&gt;ul&gt;li&gt;.join-button:focus {
    background: var(--primary);
    /* color: white; */
}

#nav_menu&gt;ul&gt;li&gt;.login-button {
    background: var(--primary);
}

#nav_menu&gt;ul&gt;li&gt;.login-button:hover,
#nav_menu&gt;ul&gt;li&gt;.login-button:focus {
    background: var(--secondary);
}

@media (max-width: 990px) {
    #nav_menu&gt;ul {
        gap: .5rem 2ch;
    }
    #nav_menu&gt;ul&gt;li&gt;a:not(.button-link) {
        padding-inline: 0;
    }
}

@media (max-width: 800px) {
    #nav_menu,
    .secondary-menu {
        /* Overwrite BS defaults */
        display: none !important;
    }
}


/*--------------------------------------------------------
    Mobile navigation
--------------------------------------------------------*/

#mobileMenuWrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 50;
    overflow-y: auto;
    overflow-x: hidden;
    left: -120%;
    min-width: 300px;
    box-shadow: 0 3px 14px -2px rgb(0 0 0 / 40%);
    transition: left .125s ease-in-out;
    background: white;
}

#mobileMenuWrapper.open {
    left: 0;
}

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

#mobileMenuWrapper li {
    display: block;
    margin-bottom: .7rem;
}

#mobileMenuWrapper .mobile-search-close {
    display: flex;
    justify-content: space-between;
}

#mobileMenuWrapper a {
    background-color: transparent;
    text-decoration: none;
    /* color: white; */
}

#mobileMenuWrapper .join-button {
    background-color: var(--primary);
    text-decoration: none;
    /* color: white; */
}

#mobileMenuWrapper .mDropdown {
    display: none;
    padding-top: .7rem;
}

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

.triggerClose {
    text-align: right;
}

.triggerClose button {
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
    /* color: white; */
    cursor: pointer;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: black;
    z-index: 1;
    opacity: 0;
    transition: .125s opacity ease-in-out;
    pointer-events: none;
}

body.menu-open::before {
    opacity: .5;
}

#mobileMenuWrapper #mobile-menu {
    overflow: auto;
    padding: 1rem;
}

#mobile-menu .login-item button {
    background: var(--primary);
    padding: .5em 2ch .6em;
    border-radius: 3px;
}

.mobile-login button {
    color: var(--gold);
    padding: 0;
    border: 0;
    background: none;
    font-size: 16px;
}


/*
--------------------------------------------------------------------------
 Main
--------------------------------------------------------------------------
 */

main {
    min-height: calc(100vh - 94px - 530px);
    position: relative;
}

main:not(#homepage-main) {
    padding-top: 2rem;
    padding-bottom: 2rem;
    position: relative;
}

#homepage-main img.full-width {
    object-fit: cover;
    width: 100%;
    z-index: -1;
}

#homepage-main .row,
#subpage-main .row {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media(max-width: 990px) {
    #homepage-main .column+.column,
    #subpage-main .column+.column {
        margin-top: 1rem;
    }
}

@media (max-width: 900px) {
    #subpage-main:not(.full-background),
    #mms-main {
        margin-bottom: 2em;
    }
}

@media (max-width: 767px) {
    #subpage-main {
        padding-top: 1.5em;
        padding-bottom: 1.5em;
    }
    #subpage-main .row {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    #subpage-main [class*="col-md"]+[class*="col-md"] {
        margin-top: 1rem;
    }
}

@media (min-width: 768px) {
    #subpage-main .row {
        /*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*/
        /* margin-bottom: 3.5em; */
    }
    #subpage-main div[class^="col"]+.col-md-12 {
        margin-top: 2rem;
    }
}

#homepage-main h2 {
    font-size: 35px;
    color: var(--secondary);
}

@media (min-width: 991px) {
    #homepage-main .col-md-7 {
        padding-right: 4ch;
    }
}


/*  Slideshow Row --------------------------
    ----------------------------------------
 */

#homepage-main #slideshow-row,
#subpage-main #slideshow-row {
    padding-top: 0;
    padding-bottom: 0;
}

#slideshow-row img {
    width: 100%;
    max-height: calc(80vh - 146px);
    object-fit: cover;
}

#slideshow-row .carousel-caption {
    left: var(--side-margin);
    top: calc(50% - 1em);
    right: var(--side-margin);
    text-align: left;
}

#slideshow-row .caption-text {
    font-size: 63px;
    font-size: 50px;
    font-weight: bold;
    font-style: italic;
    margin: 0;
}

#slideshow-row .button-link {
    background: var(--primary);
}

#slideshow-row .button-link:hover,
#slideshow-row .button-link:focus {
    background: var(--secondary);
}

@media (max-width: 990px) {
    #slideshow-row .caption-text {
        font-size: calc(49.5px * .75);
    }
}

@media (max-width: 767px) {
    #slideshow-row .carousel-caption {
        left: 0;
        right: 0;
        top: unset;
        position: relative;
        padding: .5em 1ch;
        background: var(--black);
    }
}


/*  About Event Row -------------------------------
    ----------------------------------------
 */

@media (min-width: 991px) {
    #about-events-row h1+h2 {
        margin-top: 2em;
    }
}

.event-item,
.news-item,
.schedule-item {
    background: #F5F5F5;
    padding: 1em;
    display: flex;
    gap: 1em 30px;
    align-items: center;
    margin-bottom: 1em;
}

.schedule-item {
    flex-wrap: wrap;
}

.event-item time,
.news-item time,
.schedule-item time {
    font-size: 36px;
    text-align: center;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -.075ch;
}

.news-item time {
    font-weight: 300;
    font-style: italic;
    font-size: 18px;
}

.event-item h3,
.news-item h3,
.schedule-item h3 {
    font-size: 21px;
    color: var(--primary);
    margin: 0;
}

.schedule-item p {
    width: 100%;
}

@media (max-width: 1200px) {
    .event-item h3,
    .news-item h3 {
        font-size: 23px;
    }
}


/*  Testimonial Rows -------------------------------
    ----------------------------------------
 */

.no-img-testimonial {
    padding-left: var(--side-margin);
    padding-right: var(--side-margin);
    background: var(--primary);
}

#homepage-main .testimonial-row .column,
#subpage-main .testimonial-row .column {
    display: flex;
}

#homepage-main .second-testimonial .column {
    flex-direction: row-reverse;
}

#homepage-main .testimonial-row section,
#subpage-main .testimonial-row section {
    background: var(--primary);
    padding: 1em 2em;
    padding-right: 5em;
    color: white;
    display: flex;
    align-items: center;
    line-height: 1.1;
    min-height: 200px;
}

#homepage-main .no-img-testimonial section,
#subpage-main .no-img-testimonial section {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

#homepage-main .second-testimonial section {
    padding-right: 2em;
    padding-left: 5em;
}

.no-img-testimonial section&gt;div {
    width: 100%;
}

.testimonial-row img {
    object-fit: cover;
}

.testimonial-row .testimonial {
    font-style: italic;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.3;
}

.testimonial-row .testimonial-name {
    text-transform: uppercase;
    font-size: 19.8px;
    margin: 0;
    font-weight: bold;
}

.testimonial-row .testimonial-title {
    font-size: 16px;
    margin: 0;
}

.no-img-testimonial .button-link {
    font-size: 32px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .testimonial-row .testimonial,
    .no-img-testimonial .button-link {
        font-size: 26px;
    }
}

@media (max-width: 990px) {
    .testimonial-row img {
        width: 250px;
    }
    #homepage-main .testimonial-row section {
        padding: .75em 1em;
    }
    .testimonial-row .testimonial {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .testimonial-row .testimonial {
        font-size: 20px;
    }
    .testimonial-row .testimonial-name,
    .testimonial-row .testimonial-title {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    #homepage-main .testimonial-row .column {
        flex-direction: column;
    }
    .testimonial-row img {
        width: 100%;
    }
}


/*  Testimonial Rows -------------------------------
    ----------------------------------------
 */

#homepage-main .buttons-row {
    padding-top: 0;
    padding-bottom: 0;
}

#homepage-main .buttons-row:last-child {
    padding-bottom: 2rem;
}


/*  Mission News Row -------------------------------
    ----------------------------------------
 */

@media (min-width: 601px) {
    #mission-news-row h2:nth-of-type(2) {
        margin-top: 50px;
    }
}

.icon-list {
    list-style: none;
    columns: 2;
    padding: 0;
    margin: 0;
}

.icon-list li {
    display: flex;
    gap: .5em 15px;
    align-items: center;
}

.icon-list li+li {
    margin-top: 1em;
}


/*  Video Row -------------------------------
    ----------------------------------------
 */

#homepage-main #video-row {
    max-width: 1000px;
    margin: auto;
}


/*  Subpages -------------------------------
    ----------------------------------------
 */


/*  Grid Page Editor workarounds -----------
----------------------------------------
 */


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

footer {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: white;
    padding-top: 2rem;
    padding-bottom: 2rem;
    align-items: center;
    align-items: flex-start;
    justify-content: space-between;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--side-margin) * -1);
    right: calc(var(--side-margin) * -1);
    background: var(--primary);
    z-index: -1;
}

.credits-section {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 630px;
}

.credits-section span {
    display: block;
}

.credits-section a {
    text-decoration: underline;
}

.credits-section a:hover,
.credits-section a:focus {
    color: var(--secondary);
}

.org-name {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.1;
    max-width: 460px;
}

.contact-section {
    text-align: right;
}

@media (min-width: 945px) {
    .contact-section .img-responsive {
        margin-left: auto;
    }
}

.social-list {
    list-style: none;
    justify-content: flex-end;
    display: flex;
    align-items: center;
    position: relative;
    margin: 0 0 5px;
    padding: 0;
    gap: 10px;
}

.social-list li {
    padding: 3px;
    background: var(--primary);
    height: 37px;
    transition: .125s background ease-in-out;
}

.social-list li:hover {
    background: white;
}

.social-list rect {
    display: none;
}

.social-list li path {
    fill: white;
    transition: .125s fill ease-in-out;
}

.social-list li:hover path,
.social-list li:focus path {
    fill: var(--primary);
    transition: .125s fill ease-in-out;
}

@media (max-width: 990px) {
    .contact-section {
        text-align: left;
    }
    .social-list {
        justify-content: unset;
    }
    .org-name {
        font-size: 26px;
        max-width: 420px;
    }
}


/*--------------------------------------------------------
    MMS Styles
--------------------------------------------------------*/


/* MMS Member Menu icons */

@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;
    }
}</pre></body></html>