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

:root {
    --page-width: 100vw;
    --side-margin: calc((100vw - var(--page-width)) / -2);
    --navy: #507CBF;
    --blue: #1F4D91;
    --yellow: #FECE0E;
    --pink: #E071A4;
    --green: #31DE8A;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    max-width: 100%;
    overflow-x: clip;
}

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

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

@media (min-width: 1201px) {
     :root {
        --page-width: 1170px;
    }
}

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

.full-width>.column {
    padding-left: 0;
    padding-right: 0;
}

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

p {
    margin-bottom: 0.8em;
}


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

h1,
h2,
h3,
h4 {
    margin-top: 0;
    padding: 0px;
    margin-bottom: .4em;
    color: #1F4D91;
    font-weight: bold;
    /* text-transform: capitalize; */
    line-height: 1.1;
}

h1 {
    font-size: 34px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h1.title {}

h1.title:empty {
    display: none;
}


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


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

a {
    color: #1F4D91;
    transition: .5s color;
}

a:hover,
a:focus {
    color: #403672;
    text-decoration: none;
}

a.view-all,
#news-newsletter-row #contact-form input[type="submit"] {
    color: white;
    vertical-align: middle;
    border: 3px solid #fff;
    border-radius: 3px;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    line-height: 1;
    cursor: pointer;
    -webkit-appearance: none;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
    padding: 0.85em 1em;
    text-transform: capitalize;
    background: inherit;
}

a.view-all:not(.event-button) {
    float: right;
    margin-bottom: .5em;
}

a.view-all::after,
#news-newsletter-row #contact-form input[type="submit"]::after {
    content: url(../images/view-arrow.svg);
    padding-left: .5em;
    position: relative;
    top: 1px;
}

a.view-all:hover,
a.view-all:focus,
#news-newsletter-row #contact-form input[type="submit"]:hover,
#news-newsletter-row #contact-form input[type="submit"]:focus {
    background: #403672;
    color: white;
}

a.event-button {
    margin-top: 1em;
    background: #1F4D91;
}

a.event-button::after {
    content: none;
}


/*--------------------------------------------------------
	IMAGES, Objects
--------------------------------------------------------*/

grammarly-extension,
grammarly-extension-vbars {
    display: none;
}

.blue-bg {
    background-color: #1F4D91;
    color: white;
    padding: 10px;
    margin-bottom: 15px;
}

.red-bg {
    background-color: #BF3C33;
    color: white;
    padding: 10px;
    margin-bottom: 15px;
}

.purple-bg {
    background-color: #403456;
    color: white;
    padding: 10px;
    margin-bottom: 15px;
}

.gray-bg {
    background-color: #CAC8C9;
    padding: 10px;
    margin-bottom: 15px;
}


/*.blue-bg *:not(input) {
    color: white;
}
.blue-bg *:not(select) {
    color: white;
}
.blue-bg *:not(option) {
    color: white;
}*/

.form-control {
    color: #333;
}

.blue-bg a {
    color: white;
}

.red-bg *:not(input, textarea) {
    color: white;
}

.purple-bg *:not(input) {
    color: white;
}

iframe {
    max-width: 100%;
}


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

header {
    padding-top: 1em;
    padding-bottom: 1em;
}

header .col-md-12 {
    position: relative;
}

@media (max-width: 480px) {
    header img[src$="iawa-logo.png"] {
        max-width: 50%;
    }
}

.login-social-links {
    list-style: none;
    position: absolute;
    right: 15px;
    top: 1em;
    display: flex;
    align-items: center;
    gap: 1ch;
    flex-wrap: wrap;
}

.login-social-links a:is(.yellow, .pink, .green) {
    display: block;
    padding: 8px 1.5ch;
    line-height: 1;
    border-radius: calc(1em - 4px);
    color: #333;
    font-weight: 600;
}

.login-social-links .yellow {
    background: var(--yellow);
}

.login-social-links .pink {
    background: var(--pink);
}

.login-social-links .green {
    background: var(--green);
}

