.smcm-section-title {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 2rem;
    color: #00205C;
    font-weight: 600;
    text-transform: uppercase;
}
.smcm-section-title.gold {
    color: #F3C10D
}
.smcm-section-title.white {
    color: white;
}
.smcm-section-title strong {
    font-weight: 800;
}

@media (max-width: 1024px) {
    .smcm-section-title {
        font-size: 4rem;
    }
}

@media (max-width: 600px) {
    .smcm-section-title {
        font-size: 3rem;
    }
}

.smcm-gold-buttons ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 !important;
}
.smcm-gold-buttons ul li {
    display: flex;
    width: 100%;
}
.smcm-gold-buttons ul .smcm-gb-item {
    flex: 1 1 30%;
    list-style-type: none !important;
    margin: 0.5em;
}

.smcm-gold-buttons ul div:hover {
    filter: brightness(110%);
}

.smcm-gold-buttons ul li i {
    padding-inline: 8px;
}

.smcm-gold-buttons ul li a {
    position: relative;
    font-weight: 400;
    font-size: 2.5rem;
    line-height: 1;
    text-align: center;
    color: #00205c;
    background: #f3c10d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding-left: 1em;
    text-decoration: none;
}
.smcm-gold-buttons ul div a .smcm-gb-label-wrapper {
    padding: 1.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 3em;
}

.smcm-gold-buttons .smcm-gb-icon-wrapper {
    padding-block: 0.65em;
    padding-inline: 0.2em;
    margin: 0;
    background-color: #ffd128;
    color: #00205C;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.smcm-gold-buttons .smcm-gb-icon-wrapper i {
    width: 2em;
}
@media only screen and (max-width: 600px) {
    .smcm-gold-buttons ul .smcm-gb-item {
        flex: 1 1 100%;
        margin: 1.25% 0;
    }

    .smcm-gold-buttons ul li a {
        font-size: 2.25rem;
    }
    .smcm-gold-buttons ul li {
        flex-direction: column;
    }
}

.smcm-cta-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.smcm-cta-button {
    display: block;
    padding: 1.75rem;
    padding-inline: 1.85em;
    margin: 0;
    font-size: 2rem;
    max-width: 70%;
    line-height: 1;
    text-align: center;
    background-color: #D0343A;
    color: white !important;
    text-transform: uppercase;
}
a.smcm-cta-button {
    font-weight: 600;
    text-decoration: none;
}
.smcm-cta-button:hover {
    filter: brightness(110%);
}

.smcm-cta-button i {
    padding-inline: 8px;
}

.smcm-cta-button.navy {
    color: white !important;
    background-color: #00205C;
}

.smcm-cta-button.grey {
    color: black !important;
    background-color: #e9e9e9;
}
.smcm-card-container {
    display: flex;
    width: 100%;
    /* gap: 1em; */
}
.smcm-card-container .card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2em;
    min-height: 250px;
    background-color: #00205C;
    color: white;
    animation: ease-in-out 0.1s;
    margin-inline: 0.5em;
    min-height: 400px;
}
.smcm-card-container .card:hover {
    transform: scale(1.003);
}
.smcm-card-container .card.gold {
    background-color: #f3c10d;
    color: #00205C;
}
.smcm-card-container .card.red {
    background-color: #D0343A;
}
.smcm-card-container .card.lightblue {
    background-color: #59B2E7;
    color: #00205C
}
.smcm-card-container .card.transparent {
    background-color: unset;
    color: #00205C;
    margin-inline: 0;
}
.smcm-card-container .card.transparent:not(:last-child) {
    content: "";
    border-right: 1.5px solid #D6D1CA;
    align-self: stretch;
    padding-inline: 2.6em;
}
.smcm-card-container .card .topText {
    font-size: 4em;
    font-weight: 800;
    margin: 0;
    line-height: initial;
}
.smcm-card-container .supportingText p {
    margin: 0;
    font-weight: 400;
    font-size: 1.25em;
}
.smcm-card-container .card a {
    color: inherit
}
.smcm-card-container .factcard {
    text-align: center;
}
.smcm-card-container .card.factcard .topText{
    font-size: 6em;
}
.smcm-card-container .highlightcard {
    text-align: left;
}
.smcm-card-container .highlightcard .topText {
    font-size: 3.0em;
    line-height: 1.25;
    width: 100%;
}
.smcm-card-container .highlightcard .supportingText {
    margin-block: 0.75em;
    width: 100%;
}
.smcm-card-container .imgContainer {
    max-width: 300px;
}
.smcm-card-container .card img {
    margin-block: 1em;
    height: auto;
}


