/*
====================================================
Mission CTA
====================================================
*/

.spyx-mission-cta {
    position: relative;

    overflow: hidden;

    padding: 70px 20px;

    isolation: isolate;
}

.spyx-mission-cta-bg {
    position: absolute;

    inset: 0;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    z-index: -3;
}

.spyx-mission-overlay {
    position: absolute;

    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(0,0,0,.45) 0%,
        rgba(0,0,0,.60) 100%
    );

    z-index: -2;
}

.spyx-mission-content {
    max-width: 760px;

    margin: 0 auto;

    text-align: center;
}

.spyx-mission-heading {
    margin: 0;
    color: #ffffff;
    font-size: 48px;
    line-height: 1.05;
    text-transform: uppercase;
    text-shadow: 0 5px 25px rgba(0, 0, 0, .55);
    font-family: 'Oswald', sans-serif;
}

.spyx-mission-highlight {
    margin: 18px 0 22px;
    color: #d71920;
    font-size: 30px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    text-shadow: 0 5px 25px rgba(0, 0, 0, .55);
}

.spyx-mission-description {
    max-width: 640px;

    margin: 0 auto 42px;

    color: rgba(255,255,255,.88);

    font-size: 20px;

    line-height: 1.8;
}

.spyx-mission-button {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 15px 42px;
    border-radius: 10px;
    background: linear-gradient(180deg, #ff3038 0%, #d71920 100%);
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(215, 25, 32, .35);
    transition: .35s ease;
    font-family: 'Oswald', sans-serif;
}

.spyx-mission-button:hover {
    transform: translateY(-3px);
color:#fff;
    box-shadow:
        0 16px 36px rgba(215,25,32,.45);
}

.spyx-mission-button svg {
    transition: .35s;
}

.spyx-mission-button:hover svg {
    transform: translateX(5px);
}

/*
====================================================
Responsive
====================================================
*/

@media (max-width: 991px) {

    .spyx-mission-cta {
        padding: 90px 20px;
    }

    .spyx-mission-heading {
        font-size: 52px;
    }

    .spyx-mission-highlight {
        font-size: 26px;
    }

    .spyx-mission-description {
        font-size: 18px;
    }

}

@media (max-width: 767px) {

    .spyx-mission-cta {
        padding: 70px 20px;
    }

    .spyx-mission-heading {
        font-size: 38px;
                line-height: normal;

    }
.spyx-mission-cta-bg {
    background-position: left;
}
    .spyx-mission-highlight {
        font-size: 19px;
    }

    .spyx-mission-description {
        font-size: 16px;
    }

    .spyx-mission-button {
        width: 100%;

        justify-content: center;

        padding: 18px 28px;
    }

}