@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap");

body.defender-missions-page {
    background: #001725;
    color: #f4f9fc;
    font-family: "Outfit", sans-serif;
    margin: 0;
    padding-top: 0 !important;
}

body.defender-missions-page .defender-scroll-reveal {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition: opacity 700ms ease, transform 760ms cubic-bezier(.22, .61, .36, 1);
    transition-delay: var(--defender-reveal-delay, 0ms);
    will-change: opacity, transform;
}

body.defender-missions-page .defender-scroll-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    body.defender-missions-page .defender-scroll-reveal,
    body.defender-missions-page .defender-scroll-reveal.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

body:has(.defender-missions-flow) > .theme-atomik > .ccm-block-top-navigation-bar,
body:has(.defender-missions-flow) > .theme-atomik > footer {
    display: none !important;
}

body:has(.defender-missions-flow) > .theme-atomik > .container {
    margin: 0 !important;
    max-width: none !important;
    padding: 0 !important;
    width: 100% !important;
}

body:has(.defender-missions-flow) > .theme-atomik > .container > .row {
    margin: 0 !important;
}

body:has(.defender-missions-flow) > .theme-atomik > .container > .row > [class*="col-"] {
    padding: 0 !important;
}

html.ccm-toolbar-visible .theme-atomik:has(.defender-missions-flow) {
    margin-top: 0 !important;
}

.defender-titlebar {
    align-items: center;
    background: #161616 url("/packages/kalla/css/images/defenderTitlebarTexture.png") center 44% / cover no-repeat;
    box-sizing: border-box;
    display: flex;
    height: 63px;
    justify-content: space-between;
    left: 0;
    padding: 0 40px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
}

.defender-titlebar::before {
    background: rgba(22, 22, 22, .9);
    content: "";
    inset: 0;
    position: absolute;
}

.defender-titlebar > * {
    position: relative;
}

.defender-titlebar__link {
    align-items: center;
    color: #f5f1ed;
    display: inline-flex;
    font: 400 18px/29px "Outfit", sans-serif;
    gap: 10px;
    padding: 8px;
    text-decoration: none;
    text-transform: uppercase;
}

.defender-titlebar__link i {
    color: #b7f9d8;
    font-size: 23px;
}

.defender-titlebar__identity {
    color: #fff;
    font: 900 15px/27px "Outfit", sans-serif;
    letter-spacing: 1.5px;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
}

.defender-titlebar__identity strong {
    color: #b7f9d8;
}

.defender-missions-flow {
    display: flex;
    flex-direction: column;
    padding-top: 63px;
}

#defenderHero { order: 1; }
#impact { order: 2; }
#top { order: 3; }
#becomeDefender { order: 4; }
#unveiled { order: 5; }
#other { order: 6; }
#voices { order: 7; }

.defender-missions-hero {
    align-items: center;
    background: #0c1521 url("/packages/kalla/css/images/defenderMissionsHero.png") center / cover no-repeat;
    box-sizing: border-box;
    display: flex;
    height: 720px;
    justify-content: flex-end;
    padding: 0 calc((100% - 1300px) / 2);
    position: relative;
}

.defender-missions-hero__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-right: 0;
    width: 818px;
}

.defender-missions-hero__wordmark {
    display: block;
    height: 116px;
    width: 818px;
}

.defender-missions-hero h1 {
    color: #8edde2;
    font-size: 45px;
    font-weight: 800;
    letter-spacing: -1.08px;
    line-height: 44px;
    margin: 0;
    text-transform: uppercase;
}

.defender-missions-hero p {
    color: #f4f9fc;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.53px;
    line-height: 30px;
    margin: 0;
    max-width: 793px;
    text-transform: uppercase;
}

.defender-missions-hero__cta {
    align-items: center;
    align-self: flex-start;
    background: #b7f9d8;
    border: 2px solid #b7f9d8;
    color: #002237;
    display: inline-flex;
    font-size: 15px;
    font-weight: 800;
    justify-content: center;
    min-height: 52px;
    padding: 0 34px;
    text-decoration: none;
    text-transform: uppercase;
}

.defender-missions-hero__action {
    align-items: center;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.defender-missions-hero__arrow {
    animation: defenderArrowPulse 3.2s ease-in-out infinite;
    display: block;
    height: 52px;
    opacity: .52;
    position: relative;
    width: 34px;
}

.defender-missions-hero__arrow span {
    background: #f4f9fc;
    height: 38px;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 2px;
}

.defender-missions-hero__arrow::before,
.defender-missions-hero__arrow::after {
    background: #f4f9fc;
    content: "";
    height: 2px;
    left: 50%;
    position: absolute;
    top: 37px;
    transform-origin: left center;
    width: 14px;
}

.defender-missions-hero__arrow::before { transform: rotate(-135deg); }
.defender-missions-hero__arrow::after { transform: rotate(-45deg); }

.defender-missions-hero__arrow:hover span,
.defender-missions-hero__arrow:hover::before,
.defender-missions-hero__arrow:hover::after {
    background: #b7f9d8;
}

@keyframes defenderArrowPulse {
    0%, 100% { opacity:.42; transform:translateY(0); }
    50% { opacity:.68; transform:translateY(7px); }
}

@media (prefers-reduced-motion: reduce) {
    .defender-missions-hero__arrow { animation:none; }
}

.defender-missions-hero__cta:hover {
    background: transparent;
    color: #b7f9d8;
}

section#impact.defender-impact {
    background: #001725;
    padding: 150px 0 175px;
    position: relative;
}

#impact .container {
    max-width: 1300px;
}

#impact .gridContainer {
    column-gap: 24px;
    display: grid;
    grid-template-columns: 424px minmax(0, 1fr);
}

#impact .sectionTitle {
    color: #f4f9fc;
    font: 900 80px/66px "Outfit", sans-serif;
    grid-column: 1 / -1;
    letter-spacing: -1.92px;
    margin: 0 0 130px;
    text-align: center;
}

