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

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

:root {
    --red: #EB1C2C;
    --gray: #BCBDC0;
    --light-gray: #E6E7E9;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #333;
    overflow-x: hidden;
}

#subpage-main p:empty {
    display: none;
}


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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .8em;
    padding: 0;
    font-weight: bold;
    color: black;
    font-family: 'Open Sans Condensed', sans-serif;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 25px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

h1.title.title:empty {
    display: none;
}


/*^^Hides the extra margin that is added on pages without a title*/

#subpage-main p:not(:empty)+h2,
#subpage-main p:not(:empty)+h3,
#subpage-main p:not(:empty)+h4,
#subpage-main ul+h2,
#subpage-main ul+h3,
#subpage-main ul+h4,
#subpage-main table+h2,
#subpage-main table+h3,
#subpage-main table+h4 {
    margin-top: 1.5em;
}

#subpage-main h2+ul,
#subpage-main h3+ul,
#subpage-main h4+ul {
    margin-top: -.75rem;
    /*Adjusts for the margin-bottom placed on these headings to make the ul's look like they belong to that heading*/
}

#homepage-main h1,
#homepage-main h2 {
    font-size: 40px;
}

#homepage-main h3 {
    font-size: 22.4px;
}

#homepage-main h4 {
    font-size: 20px;
}

#homepage-main h1 a,
#homepage-main h2 a,
#homepage-main h3 a,
#homepage-main h4 a {
    text-decoration: none;
    color: inherit;
}


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

a {
    color: var(--red);
    text-decoration: none;
}

#mms-main a {
    text-decoration: underline;
}

a:hover,
a:focus {
    color: black;
    transition: color .125s ease-in;
}

a.button {}

a.button:hover,
a.button:focus {
    text-decoration: none;
}

a.button+* {
    padding-top: 1.5em;
}


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

@media (min-width:768px) {
    .wrapper {
        width: 750px;
    }
}

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

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

#subpage-main img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

figcaption {
    font-style: italic;
    font-size: .9em;
    padding-top: 5px;
}

@media (max-width: 767px) {
    figcaption {
        font-size: 1em;
    }
}

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


/*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*/

#subpage-main table {
    max-width: 100%;
    border-collapse: collapse;
    color: #212529;
    margin-bottom: 1em;
}

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

#subpage-main table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
    border-top: none;
}

#subpage-main table caption {
    padding-top: .75rem;
    padding-bottom: .75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom;
}

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

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.*/
}


/*--------------------------------------------------------
					Log In Modal
--------------------------------------------------------*/

#login-modal .modal-dialog {
    max-width: 260px;
    font-size: 16px;
}

#login-modal h1 {
    font-size: 1.1rem;
    text-transform: capitalize;
}

#login-modal input[name="Username"],
#login-modal input[name="Password"] {
    width: 100%;
    padding-left: .25em;
    padding-right: .25em;
    margin-bottom: 0.5em;
    height: 2em;
}

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

#login-modal input[type="submit"] {
    color: white;
    display: inline-block;
    background: var(--blue);
    padding: calc(46px / 2 - 0.7em);
    text-decoration: none;
    z-index: 1;
    text-transform: capitalize;
    position: relative;
    min-width: calc(9vw + 5px);
    text-align: center;
    border: none;
    margin-top: 1em;
    transition: background .125s ease-in;
}

#login-modal input[type="submit"]:hover,
#login-modal input[type="submit"]:focus {
    background: var(--dark-blue);
}

#login-modal input[type="submit"]+* {
    padding-top: 1.5em;
}


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

header {
    display: flex;
    flex-direction: row;
    padding: 15px 15px 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
    position: relative;
}

@media (min-width:768px) {
    header {
        width: 750px;
    }
}

@media (min-width:992px) {
    header {
        width: 970px;
    }
}

@media (min-width:1200px) {
    header {
        width: 1170px;
    }
}

@media (max-width:768px) {
    header {}
}

header a {
    text-decoration: none;
}

#logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#logo img {
    max-width: calc(50vw - 30px);
    height: auto;
}

header>section:last-of-type {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
}


/*--------------------------------------------------------
					Search and Social Media
--------------------------------------------------------*/

#header-tools {
    text-align: right;
}

.searchbox {
    position: relative;
    height: 30px;
    width: 225px;
    max-width: calc(50vw - 30px);
    border: 2px solid #808184;
    display: inline-block;
    margin-right: .25em;
}

.search-input {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1;
    border: none;
    font-style: italic;
    padding-left: .5ch;
}

.search-button {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    background-color: transparent;
    background-image: url('../images/search.svg');
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    width: 30px;
}

