/* --------------------------------------------------
AFFILIATE INTRO
-------------------------------------------------- */
.affiliate-intro {
    padding: 20px 0 40px;
    min-height: 400px;
    background-image: url('../images/affiliate-program/affiliate-intro_bg_small.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.affiliate-intro__content-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.affiliate-intro__title {
    display: block !important;
    max-width: 350px;
    font-weight: 900 !important;
    font-size: 36px !important;
    line-height: 1 !important;
    color: #fff;
}

.affiliate-intro__subtitle {
    display: block;
    margin-bottom: 90px;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.25;
    color: #fff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.affiliate-intro__credit {
    position: absolute;
    bottom: 20px;
    left: auto;
    right: 20px;
    text-align: right;
    width: auto;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
}

@media (min-width: 576px) {
    .affiliate-intro .octagonButtonYellow {
        max-width: 225px;
    }
}

@media (min-width: 768px) {
    .affiliate-intro {
        padding: 40px 0;
        min-height: 475px;
        background-image: url('../images/affiliate-program/affiliate-intro_bg.jpg');
    }

    .affiliate-intro__content-container {
        gap: 24px;
    }

    .affiliate-intro__title {
        font-size: 40px !important;
        line-height: 1.15 !important;
        max-width: 650px;
    }

    .affiliate-intro__subtitle {
        margin-bottom: 100px;
        letter-spacing: 0.12em;
    }
}

@media (min-width: 1200px) {
    .affiliate-intro {
        padding: 60px 0 40px;
    }

    .affiliate-intro__title {
        font-size: 45px !important;
    }
}

@media (min-width: 1400px) {
    .affiliate-intro__container {
        max-width: 1388px;
    }
}

/* --------------------------------------------------
HOW TO JOIN
-------------------------------------------------- */

.how-to-join {
    padding: 33px 0 55px;
}

.how-to-join__title {
    display: block !important;
    margin-bottom: 44px !important;
    width: 100%;
    font-weight: 900 !important;
    font-size: 36px !important;
    line-height: 1 !important;
    text-align: center !important;
}

.how-to-join__steps {
    display: flex;
    flex-direction: column;
    gap: 38px;
    padding: 0 25px;
}

.how-to-join__step {
    padding: 65px 40px 52px 58px;
    position: relative;
    background-color: #000;
    border: 1px solid #E3E829;
}

.how-to-join__step-number {
    display: block;
    position: absolute;
    left: 50%;
    top: -25px;
    margin-left: -25px;
    width: 50px;
    height: 50px;
    background-color: #E3E829;
    clip-path: polygon(30% 0%, 70% 0%,
            100% 30%, 100% 70%,
            70% 100%, 30% 100%,
            0% 70%, 0% 30%);
    color: #020202;
    text-align: center;
    line-height: 50px;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
}

.how-to-join__step-title {
    margin-bottom: 10px;
    display: block !important;
    width: 100%;
    font-weight: 900 !important;
    font-size: 24px !important;
    line-height: 1 !important;
    text-align: left !important;
}

.how-to-join__step-description {
    display: block;
    width: 100%;
    font-weight: 300;
    font-size: 17px;
    line-height: 20px;
    margin: 0;
}


@media (min-width: 768px) {
    .how-to-join {
        padding: 75px 0;
        min-height: 600px;
    }

    .how-to-join__title {
        margin-bottom: 52px !important;
        font-size: 40px !important;
    }

    .how-to-join__steps {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        gap: 25px;
        padding: 0;
    }

    .how-to-join__step {
        padding: 65px 20px 40px 20px;
        width: 320px;
        height: 340px;
    }
}

@media (min-width: 1200px) {
    .how-to-join__title {
        font-size: 45px !important;
    }

    .how-to-join__step {
        padding: 65px 40px 52px 60px;
        width: 320px;
        height: 320px;
    }

    .how-to-join__step_one {
        padding: 65px 55px 52px 60px;
    }
    .how-to-join__step_two {
        padding: 65px 40px 52px 69px;
    }
    .how-to-join__step_three {
        padding: 65px 45px 52px 57px;
    }
    .how-to-join__step_three .how-to-join__step-description {
        padding-right: 10px;
    }
}

@media (min-width: 1400px) {
    .how-to-join__container {
        max-width: 1388px;
    }
}


/* --------------------------------------------------
PERKS
-------------------------------------------------- */
.perks {
    padding: 68px 0 50px;
    background-image: url('../images/affiliate-program/perks_bg_small.jpg');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    position: relative;
}

.perks__title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -18px;
    height: 35px;
    width: 349px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    font-weight: 900 !important;
    font-size: 24px !important;
}