#impact .sectionTitle span {
    color: #8edde2;
}

#impact aside {
    align-self: start;
    box-sizing: border-box;
    grid-column: 1;
    padding: 70px 50px 0 0;
    width: auto;
}

.defender-impact__icon {
    height: 63px;
    margin-bottom: 24px;
    width: 64px;
}

#impact aside h3 {
    color: #8edde2;
    font: 800 41px/51px "Outfit", sans-serif;
    letter-spacing: -.98px;
    margin: 0 0 20px;
    text-transform: uppercase;
}

#impact aside p {
    color: #f4f9fc;
    font: 400 18px/29px "Outfit", sans-serif;
    letter-spacing: -.43px;
    margin: 0;
}

#impact .rightCol {
    grid-column: 2;
    min-width: 0;
    width: auto;
}

#impact #slider {
    margin-right: -300px;
    width: auto;
}

#impact #slider .splide__track,
#otherSlider .splide__track {
    margin-bottom: -28px;
    padding-bottom: 28px !important;
}

#impact .cause {
    background: #8edde2 url("/packages/kalla/css/images/defenderCauseCard.svg") bottom left / 100% auto no-repeat;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 60px 100%, 0 calc(100% - 60px));
    color: #001725;
    height: 610px;
    overflow: hidden;
    text-decoration: none;
    transition: background-color 220ms ease, filter 220ms ease, transform 220ms ease;
    width: 486px;
}

#impact .cause:hover,
#impact .cause:focus-visible {
    background: #f4f9fc;
}

#impact .cause > img {
    display: block;
    height: 307px;
    object-fit: cover;
    transition: transform 360ms ease;
    width: 486px;
}

#impact .causeContent {
    background: transparent;
    box-sizing: border-box;
    color: #001725;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 303px;
    padding: 30px 29px 19px;
}

#impact .causeContent h5 {
    color: #001725;
    font: 800 36px/37px "Outfit", sans-serif;
    letter-spacing: -.9px;
    margin: 0;
    text-transform: uppercase;
}

#impact .causeContent p {
    color: #001725;
    font: 400 18px/27px "Outfit", sans-serif;
    margin: 10px 0 0;
}

#impact .causeContent .defender-cause-card__cta {
    align-self: flex-end;
    color: #161616;
    font: 500 14px/21px "Outfit", sans-serif;
    letter-spacing: 4px;
    margin-top: auto;
    text-transform: uppercase;
}

.defender-cause-card:hover,
.defender-cause-card:focus-visible {
    filter: drop-shadow(0 16px 18px rgba(0, 23, 37, .28));
    outline: 0;
    transform: translateY(-8px);
}

.defender-cause-card:hover > img,
.defender-cause-card:focus-visible > img { transform: scale(1.045); }
.defender-cause-card__cta i { transition: transform 180ms ease; }
.defender-cause-card:hover .defender-cause-card__cta i,
.defender-cause-card:focus-visible .defender-cause-card__cta i { transform: translateX(7px); }

#impact #arrows,
.defender-carousel-controls {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}

#impact #arrows i {
    color: #b7f9d8;
    font-size: 30px;
    padding: 12px 8px;
}

#impact #arrows button,
#voices #arrows2 button {
    background: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    padding: 0;
}

section#top {
    background: #f4f9fc;
    color: #161616;
    overflow: hidden;
    padding: 125px 0 85px;
    position: relative;
}

section#top::before {
    background: #8edde2;
    content: "";
    height: 720px;
    left: 50%;
    pointer-events: none;
    position: absolute;
    top: -265px;
    transform: translateX(-50%);
    width: 760px;
    -webkit-mask: url("/packages/kalla/css/images/defenderQuizFinalMark.svg") top center / 760px auto no-repeat;
    mask: url("/packages/kalla/css/images/defenderQuizFinalMark.svg") top center / 760px auto no-repeat;
}

.defender-map-intro {
    margin: 0 auto 48px;
    max-width: 700px;
    position: relative;
    text-align: center;
    z-index: 2;
}

.defender-map-intro h2 {
    color: #002237;
    font: 900 80px/66px "Outfit", sans-serif;
    letter-spacing: -1.92px;
    margin: 0;
    text-transform: uppercase;
}

.defender-map-intro h2 span {
    color: #8edde2;
}

.defender-map-intro p {
    color: #161616;
    font: 400 18px/29px "Outfit", sans-serif;
    margin: 32px auto 0;
    max-width: 614px;
}

section#top .container {
    max-width: 1300px;
    padding: 0;
    position: relative;
    z-index: 1;
}

section#top #map-container {
    background: #002237;
    height: 646px;
    min-height: 646px;
    position: relative;
}

section#top #map {
    height: 646px;
    min-height: 646px;
}

.defender-map-marker {
    background-color: transparent;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
    border: 0;
    cursor: pointer;
    height: 46px;
    padding: 0;
    width: 46px;
}

.defender-map-marker:hover,
.defender-map-marker:focus-visible {
    filter: drop-shadow(0 0 9px rgba(183, 249, 216, .9));
    transform: translateY(-3px) scale(1.08);
}

section#top #fieldGuideLink {
    margin-top: 0;
}

.defender-giving {
    align-items: center;
    background-color: #002237;
    background-image: url("/packages/kalla/css/images/defenderQuizFinalMark.svg"), url("/packages/kalla/css/images/defenderCauseDots.svg");
    background-position: left -175px top -155px, right bottom;
    background-repeat: no-repeat;
    background-size: 520px auto, 330px auto;
    box-sizing: border-box;
    color: #f4f9fc;
    display: flex;
    flex-direction: column;
    min-height: 475px;
    padding: 85px 24px;
    position: relative;
    text-align: center;
}