#social-links {
    display: inline-block;
}

#social-links a,
#social-links a:hover {
    text-decoration: none;
}

#social-links svg {
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-left: .25em;
    border: 2px solid #808184;
    vertical-align: inherit;
}

#social-links :hover svg,
#social-links :focus svg {
    border: 0 solid #808184;
    transition: border .25s ease-in-out;
}

#social-links path {
    fill: #808184;
}

#social-links svg#ig-icon .cls-2 {
    fill: #808184 !important;
}

#social-links a:hover svg#ig-icon .cls-2 {
    fill: #fff !important;
}

#social-links :hover path,
#social-links :focus path {
    fill: white;
    transition: fill .25s ease-in-out;
}

#social-links rect {
    width: 100%;
    height: 100%;
}

#social-links a:not(:hover):not(:focus) rect {
    fill: transparent;
    transition: fill .25s ease-in-out;
}

#social-links svg#anchorfm-svg:hover {
    background: #4C3EA4;
}

#social-links :visited svg#anchorfm-svg,
#social-links :focus svg#anchorfm-svg {
    border: 2px solid #808184;
}

#social-links :visited svg#anchorfm-svg path {
    fill: #808184;
}

.join-phone-wrap {
    margin-top: 10px;
}

.join-btn-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-right: 13px;
}

.join-btn-wrap a {
    background: #EB1C2C;
    color: #fff;
    padding: 5px 20px;
    text-align: center;
    text-decoration: none;
}

.phone-link-wrap {
    display: inline-block;
    vertical-align: middle;
}

.phone-link {
    display: block;
    margin-top: .5em;
    color: #808184;
}

@media (max-width: 767px) {
    header .phone-link,
    header #social-links,
    .join-phone-wrap {
        display: none;
    }
}


/*--------------------------------------------------------
					Desktop Navigation
--------------------------------------------------------*/

@media (max-width: 990px) {
    #desktop-menu {
        display: none;
    }
}

#desktop-menu::before {
    content: '';
    background: var(--red);
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100vw;
    height: 100%;
    width: 200vw;
    transform: translateX(50vw);
}

#nav_menu {
    padding: 0;
    font-size: 23px;
    font-family: 'Open Sans Condensed', sans-serif;
}

#nav_menu>ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

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

#nav_menu .navbar-nav>li>a {
    padding: 12px 15px;
    font-weight: 500;
    color: white;
    text-decoration: none;
    white-space: nowrap;
}

@media (max-width: 1300px) {
    #nav_menu .navbar-nav>li>a {
        font-size: 20px;
        padding: 12px 10px;
    }
}

#nav_menu .nav .open>a,
#nav_menu .nav .open>a:focus,
#nav_menu .nav .open>a:hover,
#nav_menu .navbar-nav a[aria-expanded="true"],
#nav_menu .nav>li>a:focus,
#nav_menu .nav>li>a:hover {
    /* Overwriting BS defaults */
    background: white;
    color: var(--red);
    transition: background .125s ease-in, color .125s ease-in;
}

#nav_menu .dropdown-menu {
    border: none;
    border-radius: 0;
    font-size: 20px;
    padding: 5px 0;
    border-bottom: 5px solid var(--red);
}

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

#nav_menu .dropdown-menu>li>a {
    padding: 5px 15px;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
}

#nav_menu .dropdown-menu>li>a:focus,
#nav_menu .dropdown-menu>li>a:hover {
    color: white;
    background-color: var(--red);
    transition: color .125s ease-in, background .125s ease-in;
}

nav a,
#mobile-menu a {
    color: #555;
}


/*--------------------------------------------------------
					Mobile Navigation
--------------------------------------------------------*/

@media (min-width: 990px) {
    .menu-trigger {
        display: none;
    }
}

.menu-trigger {
    cursor: pointer;
    margin-top: 0.5em;
    margin-left: 0.75em;
    margin-right: 5px;
    width: 30px;
    background: #e03826;
    height: 30px;
    padding: 0 4px;
    /* border-radius: 3px; */
}

.menu-trigger:not(:focus):not(:hover) line {
    stroke: white;
    transition: background .25s ease-in, outline .25s ease-in;
}

.menu-trigger:hover,
.menu-trigger:focus {
    background: white;
    outline: 2px solid #e03826;
}

.menu-trigger:active {
    outline: 3px solid #e03826;
    transition: stroke-width .25s ease-in;
}

.menu-trigger:active line {
    stroke-width: 5;
}

#mobileMenuWrapper {
    box-shadow: 7px 0 5px rgba(0, 0, 0, 0.1);
}

