/* Page globals */
.HOW-IT-WORKS-MEASURE .stepper,
.HOW-IT-WORKS-ACTIVATE .stepper,
.HOW-IT-WORKS-IDENTIFY .stepper {
    margin: 80px 0px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    counter-reset: index;
}

.HOW-IT-WORKS-MEASURE .stepper > .dot,
.HOW-IT-WORKS-ACTIVATE .stepper > .dot,
.HOW-IT-WORKS-IDENTIFY .stepper > .dot {
    width: 11.75px;
    height: 11.75px;
    background-color: #ACB5C7;
    border-radius: 100%;
}

.HOW-IT-WORKS-MEASURE .stepper > .chip,
.HOW-IT-WORKS-ACTIVATE .stepper > .chip,
.HOW-IT-WORKS-IDENTIFY .stepper > .chip {
    box-sizing: border-box;
    padding: 12px 40px 12px 12px;
    width: fit-content;
    border-radius: 32px;
    background-color: #FFFFFF;
    box-shadow: 0 5px 27px 0 rgba(0,0,0,0.2);
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
}
.HOW-IT-WORKS-MEASURE .stepper > .chip::before,
.HOW-IT-WORKS-ACTIVATE .stepper > .chip::before,
.HOW-IT-WORKS-IDENTIFY .stepper > .chip::before {
    content: counter(index);
    counter-increment: index;
    flex: 0 0 40px;

    margin-right: 15px;
    box-sizing: border-box;
    border-radius: 100%;
    padding: 10px 15px;
    width: 40px;
    height: 40px;
    background-color: #1C6BFF;
    color: #ffffff;
    opacity: 0.25;

    display: inherit;
    align-items: inherit;
    justify-content: inherit;
}

.HOW-IT-WORKS-MEASURE .stepper > .chip > .content,
.HOW-IT-WORKS-ACTIVATE .stepper > .chip > .content,
.HOW-IT-WORKS-IDENTIFY .stepper > .chip > .content {
    display: inline-block;
    line-height: 30px;
    font-size: 20px;
    font-weight: 700;
    color: #091018;
    opacity: 0.25;
    transition: 0.25s;
}
.HOW-IT-WORKS-MEASURE .stepper > .chip:hover > .content,
.HOW-IT-WORKS-ACTIVATE .stepper > .chip:hover > .content,
.HOW-IT-WORKS-IDENTIFY .stepper > .chip:hover > .content { opacity: 1; }


.HOW-IT-WORKS-MEASURE .testimonial,
.HOW-IT-WORKS-IDENTIFY .testimonial {
    box-sizing: border-box;
    padding: 60px 80px 60px 140px; 
    width: 100%;

    border-radius: 10px;
    background-color: #FFFFFF;
    box-shadow: 0 20px 40px 0 rgba(0,0,0,0.1);
    
    margin-top: 80px;
    margin-bottom: -228px;
    position: relative;
    z-index: 1;
}

.HOW-IT-WORKS-MEASURE .testimonial .content,
.HOW-IT-WORKS-IDENTIFY .testimonial .content { position: relative; }

.HOW-IT-WORKS-MEASURE .testimonial .content::before,
.HOW-IT-WORKS-IDENTIFY .testimonial .content::before {
    content: url('./../../img/testimonial-quote.svg');
    position: absolute;
    top: 10px;
    left: -63px;
}

.HOW-IT-WORKS-MEASURE .testimonial p:first-of-type,
.HOW-IT-WORKS-IDENTIFY .testimonial p:first-of-type {
    color: #091018;
    font-size: 24px;
    line-height: 38px;
}

.HOW-IT-WORKS-MEASURE .testimonial p:last-of-type,
.HOW-IT-WORKS-IDENTIFY .testimonial p:last-of-type {
    color: #091018;
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
}

@media screen and (min-width: 1640px) {
    .HOW-IT-WORKS-MEASURE .stepper,
    .HOW-IT-WORKS-ACTIVATE .stepper,
    .HOW-IT-WORKS-IDENTIFY .stepper { margin: 80px -100px; }
}