@media (max-width: 767px) {
    .login-social-links li:has(.green) {
        display: none;
    }
}
@media (max-width: 395px) {
    .login-social-links {
        display: none;
    }
}


/* .login-social-links svg {
    background: #1F4D91;
    width: 30px;
}

.login-social-links svg#ig-icon .cls-1 {
    fill: #1F4D91;
}*/

svg#x-twitter-icon {
    padding: 4px;
    width: 30px;
    height: 30px;
}

.searchbox {
    position: relative;
    width: 170px;
    height: 27px;
    top: -1px;
}

.searchbox .search-input {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: none;
    outline: 2px solid #1F4D91;
    padding: 0 .5ch;
    width: inherit;
    border-radius: calc(1em - 4px);
    text-indent: 2px;
}

.searchbox .search-button {
    display: none;
}

@media (max-width: 570px) {
    header .searchbox {
        display: none;
    }
}

#mobileMenuWrapper .searchbox {
    margin-left: 8px;
    margin-top: 1em;
    width: calc(100% - 30px);
}

header .mobileMenuTrigger {
    display: none;
}

header .menu-trigger line {
    fill: none;
    stroke: #1F4D91;
    stroke-width: 6;
}

#nav_menu {
    display: inline-block !important;
    /*Overwrites Bootstrap style that is already !important'd*/
    width: calc(100% - 174px);
    position: relative;
    top: 60px;
}

@media (max-width: 990px) {
    #nav_menu {
        display: block!important;
        width: 100%;
        top: 0px;
    }
}

@media (max-width: 767px) {
    #nav_menu {
        display: none!important;
    }
    header .mobileMenuTrigger {
        display: block;
        position: absolute;
        right: 10px;
        bottom: 0;
    }
}

@media (max-width: 480px) {
    header img[src$="iawa-logo.png"] {
        max-width: 45%;
    }
    .login-social-links li {
        margin-left: 3px;
    }
    .login-social-links svg {
        width: 25px !important;
        height: 25px !important;
    }
    header .mobileMenuTrigger {
        right: 15px;
        top: 50px;
    }
}

@media (max-width: 380px) {
    header img[src$="iawa-logo.png"] {
        max-width: 40%;
    }
    .login-social-links li {
        margin-left: 2px;
    }
    .login-social-links svg {
        width: 20px !important;
        height: 20px !important;
    }
    header .mobileMenuTrigger {
        /* right: 15px;
        top: 45px; */
    }
    svg.menu-trigger {
        /* width: 30px; */
    }
}


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

.NP {
    padding-left: 0;
    padding-right: 0;
}

#nav_menu .navbar-nav>li {
    float: left;
}

#nav_menu .nav>li>a {
    color: #1F4D91;
    font-weight: bold;
    padding: .5em 1em;
    text-transform: capitalize;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 16px;
    transition: .5s color;
}

#nav_menu .nav>li>a {
    background: transparent;
}

@supports (display: flex) {
    #nav_menu .nav {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        float: none;
    }
    #nav-col .navbar-nav>li {
        float: none;
        border: none;
        flex-grow: 1;
    }
    #nav_menu .nav>li>a {
        padding: 25px 0;
        text-align: center;
    }
    #nav_menu .nav>li:last-child>a {
        padding-right: 0px !important;
    }
}

#nav-col .nav>li>a:hover,
#nav-col .nav>li>a:focus,
#nav-col .nav .open>a,
#nav-col .nav .open>a:hover,
#nav-col .nav .open>a:focus {
    color: #403672;
}


/*--------------------------------------------------------
    MOBILE MENU
--------------------------------------------------------*/

#mobileMenuWrapper {
    position: fixed;
    top: 0px;
    bottom: 0px;
    z-index: 100;
    overflow-y: auto;
    overflow-x: hidden;
    left: -120%;
    width: 315px;
    background-color: #FFF;
    border: 1px solid #CCC;
    transition: all 300ms cubic-bezier(1, 0.01, 0, 1) 0s;
}

#mobileMenuWrapper.open {
    left: 0px;
}

