*,
*:before,
*:after {
    box-sizing: border-box;
}


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

 :root {
    font-size: 16px;
    font-family: 'Be Vietnam Pro', sans-serif;
    --dark-green: #21372a;
    --green: #376d4d;
    --light-green: #3d915f;
    --orange: #e07728;
    --yellow: #cc9900;
    --black: #1a1a1a;
    overflow-x: hidden;
}

body {
    color: #4d4d4d;
    font-size: inherit !important;
    font-family: inherit !important;
    border-top: 1px solid var(--yellow);
}

p+p {
    margin-top: .25em;
}

p:empty {
    display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5em;
    padding: 0;
    font-weight: 500;
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--black);
    text-transform: uppercase;
}

h1,
h2 {
    letter-spacing: -.125ch;
    text-transform: uppercase;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 28px;
}

h5 {
    font-size: 25px;
}

h6 {
    font-size: 20px;
}

#homepage h1,
#homepage h2 {
    text-align: center;
    grid-column: 1 / -1;
}


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

 */

a {
    color: var(--orange);
    text-decoration: none;
    transition: .125s color ease-in-out;
}

a:hover,
a:focus {
    text-decoration: none;
    color: var(--green);
}

.button-link,
input[type="submit"]:not(#mms-main input),
.mobile-login button {
    /* :not exception needed to avoid messing with all sorts of different buttons in the MMS  */
    background: var(--orange);
    font-size: inherit;
    padding: .75em 2ch;
    display: block;
    width: fit-content;
    color: white;
    position: relative;
    border: none;
    text-align: center;
    transition: .125s background ease-in-out;
    border-radius: 3px;
}

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

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

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

*+.button-link {
    margin-top: 1em;
}

header .button-link {
    border-radius: 0;
}


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


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

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

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

@media (max-width: 1200px) and (min-width: 991px) {
    .full-width {
        transform: translateX(-15px);
    }
}

@media (max-width: 767px) {
    .full-width {
        transform: translateX(-14px);
    }
}

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

body {
    --side-margin: 1px;
}

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

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

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

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

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

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


/*Styles below are taken from Bootstrap's table style to ensure that tables on content pages are responsive and neat whether Bootstrap classes are added or not. :not added to prevent styling Google Custom Search tables*/

#subpage-main table {
    max-width: 100%;
    border-collapse: collapse;
    color: #212529;
    margin-bottom: 1em;
    font-size: 16px;
    border-bottom: 1px solid #dee2e6;
    margin-top: 2em;
}

#subpage-main thead {
    font-weight: bold;
}

#subpage-main td,
#subpage-main th {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
    text-align: inherit;
}

#subpage-main thead th {
    vertical-align: bottom;
    border-top: none;
}

#subpage-main table caption {
    color: currentColor;
    text-align: left;
    font-size: 1.375em;
    font-weight: bold;
    padding: 0;
}

#subpage-main tbody tr:hover {
    color: #212529;
    background-color: rgba(0, 0, 0, .075);
}

@media (max-width: 767px) {
    #subpage-main table {
        font-size: 14px;
    }
    #subpage-main td:first-child,
    #subpage-main th:first-child {
        padding-left: 5px;
    }
    #subpage-main td:last-child,
    #subpage-main th:last-child {
        padding-right: 5px;
    }
}

@media (max-width: 500px) {
    #subpage-main td,
    #subpage-main th {
        padding: 5px 2px;
    }
}

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


/* Narrow row */

.narrow-row:not(#mycanvas .narrow-row) {
    display: flex;
}

.narrow-row>.column {
    margin-left: auto;
    margin-right: auto;
}


/* Feed items */

.feed-item {
    padding: 1rem 20px;
    border-radius: 3px;
    position: relative;
    background: white;
    box-shadow: 0px 0.98px 3px rgba(0, 0, 0, 0.25);
}

.feed-item>*:not(:last-child) {
    margin-bottom: 10px;
}

.feed-item h3 {
    font-size: 17px;
    font-family: inherit;
    font-weight: bold;
    text-transform: none;
}

.feed-item img {
    width: 100%;
    display: block;
    border-radius: 3px;
    overflow: hidden;
}

.feed-item time::before {
    content: '';
    width: 0.9em;
    height: 1em;
    display: inline-block;
    margin-right: 0.7ch;
    background: url(../images/calendar-icon.svg);
    background-size: cover;
    position: relative;
    top: 1px;
}

.feed-item a {
    color: inherit;
}

.feed-item a:hover,
.feed-item a:focus {
    color: var(--orange);
}

.feed-item a::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

@media (min-width: 768px) {
    .feed-item {
        font-size: 15px;
    }
}


