﻿.crx-hero-fade {
    position: relative;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
    color: #fff;
}

 
.crx-hero-fade__slides {
    position: absolute;
    inset: 0;
}

.crx-hero-fade__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: bottom;  
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 800ms ease;
    will-change: opacity;
    pointer-events: none;
}

    .crx-hero-fade__slide.is-active {
        opacity: 1;
        pointer-events: auto;
    }

.crx-hero-fade__overlay {
    position: absolute;
    inset: 0;
}

.crx-hero-fade__content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;  
}

.crx-hero-fade .crx-rt {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 650ms ease, transform 650ms ease;
    transition-delay: 160ms;
}

.crx-hero-fade__slide.is-active .crx-rt {
    opacity: 1;
    transform: translateY(0);
}

.crx-hero-fade .crx-rt h1 {
    font-weight: 700;
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}

.crx-hero-fade .crx-rt p {
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    line-height: 1.5;
    max-width: 48rem; 
    margin: 0 auto;
    text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}

.crx-hero-fade__logo {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 7;
}

    .crx-hero-fade__logo img {
        display: block;
        width: 102px;
        height: 53px;
        object-fit: contain;
    }

.crx-hero-fade__blink {
    position: absolute;
    inset: 0;
    background: #0d2c53;
    opacity: 0;
    pointer-events: none;
    z-index: 5;
}

.crx-hero-fade.is-blinking .crx-hero-fade__blink {
    animation: crxHeroBlink 1200ms ease;
}

@keyframes crxHeroBlink {
    0% {
        opacity: 0;
    }

    28% {
        opacity: 0.92;
    }

    60% {
        opacity: 0.55;
    }

    100% {
        opacity: 0;
    }
}

 
.crx-hero-fade__arrow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 46px;
    z-index: 7;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .crx-hero-fade__arrow img {
        display: block;
        height: 60px; 
        width: auto;
        object-fit: contain;
    }

.crx-hero-fade__dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 7;
    display: flex;
    gap: 8px;
}

.crx-hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.9);
    background: transparent;
    opacity: 0.95;
    cursor: pointer;
    padding: 0;
}

    .crx-hero-dot.is-active {
        background: rgba(255,255,255,0.95);
    }

.crx-hero-fade .crx-hero-btn {
    display: inline-block;
    padding: 0.65rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: #fff !important; 
    background: rgba(0, 0, 0, 0.10);
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
}

    .crx-hero-fade .crx-hero-btn:hover,
    .crx-hero-fade .crx-hero-btn:focus {
        color: #fff !important;
        border-color: #fff;
        background: #c8102e;
        text-decoration: none;
        outline: none;
    }

.crx-hero-fade .crx-rt .crx-hero-btn {
    margin-top: 14px;
}

.crx-hero-fade .crx-rt,
.crx-hero-fade .crx-rt * {
    color: #fff;
}

    .crx-hero-fade .crx-rt a {
        color: #fff;
    }





.crx-apply {
    padding: clamp(2.5rem, 4vw, 4rem) 0;
    background: #fff;
}

.crx-apply__title {
    margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: var(--crx-navy);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.crx-apply__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: start;
}

@media (min-width: 992px) {
    .crx-apply__grid {
        grid-template-columns: minmax(380px, 520px) 1fr;
        align-items: start;
    }
}

.crx-apply__media {
    display: flex;
    justify-content: center;
}

.crx-apply__img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 0; 
}

.crx-apply__content {
    max-width: 560px;
}

.crx-apply__heading {
    margin: 0 0 0.9rem;
    font-weight: 800;
    color: var(--crx-navy);
    line-height: 1.15;
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
}

.crx-apply__content p {
    margin: 0 0 0.9rem;
    color: #1f2a33;
    line-height: 1.75;
    font-size: 1rem;
}

.crx-apply__cta {
    margin-top: 1.6rem;
    display: flex;
    justify-content: center; 
}

@media (min-width: 992px) {
    .crx-apply__cta {
        justify-content: center;
    }
}

.crx-apply__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 0.85rem 1.75rem;
    background: #b80f2a; 
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 999px;  
    border: 2px solid transparent;
    transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

    .crx-apply__btn:hover,
    .crx-apply__btn:focus {
        background: #a50d25;
        color: #fff;
        text-decoration: none;
        transform: translateY(-1px);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    }

    .crx-apply__btn:active {
        transform: translateY(0);
        box-shadow: none;
    }


@media (min-width: 992px) {
    .crx-apply__grid--flip {
        grid-template-columns: 1fr minmax(380px, 520px);
    }
}

.crx-apply__cta--left {
    justify-content: center;
}

@media (min-width: 992px) {
    .crx-apply__cta--left {
        justify-content: flex-start;
    }
}

.crx-apply__img--tall {
    max-width: 520px;
}

.crx-apply--why .crx-apply__content {
    max-width: 620px;
}

    .crx-apply--why .crx-apply__content p {
        font-size: 1rem;
        line-height: 1.85;
    }