.perks__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.perks__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 17px;
}

.perks__icon-wrap {
    min-height: 72px;
}

.perks__icon {
    display: block;
}

.perks__text {
    display: block;
    text-align: center;
    font-size: 17px;
    line-height: 1.15;
    font-weight: 300;
}

.perks__footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.perks__footer .octagonButtonBlack {
    max-width: 349px;
}

.perks__credit {
    position: absolute;
    bottom: 20px;
    left: auto;
    right: 20px;
    text-align: right;
    width: auto;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
}

@media (min-width: 460px) {
    .perks {
        background-position: center bottom -60px;
    }
}

@media (min-width: 500px) {
    .perks {
        padding: 120px 0 100px;
        background-position: center bottom -100px;
    }
}

@media (min-width: 580px) {
    .perks {
        padding: 140px 0 120px;
        background-position: center bottom -140px;
        background-size: cover;
    }
}

@media (min-width: 640px) {
    .perks {
        background-position: center bottom -160px;
    }
}

@media (min-width: 768px) {
    .perks {
        padding: 100px 0 70px;
        background-image: url('../images/affiliate-program/perks_bg.jpg');
        background-position: right bottom;
        background-size: cover;
    }

    .perks__title {
        top: -27px;
        height: 50px;
        font-size: 40px !important;
        min-width: 567px;
    }

    .perks__inner {
        padding: 0 50px;
        grid-template-columns: repeat(3, 1fr);

    }

    .perks__item {
        gap: 24px;
    }
}

@media (min-width: 992px) {
    .perks__inner {
        
    }

    .perks__text {
        
    }
}

@media (min-width: 1200px) {
    .perks__inner {
        display: flex;
        justify-content: space-between;
        /* margin-bottom: 0; */
        padding: 0;
    }
    .perks__title {
        font-size: 45px !important;
    }

    .perks__text {
        font-weight: 900;
        font-size: 24px;
    }
}

@media (min-width: 1400px) {
    .perks__container {
        max-width: 1388px;
    }
    .perks__inner {
        padding: 0 60px;
    }
}

@media (min-width: 1500px) {
    .perks__inner {
        padding: 0 160px;
    }
}

/* --------------------------------------------------
WHO SHOULD JOIN
-------------------------------------------------- */
.who-should-join {
    padding: 40px 0;
}

.who-should-join__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 30px;
}

.who-should-join__title {
    display: block;
    margin: 0 !important;
    text-align: center;
    font-weight: 900 !important;
    font-size: 36px !important;
    line-height: 1 !important;
    color: #000;
}

.who-should-join__description {
    display: block;
    margin: 0;
    max-width: 740px;
    text-align: center;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.1;
    color: #020202;
}

.who-should-join__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    row-gap: 13px;
}

.who-should-join__figure {
    width: 165px;
    height: 165px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0;
}

.who-should-join__image {
    display: block;
    width: 100%;
    object-fit: contain;
}

@media (min-width: 768px) {
    .who-should-join {
        padding: 68px 0;
    }

    .who-should-join__head {
        margin-bottom: 50px;
    }

    .who-should-join__title {
        font-size: 40px !important;
    }

    .who-should-join__description {
        font-size: 24px;
    }

    .who-should-join__inner {
        gap: 14px;
    }

    .who-should-join__figure {
        width: 150px;
        height: 150px;
    }
}

@media (min-width: 1200px) {
    .who-should-join__title {
        font-size: 45px !important;
    }

    .who-should-join__inner {
        gap: 26px;
    }

    .who-should-join__figure {
        width: 205px;
        height: 205px;
    }
}