#mobileMenuWrapper #mobile-menu {
    overflow: auto;
    padding: 0px 20px 10px;
}

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

#mobile-menu>li#triggerClose {
    display: inline;
    float: right;
    transform: rotate(45deg);
    font-size: 22px;
    cursor: pointer;
}

#mobile-menu a {
    display: inline-block;
    width: 100%;
    margin-top: 10px;
    color: #6D6E71;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

#mobileMenuWrapper ul.mDropdown a::before {
    content: '';
    display: inline-block;
    height: 0.3em;
    width: 0.3em;
    margin-right: .25em;
    background: #6D6E71;
    border-radius: 1em;
    opacity: 0.8;
    margin-bottom: 0.2em;
}

#mobile-toggle {
    border: none;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
}

#mobile-menu-col {
    float: right;
}

#mobile-logo {
    width: 40%;
    float: left;
    margin-top: 27px;
    margin-bottom: 20px;
}

#mobile-logo a {
    margin: 0 !important;
}

#mobile-logo svg#logo {
    width: 250px;
    max-width: 250px;
}

svg#burger {
    width: 32px;
    height: 32px;
}

svg#burger rect {
    fill: #DEB408;
}


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

main {
    min-height: calc(100vh - 157px - 267px);
}

#homepage-main>.row:last-child {
    margin-bottom: 0;
}

.contol-label-left {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: left;
}


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

#slide-row {
    position: relative;
}

#slide-row .carousel {
    text-align: right;
}

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

#slide-row .carousel-control {
    display: none;
}

#slide-row .carousel-indicators {
    bottom: 0;
    margin: 0;
    width: 50%;
    text-align: right;
    left: unset;
    right: 3em;
}

#slide-row .carousel-indicators li {
    height: 10px;
    width: 10px;
}

#slide-row .carousel-caption {
    position: absolute;
    z-index: 100;
    background: transparent;
    left: unset;
    bottom: 0;
    right: 0;
    top: 0;
    width: 100%;
    text-align: left;
    text-shadow: none;
    margin: 0;
    font-size: 2em;
    font-weight: bold;
    max-width: 40%;
    line-height: 1.1;
}

#slide-row .caption-wrapper {
    position: relative;
    height: 100%;
}

#slide-row p.caption-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

#slide-row p.alt-text {
    display: none;
}

@media (max-width: 990px) {
    #slide-row {
        margin-bottom: 2em;
    }
    #slide-row img {
        margin: auto;
    }
    #slide-row .carousel-caption {
        position: relative;
        max-width: 100%;
        background: #CAC8C9;
        padding: 1em;
    }
    #slide-row p.caption-text {
        background: transparent;
        position: relative;
        top: unset;
        padding: 0;
        margin: unset;
        transform: none;
    }
}

@media (max-width: 767px) {
    #slide-row .carousel-caption {
        font-size: 1.5em;
    }
}

@media (max-width: 600px) {
    #slide-row .carousel-caption {
        font-size: 1.2em;
        line-height: 1.3;
        max-width: 100%;
        left: 0;
    }
    #slide-row p.caption-text {
        top: unset;
        transform: none;
        bottom: 0;
    }
}


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


/*------Slideshow Fade=------*/

.carousel-fade .carousel-inner .item {
    opacity: 0;
    transition-property: opacity;
}

.carousel-fade .carousel-inner .active {
    opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    opacity: 0;
    z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}

.carousel-fade .carousel-control {
    z-index: 2;
}

@media all and (transform-3d),
(-webkit-transform-3d) {
    .carousel-fade .carousel-inner>.item.next,
    .carousel-fade .carousel-inner>.item.active.right {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner>.item.prev,
    .carousel-fade .carousel-inner>.item.active.left {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner>.item.next.left,
    .carousel-fade .carousel-inner>.item.prev.right,
    .carousel-fade .carousel-inner>.item.active {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}


/*----------------Home: Supporters------*/

#home-supporters {
    background: #CAC8C9;
    /*height: 130px;*/
    position: relative;
    padding-top: 1em;
    padding-bottom: 1em;
}

#home-supporters>.column {
    height: inherit;
}

#home-supporters .image-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    /*	position: absolute;
	top: calc(50% - 95px / 2);*/
    height: inherit;
}