.crx-cta-band {
    padding: clamp(2.5rem, 4vw, 4rem) 0;
    background: #fff;
}

.crx-cta-band__inner {
    background: #dbe6ff;
    padding: clamp(2rem, 3.5vw, 3rem);
    text-align: center;
}

.crx-cta-band__title {
    margin: 0 0 1rem;
    font-weight: 800;
    color: var(--crx-navy);
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    line-height: 1.15;
}

.crx-cta-band__text {
    margin: 0 auto 1.8rem;
    max-width: 54rem;
    font-weight: 700;
    color: var(--crx-navy);
    line-height: 1.6;
}

.crx-cta-band__btn {
    min-width: 240px;
}






.crx-why {
    padding: clamp(2.5rem, 4vw, 4rem) 0;
    background: #fff;
}

.crx-why__title {
    margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
    text-align: center;
    font-weight: 800;
    color: var(--crx-navy);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.crx-why__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: start;
}

@media (min-width: 992px) {
    .crx-why__grid {
        grid-template-columns: minmax(380px, 560px) 1fr;
        align-items: start;
    }
}

.crx-why__img {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
    object-fit: cover;
}

.crx-why__content {
    max-width: 640px;
}

    .crx-why__content p {
        margin: 0;
        color: #1f2a33;
        line-height: 1.85;
    }

.crx-why__cta {
    margin-top: 1.8rem;
    display: flex;
    justify-content: center;  
}

@media (min-width: 992px) {
    .crx-why__cta {
        justify-content: center;
    }
}

.crx-why__foot {
    margin: clamp(2rem, 3vw, 3rem) auto 0;
    max-width: 980px;
    color: #1f2a33;
    line-height: 1.85;
}






.crx-benefits {
    background: #fff;
    text-align: center;
}

.crx-benefits__title {
    margin: 0 0 0.25rem;
    font-weight: 800;
    color: var(--crx-navy);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.crx-benefits__subtitle {
    margin: 0 auto clamp(1.75rem, 3vw, 2.75rem);
    color: var(--crx-navy);
    font-size: clamp(1.15rem, 2vw, 1.6rem);
    line-height: 1.35;
}

.crx-benefits__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2.75rem);
    align-items: start;
}

@media (min-width: 768px) {
    .crx-benefits__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .crx-benefits__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.crx-benefit {
    max-width: 260px;
    margin: 0 auto;
}

.crx-benefit__icon {
    display: block;
    width: 64px;
    height: 64px;
    margin: 0 auto 0.9rem;
    object-fit: contain;
}

.crx-benefit__heading {
    margin: 0 0 0.4rem;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.8px;
    color: #1f2a33;
}

.crx-benefit__text {
    margin: 0;
    color: #1f2a33;
    line-height: 1.7;
}

.crx-benefits__cta {
    margin-top: clamp(2rem, 4vw, 3rem);
    display: flex;
    justify-content: center;
}





.crx-ewyl {
    padding: clamp(2.5rem, 4vw, 4rem) 0;
    background: #fff;
}

.crx-ewyl__title {
    margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
    text-align: center;
    font-weight: 800;
    color: var(--crx-navy);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.crx-ewyl__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 3vw, 3rem);
    align-items: start;
}

@media (min-width: 992px) {
    .crx-ewyl__grid {
        grid-template-columns: 1.05fr 0.95fr;
    }
}

.crx-ewyl__copy {
    max-width: 640px;
}

.crx-ewyl__lead {
    margin: 0 0 1rem;
    color: var(--crx-navy);
    font-size: 1.05rem;
    line-height: 1.8;
}

.crx-ewyl__link {
    color: var(--crx-navy);
    font-weight: 800;
    text-decoration: underline;
}

.crx-ewyl__muted {
    margin: 0 0 0.9rem;
    color: #1f2a33;
    line-height: 1.85;
}

.crx-ewyl__body {
    margin: 0 0 1.25rem;
    color: #1f2a33;
    line-height: 1.85;
}

.crx-ewyl__subhead {
    margin: 0 0 0.75rem;
    color: var(--crx-navy);
    font-weight: 800;
    font-size: 1.15rem;
}

.crx-ewyl__list {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #1f2a33;
}

    .crx-ewyl__list li {
        position: relative;
        padding-left: 1.85rem;
        margin-bottom: 0.8rem;
        line-height: 1.75;
    }

        .crx-ewyl__list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0.05rem;
            color: #1f2a33;
            font-weight: 800;
        }

.crx-ewyl__media {
    display: grid;
    gap: 1.25rem;
}

.crx-ewyl__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.crx-ewyl__cta {
    margin-top: clamp(2rem, 4vw, 3rem);
    display: flex;
    justify-content: center;
}





 

.crx-logos {
    padding: clamp(2.5rem, 4vw, 4rem) 0;
    background: #fff;
}

.crx-logos__title {
    margin: 0 0 clamp(1.75rem, 3.5vw, 3rem);
    text-align: center;
    font-weight: 500;
    color: var(--crx-navy);
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    line-height: 1.25;
}