/* Slideshow defaults */

.carousel-control.left,
.carousel-control.right {
    /* Remove carousel controls from homepage slideshow */
    display: none;
}

.carousel-indicators {
    top: 0;
    right: unset;
    left: 0;
    bottom: unset;
    margin: 0;
    text-align: right;
    padding: 5px 30px;
    width: 100%;
}

.carousel img {
    width: 100%;
}

@media (max-width: 600px) {
    .carousel-caption {
        padding: 0px 10px;
    }
}

.caption-text {
    font-size: 28px;
    font-weight: 600;
    line-height: 33px;
    display: block;
    color: initial;
    margin-bottom: 10px;
}

.alt-text {
    font-size: 16px;
    color: initial;
    margin-bottom: 10px;
}


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


/*----------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 {
    position: relative;
}


/* header+main:not(#homepage-main) {
    margin-top: 1rem;
} */

header::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--side-margin) * -1);
    right: calc(var(--side-margin) * -1);
    /* opacity: .8;
    mix-blend-mode: multiply; */
    background: var(--dark-green);
    z-index: -1;
}

.home-link img {
    margin: auto;
    max-width: 100%;
    display: block;
    padding: .5rem 0 1rem;
}

@media (max-width: 767px) {
    .home-link img {
        width: 100px;
    }
}


/*  Desktop Menu ---------------------------
    ----------------------------------------
 */

header nav {
    position: relative;
}

header nav::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--side-margin) * -1 - 15px);
    right: calc(var(--side-margin) * -1 - 15px);
    border-top: 1px solid var(--yellow);
}

#nav_menu {
    padding: 0;
}

#nav_menu>ul {
    display: flex;
    flex-direction: row;
    gap: 1em 2ch;
    align-items: center;
    width: 100%;
}

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

#nav_menu>ul>.supplimental-links {
    display: inherit;
    justify-content: flex-end;
    align-items: inherit;
    gap: inherit;
    width: 100%;
}

.supplimental-links>ul {
    display: inherit;
    gap: 5px;
    align-items: inherit;
    list-style: none;
    padding: 0;
}

.supplimental-links .button-link {
    margin: 0;
    background: var(--yellow);
}

.supplimental-links .button-link:hover,
.supplimental-links .button-link:focus {
    background: var(--orange);
}

.supplimental-links>li:first-child {
    padding: 0 10px;
}

.facebook-icon rect {
    display: none;
}

#nav_menu>ul>li>a {
    padding: 0 .25rem;
    font-size: 16px;
    white-space: nowrap;
    color: white;
}

.caret {
    /* Convert Bootstrap style into em's so carets scale with type */
    border-top: .2em dashed;
    border-right: .2em solid transparent;
    border-left: .2em solid transparent;
}

#nav_menu .dropdown-menu {
    font-size: inherit;
    top: calc(100% + 13px);
    padding: 0;
    border-right: none;
}

#nav_menu .dropdown-menu>li>a {
    font-size: inherit;
    padding: .5rem 1rem;
    color: white;
    background: var(--yellow);
    transition: .125s background ease-in-out;
}

#nav_menu .nav .open>a,
#nav_menu .nav .open>a:focus,
#nav_menu .nav .open>a:hover,
#nav_menu .nav>li>a:focus,
#nav_menu .nav>li>a:hover {
    /* Overwriting BS defaults */
    background-color: transparent;
    color: #e8b22d;
    transition: color .125s ease-in;
}

.dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover {
    background-color: var(--green);
    color: white;
}

#nav_menu li.greyed a {
    opacity: .75;
}


/*  Mobile Header Nav ----------------------
    ----------------------------------------
 */

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

@media (max-width: 990px) {
    header>nav {
        display: none;
    }
    header {
        display: flex;
        justify-content: space-between;
        gap: 30px;
        align-items: center;
        ;
    }
}

header .mobileMenuTrigger {
    background: none;
    border: 2px solid var(--yellow);
    color: white;
    padding: 0;
    height: 35px;
}

.mobileMenuTrigger label {
    position: absolute;
    left: -666vw;
}

.menu-trigger {
    cursor: pointer;
    margin: 0;
    width: 30px;
    height: 30px;
    padding: 5px;
}

.menu-trigger:hover,
.menu-trigger:focus {
    color: var(--secondary);
}


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

#mobileMenuWrapper {
    box-shadow: 7px 0 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 200;
    overflow-y: auto;
    overflow-x: hidden;
    left: -120%;
    width: 300px;
    background-color: white;
    transition: left 300ms cubic-bezier(1.000, 0.010, 0.0, 1.000);
    color: #444;
    background: var(--dark-green);
}