#mobile-menu {
    overflow-y: auto;
    overflow-x: visible;
    padding: 15px 15px 60px 10px;
}


/* #mobile-menu #social-links {
    margin-left: .25em;
    position: absolute;
    bottom: 0;
}

#mobile-menu .phone-link {
    margin-left: .25em;
    position: absolute;
    bottom: 0;
    right: 10px;
    text-align: right;
} */

#mobile-social-links {
    padding-left: 10px;
    margin-top: 2em;
}

#mobile-social-links ul {
    padding: 0;
}

#mobile-social-links li:not(:last-child) {
    display: inline-block;
    margin-right: .5ch;
}

#mobile-social-links img {
    background: var(--gray);
    width: 30px;
}

#mobileMenuWrapper .mDropdown a {
    padding: 0;
    margin: .5em 0;
    display: block;
}


/*--------------------------------------------------------
					Index / Main Body
--------------------------------------------------------*/

main {
    min-height: calc(100vh - 146px - 200px);
    /*The minimum height of the main section of the page should be the height of the screen minus the header and footer*/
    position: relative;
}

#subpage-main,
#mms-main {
    margin-top: 2em;
}

@media (max-width: 900px) {
    #subpage-main,
    #mms-main {
        margin-bottom: 1.5em;
    }
}

@media (min-width: 767px) {
    #subpage-main .row {
        margin-bottom: 2.5em;
    }
}

@media (max-width: 767px) {
    #subpage-main div[class^="col-md"],
    #homepage-main div[class^="col-md"] {
        margin-bottom: 1em;
    }
}


/*^^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*/


/*--Slideshow-defaults---------*/

.carousel-caption {
    position: relative;
    z-index: 100;
    background-color: var(--light-gray);
    padding: 70px 15px;
    top: inherit;
    bottom: 0;
    left: inherit;
    right: 0;
    width: 100%;
    text-align: left;
    text-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Open Sans Condensed', sans-serif;
}

#slide-row .caption-wrapper {
    font-size: 36px;
    max-width: 50ch;
    margin: 0 auto;
    max-height: 288px;
}

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

.carousel-indicators {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0;
    padding: 10px;
    width: 100%;
}

.carousel-indicators li,
.carousel-indicators li.active {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid var(--gray);
    background: transparent;
    margin: 0 5px;
    /* max-width: 5vw; */
}

.carousel-indicators li.active {
    border-color: var(--red);
}


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

#slide-row img {
    width: 100%;
}

#slide-row .caption-text,
#slide-row .alt-text {
    font-size: inherit;
    line-height: 1.3;
    font-style: normal;
    font-weight: 600;
    color: black;
    text-align: center;
}

#slide-row .alt-text {
    font-size: 28px;
    text-align: right;
}

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

#slide-row .carousel-indicators {
    bottom: 300px;
}

#slide-row .carousel-indicators li {
    border: 3px solid white;
    margin: 0 15px;
    width: 30px;
    height: 30px;
}

#slide-row .carousel-indicators .active {
    border: 3px solid red;
}

footer .item.active {
    display: flex;
}

footer .carousel img {
    margin: auto;
}

@media (max-width: 990px) {
    #slide-row .carousel-indicators {
        bottom: 0;
    }
    .carousel-caption {
        padding: 30px;
        min-height: 175px;
    }
    #slide-row .caption-wrapper {
        max-width: unset;
        min-height:
    }
    #slide-row .caption-text {
        font-size: 20px;
        text-align: left;
    }
    #slide-row .alt-text {
        font-size: 16px;
        text-align: left;
    }
    #slide-row .carousel-indicators li,
    #slide-row .carousel-indicators li.active {
        margin: 0 5px;
        width: 20px;
        height: 20px;
    }
}


/*----------------End Slideshow------*/


/*--------------------------------------------------------
	CTA Row
--------------------------------------------------------*/

#cta-row {
    position: relative;
    padding: 2.5em 0;
    display: flex;
    justify-content: center;
}

#cta-row>.column {
    display: inline-flex;
    max-width: 850px;
    justify-content: space-around;
}

#cta-row img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: auto;
}

#cta-row>.col-md-4>a {
    font-size: 25px;
    line-height: 1.1;
    font-weight: bold;
    color: #e03826;
    margin-top: .5em;
    display: block;
}

#cta-row>.col-md-4>a::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 200px;
    /* background: magenta; */
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
}

@media (max-width: 767px) {
    #cta-row {
        padding: 1em 0;
        margin: 2em -15px;
    }
    #cta-row>.col-md-4>a {
        font-size: 16px;
    }
    #cta-row img {
        max-width: 90%;
    }
}