@media screen and (max-width: 1200px) {
    .HOW-IT-WORKS-MEASURE .stepper,
    .HOW-IT-WORKS-ACTIVATE .stepper,
    .HOW-IT-WORKS-IDENTIFY .stepper { margin: 40px 0; }

    .HOW-IT-WORKS-MEASURE .stepper > .dot:nth-of-type(even),
    .HOW-IT-WORKS-ACTIVATE .stepper > .dot:nth-of-type(even),
    .HOW-IT-WORKS-IDENTIFY .stepper > .dot:nth-of-type(even) { display: none; }

    .HOW-IT-WORKS-MEASURE .stepper > .dot:nth-of-type(3),
    .HOW-IT-WORKS-ACTIVATE .stepper > .dot:nth-of-type(3),
    .HOW-IT-WORKS-IDENTIFY .stepper > .dot:nth-of-type(3) { display: none; }
}

@media screen and (max-width: 900px) {
    .HOW-IT-WORKS-MEASURE .stepper,
    .HOW-IT-WORKS-ACTIVATE .stepper,
    .HOW-IT-WORKS-IDENTIFY .stepper { flex-flow: column; margin-bottom: 40px; }

    /* .HOW-IT-WORKS-MEASURE .stepper > .chip:not(:last-of-type),
    .HOW-IT-WORKS-ACTIVATE .stepper > .chip:not(:last-of-type),
    .HOW-IT-WORKS-IDENTIFY .stepper > .chip:not(:last-of-type) { margin-bottom: 15px; } */

    .HOW-IT-WORKS-MEASURE .stepper > .dot,
    .HOW-IT-WORKS-ACTIVATE .stepper > .dot,
    .HOW-IT-WORKS-IDENTIFY .stepper > .dot { display: none; }

    .HOW-IT-WORKS-MEASURE.testimonia,
    .HOW-IT-WORKS-IDENTIFY .testimonial {
        margin-top: 50px;
        width: 100%;
        padding: 40px; 
    }

    .HOW-IT-WORKS-MEASURE .testimonial .content::before,
    .HOW-IT-WORKS-IDENTIFY .testimonial .content::before { display: none; }

    .HOW-IT-WORKS-MEASURE .content > ul > li,
    .HOW-IT-WORKS-ACTIVATE .content > ul > li,
    .HOW-IT-WORKS-IDENTIFY .content > ul > li {
        margin: 0 0 10px;
        font-size: 18px;
        line-height: 28px;
    }
    .HOW-IT-WORKS-MEASURE .content > ul > li > strong,
    .HOW-IT-WORKS-ACTIVATE .content > ul > li > strong,
    .HOW-IT-WORKS-IDENTIFY .content > ul > li > strong {
        font-size: 18px;
        line-height: 28px;
    }
}



/* VIDEO */

:is(.JA-HEAD, .HOW-IT-WORKS-IDENTIFY, .HOW-IT-WORKS-ACTIVATE, .HOW-IT-WORKS-MEASURE) .b-media {
    box-shadow: inset 0 0 0 2px #F6F6FB, 0 0 2px #F6F6FB;
    z-index: -1;
}

:is(.JA-HEAD, .HOW-IT-WORKS-IDENTIFY, .HOW-IT-WORKS-ACTIVATE, .HOW-IT-WORKS-MEASURE) .b-media video {
    box-shadow: 0 0 0 5px #F6F6FB;
}

@media screen and (max-width: 900px) {
    :is(.HOW-IT-WORKS-IDENTIFY, .HOW-IT-WORKS-MEASURE) .b-media {
        margin: -80px 0;
    }
    :is(.HOW-IT-WORKS-IDENTIFY, .HOW-IT-WORKS-ACTIVATE, .HOW-IT-WORKS-MEASURE) .b-media video {
        width: 130%;
        margin: 0 0 0 -15%;
    }
}


/* JA-HEAD */
/* .JA-HEAD { background-color: #F6F6FB; } */

.JA-HEAD .b-frame-head > h1 > span { font-size: 30px; vertical-align: text-top; line-height: 40px;}