/* Accordion Widget */
.smcm-accordion {
    color: white;
    background-color: #00205C;
    transition: 0.4s;
    border: solid #00205C 0.6em;
}
.smcm-accordion:hover {
    filter: brightness(115%);
}
.smcm-accordion.visible:hover {
    filter: unset;
}
.smcm-accordion .title-container {
    display: flex;
    justify-content: space-between;
    font-size: 0.8em;
    cursor: pointer;
}
.smcm-accordion .title-container h3 {
    color: white;
    padding: 0.5em;
    text-transform: uppercase;
    font-weight: 800;
    margin: 0;
    font-size: 1.5em;
}
.smcm-accordion h3 i {
    margin-right: 0.5em;
}
.smcm-accordion .open-close {
    padding-right: 0.75em;
    font-size: 1.4em;
    margin-top: 0.7em;
}
.smcm-accordion.visible .open-close:before, .smcm-accordion.default-open .open-close:before {
    content: "\f068";
}
.smcm-accordion-content {
    background: #f9f9f9;
    color: black;
    transition: max-height 0.3s ease-out;
    overflow: hidden;
    max-height: 0px;
}
.smcm-accordion.default-open .smcm-accordion-content {
    max-height: unset;
}
.smcm-ac-content-wrapper {
    border-top: solid #00205C 0.6em;
    padding-top: 1em;
    padding: 1em;
}
.smcm-accordion a {
    color: #00205C;
    font-weight: 400;
    text-decoration: underline;
    border-bottom: none;
}
.smcm-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.splide {
    max-width: 700px;
    width: 100%;
}
.splide__slide {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    opacity: 0.98;
}
.splide__slide.is-visible {
    opacity: 1;
}
.splide__slide img {
    height: 400px;
}
.splide__pagination__page, .splide__pagination__page:hover {
    background: rgb(58, 58, 58);
}
.splide__pagination__page.is-active {
    background: #00205C;
    opacity: 1;
}
ul.splide__pagination {
    margin-left: 0;
}
.splide__pagination {
    position: relative;
    margin: 0 !important;
    padding: 1em;
}
.splide__slide img {
    max-height: 400px;
    object-fit: cover;
}
.splide__arrow--prev {
    left: 0.3em;
}
.splide__arrow--next {
    right: 0.3em;
}
.splide__arrow {
    top: 45%;
    background-color: white;
}
.splide__arrow:hover {
    background-color: white;
}
.smcm-slider-caption {
    background-color: #00205C;
    color: white;
    padding: 1em;
    width: 100%;
    text-align: center;
    font-weight: 400;
    margin: 0 !important;
}
.smcm-quote {
    font-size: 3rem;
    font-weight: 400;
    color: white;
    background: #00205C;
    padding: 4rem;
    box-sizing: border-box;
    margin: 0;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 1.25em;
}
.smcm-quote p {
    font-size: 0.9em;
    margin: 0;
    position: relative;
    font-family: 'Baskerville', sans-serif;
}
.smcm-quote .quote-attribution {
    font-size: 1.75rem;
    margin-top: 2rem;
    color: #F3C10D;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
}
.smcm-quote img {
    width: 25%;
}
.smcm-quote.gold, .smcm-quote.gold .quote-attribution {
    background-color: #F3C10D;
    color: #00205C;
}
.smcm-quote.transparent {
    background-color: unset;
    color: #00205C;
    border-left: 4px #F3C10D solid;
}
.smcm-quote.transparent .quote-attribution {
    color: #00205C;
}
@media only screen and (max-width: 600px) {
    .smcm-card-container {
        flex-direction: column;
        gap: 1em;
        align-items: center;
    }
    .smcm-card-container .card.transparent:not(:last-child) {
        border: none;
        border-bottom: #D6D1CA 1px solid;
    }
    .smcm-quote {
        flex-direction: column-reverse;   
    }
    .smcm-quote img {
        width: 85%;
    }
    .smcm-card-container .card {
        min-height: 150px;
    }
    .smcm-card-container .factcard {
        width: 100%;
        padding-inline: 2em !important;
        min-height: 150px;
        padding-block: 0.5em;
        flex-direction: row;
        gap: 16px;
        text-align: left;
        justify-content: center !important;
    }
    .smcm-cta-button {
        max-width: 95%;
    }
    .splide__slide img {
        max-height: 200px;
    }
    .smcm-slider-caption {
        font-size: 0.85em;
    }
}