.image-wrap img {
    max-width: 100%;
    height: auto;
    display: block;
}

#home-supporters .view-all {
    position: absolute;
    bottom: -.5em;
    border: none;
    color: white;
    padding: 0;
    margin-left: 15px;
}

#home-supporters .view-all:hover,
#home-supporters .view-all:focus {
    background: transparent;
    color: #403672;
}


/*------------End-Home: Supporters------*/


/*jQuery is used to move the #slide-row and #home-supporters out of the .container and the class of .jquery-enabled is added for styling. If jQuery is disabled or doesn't load, the class of .no-jquery won't be removed and these rows will be styled accordingly.*/


/* .no-jquery {
    margin-left: 0;
    margin-right: 0;
}

.jquery-enabled>.column {
    max-width: 1180px;
    margin-left: auto;
    float: none;
    margin-right: auto;
} */


/*------------Home: Save the Date Section------*/

#save-the-date {
    padding: 2em 0 1.5em;
    background: #1F4D91;
    position: relative;
    margin-bottom: 1em;
}

#save-the-date>h2 {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    position: absolute;
    top: 20%;
    right: 90px;
    font-size: 5em;
    font-family: 'Open Sans Condensed', sans-serif;
}

#save-the-date figcaption {
    background: #BF3C33;
    position: absolute;
    bottom: 20px;
    width: 34%;
    right: 90px;
    padding: 2em 2em 2em;
    color: white;
}

#save-the-date figcaption>* {
    color: inherit;
}

#save-the-date img {
    width: 33%;
    margin-left: 10%;
    display: block;
}

@media (max-width: 1200px) {
    #save-the-date>h2 {
        top: 10px;
    }
}

@media (max-width: 990px) {
    #save-the-date>h2 {
        left: 10%;
        top: calc(50% - 3em);
        width: 5ch;
        text-align: left;
        line-height: 1;
    }
    #save-the-date figcaption {
        position: relative;
        left: 0;
        right: 0;
        width: 100%;
        bottom: 0;
        top: 0;
        margin-bottom: -1.5em;
    }
    #save-the-date img {
        width: 50%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 6em;
    }
}

@media (max-width: 600px) {
    #save-the-date img {
        padding: 0;
        width: 30%;
    }
    #save-the-date>h2 {
        font-size: 10vw;
        line-height: .9;
        text-align: right;
        left: unset;
        right: 15px;
        top: 0;
        bottom: unset;
    }
}


/*--------end-Home: Save the Date Section------*/


/*--------2 up Cards------*/

#two-up-cards .col-md-12 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1em;
    margin-bottom: 1em;
    align-content: stretch;
}

figure.card {
    width: calc(50% - .5em);
    background: #1F4D91;
    color: white;
}

@media (max-width: 650px) {
    #two-up-cards .col-md-12 {
        flex-direction: column;
    }
    figure.card {
        width: 100%;
        margin-bottom: 1em;
    }
}

figure.card img {
    width: 100%;
    height: auto;
    display: block;
}

figure.card figcaption {
    padding: 2em;
}

figure.card * {
    color: inherit;
}


/*----end-2 up Cards------*/


/*----Event Photos------*/

#event-photos {
    margin-top: 1em;
    margin-bottom: 1em;
}

#event-photos figure img {
    max-width: 50%;
    display: inline-block;
    margin: 0;
    padding: 0;
    object-fit: cover;
    object-position: center;
    height: auto;
}

#event-photos figure {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
}

#event-photos figcaption {
    background: #1F4D91;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 2em 4em;
    color: white;
}

@media (max-width: 767px) {
    #event-photos figure img {
        max-height: 209px;
    }
    #event-photos figcaption {
        padding: 15px;
        left: 0;
        background: transparent;
    }
    #event-photos .view-all {
        background: #1F4D91;
    }
}