.defender-giving__mark { height: 42px; margin-bottom: 24px; width: 42px; }
.defender-giving h2 { color: #f4f9fc; font: 900 58px/58px "Outfit", sans-serif; letter-spacing: -1.4px; margin: 0; text-transform: uppercase; }
.defender-giving h2 span { color: #b7f9d8; display: block; font-size: 32px; line-height: 40px; }
.defender-giving > p { font: 400 16px/25px "Outfit", sans-serif; margin: 22px 0 42px; }
.defender-giving__amounts { display: grid; gap: 10px; grid-template-columns: repeat(5, 135px); }
.defender-giving__amounts button { background: #b7f9d8; border: 2px solid #b7f9d8; color: #002237; cursor: pointer; font: 800 15px/42px "Outfit", sans-serif; height: 46px; padding: 0; text-transform: uppercase; transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, letter-spacing 160ms ease, transform 160ms ease; }
.defender-giving__amounts button:hover,
.defender-giving__amounts button:focus-visible { background: #fff; border-color: #fff; box-shadow: 0 7px 0 #8edde2; font-weight: 900; letter-spacing: .8px; outline: 0; transform: translateY(-4px); }

section#unveiled {
    background-color: #101214;
    background-image: linear-gradient(rgba(10, 10, 10, .82), rgba(10, 10, 10, .82)), url("/packages/kalla/css/images/defenderTitlebarTexture.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
    color: #f4f9fc;
    padding: 145px 0;
}

#unveiled > .container { max-width: 1300px; }
#unveiled .sectionTitle--pg { color: #f4f9fc; font: 900 80px/70px "Outfit", sans-serif; letter-spacing: -1.9px; margin: 0; text-align: center; text-transform: uppercase; }
#unveiled .sectionTitle--pg span { color: #8edde2; }
#unveiled > .container > p { color: #b7f9d8; font: 400 20px/31px "Outfit", sans-serif; margin: 42px auto 48px; max-width: 680px; text-align: center; }
#unveiled .video { margin: 0 auto 100px; max-width: 1080px; position: relative; }
body.defender-missions-page section#unveiled .video > a.cta { background:transparent; border:0; color:#002237; display:block; left:auto; padding:0; position:relative; text-decoration:none; top:auto; transform:none; width:100%; }
#unveiled .video-image-wrap { display:block; height:610px; overflow:hidden; width:100%; }
#unveiled .video-image-wrap img { display:block; height:100%; object-fit:cover; transition:filter 300ms ease, transform 420ms ease; width:100%; }
body.defender-missions-page section#unveiled .video-cta-panel { align-items:flex-start; background:#8edde2; bottom:100px; box-sizing:border-box; clip-path:polygon(0 0,100% 0,100% 100%,18px 100%,0 calc(100% - 18px)); color:#002237; display:flex; flex-direction:column; height:208px; justify-content:center; padding:24px 20px; position:absolute; right:-72px; transition:background-color 160ms ease,filter 160ms ease,transform 160ms ease; white-space:normal; width:179px; z-index:2; }
body.defender-missions-page section#unveiled .video-cta-panel i { color:#002237; display:block; font-size:56px; line-height:1; margin:0 0 14px; }
body.defender-missions-page section#unveiled .video-cta-panel .display { color:#002237; font:800 22px/30px "Outfit",sans-serif; letter-spacing:-.53px; max-width:130px; text-align:left; text-transform:uppercase; }
body.defender-missions-page section#unveiled .video > a.cta:hover .video-image-wrap img,
body.defender-missions-page section#unveiled .video > a.cta:focus-visible .video-image-wrap img { filter:brightness(.82) saturate(1.12); transform:scale(1.045); }
body.defender-missions-page section#unveiled .video > a.cta:hover .video-cta-panel,
body.defender-missions-page section#unveiled .video > a.cta:focus-visible .video-cta-panel { background:#b7f9d8; filter:drop-shadow(8px 10px 0 rgba(0,34,55,.75)); transform:translate(-4px,-5px); }

.defender-guide__mark { display: block; height: 52px; margin: 0 auto 28px; width: 53px; }
#unveiled .defender-guide__title { color: #f4f9fc; font: 900 80px/66px "Outfit", sans-serif; letter-spacing: -1.9px; margin: 0 auto 72px; max-width: 900px; text-align: center; text-transform: uppercase; }
#unveiled .defender-guide__title span { color: #8edde2; }
#unveiled #timeline { display: grid; gap: 16px; grid-template-columns: repeat(4, 1fr); margin: 0 auto; max-width: 1160px; }
#unveiled #timeline::before,
#unveiled #timeline::after { display: none; }
#unveiled #timeline .step { align-items: center; background: #29292a; box-sizing: border-box; color: #f4f9fc; display: flex; flex-direction: column; margin-bottom: 0; max-width: none; min-height: 520px; padding: 50px 30px; position: relative; text-align: center; }
#unveiled #timeline .step > img { border-radius: 0; display: block; height: 212px; margin: 0 0 15px; object-fit: cover; order: 3; width: 100%; }
#unveiled #timeline .step h3 { align-items: center; background: transparent; border-bottom: 2px solid #505050; border-radius: 0; color: #f4f9fc; display: flex; font: 900 34px/37px "Outfit", sans-serif; height: 62px; justify-content: center; margin: 0 0 23px; order: 1; padding-bottom: 11px; position: static; width: 62px; }
#unveiled #timeline .step h4 { align-items: flex-start; color: #8edde2; display: flex; font: 800 22px/30px "Outfit", sans-serif; height: 60px; justify-content: center; margin: 0 0 15px; min-height: 60px; order: 2; padding: 0; text-align: center; text-transform: uppercase; width: 100%; }
#unveiled #timeline .step h4::before { display: none; }
#unveiled #timeline .step p { color: #f4f9fc; font: 400 18px/29px "Outfit", sans-serif; margin: 0; order: 4; text-align: center; }

body.defender-modal-open { overflow: hidden; }
.videoPopup { align-items: center; background: rgba(0, 15, 25, .94); box-sizing: border-box; display: flex; inset: 0; justify-content: center; padding: 50px; position: fixed; z-index: 3000; }
.videoPopup.hide { display: none; }
.videoPopup-inner { background: #001725; border: 1px solid rgba(183, 249, 216, .55); box-shadow: 0 35px 100px rgba(0, 0, 0, .65); box-sizing: border-box; max-height: calc(100dvh - 100px); max-width: min(1440px, calc(177.778dvh - 296.45px)); overflow: hidden; padding: 74px 58px 58px; position: relative; width: 100%; }
.videoPopup-title { align-items: center; display: flex; gap: 20px; left: 58px; position: absolute; top: 22px; }
.videoPopup-title img { display:block; height:auto; width:124px; }
.videoPopup-title strong { color: #8edde2; font-size: 20px; text-transform: uppercase; }
.videoPopup .videoClose { align-items: center; background: #b7f9d8; border: 0; color: #002237; cursor: pointer; display: flex; font-size: 24px; height: 48px; justify-content: center; position: absolute; right: 12px; top: 12px; width: 48px; z-index: 2; }
.videoPopup .video-container { aspect-ratio: 16 / 9; background: #000; height: auto; overflow: hidden; position: relative; width: 100%; }
.videoPopup .video-container iframe { border: 0; height: 100%; inset: 0; position: absolute; width: 100%; }

.defender-view-by {
    bottom: 24px;
    color: #f4f9fc;
    left: 24px;
    position: absolute;
    width: 370px;
    z-index: 20;
}

.defender-view-by summary {
    align-items: center;
    background: #161616;
    border: 1px solid #b7f9d8;
    box-sizing: border-box;
    cursor: pointer;
    display: grid;
    grid-template-columns: auto 32px 1fr auto;
    min-height: 54px;
    padding: 8px 14px;
    text-transform: uppercase;
}

.defender-view-by summary::-webkit-details-marker { display: none; }
.defender-view-by summary::marker { content: ""; }
.defender-view-by summary img { height: 27px; width: 27px; }
.defender-view-by summary strong { color: #8edde2; font-size: 14px; letter-spacing: .3px; }
.defender-view-by__label { font-size: 13px; margin-right: 10px; }
.defender-view-by summary i { font-size: 14px; transition: transform 160ms ease; }
.defender-view-by[open] summary i { transform: rotate(180deg); }

.defender-view-by__menu {
    background: #161616;
    border: 1px solid #b7f9d8;
    border-bottom: 0;
    bottom: 54px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 10px;
    position: absolute;
    width: 100%;
}

.defender-view-by__menu a {
    align-items: center;
    color: #f4f9fc;
    display: flex;
    font-size: 13px;
    font-weight: 700;
    gap: 10px;
    min-height: 42px;
    padding: 0 10px;
    text-decoration: none;
    text-transform: uppercase;
}

.defender-view-by__menu a:hover,
.defender-view-by__menu a.is-active { background: #002237; color: #b7f9d8; }
.defender-view-by__menu a span { background: var(--category-color, #b7f9d8); height: 14px; width: 14px; }

.defender-other-causes {
    background: #f4f9fc;
    color: #161616;
    overflow: hidden;
    padding: 150px 0;
}

.defender-other-causes .container {
    max-width: 1300px;
}

.defender-other-causes .sectionTitle {
    color: #002237;
    font: 900 80px/66px "Outfit", sans-serif;
    letter-spacing: -1.92px;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
}

.defender-other-causes .sectionTitle span {
    color: #8edde2;
}

.defender-other-causes__grid { display: grid; gap: 46px; grid-template-columns: 320px minmax(0, 1fr); margin-top: 85px; }
.defender-other-causes__grid aside { align-self: start; padding-top: 58px; text-align: left; }
.defender-other-causes__mark { background: #002237; display: block; height: 63px; margin-bottom: 24px; width: 64px; -webkit-mask: url("/packages/kalla/css/images/defenderMark.svg") center / contain no-repeat; mask: url("/packages/kalla/css/images/defenderMark.svg") center / contain no-repeat; }
.defender-other-causes__grid aside h3 { color: #161616; font: 800 36px/39px "Outfit", sans-serif; margin: 0 0 20px; text-transform: uppercase; }
.defender-other-causes__grid aside p { font: 400 16px/25px "Outfit", sans-serif; margin: 0; }
.defender-other-causes__carousel { min-width: 0; }

#otherSlider {
    margin-right: -300px;
    overflow: visible;
}

#otherSlider .causeCTA {
    background: #161616;
    clip-path: none;
    color: #f4f9fc;
    height: 610px;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-decoration: none;
    transition: background-color 220ms ease, filter 220ms ease, transform 220ms ease;
    width: 486px;
}

#otherSlider .causeCTA:hover,
#otherSlider .causeCTA:focus-visible { background:#8edde2; filter:none; transform:none; }
#otherSlider .causeCTA:hover .causeContent,
#otherSlider .causeCTA:focus-visible .causeContent,
#otherSlider .causeCTA:hover .causeContent h3,
#otherSlider .causeCTA:focus-visible .causeContent h3,
#otherSlider .causeCTA:hover .causeContent p,
#otherSlider .causeCTA:focus-visible .causeContent p,
#otherSlider .causeCTA:hover .defender-cause-card__cta,
#otherSlider .causeCTA:focus-visible .defender-cause-card__cta { color:#001725; }

#otherSlider .causeCTA::after {
    border-left: 60px solid #f4f9fc;
    border-top: 60px solid transparent;
    bottom: 0;
    content: "";
    height: 0;
    left: 0;
    pointer-events: none;
    position: absolute;
    width: 0;
    z-index: 5;
}

#otherSlider .causeCTA > img {
    height: 307px;
    object-fit: cover;
    transition: transform 360ms ease;
    width: 486px;
}

#otherSlider .causeContent {
    background: transparent;
    box-sizing: border-box;
    color: #f4f9fc;
    display: flex;
    flex-direction: column;
    min-height: 303px;
    padding: 30px 29px 19px;
}

#otherSlider .causeContent h3 {
    color: #f4f9fc;
    font: 800 36px/37px "Outfit", sans-serif;
    letter-spacing: -.9px;
    margin: 0;
    text-transform: uppercase;
}

#otherSlider .causeContent p {
    color: #8edde2;
    font: 400 18px/27px "Outfit", sans-serif;
    margin: 10px 0 0;
}

#otherSlider .causeContent .defender-cause-card__cta {
    align-self: flex-end;
    color: #b7f9d8;
    font: 500 14px/21px "Outfit", sans-serif;
    letter-spacing: 4px;
    margin-top: auto;
    text-transform: uppercase;
}

#otherSlider .defender-cause-card:hover,
#otherSlider .defender-cause-card:focus-visible {
    filter: none;
    transform: none;
}

#impact .defender-cause-card:hover,
#impact .defender-cause-card:focus-visible {
    filter: none;
    transform: none;
}

.defender-carousel-controls button {
    background: transparent;
    border: 0;
    color: #002237;
    cursor: pointer;
    font-size: 30px;
    padding: 12px 8px;
}

body.defender-missions-page footer img {
    height: auto;
    max-width: 290px;
}

@media (min-width: 1600px) {
    .defender-titlebar { padding-left: calc((100% - 1300px) / 2); padding-right: calc((100% - 1300px) / 2); }
}

@media (max-width: 1599px) {
    .defender-missions-hero { height: 680px; padding: 0 70px; }
    .defender-missions-hero__content { width: 700px; }
    .defender-missions-hero__wordmark { height: auto; width: 700px; }
    #impact .container,
    section#top .container,
    .defender-other-causes .container { max-width: 1120px; }
    #impact .gridContainer { grid-template-columns: 374px minmax(0, 1fr); }
    #impact .sectionTitle,
    .defender-map-intro h2,
    .defender-other-causes .sectionTitle { font-size: 68px; line-height: 60px; }
    #impact #slider { margin-right: -240px; }
    #otherSlider { margin-right: -240px; }
    #unveiled > .container { max-width: 1120px; }
    #unveiled .sectionTitle--pg { font-size: 68px; line-height: 60px; }
    #unveiled .video { max-width: 960px; }
    #unveiled .video-image-wrap { height: 540px; }
    .videoPopup-inner { max-width: 1200px; }
}

@media (max-width: 1199px) {
    .defender-titlebar { padding: 0 24px; }
    .defender-titlebar__link { font-size: 16px; }
    .defender-missions-hero { height: 620px; padding: 0 40px; }
    .defender-missions-hero__content { width: 590px; }
    .defender-missions-hero__wordmark { width: 590px; }
    .defender-missions-hero h1 { font-size: 38px; line-height: 40px; }
    .defender-missions-hero p { font-size: 18px; line-height: 26px; }
    #impact .container,
    section#top .container,
    .defender-other-causes .container { max-width: 920px; }
    #impact .gridContainer { grid-template-columns: 320px minmax(0, 1fr); }
    #impact .sectionTitle { margin-bottom: 90px; }
    #impact #slider { margin-right: -180px; }
    #otherSlider { margin-right: -180px; }
    #unveiled > .container { max-width: 920px; }
    #unveiled .video { max-width: 800px; }
    #unveiled .video-image-wrap { height: 450px; }
    .videoPopup-inner { max-width: 920px; padding: 68px 36px 36px; }
    .defender-giving h2 { font-size: 50px; line-height: 52px; }
}

@media (max-width: 991px) {
    .defender-titlebar { height: 58px; }
    .defender-titlebar__identity { display: flex; flex-direction: column; font-size: 12px; line-height: 17px; max-width: 340px; }
    .defender-titlebar__identity strong { display: block; }
    .defender-titlebar__link span { display: none; }
    .defender-missions-flow { padding-top: 58px; }
    .defender-missions-hero { background-position: 42% center; height: 560px; padding: 0 32px; }
    .defender-missions-hero::after { background: rgba(0, 16, 27, .46); content: ""; inset: 0; position: absolute; }
    .defender-missions-hero__content { margin-left: auto; position: relative; width: 500px; z-index: 1; }
    .defender-missions-hero__wordmark { width: 500px; }
    section#impact.defender-impact,
    .defender-other-causes { padding: 100px 0; }
    #impact .container,
    section#top .container,
    .defender-other-causes .container { max-width: 720px; }
    #impact .gridContainer { display: block; }
    #impact .sectionTitle,
    .defender-map-intro h2,
    .defender-other-causes .sectionTitle { font-size: 54px; line-height: 50px; }
    #impact .sectionTitle { margin-bottom: 65px; }
    #impact aside { margin-bottom: 55px; max-width: 520px; padding: 0; }
    #impact #slider { margin-right: -120px; }
    #otherSlider { margin-right: -120px; }
    #unveiled .defender-guide__title { font-size: 52px; line-height: 52px; margin-bottom: 55px; }
    #unveiled #timeline { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
    section#top { padding: 100px 0 70px; }
    section#top #map-container,
    section#top #map { height: 560px; min-height: 560px; }
    section#unveiled { padding: 100px 0; }
    #unveiled > .container { max-width: 720px; }
    #unveiled .sectionTitle--pg { font-size: 54px; line-height: 50px; }
    #unveiled .video-image-wrap { height: 405px; }
    body.defender-missions-page section#unveiled .video-cta-panel { bottom: 35px; height: 145px; right: -10px; width: 145px; }
    .videoPopup { padding: 28px; }
    .videoPopup-inner { max-width: 720px; }
    .defender-other-causes__grid { display: block; }
    .defender-other-causes__grid aside { margin-bottom: 50px; max-width: 500px; }
}

@media (max-width: 767px) {
    .defender-titlebar { padding: 0 14px; }
    .defender-titlebar__identity { font-size: 10px; letter-spacing: .8px; max-width: 250px; }
    .defender-missions-hero { background-position: 35% center; height: 640px; padding: 0 20px; }
    .defender-missions-hero::after { background: rgba(0, 16, 27, .62); }
    .defender-missions-hero__content { gap: 22px; margin: 150px 0 0; width: 100%; }
    .defender-missions-hero__wordmark { height: auto; width: 100%; }
    .defender-missions-hero h1 { font-size: 32px; line-height: 35px; }
    .defender-missions-hero p { font-size: 16px; line-height: 23px; max-width: 520px; }
    #impact .container,
    section#top .container,
    .defender-other-causes .container { max-width: none; padding-left: 20px; padding-right: 20px; }
    #impact .sectionTitle,
    .defender-map-intro h2,
    .defender-other-causes .sectionTitle { font-size: 42px; line-height: 40px; }
    #impact aside h3 { font-size: 32px; line-height: 39px; }
    #impact #slider { margin-right: -20px; }
    #otherSlider { margin-right: -20px; }
    #impact .cause { height: 520px; width: 320px; }
    #impact .cause { clip-path: polygon(0 0, 100% 0, 100% 100%, 42px 100%, 0 calc(100% - 42px)); }
    #otherSlider .causeCTA::after { border-left-width: 42px; border-top-width: 42px; }
    #impact .cause > img { height: 202px; width: 320px; }
    #impact .causeContent { min-height: 318px; padding: 24px 20px 17px; }
    #impact .causeContent h5 { font-size: 28px; line-height: 30px; }
    #impact .causeContent p { font-size: 16px; line-height: 23px; }
    section#top { padding: 80px 0 50px; }
    section#top::before { height: 500px; top: -190px; width: 520px; -webkit-mask-size: 520px auto; mask-size: 520px auto; }
    .defender-map-intro { padding: 0 20px; }
    .defender-map-intro p { font-size: 16px; line-height: 25px; }
    section#top #map-container,
    section#top #map { height: 460px; min-height: 460px; }
    .defender-view-by { bottom: 16px; left: 16px; width: 300px; }
    .defender-view-by summary { grid-template-columns: auto 28px 1fr auto; padding: 8px 10px; }
    .defender-view-by summary strong { font-size: 12px; }
    #otherSlider .causeCTA { height: 520px; width: 320px; }
    #otherSlider .causeCTA > img { height: 202px; width: 320px; }
    #otherSlider .causeContent { min-height: 318px; padding: 24px 20px 17px; }
    #otherSlider .causeContent h3 { font-size: 28px; line-height: 30px; }
    #otherSlider .causeContent p { font-size: 16px; line-height: 23px; }
    #unveiled > .container { max-width: none; padding-left: 20px; padding-right: 20px; }
    #unveiled .sectionTitle--pg { font-size: 42px; line-height: 40px; }
    #unveiled > .container > p { font-size: 16px; line-height: 25px; margin-bottom: 45px; }
    .defender-balanced-break { display: none; }
    #unveiled .video { margin-bottom: 70px; }
    #unveiled .video-image-wrap { height: 340px; }
    body.defender-missions-page section#unveiled .video-cta-panel { bottom: 18px; height: 120px; padding: 15px; right: -4px; width: 120px; }
    body.defender-missions-page section#unveiled .video-cta-panel i { font-size: 32px; margin-bottom: 8px; }
    body.defender-missions-page section#unveiled .video-cta-panel .display { font-size: 14px; line-height: 16px; }
    #unveiled .defender-guide__title { font-size: 40px; line-height: 41px; margin-bottom: 42px; }
    #unveiled #timeline { display: block; }
    #unveiled #timeline .step { margin-bottom: 18px; min-height: 0; }
    .videoPopup { padding: 20px; }
    .videoPopup-inner { max-height: calc(100dvh - 40px); padding: 62px 12px 12px; }
    .videoPopup-title { left: 18px; top: 20px; }
    .videoPopup-title strong { font-size: 15px; }
    .defender-giving { min-height: 520px; padding: 70px 20px; }
    .defender-giving h2 { font-size: 40px; line-height: 42px; }
    .defender-giving h2 span { font-size: 24px; line-height: 30px; }
    .defender-giving__amounts { grid-template-columns: repeat(2, 135px); }
}

body.defender-missions-page .defender-footer .defender-footer__globe { bottom: -55px !important; }

@media (max-width: 479px) {
    .defender-titlebar__identity { max-width: 210px; }
    .defender-missions-hero { height: 600px; }
    #impact .cause,
    #otherSlider .causeCTA { width: 280px; }
    #impact .cause > img,
    #otherSlider .causeCTA > img { width: 280px; }
}

/* Voices of Impact — DEFENDER composition */
body.defender-missions-page #voices {
    background:
        linear-gradient(rgba(22, 22, 22, .9), rgba(22, 22, 22, .94)),
        url("/packages/kalla/css/images/defenderTitlebarTexture.png") center / cover no-repeat;
    box-sizing: border-box;
    color: #f4f9fc;
    overflow: hidden;
    padding: 145px 0 120px;
    position: relative;
}

body.defender-missions-page #voices::before {
    background: url("/packages/kalla/css/images/defenderQuizFinalMark.svg") center / contain no-repeat;
    content: "";
    height: 520px;
    opacity: .055;
    position: absolute;
    right: -170px;
    top: -150px;
    width: 520px;
}

body.defender-missions-page #voices .sectionTitle {
    color: #f4f9fc;
    font: 900 80px/66px "Outfit", sans-serif;
    letter-spacing: -1.92px;
    margin: 0 auto 78px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
}

body.defender-missions-page #voices .sectionTitle span { color: #8edde2; }
body.defender-missions-page #voices #splide2 { margin: 0 auto; max-width: none; padding: 0; position: relative; }
body.defender-missions-page #voices #splide2 .splide__track { overflow: visible; }
body.defender-missions-page #voices #splide2 li { opacity: .2; transition: opacity 420ms ease, transform 420ms ease; }
body.defender-missions-page #voices #splide2 li.is-active { opacity: 1; transform: translateY(-2px); }

body.defender-missions-page #voices .testimonial {
    align-items: center;
    background: #f4f9fc;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: none;
    min-height: 276px;
    padding: 30px 70px 40px;
    text-align: center;
}