/* --------------------------------------------------
AFFILIATE TAGLINE
-------------------------------------------------- */
.affiliate-tagline {
    padding: 35px 0;
    background-image: url('../images/affiliate-program/worry_less_bg_small.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.affiliate-tagline__img {
    display: block;
    width: 100%;
    object-fit: contain;
}

@media (min-width: 768px) {
    .affiliate-tagline {
        padding: 50px 0;
        background-image: url('../images/affiliate-program/worry_less_bg.png');
    }
}

@media (min-width: 1500px) {
    .affiliate-tagline {
        padding: 75px 0;
    }

    .affiliate-tagline__container {
        padding: 0;
        max-width: 1355px;
    }
}

/* --------------------------------------------------
AFFILIATE CTA
-------------------------------------------------- */
.affiliate-cta {
    min-height: 490px;
    background-image: url('../images/affiliate-program/affiliate-cta_bg_small.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.affiliate-cta__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.affiliate-cta__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    max-width: 350px;
}

.affiliate-cta__title {
    margin: 0 !important;
    display: block;
    font-weight: 900 !important;
    font-size: 24px !important;
    line-height: 1.2 !important;
}

.affiliate-cta__subtitle {
    margin: 0;
    display: block;
    font-weight: 400;
    font-size: 17px;
    line-height: 1;
}

.affiliate-cta__content .octagonButtonBlack {
    width: 100%;
    margin-top: 150px;
}

.affiliate-cta__credit {
    position: absolute;
    bottom: 20px;
    left: auto;
    right: 20px;
    text-align: right;
    width: auto;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    color: var(--Night-Sky, #020202);
}

@media (min-width: 440px) {
   
}

@media (min-width: 576px) {
    .affiliate-cta__head {
        max-width: 420px;
    }

    .affiliate-cta__content .octagonButtonBlack {
        width: auto;
        margin-top: 15px;
    }

    .affiliate-cta__credit {
        bottom: 10px;
        right: 18px;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .affiliate-cta {
        min-height: 580px;
        background-image: url('../images/affiliate-program/affiliate-cta_bg.jpg');
    }

    .affiliate-cta__content {
        gap: 20px;
    }

    .affiliate-cta__head {
        max-width: 540px;
        gap: 20px;
    }

    .affiliate-cta__title {
        font-size: 36px !important;
    }
}

@media (min-width: 1200px) {
    .affiliate-cta__title {
        font-size: 45px !important;
    }
}

@media (min-width: 2200px) {
    .affiliate-cta {
        min-height: 650px;
    }
}

/* --------------------------------------------------
AFFILIATE BENEFITS
-------------------------------------------------- */
.affiliate-benefits {
    padding: 30px 0;
    background-image: url('../images/affiliate-program/worry_less_bg_small.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.affiliate-benefits__content {
    display: flex;
    flex-wrap: wrap;
    row-gap: 14px;
    align-items: center;
}

.affiliate-benefits__logo {
    width: 100%;
    max-width: 78px;
}

.affiliate-benefits__title {
    display: block !important;
    font-weight: 900 !important;
    font-size: 24px !important;
    line-height: 1.2 !important;
}

.affiliate-benefits__description {
    grid-column: 1 / span 2;
    width: 100%;
    margin: 0;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.2;
}

@media (max-width: 575.98px) {
    .affiliate-benefits__title {
        padding-left: 20px;
        width: 70%;
    }
}

@media (min-width: 576px) {
    .affiliate-benefits__content {
        display: grid;
        row-gap: 22px;
        column-gap: 40px;
        justify-content: center;
    }

    .affiliate-benefits__logo-wrap {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    .affiliate-benefits__logo {
        max-width: 120px;
    }

    .affiliate-benefits__title {
        grid-column: 2;
        grid-row: 1;
    }

    .affiliate-benefits__description {
        grid-column: 2;
        grid-row: 2;
        max-width: 500px;
        line-height: 1;
    }
}

@media (min-width: 768px) {
    .affiliate-benefits {
        padding: 70px 0;
        background-image: url('../images/affiliate-program/worry_less_bg.png');
    }

    .affiliate-benefits__title {
        font-size: 40px !important;
    }
}

@media (min-width: 1200px) {
    .affiliate-benefits__title {
        font-size: 45px !important;
    }

    .affiliate-benefits__logo {
        width: 100%;
        max-width: 163px;
    }
}


/* --------------------------------------------------
WHY OVERWATCH
-------------------------------------------------- */
.why-overwatch {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 475px;
    background-image: url('../images/why-overwatch/why-overwatch_bg_small.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.why-overwatch__content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding-top: 40px;
}

.why-overwatch__subtitle {
    display: block;
    text-align: center;
    font-size: 18px;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.why-overwatch__title {
    margin: 0 !important;
    display: block !important;
    max-width: 320px;
    text-align: center;
    font-size: 36px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}

.why-overwatch__description {
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 1.1;
    max-width: 320px;
}

.why-overwatch__credit {
    position: absolute;
    bottom: 10px;
    right: auto;
    left: 18px;
    text-align: right;
    width: auto;
    font-size: 14px;
    font-weight: 400;
    color: var(--Night-Sky, #020202);
}

@media (min-width: 600px) {
    .why-overwatch {
        background-position: center -200px;
    }
}

@media (min-width: 768px) {
    .why-overwatch {
        align-items: center;
        background-image: url('../images/why-overwatch/why-overwatch_bg.jpg');
        background-position: center center;
    }

    .why-overwatch__content-container {
        padding-top: 0;
        gap: 24px;
    }

    .why-overwatch__title {
        max-width: 400px;
        font-size: 40px !important;
        line-height: 1.15 !important;
    }

    .why-overwatch__description {
        max-width: 375px;
    }

    .why-overwatch__credit {
        bottom: 16px;
        right: 22px;
        left: auto;
    }
}

@media (min-width: 1200px) {
    .why-overwatch__content-container {
        gap: 24px;
    }

    .why-overwatch__title {
        font-size: 45px !important;
        max-width: 540px;
    }
}

/* --------------------------------------------------
EXPERT COORDINATION
-------------------------------------------------- */
.expert-coordination {
    padding: 32px 0 40px 0;
    min-height: 665px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url('../images/why-overwatch/expert-coordination_bg_small.jpg');
    position: relative;
}

.expert-coordination__head {
    margin-bottom: 67px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 420px;
}

.expert-coordination__title {
    margin: 0 !important;
    font-weight: 900 !important;
    color: #fff !important;
    font-size: 36px !important;
    line-height: 1 !important;
}

.expert-coordination__description {
    margin: 0 !important;
    font-weight: 700;
    color: #fff;
    font-size: 17px;
    line-height: 1.2;
}

.expert-coordination__stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.expert-coordination__stat--text {
    max-width: 260px;
}

.expert-coordination__stat-value {
    display: block;
    width: 100%;
    vertical-align: bottom;
    font-weight: 900;
    font-size: 45px;
    line-height: 45px;
}

.expert-coordination__stat-icon img {
    max-width: 56px;
    width: 100%;
}

.expert-coordination__stat-label {
    margin: 0 !important;
    display: block;
    width: 100%;
    font-weight: 700;
    font-size: 17px;
    line-height: 20px;
}

.expert-coordination__credit {
    position: absolute;
    bottom: 8px;
    right: 10px;
    left: auto;
    text-align: right;
    width: auto;
    font-size: 14px;
    font-weight: 400;
    color: var(--Night-Sky, #020202);
}

@media (max-width: 575.98px) {
    .expert-coordination__description {
        padding-right: 10px;
    }
}

@media (min-width: 768px) {
    .expert-coordination {
        padding: 77px 0 40px 0;
        min-height: 475px;
        background-image: url('../images/why-overwatch/expert-coordination_bg.jpg');
    }

    .expert-coordination__head {
        margin-bottom: 35px;
        gap: 24px;
    }

    .expert-coordination__title {
        font-size: 40px !important;
        line-height: 1.1 !important;
    }

    .expert-coordination__stats {
        flex-direction: row;
        gap: 30px;
    }

    .expert-coordination__credit {
        bottom: 16px;
        right: 22px;
    }

    .expert-coordination__stat-value {
        height: 57px;
        padding-top: 10px;
    }
}

@media (min-width: 1200px) {
    .expert-coordination {
        min-height: 540px;
    }

    .expert-coordination__title {
        font-size: 45px !important;
    }

    .expert-coordination__stats {
        gap: 42px;
    }
}

@media (min-width: 1400px) {
    .expert-coordination__container {
        max-width: 1388px;
    }
}

/* --------------------------------------------------
COST BENEFIT
-------------------------------------------------- */
.cost-benefit {
    padding: 35px 0;
}

.cost-benefit__inner {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    background: #fff;
}

.cost-benefit__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.cost-benefit__title {
    margin: 0 !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #020202;
    line-height: 1;
}

.cost-benefit__description {
    margin: 0 !important;
    max-width: 240px;
    font-size: 17px;
    font-weight: 300;
    color: #020202;
    line-height: 1.1;
}

.cost-benefit__value {
    font-family: "Space Mono", monospace !important;
    font-size: 48px;
    font-weight: 700;
    color: #020202;
    line-height: 1;
    letter-spacing: 0.2em;
    overflow: hidden;
}

@media (min-width: 768px) {
    .cost-benefit {
        padding: 60px 0;
    }

    .cost-benefit__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .cost-benefit__item {
        align-items: flex-start;
        gap: 6px;
        text-align: left;
    }

    .cost-benefit__item:first-child {
        /* margin-left: auto; */
        text-align: left;
    }

    .cost-benefit__description {
        /* max-width: 440px; */
        line-height: 1;
    }

    .cost-benefit__value {
        padding-top: 4px;
        font-size: 70px;
    }
}

@media (min-width: 992px) {
    .cost-benefit__inner {
        padding: 0 100px;
        justify-content: center;
    }
}

@media (min-width: 1200px) {
    .cost-benefit {
        padding: 84px 0 100px 0;
    }

    .cost-benefit__inner {
        padding: 0 200px;
        gap: 80px;
    }

    .cost-benefit__value {
        font-size: 96px;
    }
}

@media (min-width: 1500px) {
    .cost-benefit__inner {
        padding: 0 240px;
        gap: 100px;
    }

    .cost-benefit__description {
        white-space: nowrap;
    }
}

/* --------------------------------------------------
WHY IT MATTERS
-------------------------------------------------- */
.why-it-matters {
    padding: 45px 0 150px;
    position: relative;
    background-image: url('../images/why-overwatch/why-it-matters_small.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    overflow: hidden;
}

.why-it-matters__container {

}

.why-it-matters__title {
    display: block !important;
    margin-bottom: 20px !important;
    font-size: 18px !important;
    font-family: "Space Mono", monospace !important;
    text-transform: uppercase;
    font-weight: 700 !important;
    letter-spacing: 0.12em;
}

.why-it-matters__inner {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 28px;
}

.why-it-matters__item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-it-matters__item:first-child {
    max-width: 300px;
}

.why-it-matters__item-title {
    font-size: 36px !important;
    font-weight: 900 !important;
    color: #020202;
    line-height: 1.1 !important;
}

.why-it-matters__item-description {
    margin: 0;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    color: #020202;
}

.why-it-matters__ticker {
    position: absolute;
    bottom: 20px;
    overflow: hidden;
}

.why-it-matters__ticker-text {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 900;
    color: #fff;
    white-space: nowrap;
    position: relative;
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-loop 40s linear infinite;
}

@keyframes scroll-loop {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (min-width: 440px) and (max-width: 767.98px) {
    .why-it-matters__item {
        max-width: 400px !important;
        width: 400px !important;
    }
}

@media (min-width: 768px) {
    .why-it-matters {
        padding: 100px 0;
        min-height: 550px;
        background-image: url('../images/why-overwatch/why-it-matters.png');
        background-position: center center;
        background-size: cover;
    }

    .why-it-matters__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .why-it-matters__item {
        gap: 10px;
    }

    .why-it-matters__item:first-child {
        max-width: 100%;
    }

    .why-it-matters__item-title {
        line-height: 1 !important;
    }

    .why-it-matters__ticker {
        bottom: 42px;
    }
}

@media (min-width: 1200px) {
    .why-it-matters {
        margin-top: -16px;
        min-height: 550px;
    }

    .why-it-matters__ticker-text {
        font-size: 40px;
    }

    .why-it-matters__inner {
        padding-right: 200px;
    }
    .why-it-matters__item {
        padding-right: 40px;
    }
    .why-it-matters__ticker {
        bottom: 48px;
    }
}

@media (min-width: 1400px) {
    .why-it-matters {
        min-height: 550px;
    }
    .why-it-matters__container {
        max-width: 1388px;
    }
}

@media (min-width: 1500px) {
    .why-it-matters__ticker-text {
        font-size: 45px;
    }

    .why-it-matters__inner {
        padding-right: 495px;
        gap: 51px;
    }

    .why-it-matters__item:first-child {
        padding-right: 0;
    }

    .why-it-matters__item:last-child {
        max-width: 100%;
        padding-right: 62px;
    }
    .why-it-matters__ticker {
        bottom: 58px;
    }
}

@media (min-width: 1700px) {
    .why-it-matters {
        min-height: 650px;
    }
}

@media (min-width: 2000px) {
    .why-it-matters {
        min-height: 750px;
    }
}

@media (min-width: 2400px) {
    .why-it-matters {
        min-height: 900px;
    }
}


/* --------------------------------------------------
SAFETY MESSAGE
-------------------------------------------------- */
.safety-message {
    padding: 35px 0;
}

.safety-message__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.safety-message__head {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.safety-message__title {
    margin: 0 !important;
    display: block;
    width: 100%;
    font-weight: 900 !important;
    font-size: 36px !important;
    line-height: 1 !important;
}

.safety-message__description {
    margin: 0;
    display: block;
    max-width: 300px;
    width: 100%;
    font-weight: 300;
    font-size: 24px;
    line-height: 1.15;
}

.safety-message__content {
    display: flex;
    flex-direction: column;
    gap: 37px;
}

.safety-message__block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.safety-message__block-first {
    order: 2;
}

.safety-message__block-second {
    order: 3;
}

.safety-message__block--image {
    order: 1;
}

.safety-message__block--image img {
    max-width: 100px;
    width: 100%;
    object-fit: contain;
}

.safety-message__block-title {
    margin: 0 !important;
    display: block !important;
    width: 100%;
    font-weight: 900 !important;
    font-size: 24px !important;
    line-height: 1 !important;
}

.safety-message__block-description {
    margin: 0 !important;
    display: block;
    width: 100%;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.18;
}

@media (max-width: 575.98px) {
    .safety-message__block-second {
        margin-top: -10px;
    }
}

@media (min-width: 576px) {
    .safety-message__description {
        max-width: 100%;
    }

    .safety-message__head {
        margin-bottom: 54px;
    }
}

@media (min-width: 768px) {
    .safety-message {
        padding: 50px 0;
        min-height: 500px;
    }

    .safety-message__head {
        align-items: center;
        justify-content: center;
        gap: 14px;
    }

    .safety-message__content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0;
    }

    .safety-message__title {
        font-size: 40px !important;
        line-height: 1.1 !important;
        text-align: center;
    }

    .safety-message__description {
        max-width: 630px;
        text-align: center;
        line-height: 1.1;
    }

    .safety-message__block {
        width: auto;
    }

    .safety-message__block-first {
        order: 1;
    }

    .safety-message__block-second {
        order: 3;
    }

    .safety-message__block--image {
        order: 2;
        width: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .safety-message__block--image img {
        object-fit: contain;
    }

    .safety-message__block-description-first {
        max-width: 330px;
    }

    .safety-message__block-description-second {
        max-width: 340px;
    }
}

@media (min-width: 1200px) {
    .safety-message {
        padding: 78px 0;
    }

    .safety-message__title {
        font-size: 45px !important;
    }

    .safety-message__block--image {
        width: 260px;
    }

    .safety-message__block--image img {
        max-width: 195px;
    }

    .safety-message__block-title {
        line-height: 1.15 !important;
    }
}

/* --------------------------------------------------
OUR PROMISE
-------------------------------------------------- */
.our-promise {
    padding: 42px 0 32px;
}

.our-promise__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.our-promise__subtitle {
    margin: 0;
    display: block;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: underline;
}

.our-promise__title {
    margin: 0 auto !important;
    display: block !important;
    max-width: 235px;
    font-weight: 900 !important;
    font-size: 36px !important;
    line-height: 1 !important;
}

.our-promise__description {
    display: block;
    margin: 0 auto;
    max-width: 340px;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .our-promise {
        padding: 75px 0 60px;
    }

    .our-promise__container {
        gap: 28px;
    }

    .our-promise__subtitle {
        font-size: 18px;
        max-width: 570px;
    }

    .our-promise__title {
        font-size: 40px !important;
        max-width: 100%;
    }

    .our-promise__description {
        max-width: 440px;
    }
}

@media (min-width: 1200px) {
    .our-promise {
        padding: 73px 0 67px;
    }
    .our-promise__title {
        font-size: 45px !important;
    }
}

/* --------------------------------------------------
ADVENTURE MESSAGE
-------------------------------------------------- */
.adventure-message {
    padding: 26px 0 0 0;
}

.adventure-message__title {
    margin-bottom: 22px;
}

.adventure-message__title-image {
    display: block;
    width: 100%;
    object-fit: contain;
}

.adventure-message__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
    column-gap: 10px;
}

.adventure-message__feature {
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-sizing: border-box;
}

.adventure-message__feature_1 {
    order: 1;
}

.adventure-message__feature_2 {
    order: 4;
}

.adventure-message__feature_3 {
    order: 5;
}

.adventure-message__feature_4 {
    order: 1;
}

.adventure-message__feature_5 {
    order: 5;
}

.adventure-message__feature_6 {
    order: 6;
}

.adventure-message__feature-title {
    display: block !important;
    margin: 0 !important;
    width: 100%;
    font-weight: 900 !important;
    font-size: 24px !important;
    line-height: 1 !important;
    order: 1;
}

.adventure-message__feature-description {
    margin: 0;
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.1;
    order: 2;
}

.adventure-message__image {
    width: 100%;
    object-fit: contain;
}

.adventure-message__feature-additional-description {
    margin: 0;
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    order: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-bottom: 20px;
}

.adventure-message__feature-additional-description span {
    display: block;
    position: absolute;
    bottom: 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    font-weight: 700;
    white-space: nowrap;
    transition: opacity 0.3s ease;
    z-index: 0;
    pointer-events: none;
}

.adventure-message__feature-additional-description>span.slide_1 {
    animation: fade_1 24s infinite both;
}

.adventure-message__feature-additional-description>span.slide_2 {
    animation: fade_2 24s infinite both;
}

.adventure-message__feature-additional-description>span.slide_3 {
    animation: fade_3 24s infinite both;
}

.adventure-message__feature-additional-description>span.slide_4 {
    animation: fade_4 24s infinite both;
}

.adventure-message__feature-additional-description>span.slide_5 {
    animation: fade_5 24s infinite both;
}

.adventure-message__feature-additional-description>span.slide_6 {
    animation: fade_6 24s infinite both;
}

.adventure-message__feature-additional-description>span.slide_7 {
    animation: fade_7 24s infinite both;
}

.adventure-message__feature-additional-description>span.slide_8 {
    animation: fade_8 24s infinite both;
}



.adventure-message__feature-icon-wrap {
    width: 42px;
    height: 42px;
    order: 3;
}

.adventure-message__feature-icon {
    width: 100%;
    object-fit: contain;
}

.adventure-message__feature-anm-icon-wrap {
    position: relative;
    order: 2;
}

.adventure-message__feature-anm-icon-wrap .adventure-message__feature-icon {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.adventure-message__feature-anm-icon-wrap .slide_1 {
    animation: fade_1 24s infinite both;
}

.adventure-message__feature-anm-icon-wrap .slide_2 {
    animation: fade_2 24s infinite both;
}

.adventure-message__feature-anm-icon-wrap .slide_3 {
    animation: fade_3 24s infinite both;
}

.adventure-message__feature-anm-icon-wrap .slide_4 {
    animation: fade_4 24s infinite both;
}

.adventure-message__feature-anm-icon-wrap .slide_5 {
    animation: fade_5 24s infinite both;
}

.adventure-message__feature-anm-icon-wrap .slide_6 {
    animation: fade_6 24s infinite both;
}

.adventure-message__feature-anm-icon-wrap .slide_7 {
    animation: fade_7 24s infinite both;
}

.adventure-message__feature-anm-icon-wrap .slide_8 {
    animation: fade_8 24s infinite both;
}

@keyframes fade_1 {
    0% {
        opacity: 1;
        visibility: visible;
    }

    10% {
        opacity: 1;
        visibility: visible;
    }

    11.5% {
        opacity: 0;
        visibility: hidden;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes fade_2 {
    0% {
        opacity: 0;
        visibility: hidden;
    }

    11.5% {
        opacity: 0;
        visibility: hidden;
    }

    12.5% {
        opacity: 1;
        visibility: visible;
    }

    22.5% {
        opacity: 1;
        visibility: visible;
    }

    24% {
        opacity: 0;
        visibility: hidden;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes fade_3 {
    0% {
        opacity: 0;
        visibility: hidden;
    }

    24% {
        opacity: 0;
        visibility: hidden;
    }

    25% {
        opacity: 1;
        visibility: visible;
    }

    35% {
        opacity: 1;
        visibility: visible;
    }

    36.5% {
        opacity: 0;
        visibility: hidden;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes fade_4 {
    0% {
        opacity: 0;
        visibility: hidden;
    }

    36.5% {
        opacity: 0;
        visibility: hidden;
    }

    37.5% {
        opacity: 1;
        visibility: visible;
    }

    47.5% {
        opacity: 1;
        visibility: visible;
    }

    49% {
        opacity: 0;
        visibility: hidden;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes fade_5 {
    0% {
        opacity: 0;
        visibility: hidden;
    }

    49% {
        opacity: 0;
        visibility: hidden;
    }

    50% {
        opacity: 1;
        visibility: visible;
    }

    60% {
        opacity: 1;
        visibility: visible;
    }

    61.5% {
        opacity: 0;
        visibility: hidden;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes fade_6 {
    0% {
        opacity: 0;
        visibility: hidden;
    }

    61.5% {
        opacity: 0;
        visibility: hidden;
    }

    62.5% {
        opacity: 1;
        visibility: visible;
    }

    72.5% {
        opacity: 1;
        visibility: visible;
    }

    74% {
        opacity: 0;
        visibility: hidden;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes fade_7 {
    0% {
        opacity: 0;
        visibility: hidden;
    }

    74% {
        opacity: 0;
        visibility: hidden;
    }

    75% {
        opacity: 1;
        visibility: visible;
    }

    85% {
        opacity: 1;
        visibility: visible;
    }

    86.5% {
        opacity: 0;
        visibility: hidden;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes fade_8 {
    0% {
        opacity: 0;
        visibility: hidden;
    }

    86.5% {
        opacity: 0;
        visibility: hidden;
    }

    87.5% {
        opacity: 1;
        visibility: visible;
    }

    97.5% {
        opacity: 1;
        visibility: visible;
    }

    99% {
        opacity: 0;
        visibility: hidden;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}



@media (min-width: 576px) {
    .adventure-message__feature {
        justify-content: space-around;
    }
}

@media (min-width: 768px) {
    .adventure-message {
        padding: 34px 0 0 0;
    }

    .adventure-message__title {
        margin-bottom: 35px;
    }

    .adventure-message__features {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .adventure-message__feature {
        justify-content: space-between;
        align-items: center;
    }

    .adventure-message__feature_1,
    .adventure-message__feature_3,
    .adventure-message__feature_5 {
        padding: 10px;
    }

    .adventure-message__feature_1 {
        order: 1;
    }

    .adventure-message__feature_2 {
        order: 1;
    }

    .adventure-message__feature_3 {
        order: 1;
    }

    .adventure-message__feature_4 {
        order: 1;
    }

    .adventure-message__feature_5 {
        order: 1;
    }

    .adventure-message__feature_6 {
        order: 1;
    }

    .adventure-message__feature-title {
        font-size: 30px !important;
        text-align: center;
        order: 1;
    }

    .adventure-message__feature-description {
        order: 3;
        margin: 0;
        max-width: 346px;
        font-weight: 700;
        font-size: 15px;
        text-align: center;
    }

    .adventure-message__feature-additional-description {
        justify-content: center;
        align-items: center;
        line-height: 1;
        text-align: center;
    }

    .adventure-message__feature-additional-description span {
        font-weight: 300;
    }

    .adventure-message__feature-icon-wrap {
        order: 2;
    }
}

@media (min-width: 992px) {
    .adventure-message__feature-icon-wrap {
        width: 60px;
        height: 60px;
    }
}

@media (min-width: 1200px) {
    .adventure-message {
        padding: 50px 0 0 0;
    }

    .adventure-message__title {
        margin-bottom: 55px;
    }

    .adventure-message__feature-description {
        font-size: 17px;
    }

    .adventure-message__feature-additional-description {
        padding-bottom: 30px;
        font-weight: 700;
        font-size: 22px;
    }

    .adventure-message__feature-title {
        font-size: 32px !important;
    }

    .adventure-message__features {
        gap: 20px;
    }

    .adventure-message__feature_1,
    .adventure-message__feature_3,
    .adventure-message__feature_5 {
        padding: 27px 20px;
    }

    .adventure-message__feature-icon-wrap {
        width: 72px;
        height: 72px;
    }
}

@media (min-width: 1400px) {
    .adventure-message__container {
        max-width: 1388px;
    }
}

@media (min-width: 1500px) {
    .adventure-message__feature-title {
        font-size: 36px !important;
    }

    .adventure-message__feature-additional-description {
        font-size: 24px;
    }
}