/*----end Event Photos------*/


/*----Upcoming Events------*/

#event-row .column {
    margin-top: 1em;
    margin-bottom: 1em;
}

.event-item {
    vertical-align: top;
    display: block;
    margin-bottom: 1em;
}

@media (min-width: 990px) {
    .event-item {
        display: inline-block;
        width: calc(25% - 90px / 4);
        display: inline-block;
        vertical-align: top;
        margin: 0 15px 30px;
    }
    .event-item:first-of-type {
        margin-left: 0;
    }
    .event-item:last-of-type {
        margin-right: 0;
    }
}

.event-item h3,
.news-item h3 {
    margin-bottom: .2em;
}

.event-item h3 a,
.news-item h3 a {
    font-size: .9em;
}

#subpage-main .event-item {
    width: 100%;
    margin: 0 0px 30px;
}


/*----end Upcoming Events------*/


/*----Logo Upcoming Events----------*/

h3.month {
    margin-top: 1em;
    border-bottom: 1px solid #ccc;
    padding-bottom: .25em;
}

h3.month::after {
    content: ' -';
}

.logo-event-item {
    margin: 1em 0;
}

.logo-event-item+.logo-event-item {
    margin-top: 0;
}

.logo-event-item img {
    width: 103px;
    height: auto;
    display: block;
    float: left;
    margin-bottom: 1em;
}

.logo-event-item .event-details {
    float: left;
    width: 100%;
}

.logo-event-item img+.event-details {
    float: left;
    width: calc(100% - 103px);
    padding-left: 30px;
}

.logo-event-item .sponsor-logo:empty+.event-details {
    padding: 0;
}

.logo-event-item .start-time::before {
    content: '@ ';
}

@media (max-width: 300px) {
    .logo-event-item img,
    .logo-event-item .event-details,
    .logo-event-item img+.event-details {
        float: none;
        width: 100%;
        padding-left: 0;
    }
    .logo-event-item img {
        margin: 0 auto 1em;
        width: 103px;
    }
}


/*----end Logo Upcoming Events------*/


/*----Latest News------*/

#news-newsletter-row {
    position: relative;
    margin-top: 1em;
    margin-bottom: 1em;
}

#news-newsletter-row h2 {
    color: white;
}


/* #slide-row::before, */

#news-newsletter-row::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    background: #507CBF;
    display: block;
    left: var(--side-margin);
    right: var(--side-margin);
    padding: 1em;
}

#news-newsletter-row .column:nth-of-type(1) {
    padding-top: 2em;
    padding-bottom: 4em;
}

.news-item {
    margin-bottom: 1em;
}

@media (min-width: 990px) {
    .news-item {
        margin-top: 1em;
    }
}

.news-item:last-of-type {
    margin-bottom: 2em;
}

#news-newsletter-row .news-item a {
    color: white;
}


/*----end Latest News------*/

#event-row a.view-all,
#news-newsletter-row a.view-all {
    background: #1F4D91;
}

#event-row a.view-all:hover,
#event-row a.view-all:focus,
#news-newsletter-row a.view-all:hover,
#news-newsletter-row a.view-all:focus {
    background: #403672;
}


/*----Newsletter Sign up------*/

#news-newsletter-row .column:nth-of-type(2) {
    background: #CAC8C9;
    padding: 1.5em 2.5em 3em;
    margin-top: 1em;
    margin-bottom: 1em;
}

#news-newsletter-row .column:nth-of-type(2) h2 {
    font-size: 25px;
    color: #333;
}

#news-newsletter-row #contact-form .form-group:nth-of-type(4) {
    display: none !important;
    /*Hide the reCaptcha iframe*/
}

#news-newsletter-row #contact-form .row {
    margin-left: 0;
    margin-right: 0;
}

#news-newsletter-row #contact-form div[class^="col-sm-"] {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0;
    float: none;
}

#news-newsletter-row #contact-form label {
    display: block;
    font-weight: normal;
    font-size: .8em;
    margin-bottom: .25em;
}