body.defender-missions-page #voices .testimonial .displayXL {
    color: #8edde2;
    font: 400 90px/48px "Nunito Sans", sans-serif;
    height: 48px;
    margin: 0 0 25px;
}

body.defender-missions-page #voices .testimonial > p:not(.bodySmall) {
    color: #161616;
    font: 400 18px/29px "Outfit", sans-serif;
    margin: 0 0 15px;
}

body.defender-missions-page #voices .testimonial .bodySmall {
    color: #8edde2;
    font: 500 14px/21px "Outfit", sans-serif;
    letter-spacing: 4.4px;
    margin: auto 0 0;
    text-transform: uppercase;
}

body.defender-missions-page #voices #arrows2 {
    color: #8edde2;
    display: flex;
    font-size: 32px;
    gap: 18px;
    margin: 52px auto 0;
}

/* DEFENDER footer */
body.defender-missions-page .defender-footer {
    background:
        linear-gradient(rgba(22, 22, 22, .82), rgba(22, 22, 22, .86)),
        url("/packages/kalla/css/images/defenderTitlebarTexture.png") center / cover no-repeat;
    color: #f4f9fc;
    min-height: 532px;
    overflow: hidden;
    padding: 75px 0;
    position: relative;
}

body.defender-missions-page .defender-footer::before { display: none; }