.crx-logos__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 2.6vw, 2.5rem);
    align-items: center;
    justify-items: center;
}

@media (min-width: 768px) {
    .crx-logos__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.crx-logos__item {
    width: 100%;
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crx-logos__item--empty {
    visibility: hidden;
}

.crx-logos__img {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 72px; 
    object-fit: contain;
}


.crx-logos__img--tall {
    max-height: 82px;
}



 


.split-hero,
.split-hero * {
    box-sizing: border-box;
}

.split-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    height: 50vh;
    min-height: 420px;
    margin: 0;
    padding: 0;
}

 
    .split-hero.split-hero--image-right .split-hero__col--image {
        order: 2;
    }

    .split-hero.split-hero--image-right .split-hero__col--content {
        order: 1;
    }

.split-hero__col {
    height: 100%;
    min-height: 0;
}

 
.split-hero__col--image {
    overflow: hidden;
    background: #111;  
}

 
.split-hero__img {
    display: block;
    width: 100%;
    height: 100% !important; 
    max-width: none !important;  
    object-fit: cover;
    object-position: center;
}

 
.split-hero__col--content {
    display: flex;
    background: var(--crx-navy, #0d2c53);
}

.split-hero.theme-navy .split-hero__col--content {
    background: var(--crx-navy, #0d2c53);
}

.split-hero.theme-red .split-hero__col--content {
    background: #b20f2a;
}

.split-hero__inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: clamp(1.75rem, 3vw, 3.25rem);
    margin: 0;
}

.split-hero__title {
    margin: 0 0 1.25rem 0;
    color: #fff;
    font-weight: 700;
    font-size: clamp(1.8rem, 2.6vw, 3.2rem);
    line-height: 1.05;
}

.split-hero__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    line-height: 1.65;
    max-width: 44rem;
}

.split-hero__cta {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-size: 0.95rem;
    padding: 0.35rem 0;
}

.split-hero__cta-arrow {
    display: inline-block;
    transform: translateY(1px);
    transition: transform 180ms ease, opacity 180ms ease;
    opacity: 0.95;
}

.split-hero__cta:hover {
    color: #fff;
    text-decoration: none;
}

    .split-hero__cta:hover .split-hero__cta-arrow {
        transform: translate(4px, 1px);
        opacity: 1;
    }

 
@media (max-width: 991.98px) {
    .split-hero {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
    }

    .split-hero__col--image {
        height: 260px;
    }

    .split-hero__img {
        height: 100% !important;
    }

    .split-hero.split-hero--image-right .split-hero__col--image {
        order: 1;
    }

    .split-hero.split-hero--image-right .split-hero__col--content {
        order: 2;
    }
}
 
.split-hero {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;  
}

 
.split-hero__col {
    width: 100%;
}
 
@media (min-width: 992px) {
    .split-hero {
        flex-wrap: nowrap; 
        /*min-height: 50vh;  */
    }

    .split-hero__col {
        width: 50%;
        min-height: 50vh;
    }
}
 
.split-hero__col--image {
    position: relative;
    overflow: hidden;
    background: #000;  
}
 
.split-hero__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;  
    object-position: center;
}

 
@media (max-width: 991.98px) {
    .split-hero__col--image {
        height: 320px;
    }
}

 
@media (min-width: 992px) {
    .split-hero__col--image {
        height: auto;  
    }
}

 
.split-hero__col--content {
    display: flex;
    align-items: flex-start;
}
 
.split-hero__inner {
    width: 100%;
    padding: 56px 56px;
}

@media (max-width: 991.98px) {
    .split-hero__inner {
        padding: 32px 20px;
    }
}
 
.theme-navy .split-hero__col--content {
    background: #0b2f4a; 
    color: #fff;
}

.theme-red .split-hero__col--content {
    background: #b5162b;  
    color: #fff;
}
 
.split-hero__title {
    margin: 0 0 18px 0;
    font-weight: 700;
    line-height: 1.05;
/*    font-size: 44px;*/
}

@media (max-width: 991.98px) {
    .split-hero__title {
        font-size: 32px;
    }
}

.split-hero__text {
    margin: 0 0 22px 0;
    max-width: 680px;
    opacity: 0.95;
/*    font-size: 18px;*/
    line-height: 1.55;
}
 
.split-hero__cta {
    display: inline-flex !important;
    width: auto !important;
    flex: 0 0 auto !important;
    gap: .5rem;
    align-items: center;
    font-weight: 700;
    text-decoration: none;
    padding: .75rem 1.25rem;
    border-radius: 6px;
    border: 2px solid rgba(255,255,255,.2);
    color: var(--txt);
    transition: transform .15s ease, background-color .2s ease, border-color .2s ease;
    will-change: transform;
    white-space: nowrap !important;
}

.split-hero__cta-arrow {
    display: inline-block;
    transform: translateY(1px);
}

@media (min-width: 992px) {
    .split-hero--image-right .split-hero__col--content {
        order: 1;
    }

    .split-hero--image-right .split-hero__col--image {
        order: 2;
    }
}