#news-newsletter-row #contact-form input[type="submit"] {
    color: #333;
}

.disclaimer {
    font-size: .8em;
    margin-top: .5em;
}

.disclaimer a {
    color: #403672;
}

@media (max-width: 990px) and (min-width: 767px) {
    #news-newsletter-row>.column {
        width: 50%;
    }
}

@media (max-width: 767px) {
    #news-newsletter-row #contact-form .form-group {
        width: calc(50% - 15px);
        margin-right: 15px;
        display: inline-block;
    }
    #news-newsletter-row #contact-form .form-group:last-of-type {
        display: block;
    }
}

@media (max-width: 500px) {
    #news-newsletter-row #contact-form .form-group:nth-of-type(3) {
        width: calc(100% - 15px);
    }
}


/*----end Newsletter Sign up------*/


/*----content-row------*/

@media (min-width: 767px) {
    .content-row {
        display: flex;
    }
}

.content-row .column {
    margin-top: 1em;
    margin-bottom: 1em;
}

.content-row .column:last-of-type {
    margin: auto;
}


/*----end content-row------*/


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

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

footer {
    background: #403456;
    padding: 2.5em .5em;
    color: white;
}

:is(#subpage-main, #mms-main)+footer {
    margin-top: 1em;
}

footer h3 {
    color: white;
}

footer a {
    color: #C5D8FF;
}

footer a:hover,
footer .nav>li>a:focus,
footer .nav>li>a:hover {
    color: white;
    background: none;
}

footer address {
    all: unset;
    display: block;
}

.footer-section {
    display: flex;
    gap: 1rem 30px;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.social-list {
    padding: 0;
    display: flex;
    gap: 1ch 15px;
    flex-wrap: wrap;
    list-style: none;
    margin-top: 15px;
}

header .social-list {
    margin: 0;
    margin-bottom: -6px;
    column-gap: 1ch;
}

@media (max-width: 990px) {
    header .social-list {
        display: none;
    }
}


/* header .social-list a {
    color: white;
} */

#LP {
    padding: 0;
    font-size: 16px;
}

#LP>ul.nav {
    float: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 100%;
    /*width: 750px;*/
    justify-content: space-between;
}

#LP>ul.nav::before {
    content: none;
}

#LP .caret {
    display: none;
}

#footer-menu #LP {
    display: block !important;
    /* Override BS display: none !important; */
    box-shadow: unset;
    border: unset;
    /* Override BS styles */
}

#footer-menu #LP>ul.nav {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
    gap: 1rem 30px;
    margin: 0 0 15px;
}

#footer-menu a {
    padding: 0;
}

#footer-menu a[href="#"] {
    color: white;
    pointer-events: none;
}

#footer-menu .navbar-nav>li>a {
    font-size: 20px;
}

#footer-menu .navbar-nav>li>a[href="#"] {
    border-bottom: 1px solid white;
    padding-bottom: 5px;
}

#footer-menu .dropdown-menu {
    position: relative;
    display: block;
    float: none;
    top: unset;
    background: unset;
    box-shadow: unset;
    border: unset;
    list-style: disc;
    padding-inline-start: 2ch;
    font-size: inherit;
}

#footer-menu .dropdown-menu ul {
    list-style: circle;
}

#footer-menu .dropdown-menu a {
    color: #C5D8FF;
    background: transparent;
}

#footer-menu .dropdown-menu a:is(:hover, :focus) {
    color: white;
}

/*--------------------------------------------------------
					Interior Pages
--------------------------------------------------------*/



/*--------------------------------------------------------
						IE Fixes
--------------------------------------------------------*/


/*IE doesn't support calc or flexbox correctly */

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    ul.login-social-links li:first-of-type {
        position: absolute;
        right: 0;
        bottom: -40px;
    }
    #home-supporters .image-wrap {
        display: block;
    }
    .image-wrap img {
        display: inline-block;
        max-width: 19%;
    }
    #event-photos figure img {
        width: 50%;
    }
    .content-row .column:last-of-type {
        margin: 2em;
    }
}