body.defender-missions-page .defender-footer__inner {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1300px;
    min-height: 382px;
    padding: 0;
    position: relative;
    z-index: 2;
}

body.defender-missions-page .defender-footer__column { display: flex; flex-direction: column; gap: 90px; width: 424px; }
body.defender-missions-page .defender-footer__brand img { display: block; margin: 0 0 42px; max-width: 301px; width: 100%; }
body.defender-missions-page .defender-footer__brand p { font: 400 18px/29px "Outfit", sans-serif; margin: 0; max-width: 424px; }
body.defender-missions-page .defender-footer__brand a { color: #8edde2; text-decoration: none; }
body.defender-missions-page .defender-footer__brand em { color: #b7f9d8; }
body.defender-missions-page .defender-footer__nav { display: flex; flex-direction: column; gap: 19px; }
body.defender-missions-page .defender-footer__nav a { align-items: center; color: #f4f9fc; display: flex; font: 400 18px/29px "Outfit", sans-serif; gap: 10px; text-decoration: none; text-transform: uppercase; }
body.defender-missions-page .defender-footer__nav i { color: #b7f9d8; font-size: 24px; width: 26px; }
body.defender-missions-page .defender-footer__right { align-items: flex-end; display: flex; flex-direction: column; justify-content: space-between; padding-top: 10px; width: 424px; }
body.defender-missions-page .defender-footer__legal { text-align: right; }
body.defender-missions-page .defender-footer__legal img { display: inline-block; margin: 0 0 20px; max-width: 39px; }
body.defender-missions-page .defender-footer__legal p { color: rgba(244, 249, 252, .82); font: 500 14px/21px "Outfit", sans-serif; margin: 0 0 0 auto; max-width: 288px; text-transform: uppercase; }
body.defender-missions-page .defender-footer__credit { color: rgba(244, 249, 252, .34); font: 900 12px/22px "Outfit", sans-serif; letter-spacing: 0; text-decoration: none; text-transform: uppercase; }
body.defender-missions-page .defender-footer__globe { bottom: -1px; height: 324px; left: 50%; max-width: none; position: absolute; transform: translateX(-50%); width: 748px; z-index: -1; }

/* Keep the globe artwork visually seated against the footer edge everywhere. */
.defender-footer .defender-footer__globe { bottom: -55px; }

/* Consistent interaction finish */
body.defender-missions-page button,
body.defender-missions-page a,
body.defender-missions-page summary { transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease, transform 180ms ease; }
body.defender-missions-page a:focus-visible,
body.defender-missions-page button:focus-visible,
body.defender-missions-page summary:focus-visible { outline: 3px solid #8edde2; outline-offset: 4px; }
.defender-titlebar__link:hover { color: #b7f9d8; transform: translateY(-2px); }
.defender-missions-hero__cta:hover { background: #f4f9fc; box-shadow: 7px 7px 0 #8edde2; color: #002237; transform: translate(-3px, -3px); }
.defender-view-by summary:hover { background: #002237; }
.defender-view-by__menu a:focus-visible,
.defender-view-by__menu a:hover,
.defender-view-by__menu a.is-active { background: #002f49; color: #b7f9d8; }
.defender-carousel-controls button:hover,
.defender-carousel-controls button:focus-visible,
#impact #arrows button:hover,
#impact #arrows button:focus-visible,
body.defender-missions-page #voices #arrows2 button:hover { color: #b7f9d8; transform: translateX(4px) scale(1.08); }
.defender-carousel-controls button:first-child:hover,
.defender-carousel-controls button:first-child:focus-visible,
#impact #arrows button:first-child:hover,
#impact #arrows button:first-child:focus-visible,
body.defender-missions-page #voices #arrows2 button:first-child:hover { transform: translateX(-4px) scale(1.08); }
.defender-impact .defender-cause-card:hover .defender-cause-card__cta,
.defender-other-causes .defender-cause-card:hover .defender-cause-card__cta { letter-spacing: 4.7px; }

/* Figma map popup */
.defender-mapbox-popup.mapboxgl-popup {
    background: transparent;
    height: auto;
    left: auto !important;
    max-width: 424px !important;
    padding: 0;
    position: absolute;
    right: 0;
    transform: none !important;
    width: min(424px, calc(100% - 24px));
}
.defender-mapbox-popup .mapboxgl-popup-tip { display: none; }
.defender-mapbox-popup .mapboxgl-popup-content {
    background: linear-gradient(rgba(22, 22, 22, .88), rgba(22, 22, 22, .9)), url("/packages/kalla/css/images/defenderTitlebarTexture.png") center / cover;
    border-radius: 0;
    box-shadow: -20px 24px 55px rgba(0, 0, 0, .34);
    padding: 0;
    width: 100%;
}
body.defender-missions-page .defender-mapbox-popup .mapboxgl-popup-content > .mapboxgl-popup-close-button {
    background: transparent;
    border: 0;
    color: #b7f9d8;
    cursor: pointer;
    display: block;
    font-size: 0;
    height: 48px;
    line-height: 48px;
    padding: 0;
    position: absolute;
    right: 10px;
    top: 8px;
    width: 48px;
    z-index: 6;
}
body.defender-missions-page .defender-mapbox-popup .mapboxgl-popup-content > .mapboxgl-popup-close-button::before { content: "×"; font: 300 42px/44px "Outfit", sans-serif; }
body.defender-missions-page .defender-mapbox-popup .mapboxgl-popup-content > .mapboxgl-popup-close-button:hover,
body.defender-missions-page .defender-mapbox-popup .mapboxgl-popup-content > .mapboxgl-popup-close-button:focus-visible { color: #fff; transform: rotate(90deg); }
.defender-map-popup { color: #f4f9fc; min-height: 646px; overflow: hidden; text-align: center; }
.defender-map-popup__header { padding: 70px 1px 20px; }
.defender-map-popup__header h3 { color: #f4f9fc !important; font: 600 27px/30px "Outfit", sans-serif !important; letter-spacing: -.66px; margin: 0 0 15px; text-transform: uppercase; }
.defender-map-popup__header p { color: #b7f9d8; font: 400 19px/30px "Outfit", sans-serif; letter-spacing: -.46px; margin: 0; text-transform: uppercase; }
.defender-map-popup__image { display: block; height: 247px; object-fit: cover; width: 100%; }
.defender-map-popup__body { align-items: center; display: flex; flex-direction: column; padding: 16px 25px 24px; }
.defender-map-popup__body p { color: #b7f9d8; font: 400 16px/24px "Outfit", sans-serif; letter-spacing: -.38px; margin: 0 auto 14px; max-width: 374px; text-align: center; }
.defender-map-popup__body a { background: #b7f9d8; color: #161616; display: inline-flex; font: 900 15px/27px "Outfit", sans-serif; justify-content: center; letter-spacing: 1.5px; padding: 10px 28px; text-decoration: none; text-transform: uppercase; }
.defender-map-popup__body a:hover,
.defender-map-popup__body a:focus-visible { background: #fff; box-shadow: 6px 6px 0 #8edde2; transform: translate(-3px, -3px); }
.videoPopup .videoClose { transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease; }
.videoPopup .videoClose:hover,
.videoPopup .videoClose:focus-visible { background: #f4f9fc; box-shadow: 5px 5px 0 #8edde2; transform: rotate(90deg); }
.defender-footer__nav a:hover,
.defender-footer__brand a:hover,
.defender-footer__credit:hover { color: #b7f9d8; transform: translateY(-2px); }

#map-container.is-category-spinning::after {
    border: 1px solid rgba(142, 221, 226, .65);
    box-shadow: inset 0 0 60px rgba(142, 221, 226, .17);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 15;
}

@media (max-width: 1199px) {
    body.defender-missions-page #voices .sectionTitle { font-size: 68px; line-height: 60px; }
    body.defender-missions-page .defender-footer__inner { max-width: calc(100% - 80px); }
    body.defender-missions-page .defender-footer__column,
    body.defender-missions-page .defender-footer__right { width: 36%; }
}

@media (max-width: 991px) {
    body.defender-missions-page #voices { padding: 100px 0 90px; }
    body.defender-missions-page #voices .sectionTitle { font-size: 54px; line-height: 50px; margin-bottom: 55px; }
    body.defender-missions-page .defender-footer__column,
    body.defender-missions-page .defender-footer__right { width: 42%; }
}

@media (max-width: 767px) {
    body.defender-missions-page #voices { padding: 80px 0 70px; }
    body.defender-missions-page #voices .sectionTitle { font-size: 42px; line-height: 40px; margin-bottom: 42px; }
    body.defender-missions-page #voices #splide2 { padding: 0; }
    body.defender-missions-page #voices .testimonial { min-height: 280px; padding: 34px 28px; }
    body.defender-missions-page .defender-footer { padding: 70px 0 42px; }
    body.defender-missions-page .defender-footer__inner { display: flex; flex-direction: column; gap: 54px; max-width: none; padding: 0 24px; }
    body.defender-missions-page .defender-footer__column,
    body.defender-missions-page .defender-footer__right { width: 100%; }
    body.defender-missions-page .defender-footer__column { gap: 52px; }
    body.defender-missions-page .defender-footer__right { align-items: flex-start; gap: 48px; padding-top: 0; }
    body.defender-missions-page .defender-footer__brand img { max-width: 240px; }
    body.defender-missions-page .defender-footer__legal { text-align: left; }
    body.defender-missions-page .defender-footer__legal p { margin-left: 0; }
    body.defender-missions-page .defender-footer__credit { align-self: flex-start; }
    body.defender-missions-page .defender-footer__globe { opacity: .42; width: 600px; }
    .defender-mapbox-popup.mapboxgl-popup { width: min(360px, calc(100% - 20px)); }
    .defender-map-popup { min-height: 0; }
    .defender-map-popup__header { padding: 54px 16px 17px; }
    .defender-map-popup__header h3 { font-size: 23px !important; line-height: 27px !important; }
    .defender-map-popup__header p { font-size: 17px; line-height: 25px; }
    .defender-map-popup__image { height: 205px; }
    .defender-map-popup__body { padding: 18px 20px 30px; }
    .defender-map-popup__body p { font-size: 16px; line-height: 24px; }
    .videoPopup-inner { max-width: min(calc(100vw - 40px), calc(177.778dvh - 178.67px)) !important; }
}
