/*Animation*/
@media screen and (min-width: 1200px) {
  .mod-navigation-children {
    position: absolute;
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  /* Reveal menu on hover OR keyboard focus within the section */
  .mod-navigation-section-short:hover .mod-navigation-children,
  .mod-navigation-section-short:focus-within .mod-navigation-children {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@keyframes fadeInHero {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.is-home .mod-navigation-logo-wrap {
    animation:fadeInHero 1s ease-out forwards;
}

h2.mod-hero-headline.headline-first.xl {
  animation: fadeInHero 0.8s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
  h2.mod-hero-headline.headline-first.xl {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .mod-navigation-logo-wrap {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}
}



/*Promos*/
a.mod-tile.no-button{
    transition:.3s ease;
}
.mod-tile-wrap > a.mod-tile {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.mod-tile-wrap-outer.is-visible .mod-tile-wrap > a.mod-tile {
  opacity: 1;
}

.mod-tile-wrap-outer.is-visible .mod-tile-wrap > a.mod-tile:nth-child(1) {
  transition-delay: 0s;
}

.mod-tile-wrap-outer.is-visible .mod-tile-wrap > a.mod-tile:nth-child(2) {
    transition-delay: 0.2s;
}

.mod-tile-wrap-outer.is-visible .mod-tile-wrap > a.mod-tile:nth-child(3) {
  transition-delay: 0.4s;
}

/* --------------------------------------------------
 * ADA Compliance / Reduced Motion Support
 * -------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .mod-tile-wrap > a.mod-tile {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0s !important;
  }
}
/*End of Promos*/

/*Non Home Page*/
.mod-content-image-headline  {
  animation: fadeInHero 0.8s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
  .mod-content-image-headline  {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

h2.mod-content-image-subheadline {
  animation: fadeInHero 1.2s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
h2.mod-content-image-subheadline  {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}




/*Contact*/
.defaultCTA {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 1em 1em 0 0;
    padding: .5em 1.4em;
    font-size: 1em;
    text-decoration: none;
    color: #fff;
    background: #000DFF;
    border: 2px solid #000DFF;
    border-radius: 3px;
    word-break: break-all;
    -webkit-transition: .25s;
    -moz-transition: .25s;
    -o-transition: .25s;
    -ms-transition: .25s;
    transition: .25s;
}

/*Product Grid*/
.fancyTable .fancyTableHead th {
    background: #000DFF;
    border-left: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
}
.fancyTable th a, .fancyTable th p, .fancyTable th {
    color: #000000;
    font-size: 1em;
    font-weight: 600;
}

/*Header*/
.mod-content-image-overlay-center {
    max-width: 112em;
}


/*8/12/26*/
@media screen and (max-width: 1200px) {
    .mod-navigation-login-link-wrap--signup .mod-navigation-login-link {
        top: 3em;
    }

	a.mod-navigation-register-link{
		display:none;
	}
}

.mod-navigation-logo-wrap {
    width: 13em;
    left: calc(50% - 13em / 2);
}

.mod-navigation {
    width: stretch;
}

ul li {
    width: 100%;
}

.mod-safe-area {
    position: relative;
    display: block;
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
    padding: 0em;
}

/*Fonts*/
p {
    max-width: 100%;
    padding: 0;
}

h1.h1style {
    font-family: "Open Sans", sans-serif;
    font-size: 1.5em;
    color: #343434;
    font-weight: bolder;
}
h2.h2style {
    font-family: "Open Sans", sans-serif;
    font-size: 1em;
    color: #343434;
    font-weight: bolder;
}
h3.h3style {
    font-family: "Open Sans", sans-serif;
    font-size: .75em;
    color: #343434;
    font-weight: bolder;
}

.h3style {
    padding: 0 0 .5em 0;
    font-size: 1.6em;
    font-weight: 400;
    line-height: 1.2em;
    color: #08375a;
    font-family: "Open Sans", sans-serif;
    font-size: 1.5em;
    color: #343434;
    font-weight: bolder;
}

ul li::before, ul li:before {
    background: #454545;
}


/*Card*/
.mod-card-button {
    padding: .5em 1.4em;
    color: #fff;
    background: #000DFF;
    border: 2px solid #000DFF;
    border-radius: 3px;
    -webkit-transition: .25s;
    -moz-transition: .25s;
    -o-transition: .25s;
    -ms-transition: .25s;
    transition: .25s;
    word-break: auto-phrase;
}

.mod-card-title {
    padding: 0 0 .25em 0;
    font-size: 2em;
    font-weight: 900;
    line-height: 1.1em;
    color: #000DFF;
}
.mod-card:hover .mod-card-button, .mod-card:focus .mod-card-button {
    color: #000000;
    background: #fff;
}

/*Home Page - Main Promo*/
.mod-hero-button {
    display: inline-block;
    top: 1em;
    vertical-align: top;
    padding: 1.15em 1.7em;
    font-size: .8em;
    font-weight: bold;
    letter-spacing: .1em;
    line-height: 1.2em;
    color: #fff;
    text-transform: uppercase;
    border-radius: 1em;
    color: black;
    background: #bbe6ff;
    border: none;
    -webkit-transition: .25s;
    -moz-transition: .25s;
    -o-transition: .25s;
    -ms-transition: .25s;
    transition: .25s;
}

.fit-in-frame .mod-hero-image, .mod-hero-image.fit-in-frame {
    height: 100%;
    width: 100%;
}

.mod-hero-video {
    position: relative;
    display: block;
    height: 236%;
    background: #000;
    top: -248px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0em;
}

@media screen and (max-width:2200px){
.mod-hero-video {
    height: 207%;
    top: -151px;
}
}

@media screen and (max-width:2000px){
.mod-hero-video {
    height: 187%;
    top: -122px;
}
}

@media screen and (max-width:1800px){
.mod-hero-video {
    height: 171%;
    top: -32px;
}
}

@media screen and (max-width:1500px){
.mod-hero-video {
        height: 142%;
    top: -9px;
}
}

@media screen and (max-width:1300px){
.mod-hero-video {
        height: 123%;
    top: -8px;
}
}

@media screen and (max-width:1200px){
.mod-hero-video {
        height: 115%;
    top: 0px;
}
}

@media screen and (max-width:1050px){
.mod-hero-video {
        height: 158%;
        top: 0px;
}
}

@media screen and (max-width:915px){
.mod-hero-video {
        height: 140%;
        top: 0px;
}
}

@media screen and (max-width:815px){
.mod-hero-video {
        height: 125%;
        top: 0px;
}
}

@media screen and (max-width:715px){
.mod-hero-video {
height: 110%;
        top: 0px;
}
}

@media screen and (max-width:615px){
.mod-hero-video {
height: 100%;
        top: 0px;
}
}

@media screen and (max-width:515px){
.mod-hero-video {
height: 100%;
        top: 0px;
}
}

/*Login Section*/
.mod-navigation-center {
    max-width: 90%;
    text-align: right;
}

.mod-navigation-login-link {
    background: #000DFF;
    color: white;
}

.home .mod-navigation-login-link.mod-navigation-login-link-with-hero {
    display: inline-block;
}

input#LoginText {
    border-radius: 1em;
}

.home .mod-navigation-login-title {
    color: black;
}

.mod-navigation-login-link::before, .mod-navigation-login-link:before {
    color: #ffffff;
}

.mod-navigation-login-submit {
    background: #bbe6ff;
    color: black;
    text-align: center;
    border-radius: 1em;
}

.mod-navigation-login-submit:hover, .mod-navigation-login-submit:focus {
    background: #2c2c2c;
}

.mod-navigation-login-title::before, .mod-navigation-login-title:before {
    position: relative;
    display: block;
    color: black;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.4em;
    padding: 0 .3em;
    border: 4px solid black;
    border-radius: 50%;
    text-align: center;
    margin: 0 auto;
    z-index: 2;
}

@media screen and (max-width: 1200px) {
    .mod-navigation .mod-navigation-login-link, .home .mod-navigation .mod-navigation-login-link {
        display: block;
        background: #000DFF;
        color: white;
    }
}

.home .mod-navigation-login {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 350px;
    top: 5em;
    left: auto;
    margin: 0;
}

div#menu {
    filter: drop-shadow(2px 4px 6px black);
}

.mod-navigation-login-link:focus::before {
    color: #fff !important;
}

@media screen and (max-width:2200px){
.home .mod-navigation-login{
    left: 6%;
}
}

@media screen and (max-width:1900px){
.home .mod-navigation-login{
    left: -6%;
}
}

@media screen and (max-width: 1400px) {
    .home .mod-navigation-login {
        left: -9%;
    }
}




.mod-navigation-login-link:hover, .mod-navigation-login-link:focus {
    background: #2c2c2c;
    color: white;
    transition:.2s ease;
}

.mod-navigation-login-link:hover::before {
    color: #ffffff;
}


/*Main Promo*/
.mod-hero-rotator-slide-overlay {
    background: #000000c9;
}

.mod-hero-vertical-center {
    background: #000;
    background: rgb(0 0 0 / 0%);
    width: 100%;
}

h2.mod-hero-headline.headline-first.lg {
    font-size: 2em;
    font-weight: bold;
    color: #ffffff;
    font-family: "Raleway";
    filter: drop-shadow(2px 4px 6px black);
}

h2.mod-hero-headline.headline-first.nm {
    font-size: 2em;
    font-weight: bold;
    color: #ffffff;
    font-family: "Raleway";
    filter: drop-shadow(2px 4px 6px black);
}

.mod-hero-subline {
    color: white;
    filter: drop-shadow(2px 4px 6px black);
}

span.mod-hero-button.headline-first {
    display: inline-block;
    padding: .8em 1.2em;
    font-size: .7em;
    line-height: 1.2em;
    color: #fff;
    background: #670461;
    border: none;
    border-radius: 2em;
    appearance: none;
    width: 10em;;

}

.mod-hero-button:hover::after, .mod-hero-button:hover:after, .mod-hero-button:focus::after, .mod-hero-button:focus:after {
    color: #ffffff;
    opacity: 1;
    transition: 0.3s ease-in-out
}

.span.mod-hero-vertical-center {
    max-width: 100%;
    width: 100%;
    left: auto;
    right: auto;
    padding: 0 1em 0 12%;
}

@media screen and (max-width: 1000px) {
.span.mod-hero-vertical-center {
    left: 0%;
    top: 14em;
}
}




h2.mod-hero-headline.headline-first.xl {
    font-size: 2em;
    font-weight: bold;
    color: #ffffff;
    filter: drop-shadow(2px 4px 6px black);
}

@media screen and (max-width:1600px){
h2.mod-hero-headline.headline-first.xl {
    font-size: 1.5em;
}

@media screen and (max-width:1050px){
h2.mod-hero-headline.headline-first.xl {
    top: 5em;
}
}

@media screen and (max-width:700px){
h2.mod-hero-headline.headline-first.xl {
    top: 1em;
}
}

span.mod-hero-subline.headline-first.xl {
    font-size: 1em;
}
}

@media screen and (max-width:600px){
h2.mod-hero-headline.headline-first.xl {
    font-size: 1.5em;
    top: 0em;
}
}

@media screen and (max-width:400px){
h2.mod-hero-headline.headline-first.xl {
    font-size: 1em;
}
}

img.mod-hero-image.fit-in-frame {
object-fit: cover;
}

@media screen and (max-width:1530px){
img.mod-hero-image.fit-in-frame {

}
}

.mod-hero-rotator, .mod-hero-rotator-slide.slick-slide {
    min-height: 35em;
    max-height: 100%;
}



@media screen and (max-width:1050px){
.mod-hero-rotator, .mod-hero-rotator-slide.slick-slide {
    min-height: 20em;
    max-height: 100%;
}
}

@media screen and (max-width: 600px) {
    .mod-hero-vertical-center {
        padding: 2em;
        width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .mod-hero-vertical-center {
        padding: 0em;
        width: 100%;
    }
}

.mod-hero-rotator-slide-link {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0em;
    text-decoration:none;
}

/*Nav*/
.mod-navigation:not(.mod-collapsed-navigation) .mod-navigation-children .mod-navigation-children .mod-navigation-link {
    padding: 0.4em 0em 0.4em 2.6em;
    font-size: .9em;
    font-weight: 400;
    line-height: 1.2em;
    color: white;
    width: stretch;
}

.mod-navigation-children .mod-navigation-link {
    min-width: 12em;
    padding: 1em 1em 0.75em .5em;
    font-size: 1.05em;
    font-weight: 700;
    color: #fff;
    text-transform: none;
}

ul {
max-width:100%;
}

@media screen and (min-width: 1201px) {
    .mod-navigation-section:hover>.mod-navigation-link, .mod-navigation-section>.mod-navigation-link:focus {
        color: #fff;
        background: #000DFF;
        text-decoration: underline;
    }
}

.mod-navigation-children {
    max-width: 1456px;
    left: 0;
    right: 0;
    background: #000DFF;
}

.mod-navigation, .mod-collapsed-navigation {
    background: #b3292900;
    position: absolute;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) -120%, rgba(0, 0, 0, 0) 100%);
}

.mod-navigation-link {
    padding: 2.9em 1.5em;
    font-size: .8em;
    font-weight: 600;
    line-height: 1.2em;
    color: #ffffff;
    text-transform: uppercase;
    -webkit-transition: .25s;
    -moz-transition: .25s;
    -o-transition: .25s;
    -ms-transition: .25s;
    transition: .25s;
}


/*Logo*/

.mod-navigation-logo-v9{
    MARGIN:0em;
}
.mod-fdic-logo {
    margin-top: .5em;
}
.mod-navigation-logo-v9 img {
    height: 125%;
    width: 125%;
}


.mod-navigation-logo-v9 img {
    height: auto;
    width: 125%;
    object-fit: cover;
    overflow: visible;
    margin-top: -6em;
    width: 220%;
    opacity: 1;
}

@media screen and (max-width: 1200px) {
.mod-navigation-logo-wrap {
    top: 100%;
}

.mod-navigation-logo-v9 img {
    height: auto;
    width: 125%;
    object-fit: cover;
    overflow: visible;
    margin-top: -4em;
    width: 180%;
    opacity: 1;
}
}

@media screen and (max-width: 1000px) {
.mod-navigation-logo-v9 img {
    height: 90%;
    width: auto;
}
}

.mod-navigation-logo-wrap {
    overflow: visible;
    top: 115%;
    left: 8%;
}





.is-home .mod-navigation-logo-wrap {
    left: calc(50% - 13em / 2);
}

@media screen and (max-width: 1200px) {
    .mod-navigation-logo-wrap {
        left: calc(52% - 13em / 2);
    }
}



@media screen and (max-width: 700px) {
    .mod-navigation-logo-wrap {
        width: 50%;
        margin-left: 0%;
    }
}

@media screen and (max-width: 1000px) {
    .mod-navigation-logo-wrap {
        width: 65%;
        margin: -4% -15%;
    }
}

@media screen and (max-width: 800px) {
    .mod-navigation-logo-wrap {
        width: 70%;
        margin: 0% -16%;
    }
}

@media screen and (max-width: 700px) {
    .mod-navigation-logo-wrap {
        width: 63%;
        margin: -10% -11%;
    }
}

@media screen and (max-width: 500px) {
    .mod-navigation-logo-wrap {
        width: 75%;
        margin-left: -3%;
        top: 5em;
    }
}

@media screen and (max-width: 450px) {
    .mod-navigation-logo-wrap {
        width: 80%;
        margin: 0% -10%;
        top: 4em;
    }
}

@media screen and (max-width: 400px) {
    .mod-navigation-logo-wrap {
        width: 100%;
        margin: 0% -7%;
        left: 2em;
    }
}

@media screen and (max-width: 350px) {
    .mod-navigation-logo-wrap {
        left: 1em;
        top: 5em;
    }
}

@media screen and (max-width: 280px) {
}

.mod-fdic-logo__link img {
    width: 226%;
    padding-top: .5em;
    object-fit: contain;
    opacity: 1;
    filter: drop-shadow(2px 1px 14px grey);
}


.mod-fdic-logo.mod-fdic-logo--mobile {
    width: 100%;
}

@media screen and (max-width: 700px) {
.mod-hero-vertical-center {
    top: 114%;
}
}

@media screen and (max-width: 600px) {
.mod-hero-vertical-center {
    top: 98%;
}
}

@media screen and (max-width: 700px) {
    .mod-fdic-logo.mod-fdic-logo--mobile {
        width: 120%;
    }
}

@media screen and (max-width: 500px) {
    .mod-fdic-logo.mod-fdic-logo--mobile {
        width: 100%;
    }
}

@media screen and (max-width: 375px) {
    .mod-fdic-logo.mod-fdic-logo--mobile {
        margin-top: 2em;
    }
}

@media screen and (max-width: 1200px) {
    .mod-fdic-logo__link img {
        padding-top: 0;
        opacity: 1;
        width: 230%;
    }
}



@media screen and (max-width: 1000px) {
    .mod-navigation-logo-v9 img {
    height: 5em;
    margin-top: -1em;
    overflow: visible;
    }
}


@media screen and (max-width: 1000px) {
    .mod-fdic-logo__link img {
        width: 80%;
    }
}
@media screen and (max-width: 500px) {
    .mod-fdic-logo__link img {
        width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .mod-fdic-logo__link img {
        width: 100%;
    }
}

@media screen and (max-width: 375px) {

    .home .mod-navigation{
        top: 0;
        width: 100%;
        margin: 0em;
    }
}



.mod-footer-copyright-wrap img {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 1.5em;
    max-width: 6em;
    filter: invert(1);
}

.mod-footer-wrap {
    color: #fff;
    background: #28324f;
}

/*Footer*/
.column-footer .mod-footer-column .mod-footer-column-title {
    font-size: .75em;
}

.mod-footer-tray-wrap {
    border-top: none;
}



@media screen and (max-width:1200px){
.mod-footer-column-wrap {
    display: flex;
    flex-direction: column;
}
}

@media screen and (max-width: 600px) {
    .column-footer .mod-footer-column {
        font-size: 1em;
        padding: 1em;
    }
}

/*Small Promos*/
.mod-tile-button {
    position: relative;
    display: inline-block;
    vertical-align: top;
    border-radius: 3px;
    margin: 1em auto 0 auto;
    padding: .75em 1.5em;
    color: #fff;
    background: #28324f;
    -webkit-transition: .25s;
    -moz-transition: .25s;
    -o-transition: .25s;
    -ms-transition: .25s;
    transition: .25s;
    border-radius: 1em;
    width: 75%;
    margin-top: auto;
}

.mod-tile-button:hover, .mod-tile-button:focus{
    border: 2px solid #28324f;
}

span.mod-tile-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.mod-tile-headline {
    position: relative;
    display: block;
    padding: 0em;
    font-size: 1.5em;
    line-height: 1em;
    color: #000000;
    font-weight: 600;
    padding-top: .5em;
}

@media screen and (max-width:767px) {
.mod-tile-headline {
    font-size: x-large;
}
}

@media screen and (max-width:767px) {
.mod-tile-body {
    position: relative;
    display: block;
    font-size: 1.5em;
    line-height: 1.25em;
}
}

.mod-tile {
    padding: 1em .5em 2em .5em;
}

.mod-tile-wrap-horiz .mod-tile-wrap {
    max-width: 100%;
    margin: 0 auto;
}

@media screen and (max-width:767px) {
.mod-tile-wrap-horiz .mod-tile-image-wrap {
    height: 30em;
}
}

@media screen and (max-width:350px) {
.mod-tile-wrap-horiz .mod-tile-image-wrap {
    height: 15em;
}
}

/*Non-Home Page*/
.mod-content-image-banner {
    background: #121212;
}

.mod-page-wrap {
    padding: 12em 0;
}

.mod-content-image-banner.hasColorOverlay img {
    opacity: .75;
    -webkit-filter: initial;
}

.expanded .mod-expanding-trigger, .no-js .mod-expanding-trigger {
    background: #28324f;
}

.expanded .mod-expanding-trigger::before, .expanded .mod-expanding-trigger:before {
    color: #bbe6ff;
}

/*Locations Page*/
.expanded .mod-location-trigger, .no-js .mod-location-trigger {
    background: #28324f;
}
.mod-location-information-button {
    color: white;
    background: #000DFF;
    transition: .3s ease;
}

.mod-location-information-button:hover {
    color: white;
    background: #2c2c2c;
}

.mod-location-trigger {
    color: #fff;
    background: #484848;
    transition: .3s ease;
}



/*Mobile Nav*/

.home .mod-navigation-icon::before, .home .mod-navigation-icon:before, .home .mod-navigation-icon::after, .home .mod-navigation-icon:after {
    border-color: #ffffff;
}

@media screen and (max-width: 1200px) {
    .mod-navigation-link-parent::before, .mod-navigation-link-parent:before {
        left: 0.5em;
    }
}

@media screen and (max-width: 1200px) {
    .mod-navigation-link-wrap {
                background: #232323;
    }

    .mod-navigation-children {
        background: #232323;
}
}

@media screen and (max-width: 1200px) {
    .mod-navigation-section {
        border-top: 1px solid #d5d5d5;
    }
}

@media screen and (max-width: 1200px) {
    .mod-navigation-link-parent::before, .mod-navigation-link-parent:before {
        opacity: .5;
    }
}

@media screen and (max-width: 1200px) {
    .mod-navigation-link-parent::before, .mod-navigation-link-parent:before {
        opacity: .5;
        background-position: bottom;
    }
}

.mod-content-image-subheadline {
    font-size: 1em;
    font-weight: 100;
}

::marker {
    font-size: .85em;
}

/*Font*/
p {
    font-size: 1em;
    color: #36312a;
}

@media screen and (max-width: 1200px) {
    .home .mod-navigation {
        top: 0;
    }

    .mod-navigation-icon::before, .mod-navigation-icon:before, .mod-navigation-icon::after, .mod-navigation-icon:after {
    border-color: #ffffff;
}
}

@media screen and (max-width: 600px) {
    .mod-content-image-banner {
        height: 18em;
    }
}

@media screen and (max-width: 500px) {
    .home .mod-navigation {
        top: 0;
    }
}



/*Events*/
span.mod-event-cta {
    background: #bbe6ff;
    color: black;
}

.mod-event-title {
    font-size: 42px;
    line-height: normal;
    margin-bottom: .2em;
    color: #28324f;
    font-weight: 600;
}

.mod-event:hover .mod-event-cta, .mod-event:focus .mod-event-cta {
    background: #2c2c2c;
    color: white;
    transition: .2s ease;
}

.mod-event-date .mod-event-date-d {
    color: #08375a;
}


body.is-home .mod-navigation-logo-wrap {
    overflow: visible;
    top: -4em;
    filter: none;
}

@media screen and (max-width:1050px){
body.is-home .mod-navigation-logo-wrap {
    top: -2em;
}
}

@media screen and (max-width:1050px){
    body.is-home .mod-navigation-logo-wrap {
        top: -1em;
        left: calc(50% - 16em / 2);
    }
}


@media screen and (max-width:500px){
    body.is-home .mod-navigation-logo-wrap {
        left: calc(50% - 13em / 2);
    }
}
.mod-hero-headline.headline-first, .mod-hero-headline.subline-first {
top: -2em;
}

/* Style for Non-Home Pages 
body:not(.is-home) .mod-navigation-logo-v9 img {
  filter: invert(1);
*/


/*Extra Footer*/
/* Base Section with Image Overlay */
.custom-prefooter-section {
background-image: linear-gradient(
    rgba(0, 0, 0, 0.8), 
    rgba(0, 0, 0, 0.8)
  ), 
  url('/doccenter/4ff23100a303487982ece3850fef0059');
    background-size: cover;
  padding: 50px 20px;
  color: #ffffff;
  background-attachment: fixed;

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Flexbox Layout for 3 Columns */
.prefooter-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}

/* Columns & Column Dividers */
.prefooter-col {
  flex: 1;
  padding: 0 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.prefooter-col:last-child {
  border-right: none;
}

/* Column Headings */
.prefooter-col h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.25rem;
}

/* --- BULLET REMOVAL & SPACING --- */
.prefooter-col ul {
  list-style-type: none; /* Removes bullet points */
  list-style: none;      /* Fallback/reset */
  padding: 0;            /* Removes left indent caused by default list padding */
  margin: 0;             /* Resets default browser margins */
}

.prefooter-col li {
  margin-bottom: 12px;   /* Vertical spacing between subheadings */
  font-size: 0.95rem;
}

/* Links & Plain Text Styling */
.prefooter-col a {
  color: #ffffff;
  text-decoration: none; /* Removes default link underline */
  transition: opacity 0.2s ease;
}

.prefooter-col a:hover {
  text-decoration: underline; /* Shows underline only on hover */
  opacity: 0.8;
}

.prefooter-col span {
  color: rgba(255, 255, 255, 0.85); /* Slightly lighter for non-clickable text */
}

/* Responsive Mobile Layout */
@media (max-width: 768px) {
  .prefooter-container {
    flex-direction: column;
  }
  .prefooter-col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px 0;
  }
  .prefooter-col:last-child {
    border-bottom: none;
  }
}


/* Force-remove bullets on both the container and list items */
.custom-prefooter-section ul,
.custom-prefooter-section li {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* Ensure no bullet background images pseudo-elements (some themes use ::before) */
.custom-prefooter-section li::before {
  content: none !important;
  display: none !important;
}

/*Mobile Login*/
@media screen and (max-width: 1200px) {
    .mod-navigation .mod-navigation-login-link:hover, .mod-navigation .mod-navigation-login-link:focus, .home .mod-navigation .mod-navigation-login-link:hover, .home .mod-navigation .mod-navigation-login-link:focus {
        background: #000DFF;
        color: #fff;
    }
}

/*Mobile*/

@media screen and (max-width:1050px){
    .mod-navigation-logo-v9 img {
        margin-top: -6em;
        width: 130%;
}

    .is-home .mod-navigation-logo-wrap {
        left: calc(50% - 10em / 2);
    }
}

@media screen and (max-width:1000px){
.mod-navigation-logo-v9 img {
    margin-top: -2em;
    width: 70%;
}

.is-home .mod-navigation-logo-wrap {
    left: calc(50% - 17em / 2);
}
}

@media screen and (max-width:800px){
.is-home .mod-navigation-logo-wrap {
    left: calc(50% - 17em / 2);
}
}

@media screen and (max-width:650px){
.is-home .mod-navigation-logo-wrap {
    left: calc(50% - 14em / 2);
}

    .mod-navigation-logo-v9 img {
        height: 4em;
        margin-top: -1em;
        overflow: visible;
    }
}

@media screen and (max-width:500px){
.is-home .mod-navigation-logo-wrap {
    left: calc(50% - 17em / 2);
}

    .mod-navigation-logo-v9 img {
        height: 3em;
    }

body.is-home .mod-navigation-logo-wrap {
    top: -2em;
}

}

@media screen and (max-width:450px){
.is-home .mod-navigation-logo-wrap {
        left: calc(50% - 14em / 2);
}

}

@media screen and (max-width:400px){
.is-home .mod-navigation-logo-wrap {
    left: calc(50% - 18em / 2);
}

.mod-fdic-logo__link img {
        width: 75%;
    }
}

@media screen and (max-width: 375px) {
    .mod-navigation-logo-v9 img {
        height: 11%;
        margin-top: -1em;
    }

.is-home .mod-navigation-logo-wrap {
    left: calc(50% - 15em / 2);
}
}

@media screen and (max-width: 355px) {
body.is-home .mod-navigation-logo-wrap {
    top: -3em;
}

.is-home .mod-navigation-logo-wrap {
    left: calc(50% - 12em / 2);
}
}

.back-top-top{
    color:black;
}

/*Fonts*/
@media screen and (max-width:1000px){
    .mod-content-image-headline{
        font-size:2em;
    }

    .mod-content-image-subheadline {
    font-size: .95em;
    font-weight: 100;
}
}

@media screen and (max-width:700px){
    .mod-content-image-headline{
        font-size:1em;
    }

    .mod-content-image-subheadline {
    font-size: .85em;
}
}