.JA-HEAD .b-frame-head { max-width: 750px; }

.JA-HEAD .b-frame {
    max-width: 1500px;
    padding-bottom: 0;
    /* padding-bottom: calc(781.25px/2); */
    position: relative;
}




/* JA-BENEFITS */
/* .JA-BENEFITS .b-frame { padding-top: 450px; } */
.JA-BENEFITS .b-frame { padding-top: 50px; padding-bottom: 20px; }

.JA-BENEFITS .b-frame-head > h2 { max-width: 675px; margin: 0 auto 35px; }

.JA-BENEFITS .b-card {
    border-radius: 10px;
    background-color: #FFFFFF;
    box-shadow: 0 20px 40px 0 rgba(0,0,0,0.1);
}
.JA-BENEFITS .b-card > .content { padding: 40px; }
.JA-BENEFITS .b-card > .content > h3 { margin: 0 0 15px 0; }
.JA-BENEFITS .b-card > .content > p {
    margin: 0;
    font-size: 18px;
    line-height: 32px;
}

.JA-BENEFITS .b-column:nth-of-type(1) .b-card .content { border-top: 3px solid #A06EED; }
.JA-BENEFITS .b-column:nth-of-type(2) .b-card .content { border-top: 3px solid #F56261; }
.JA-BENEFITS .b-column:nth-of-type(3) .b-card .content { border-top: 3px solid #1C6BFF; }

@media screen and (max-width: 900px) {
    .JA-BENEFITS .b-frame { padding-top: 40px; }
}

/* JA-STATS */
.JA-STATS .stat {
    box-sizing: border-box;
    padding: 30px 0;
    border-radius: 10px;
    background-color: #F6F6FB;
    height: 100%;
    display: flex;
    align-items: center;
    flex-flow: column;
}

.JA-STATS .stat > p:nth-of-type(1) {
    color: #1C6BFF;
    font-size: 76px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 83px;
    text-align: center;
    margin: 0 0 8px;
}
.JA-STATS .stat > p:nth-of-type(2) {
    color: #0E1924;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 28px;
    text-align: center;
    margin: 0;
}

@media screen and (max-width: 900px) {
    .JA-STATS .stat { padding: 30px 20px; }
}



/* BANNER-CTA */
.BANNER-CTA {
    margin-bottom: -150px;
    z-index: 1;
}

.BANNER-CTA::before { background-color: #252E80; }
.BANNER-CTA .content { color: #ffffff; }
.BANNER-CTA .b-button {
    display: block;
    max-width: 216px;
    margin: 0 auto;
}

@media screen and (max-width: 900px) {
    .BANNER-CTA .content { text-align: center; }
}





/* HOW-IT-WORKS-IDENTIFY */
.HOW-IT-WORKS-IDENTIFY::before { background-color: #F6F6FB; } 

.HOW-IT-WORKS-IDENTIFY .b-frame {
    padding-top: 250px;
    position: relative;
} 

.HOW-IT-WORKS-IDENTIFY .stepper > .chip:nth-of-type(1) > .content,
.HOW-IT-WORKS-IDENTIFY .stepper > .chip:nth-of-type(1)::before { opacity: 1; }

.HOW-IT-WORKS-IDENTIFY .b-frame > h2  {
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
}
.HOW-IT-WORKS-IDENTIFY .b-h2 > mark { background: linear-gradient(#C0DCFE, #C0DCFE) no-repeat 0 30px; }

.HOW-IT-WORKS-IDENTIFY .content > ul > li { margin: 0 0 25px; }
.HOW-IT-WORKS-IDENTIFY .content > ul > li > h5 { margin: 0 0 6px; }
.HOW-IT-WORKS-IDENTIFY .content > ul > li > p { margin: 0; }

.HOW-IT-WORKS-IDENTIFY .locations {
    box-sizing: border-box;
    margin: 80px 0 0 0; 
    padding: 30px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-evenly;
    position: relative;
    border: 1px solid rgba(174, 190, 220, 0.4);
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
}
.HOW-IT-WORKS-IDENTIFY .locations::before { top: 0; }

.HOW-IT-WORKS-IDENTIFY .locations > h4 {
    flex: 1 0 100%;
    margin: 0 0 40px 0;
    text-align: center;
}

.HOW-IT-WORKS-IDENTIFY .locations > h5 {
    flex: 0 0 fit-content;
    margin: 0;
}
.HOW-IT-WORKS-IDENTIFY .locations > h5:not(:last-of-type) { margin-right: 20px; }


@media screen and (max-width: 1200px) {
    .HOW-IT-WORKS-IDENTIFY .locations > h5 {
        flex: 1 0 50%;
        text-align: center;
    }
    
    .HOW-IT-WORKS-IDENTIFY .locations > h5:not(:last-of-type) { margin-bottom: 20px; margin-right: 0; }
}

@media screen and (max-width: 900px) {
    .HOW-IT-WORKS-IDENTIFY .b-frame-head { text-align: center; }
    .HOW-IT-WORKS-IDENTIFY .b-frame-head > h2 { font-size: 31px; line-height: 41px; }
    .HOW-IT-WORKS-IDENTIFY .stepper > .chip:not(:nth-of-type(1)),
    .HOW-IT-WORKS-IDENTIFY .stepper > .chip:not(:nth-of-type(1)) { opacity: 0; height: 0; padding: 0; }

    .HOW-IT-WORKS-IDENTIFY .b-frame-head > h2 { margin-bottom: 0; } 
    .HOW-IT-WORKS-IDENTIFY .b-frame > h2  { margin: 0 auto 40px; }
    .HOW-IT-WORKS-IDENTIFY .locations {
        margin: 50px 0 0 0; 
        padding: 30px;
    }
    .HOW-IT-WORKS-IDENTIFY .locations > h5:not(:last-of-type) { margin-right: 0; }
    .HOW-IT-WORKS-IDENTIFY .locations > h5 {
        flex: 1 0 100%;
        margin-right: 0;
        margin: 0 auto 15px;
    }
    /* .HOW-IT-WORKS-IDENTIFY .locations > h5:not(:last-of-type) { margin-bottom: 8px; } */
}





/* HOW-IT-WORKS-ACTIVATE  */
.HOW-IT-WORKS-ACTIVATE .b-frame { padding-top: 200px; }

.HOW-IT-WORKS-ACTIVATE .b-frame-head { max-width: 1100px; }
.HOW-IT-WORKS-ACTIVATE .b-frame-head > h2 > mark { background: linear-gradient(#C0DCFE, #C0DCFE) no-repeat 0 35px; }


.HOW-IT-WORKS-ACTIVATE .stepper > .chip:nth-of-type(2) > .content,
.HOW-IT-WORKS-ACTIVATE .stepper > .chip:nth-of-type(2)::before { opacity: 1; }

.HOW-IT-WORKS-ACTIVATE .b-columns:nth-of-type(even) { flex-direction: row-reverse; }
.HOW-IT-WORKS-ACTIVATE .b-columns:not(:last-of-type) { margin-bottom: 80px; }

.HOW-IT-WORKS-ACTIVATE .content ul > li {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}

.HOW-IT-WORKS-ACTIVATE .content .b-button { margin: 30px 0 0 0; }

@media screen and (min-width: 901px) {
    .HOW-IT-WORKS-ACTIVATE .content ul > li:not(:last-of-type) { margin: 0 0 20px; }
    .HOW-IT-WORKS-ACTIVATE .stepper { margin-bottom: 120px; }
}

@media screen and (max-width: 900px) {
    .HOW-IT-WORKS-ACTIVATE .stepper > .chip:not(:nth-of-type(2)),
    .HOW-IT-WORKS-ACTIVATE .stepper > .chip:not(:nth-of-type(2)) { opacity: 0; height: 0; padding: 0; }
}




/* HOW-IT-WORKS-MEASURE  */
.HOW-IT-WORKS-MEASURE::before { background-color: #F6F6FB; }

.HOW-IT-WORKS-MEASURE .stepper { margin-top: 0; }
.HOW-IT-WORKS-MEASURE .stepper > .chip:nth-of-type(3) > .content,
.HOW-IT-WORKS-MEASURE .stepper > .chip:nth-of-type(3)::before { opacity: 1; }

.HOW-IT-WORKS-MEASURE .b-frame-head > h2 > mark { background: linear-gradient(#C0DCFE, #C0DCFE) no-repeat 0 35px; }

.HOW-IT-WORKS-MEASURE .content ul { max-width: 480px; margin: 30px 0 0; }
.HOW-IT-WORKS-MEASURE .content ul > li {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}
.HOW-IT-WORKS-MEASURE .content ul > li:not(:last-of-type) { margin: 0 0 30px; }

.HOW-IT-WORKS-MEASURE .foot { 
    box-sizing: border-box;
    margin: 85px 0 0 0;
    padding: 70px 0 0 0;
    position: relative;
}
.HOW-IT-WORKS-MEASURE .foot::before { 
    content: '';
    width: 100%;
    height: 1px;
    background-color: #AEBEDC;
    opacity: 0.7;
    position: absolute;
    top: 0;
    left: 0;
}

.HOW-IT-WORKS-MEASURE .foot > h3 { margin: 0 0 40px 0; text-align: center; }

.HOW-IT-WORKS-MEASURE .foot > p:last-of-type {
    margin: 0 auto;
    max-width: fit-content;
    display: block;
}

.HOW-IT-WORKS-MEASURE .testimonial {
    box-sizing: border-box;
    padding: 60px 80px 60px 140px; 
    width: 100%;

    border-radius: 10px;
    background-color: #FFFFFF;
    box-shadow: 0 20px 40px 0 rgba(0,0,0,0.1);
    
    margin-top: 80px;
    margin-bottom: -200px;
}

@media screen and (min-width: 1601px) {
    .HOW-IT-WORKS-MEASURE::before { border-radius: 0 10px 0 0; }
}

@media screen and (max-width: 900px) {
    .HOW-IT-WORKS-MEASURE .stepper > .chip:not(:nth-of-type(3)),
    .HOW-IT-WORKS-MEASURE .stepper > .chip:not(:nth-of-type(3)) { opacity: 0; height: 0; padding: 0; }
    
    .HOW-IT-WORKS-MEASURE .foot { 
        box-sizing: border-box;
        margin: 45px 0 0 0;
        padding: 30px 0 0 0;
        text-align: center;
    }
    
    .HOW-IT-WORKS-MEASURE .content ul > li:not(:last-of-type) { margin: 0 0 10px; }
    
    .HOW-IT-WORKS-MEASURE .testimonial {
        width: 100%;
        margin-top: 50px;
        padding: 40px; 
    }
    .HOW-IT-WORKS-MEASURE .testimonial {padding: 30px;}
    .HOW-IT-WORKS-MEASURE .testimonial > .content { text-align: left; }
    .HOW-IT-WORKS-MEASURE .testimonial > .content > p:nth-of-type(1) { font-size: 20px; line-height: 30px; }
}




/* OUTCOME */
.OUTCOME { overflow: hidden; }
.OUTCOME::before { background-color: #252E80; }

.OUTCOME .b-flourish {
    height: 700px;
    width: 700px;
    top: -350px;
    right: -350px;
}
.OUTCOME .b-flourish::before { height: 358.7px; width: 358.7px; }

.OUTCOME .b-frame {
    padding-top: 220px;
    color: #ffffff;
}

.OUTCOME .b-frame-head { max-width: none; position: relative; }

.OUTCOME .item .b-media {
    margin: 0 auto 30px;
    max-width: 68px;
    max-height: 68px;
    background-color: initial;
}
.OUTCOME .b-media::after { padding-bottom: 68px; }

.OUTCOME .item h3 {
    max-width: 275px;
    margin: 0 auto;
    text-align: center;
}

@media screen and (max-width: 900px) {
    .OUTCOME .b-frame { padding-top: 200px; }
    .OUTCOME .item > h3 { font-size: 20px; }
}