@media (max-width: 500px) {
    #cta-row {
        display: block;
    }
}


/*--------------------------------------------------------
	Strengthen/Join Rows
--------------------------------------------------------*/

#strengthen-row,
#join-row {
    position: relative;
    font-size: 40px;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-family: 'Open Sans Condensed', sans-serif;
}

#strengthen-row h1 {
    color: inherit;
    margin-bottom: 0;
}

#strengthen-row::before,
#join-row::before {
    content: '';
    background: var(--gray);
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100vw;
    height: 100%;
    width: 200vw;
    transform: translateX(50vw);
}

#join-row::before {
    background: var(--red);
}

#join-row a {
    color: white;
    text-decoration: none;
    font-size: .9em;
    border: 2px solid white;
    padding: 5px 10px;
    letter-spacing: -.05ch;
}


/*--------------------------------------------------------
	Feeds and Blog Rows
--------------------------------------------------------*/

#feeds-row,
#blog-row {
    padding-top: 2.5em;
    padding-bottom: 2.5em;
    position: relative;
}

.news-item {
    margin-bottom: 80px;
}

.news-item h3 {
    margin-bottom: 0;
}

#feeds-row h3 a {
    text-decoration: none;
}

.news-item p {
    margin: 0;
    line-height: 1.4;
    display: inline;
}

.news-item p::after {
    content: ' ';
    display: inline-block;
}

.news-more-info-link {
    display: inline-block;
    background: var(--red);
    color: white;
    text-decoration: none;
    font-size: .9em;
    padding: 1px 4px;
    border-radius: 3px;
    font-family: 'Open Sans Condensed', sans-serif;
    transition: background .125s ease-in;
}

.news-more-info-link:hover,
.news-more-info-link:focus {
    background: var(--gray);
    text-decoration: none;
    color: white;
}

.event-item {
    display: flex;
    font-family: 'Open Sans Condensed', sans-serif;
    color: white;
    min-height: 220px;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.event-item:last-child {
    margin-bottom: 60px;
}

.event-item:last-child::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    border-bottom: 2px solid var(--red);
    display: block;
}

.event-item time {
    background: var(--gray);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22.4px;
    margin-top: 30px;
}

.event-item span {
    display: block;
    text-transform: uppercase;
    line-height: 1;
}

.event-item span+span {
    margin-top: 5px;
}

.event-item figure {
    background-color: var(--gray);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: calc(100% - 100px - 30px);
    padding: 0 15px 15px;
}

.event-item figcaption {
    font-style: normal;
}

.event-item h3,
.event-item h3 a {
    color: white;
}

.event-item h3 {
    margin-top: 65px;
    text-shadow: 1px 1px 2px black;
}

@media (max-width: 600px) {
    .event-item time {
        width: 70px;
        height: 70px;
        font-size: 20px;
    }
    .event-item figure {
        width: calc(100% - 70px - 15px);
    }
}

#blog-row::before {
    content: '';
    background: var(--light-gray);
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100vw;
    height: 100%;
    width: 200vw;
    transform: translateX(50vw);
}

#quick-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 22.4px;
}

#quick-links li {
    margin-bottom: .5em;
}

#blog-row>.col-md-12 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 15px;
}

#blog-row h2,
#news-column h2 {
    grid-column: 1 / -1;
}

@media (max-width: 767px) and (min-width: 600px) {
    #news-column {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 15px;
    }
}

@media(max-width: 600px) {
    #blog-row>.col-md-12 {
        display: block;
    }
    .news-item {
        margin-bottom: 30px;
    }
}


/*--------------------------------------------------------
				CSS Styles for Inner Pages
--------------------------------------------------------*/


/*----------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: "›";
}


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

footer {
    padding-top: 3em;
    /* padding-bottom: 2em; */
}

footer .carousel {
    padding-top: 1em;
    padding-bottom: 3em;
    margin-bottom: .5em;
    position: relative;
}

footer .carousel img {
    max-width: 100%;
}

footer p {
    margin: 2em 0 0;
    padding: 5px 0;
    position: relative;
    color: white;
}

footer p::before {
    content: '';
    background: var(--red);
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100vw;
    height: 100%;
    width: 200vw;
    transform: translateX(50vw);
    z-index: -1;
}

footer a {
    color: white;
}

@media (max-width: 767px) {
    footer p::before,
    #desktop-menu::before,
    #strengthen-row::before,
    #join-row::before,
    #blog-row::before {
        transform: none;
    }
}


/*--------------------------------------------------------
						MMS Styling
--------------------------------------------------------*/