#mobileMenuWrapper.open {
    left: 0;
}

#mobile-menu {
    list-style: none;
    overflow-y: auto;
    overflow-x: visible;
    padding: 1em 1.5em;
}

.triggerClose {
    text-align: right;
}

#mobile-menu button {
    border: none;
}

.triggerClose button {
    background: none;
    font-weight: bold;
    font-size: 2em;
    color: white;
}

#mobileMenuWrapper a {
    display: inline-block;
    width: 100%;
    margin-bottom: .75em;
    color: white;
}

#mobileMenuWrapper .mDropdown {
    display: none;
    list-style: none;
    padding: 0;
    background: none;
    border-top: 1px solid var(--green);
    border-bottom: 1px solid var(--green);
    padding-top: .75em;
    margin-bottom: .75em;
}

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

.mDropdown>li>a {
    padding: 0;
}

.mDropdown-parent {
    color: var(--orange);
}

#mobileMenuWrapper .supplimental-links ul {
    display: flex;
    gap: 15px;
    align-items: center;
}

#mobileMenuWrapper .supplimental-links a {
    margin: 0;
}


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

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

main:not(#homepage-main) {
    padding: 2rem 15px 3rem;
}

#homepage-main h1,
#homepage-main h2 {
    text-align: center;
}

#subpage-main .row,
#homepage-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: 2.5em;
}

#subpage-main div[class^="col"]+.col-md-12,
#homepage-main div[class^="col"]+.col-md-12 {
    margin-top: 2em;
}

@media(max-width: 1200px) {
    #homepage-main article>section,
    #subpage-main {
        padding: 3.5em 0;
    }
}

@media(max-width: 990px) {
    #homepage-main article>section,
    #subpage-main {
        padding: 2.5em 0;
    }
}

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

@media (max-width: 767px) {
    #homepage-main article>section,
    #subpage-main {
        padding: 1.5em 0;
    }
    #subpage-main .row,
    #homepage-main .row {
        margin-bottom: 2em;
    }
    #subpage-main [class*="col-md"]+[class*="col-md"] {
        margin-top: 1rem;
    }
    #subpage-main div[class^="col-md"],
    #homepage-main div[class^="col-md"] {
        margin-bottom: 1em;
    }
    #homepage-main article>section {
        padding: 3em 0;
    }
}

@media (max-width: 450px) {
    #homepage-main article>section {
        padding: 2em 0;
    }
}


/*  Home Slideshow  ------------------------
    ----------------------------------------
 */

#slide-row .carousel-caption {
    position: absolute;
    z-index: 100;
    background: transparent;
    left: 0;
    bottom: 0;
    right: 0;
    top: unset;
    width: 100%;
    text-align: left;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: none;
    padding: 10px 0 15px;
}

#slide-row .carousel-caption::before {
    content: '';
    position: absolute;
    z-index: -1;
    left: calc(var(--side-margin) * -1 - 15px);
    right: calc(var(--side-margin) * -1 - 15px);
    bottom: 0;
    top: 0;
    background: var(--black);
    opacity: .6;
}

#slide-row .caption-wrapper {
    padding-left: 30px;
    padding-right: 30px;
}

#slide-row .caption-text {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.2;
    display: block;
    color: white;
}

#slide-row .alt-text {
    font-size: 1rem;
    line-height: 1.2;
    color: white;
}

#slide-row p {
    margin-bottom: 0;
}

#slide-row p+p {
    margin-top: 10px;
}

@media (max-width: 990px) {
    #slide-row .carousel-caption {
        padding-bottom: 10px;
    }
    #slide-row .caption-text {
        font-size: 18px;
    }
    #slide-row p+p {
        margin-top: 5px;
    }
}

@media (max-width: 767px) {
    #slide-row>.column {
        padding: 0;
    }
    #slide-row .carousel-caption {
        padding-left: 15px;
        padding-right: 15px;
        position: relative;
        background: var(--black);
    }
    #slide-row .caption-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/*  Home Slideshow  ------------------------
    ----------------------------------------
 */


/*  District Row----------------------------
    ----------------------------------------
 */

#district-row:not(#mycanvas #district-row) {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
}

#district-row:not(#mycanvas #district-row)::before {
    z-index: -2;
}

#district-row:not(#mycanvas .row)>.column:nth-child(1) {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#district-row:not(#mycanvas .row)>.column:nth-child(1)::before {
    content: '';
    background: url('../images/iStock-174802352.jpg');
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -2;
    background-size: cover;
}

#district-row:not(#mycanvas .row)>.column:nth-child(1)::after {
    content: '';
    background: #d2b48c;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background-size: cover;
    opacity: .4;
}

#district-row .column {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

#district-row:not(#mycanvas .row)>.column:nth-child(2) *,
#district-row:not(#mycanvas .row)>.column:nth-child(3) * {
    color: white;
}

.district-list {
    padding: 0;
    list-style-type: none;
    margin: 0;
}

.district-list li:not(:last-child) {
    margin-bottom: 1rem;
}

.district-list h3 {
    font-size: 26px;
    margin: 0;
}

.district-list h3::before {
    content: '';
}

.district-list h4 {
    font-size: 16px;
    font-family: inherit;
    margin-bottom: 5px;
    text-transform: unset;
    letter-spacing: normal;
    font-weight: bold;
}

.district-list .representitive {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 10px 15px;
}

.district-list img {
    width: 70px;
    height: 70px !important;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 991px) {
    #district-row:not(#mycanvas #district-row) {
        display: flex;
    }
    #district-row:not(#mycanvas .row)>.column:nth-child(1) {
        order: 2;
    }
    #district-row>.column:nth-child(2) {
        order: 1;
    }
    #district-row>.column:nth-child(3) {
        order: 3;
    }
}

@media (min-width: 768px) {
    .district-list {
        font-size: 14px;
    }
}

@media (max-width: 990px) and (min-width: 768px) {
    #district-row .column:nth-of-type(2) {
        padding-left: 0;
    }
    #district-row .column:nth-of-type(3) {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    #district-row>.column:nth-child(2) {
        padding-bottom: 0;
    }
}


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

#news-row:not(#mycanvas .row-background)::before {
    background-image: url(../images/iStock-174802352.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

#news-row:not(#mycanvas .row-background)>.column::before {
    content: '';
    background: var(--dark-green);
    position: absolute;
    top: -2.5rem;
    bottom: -2.5rem;
    left: calc(var(--side-margin) * -1 - 13px);
    right: calc(var(--side-margin) * -1);
    display: block;
    opacity: .25;
    z-index: -1;
}

#news-row:not(#mycanvas .row-background)>.column,
#events-row:not(#mycanvas .row-background)>.column {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1rem 30px;
}

#news-row:not(#mycanvas .row) h2 {
    color: white;
}

#news-row h2,
#events-row h2,
#news-row .button-link,
#events-row .button-link {
    grid-column: 1 / -1;
    margin-left: auto;
    margin-right: auto;
}


/*  Take Action row --------------------
----------------------------------------
 */

.action-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.action-list li {
    padding: .75rem;
    border-radius: 3px;
    margin-bottom: .5rem;
    background: var(--dark-green);
    transition: .125s background ease-in-out;
}

.action-list li:hover,
.action-list li:focus {
    background: var(--light-green);
}

.action-list a {
    display: flex;
    justify-content: space-between;
    gap: .5rem 30px;
    flex-wrap: wrap;
    color: white;
}

.action-list span:last-child::after {
    content: '→';
    display: inline-block;
    margin-left: .5ch;
    overflow: hidden;
    position: relative;
    top: 2px;
}


/*  Sponsors Row -----------------------
----------------------------------------
 */

.sponsors-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    padding: 0;
    margin: 0 0 1rem;
    list-style-type: none;
    gap: 1rem 30px;
}

.sponsors-list li {
    justify-self: center;
}

.sponsors-list img {
    border: 1px solid #e6e9f4;
    border-radius: 3px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .sponsors-list {
        gap: 2rem 30px;
    }
}

@media (max-width: 767px) {
    .sponsors-list {
        gap: 1.5rem 30px;
    }
}


/*  Signpost row -----------
----------------------------------------
 */

#signpost-row:not(#mycanvas .row-background)::before {
    background: url('../images/iStock_1285424462.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -2;
}

#signpost-row:not(#mycanvas .row-background) .col-md-12+.col-md-6 * {
    color: white;
}

#signpost-row h2 {
    color: white;
}


/* Signpost contact form */

.newsletter-form {
    background: white;
    border-radius: 3px;
    padding: 20px 30px;
}

.newsletter-form label {
    position: absolute;
    left: -666vw;
}

#homepage-main .newsletter-form .row,
.newsletter-form .form-group {
    /* Verbose selector needed to overwrite .row styles for those inside of #homepage-main */
    margin-bottom: 10px;
}

.newsletter-form .form-group {
    margin-top: 0;
}

.newsletter-form .col-sm-offset-2 {
    margin-left: 0;
    padding: 0;
    float: none;
}


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

footer {
    padding: 2rem 0;
    background: var(--black);
}

footer>div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .5rem 30px;
}

footer span,
footer a {
    color: #ddd;
}

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

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