.challenge-100k__hero {
    margin-top: -40px;

    position: relative;
    height: calc(100vh - 130px);
    overflow: hidden;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.challenge-100k__hero-container {
    position: relative;
    z-index: 2;
    max-width: 1150px;
    padding: 150px 100px;
}

.challenge-100k__hero-container > span,
.challenge-100k__hero-container h1,
.challenge-100k__hero-container p {
    opacity: 0;
    transform: translateY(36px);
    animation: challengeTextUp 0.85s ease forwards;
}

.challenge-100k__hero-container > span,
.challenge-100k__hero-container h1{
    font-family: 'Bebas Neue',sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
}

.challenge-100k__hero-container > span {
    display: block;
    margin-bottom: 30px;
    color: #ffff00;
    font-size: 30px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    animation-delay: 0.1s;
}

.challenge-100k__hero-container h1 {
    font-size: 180px;
    line-height: 1;
    letter-spacing: -0.035em;
    text-transform: uppercase;

    color: #ffffff;
    margin: 0 0 42px;
    animation-delay: 0.25s;
}


.challenge-100k__hero-container h1 span{
    color: #ffff00;
}

.challenge-100k__hero-container p {
    max-width: 700px;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.75;
    animation-delay: 0.45s;
    color: #ffffff;
}

.challenge-100k__hero svg {
    position: absolute;
    z-index: 1;
    top: -15%;
    right: -2%;
    width: min(85vw, 1150px);
    height: auto;
    pointer-events: none;
    overflow: visible;
}

/* Hide all SVG parts before JS groups them */
.challenge-100k__hero svg g[clip-path] > path {
    opacity: 0;
}

/* Full step group */
.challenge-100k__hero-step {
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    transform: translateY(24px) scale(0.96);
}

/* Start animation only after JS is ready */
.challenge-100k__hero.is-steps-ready .challenge-100k__hero-step {
    animation: challengeFootstepIn 0.45s ease forwards;
    animation-delay: calc(0.65s + (var(--step-index, 0) * 0.12s));
}

/* Paths inside grouped step should be visible */
.challenge-100k__hero-step path {
    opacity: 1;
    transform: none;
    animation: none;
}

@keyframes challengeFootstepIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes challengeTextUp {
    from {
        opacity: 0;
        transform: translateY(36px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1600px) {
    .challenge-100k__hero-container > span {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .challenge-100k__hero-container h1 {
        font-size: 145px;
    }

    .challenge-100k__hero-container p {
        font-size: 24px;
    }
}

@media (max-width: 1366px) {
    .challenge-100k__hero-container > span {
        font-size: 26px;
    }

    .challenge-100k__hero-container h1 {
        font-size: 120px;
    }

    .challenge-100k__hero-container p {
        font-size: 20px;
        max-width: 525px;
    }
    .challenge-100k__hero svg {
        width: 45vw;
        right: 0;
    }
}

@media (max-width: 1024px) {
    .challenge-100k__hero {
        height: auto;
    }

    .challenge-100k__hero-container {
        max-width: 750px;
        padding: 100px 80px;
    }

    .challenge-100k__hero-container > span {
        font-size: 24px;
    }

    .challenge-100k__hero-container h1 {
        font-size: 100px;
    }

    .challenge-100k__hero svg {
        width: 65vw;
        right: -10%;
        transform: rotate(-10deg);
    }
}

@media (max-width: 820px) {
    .challenge-100k__hero {
        background-position: 100% center;
    }
    .challenge-100k__hero-container {
        max-width: 550px;
        padding: 80px 30px;
    }
    .challenge-100k__hero-container h1 {
        font-size: 80px;
    }

    .challenge-100k__hero svg {
        transform: rotate(-15deg);
        right: -15%;
    }
}

@media (max-width: 525px) {
    .challenge-100k__hero {
        height: calc(100vh - 85px);
        align-items: flex-start;

        background-position: 75% center;
    }
    .challenge-100k__hero-container h1 {
        font-size: 65px;
    }

    .challenge-100k__hero svg {
        width: 100%;
        transform: rotate(45deg);
        right: 0;
        bottom: -10%;
        top: unset;
    }
}

@media (max-width: 425px) {
    .challenge-100k__hero-container > span {
        font-size: 20px;
    }

    .challenge-100k__hero-container h1 {
        font-size: 55px;
    }

    .challenge-100k__hero-container p{
        font-size: 18px;
    }
    .challenge-100k__hero svg {
        bottom: -20%;
    }
}

@media (max-width: 375px) {
    .challenge-100k__hero-container {
        padding: 40px 30px;
    }
    .challenge-100k__hero-container > span {
        font-size: 18px;
    }

    .challenge-100k__hero-container h1 {
        font-size: 50px;
    }

    .challenge-100k__hero-container p{
        font-size: 16px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .challenge-100k__hero-container > span,
    .challenge-100k__hero-container h1,
    .challenge-100k__hero-container p,
    .challenge-100k__hero svg path {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* Timer */
.challenge-100k__timer {
    background: #ffff00;
    color: #000;
}

.challenge-100k__timer-container {
    width: auto;
    margin: 0 auto;
    padding: 40px 110px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 60px;
}

.challenge-100k__timer-title {
    font-family: 'Bebas Neue',sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 42px;
    text-transform: uppercase;
    white-space: nowrap;
}

.challenge-100k__timer-box {
    display: flex;
    align-items: center;
}

.timer {
    display: flex;
    align-items: flex-start;
    gap: 45px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.timer__item {
    min-width: 95px;
    text-align: center;
}

.timer__item span,
.timer__item p,
.timer__separator{
    font-family: 'Open Sans', sans-serif;
}

.timer__item span {
    display: block;
    font-size: 58px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
}

.timer__item p {
    margin: 15px 0 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}

.timer__separator {
    margin-top: -4px;
    font-size: 58px;
    font-weight: 700;
    line-height: 0.9;
}

@media (max-width: 1440px) {
    .timer {
        gap: 35px;
    }
    .timer__item span,
    .timer__separator{
        font-size: 40px;
    }

    .timer__item p{
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .challenge-100k__timer-container {
        padding: 30px 45px;
        gap: 30px;
    }
    .timer {
        gap: 10px;
    }
    .timer__item span,
    .timer__separator{
        font-size: 32px;
    }

    .timer__item p{
        font-size: 16px;
    }
}


@media (max-width: 900px) {
    .challenge-100k__timer-container{
        padding: 30px;
    }
    .challenge-100k__timer-title{
        font-size: 32px;
    }
    .timer__item{
        min-width: 60px;
    }
}

@media (max-width: 575px) {
    .challenge-100k__timer-container{
        flex-direction: column;
    }
}
@media (max-width: 375px) {
    .timer__item span,
    .timer__separator{
        font-size: 28px;
    }
    .timer__item{
        min-width: 50px;
    }

}

/******** Live Ticker ******/
.challenge-100k__live-ticker {
    width: 100%;
    overflow: hidden;
    background: #919800;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    color: #ffffff;
}

.challenge-100k__live-ticker--list {
    display: flex;
    align-items: center;
    width: max-content;
    min-height: 70px;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.challenge-100k__live-ticker--list.is-animated {
    animation: challengeLiveTicker 35s linear infinite;
}

.challenge-100k__live-ticker-group {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 75px;
    padding-right: 75px;
}

.challenge-100k__live-ticker-item {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    white-space: nowrap;
}

.challenge-100k__live-ticker-item::before {
    content: "";
    width: 10px;
    height: 10px;
    margin-right: 10px;
    border-radius: 50%;
    background: #ffff00;
    flex: 0 0 auto;
}

.challenge-100k__live-ticker-name {
    font-weight: 500;
}

.challenge-100k__live-ticker-icon {
    margin-left: 5px;
}

@keyframes challengeLiveTicker {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 768px) {
    .challenge-100k__live-ticker--list.is-animated {
        animation-duration: 24s;
    }

    .challenge-100k__live-ticker-group {
        gap: 50px;
        padding-right: 50px;
    }

    .challenge-100k__live-ticker-item {
        font-size: 14px;
    }
}

/***** Steps *****/
.challenge-100k__steps {
    background: #212121;
    color: #fff;
    overflow: hidden;
}

.challenge-100k__steps-container {
    width: min(100%, 1750px);
    margin: 0 auto;
    padding: 120px 100px;
}

.challenge-100k__steps h2 {
    max-width: 900px;
    margin: 0 0 36px;
    font-family: 'Bebas Neue',sans-serif;
    font-size: 65px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
}

.challenge-100k__steps-container > p {
    max-width: 920px;
    font-family: 'Open Sans',sans-serif;
    margin: 0 0 30px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.45;
    color: #ffffff;
}

.challenge-100k__steps-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.challenge-100k__steps-item {
    min-height: 315px;
    padding: 40px 30px;
    border: 1px solid #87878799;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.challenge-100k__steps-item--header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}

.challenge-100k__steps-item--icon {
    width: 30px;
    height: 30px;
}

.challenge-100k__steps-item--icon img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
}

.challenge-100k__steps-item--value {
    font-family: 'Bebas Neue',sans-serif;
    font-size: 95px;
    line-height: 0.7;
    color: #7F7F7F;
}

.challenge-100k__steps-item--content h3 {
    margin: 0 0 18px;
    font-family: 'Bebas Neue',sans-serif !important;
    font-style: normal;
    font-weight: 400 !important;
    font-size: 36px;
    line-height: 1;
    text-transform: uppercase;
    color: #ffffff;
}

.challenge-100k__steps-item--content p {
    font-family: 'Open Sans',sans-serif;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
}

/* Animations initial state */
.challenge-100k__steps h2,
.challenge-100k__steps-container > p {
    opacity: 0;
    transform: translateY(-36px);
}

.challenge-100k__steps-item {
    opacity: 0;
    transform: translateX(-50px);
}

/* Animations active state */
.challenge-100k__steps.is-visible h2 {
    animation: challengeStepsTitleIn 0.8s ease forwards;
}

.challenge-100k__steps.is-visible .challenge-100k__steps-container > p {
    animation: challengeStepsTitleIn 0.8s ease forwards;
    animation-delay: 0.15s;
}

.challenge-100k__steps.is-visible .challenge-100k__steps-item {
    animation: challengeStepsCardIn 1s ease forwards;
    animation-delay: calc(0.3s + (var(--step-card-index, 0) * 0.25s));
}

@keyframes challengeStepsTitleIn {
    from {
        opacity: 0;
        transform: translateY(-36px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes challengeStepsCardIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@media (prefers-reduced-motion: reduce) {
    .challenge-100k__steps h2,
    .challenge-100k__steps-container > p,
    .challenge-100k__steps-item {
        animation: none !important;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1400px) {
    .challenge-100k__steps-item{
        padding: 30px 20px;
    }
    .challenge-100k__steps-item--value{
        font-size: 65px;
    }

    .challenge-100k__steps-item--content h3{
        font-size: 32px;
    }
}

@media (max-width: 1280px) {
    .challenge-100k__steps-item--icon{
        width: 25px;
        height: 25px;
    }
    .challenge-100k__steps-item--value{
        font-size: 55px;
    }

    .challenge-100k__steps-item--content h3{
        font-size: 30px;
    }
}
@media (max-width: 1024px) {
    .challenge-100k__steps-container{
        padding: 75px;
    }
    .challenge-100k__steps.is-visible h2{
        font-size: 45px;
    }
    .challenge-100k__steps.is-visible .challenge-100k__steps-container > p{
        font-size: 20px;
    }
    .challenge-100k__steps-list{
        grid-template-columns: repeat(2, 1fr);
    }
    .challenge-100k__steps-item{
        padding: 40px 30px;
    }
}

@media (max-width: 900px) {
    .challenge-100k__steps-container{
        padding: 75px 30px;
    }
}

@media (max-width: 575px) {
    .challenge-100k__steps-list{
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 425px) {
    .challenge-100k__steps.is-visible h2{
        font-size: 35px;
    }
    .challenge-100k__steps.is-visible .challenge-100k__steps-container > p{
        font-size: 18px;
    }
}

/******************************** INFO **************************/
.challenge-100k__info {
    background: #919800;
    overflow: hidden;
}

.challenge-100k__info-container {
    width: min(100%, 1750px);
    margin: 0 auto;
    padding: 45px 135px;
}

.challenge-100k__info-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 75px;
}

.challenge-100k__info-item {
    font-family: 'Bebas Neue',sans-serif;
    text-align: center;
}

.challenge-100k__info-item strong {
    display: block;
    margin-bottom: 10px;
    font-size: 75px;
    font-weight: 400 !important;
    line-height: 1;
    text-transform: uppercase;
    color: #ffff00;
}

.challenge-100k__info-item p {
    margin: 0;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #fff;
}

.challenge-100k__info-item strong,
.challenge-100k__info-item p {
    opacity: 0;
    transform: translateY(36px);
}

.challenge-100k__info.is-visible .challenge-100k__info-item strong {
    animation: challengeInfoFadeUp 0.75s ease forwards;
    animation-delay: calc(var(--info-index, 0) * 0.3s);
}

.challenge-100k__info.is-visible .challenge-100k__info-item p {
    animation: challengeInfoFadeUp 0.75s ease forwards;
    animation-delay: calc(0.25s + (var(--info-index, 0) * 0.3s));
}

@keyframes challengeInfoFadeUp {
    from {
        opacity: 0;
        transform: translateY(36px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .challenge-100k__info-item strong,
    .challenge-100k__info-item p {
        animation: none !important;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1366px) {
    .challenge-100k__info-item strong{
        font-size: 65px;
    }
    .challenge-100k__info-item p{
        font-size: 18px;
    }
    .challenge-100k__info-container{
        padding: 35px 100px;
    }
}

@media (max-width: 900px) {
    .challenge-100k__info-container{
        padding: 35px 30px;
    }
    .challenge-100k__info-list{
        gap: 50px;
    }
    .challenge-100k__info-item strong{
        font-size: 55px;
    }
    .challenge-100k__info-item p{
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .challenge-100k__info-list{
        grid-template-columns: repeat(1, 1fr);
    }
    .challenge-100k__info-item strong{
        margin-bottom: 5px;
    }
}

/************ Route *****************/
.challenge-100k-route {
    position: relative;
    overflow: hidden;
    background: #212121;
    color: #fff;
}

.challenge-100k-route__container {
    position: relative;
    z-index: 2;
    width: min(100%, 1750px);
    margin: 0 auto;
    padding: 140px 100px;
}

.challenge-100k-route__title {
    font-family: 'Bebas Neue',sans-serif;
    margin: 0 0 75px;
    font-size: 65px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 2%;
    text-transform: uppercase;
    color: #fff;
}

.challenge-100k-route__content {
    position: relative;
}

.challenge-100k-route__list {
    position: relative;
    max-width: 1150px;
    padding-left: 80px;
}

.challenge-100k-route__list::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background: #ffff00;
}

.challenge-100k-route__item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 80px;
}

.challenge-100k-route__item:last-child {
    margin-bottom: 0;
}

.challenge-100k-route__item::before {
    content: "";
    position: absolute;
    top: 5px;
    left: -10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffff00;
}
.challenge-100k-route__date,
.challenge-100k-route__item-title{
    font-family: 'Bebas Neue',sans-serif !important;
    font-weight: 400 !important;
}

.challenge-100k-route__date {
    margin-bottom: 18px;
    color: #ffff00;
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.challenge-100k-route__item-title {
    margin: 0 0 18px;
    font-size: 36px;
    line-height: 1;
    text-transform: uppercase;
    color: #ffffff;
}

.challenge-100k-route__text {
    font-family: 'Open Sans', sans-serif;
    max-width: 1080px;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    color: #ffffff;
}

/* SVG footprints */
.challenge-100k-route > svg {
    position: absolute;
    z-index: 1;
    top: 10%;
    right: -10%;
    transform: rotate(15deg);
    width: min(45vw, 720px);
    height: auto;
    pointer-events: none;
    overflow: visible;
}

/* Hide raw paths before JS wraps them */
.challenge-100k-route > svg g[clip-path] > path {
    opacity: 0;
}

.challenge-100k-route__footstep {
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    transform: translateY(28px) scale(0.96);
}

.challenge-100k-route.is-visible .challenge-100k-route__footstep {
    animation: challengeRouteFootstepIn 0.45s ease forwards;
    animation-delay: calc(0.45s + (var(--route-footstep-index, 0) * 0.12s));
}

.challenge-100k-route__footstep path {
    opacity: 1;
    transform: none;
    animation: none;
}

/* Text animation */
.challenge-100k-route__title,
.challenge-100k-route__item {
    opacity: 0;
}

.challenge-100k-route__title {
    transform: translateY(-36px);
}

.challenge-100k-route__item {
    transform: translateY(34px);
}

.challenge-100k-route.is-visible .challenge-100k-route__title {
    animation: challengeRouteTitleIn 0.75s ease forwards;
}

.challenge-100k-route.is-visible .challenge-100k-route__item {
    animation: challengeRouteItemIn 0.75s ease forwards;
    animation-delay: calc(0.2s + (var(--route-item-index, 0) * 0.18s));
}

@keyframes challengeRouteTitleIn {
    from {
        opacity: 0;
        transform: translateY(-36px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes challengeRouteItemIn {
    from {
        opacity: 0;
        transform: translateY(34px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes challengeRouteFootstepIn {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .challenge-100k-route__title,
    .challenge-100k-route__item,
    .challenge-100k-route__footstep {
        animation: none !important;
        opacity: 1;
        transform: none;
    }

    .challenge-100k-route > svg g[clip-path] > path {
        opacity: 1;
    }
}

@media (max-width: 1400px) {
    .challenge-100k-route__container{
        padding: 100px 75px;
    }
    .challenge-100k-route__title{
        font-size: 55px;
        margin: 0 0 50px;
    }

    .challenge-100k-route__list{
        max-width: 950px;
        padding-left: 50px;
    }

    .challenge-100k-route__item{
        padding-left: 50px;
        margin-bottom: 60px;
    }
}

@media (max-width: 1024px) {
    .challenge-100k-route__list{
        max-width: 700px;
    }

    .challenge-100k-route > svg{
        right: -25%;
        width: 70vw;
        transform: rotate(25deg);
    }
}

@media (max-width: 900px) {
    .challenge-100k-route__container{
        padding: 60px 30px;
    }
    .challenge-100k-route__list{
        max-width: 550px;
    }
}

@media (max-width: 525px) {
    .challenge-100k-route__container{
        padding-top: 150px;
    }
    .challenge-100k-route__title{
        font-size: 45px;
    }

    .challenge-100k-route__list{
        padding-left: 25px;
    }

    .challenge-100k-route__item {
        padding-left: 25px;
        margin-bottom: 50px;
    }

    .challenge-100k-route > svg{
        right: unset;
        width: 70vw;
        left: 20%;
        transform: rotate(120deg);
        top: -150px;
    }

    .challenge-100k-route__item-title{
        font-size: 28px;
    }
}

@media (max-width: 375px) {
    .challenge-100k-route__date{
        font-size: 18px;
    }
    .challenge-100k-route > svg{
        top: -120px;
    }
}

/****** Goal block *******/
.challenge-100k__goal {
    position: relative;
    overflow: hidden;
    background-image: url('/wp-content/themes/megamate-child/templates/assets/images/challenge-100k/goal-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}

.challenge-100k__goal-container {
    width: min(100%, 1750px);
    margin: 0 auto;
    padding: 120px 100px;
}

.challenge-100k__goal h2 {
    max-width: 1250px;
    margin: 0 0 30px;

    font-family: 'Bebas Neue', sans-serif;
    font-size: 65px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    color: #ffffff;
}

.challenge-100k__goal-container > p {
    max-width: 900px;
    margin: 0 0 50px;

    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.55;
    color: #FFFFFF;
}

.challenge-100k__goal-progress-wrap {
    max-width: 1150px;
}

.challenge-100k__goal-progress-info,
.challenge-100k__goal-progress-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #ffffff;
}

.challenge-100k__goal-progress-info {
    margin-bottom: 18px;
}

.challenge-100k__goal-progress-bottom {
    margin-top: 22px;
}

.challenge-100k__goal-progress-info strong,
.challenge-100k__goal-progress-bottom strong {
    font-weight: 700;
    color: #ffffff;
}

.challenge-100k__goal-progress {
    position: relative;
    width: 100%;
    height: 12px;
}

.challenge-100k__goal-progress-line,
.challenge-100k__goal-progress-fill {
    position: absolute;
    top: 50%;
    left: 0;
    height: 10px;
    transform: translateY(-50%);
}

.challenge-100k__goal-progress-line {
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.challenge-100k__goal-progress-fill {
    width: 0;
    background: #FEFF06;
    transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}


.challenge-100k__goal__left span {
    display: inline-block;
    margin-left: 6px;
}

/* Animation initial state */
.challenge-100k__goal h2,
.challenge-100k__goal-container > p,
.challenge-100k__goal-progress-wrap {
    opacity: 0;
    transform: translateY(36px);
}

.challenge-100k__goal-progress-fill {
    width: 0 !important;
}


/* Animation active state */
.challenge-100k__goal.is-visible h2 {
    animation: challengeGoalFadeUp 0.75s ease forwards;
}

.challenge-100k__goal.is-visible .challenge-100k__goal-container > p {
    animation: challengeGoalFadeUp 0.75s ease forwards;
    animation-delay: 0.15s;
}

.challenge-100k__goal.is-visible .challenge-100k__goal-progress-wrap {
    animation: challengeGoalFadeUp 0.75s ease forwards;
    animation-delay: 0.3s;
}

.challenge-100k__goal.is-visible .challenge-100k__goal-progress-fill {
    width: var(--goal-progress-width, 0%) !important;
}


@keyframes challengeGoalFadeUp {
    from {
        opacity: 0;
        transform: translateY(36px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .challenge-100k__goal h2,
    .challenge-100k__goal-container > p,
    .challenge-100k__goal-progress-wrap {
        animation: none !important;
        opacity: 1;
        transform: none;
    }

    .challenge-100k__goal-progress-fill{
        transition: none;
    }
}

@media (max-width: 1024px) {
    .challenge-100k__goal h2 {
        font-size: 45px;
    }
    .challenge-100k__goal-container > p{
        font-size: 20px;
    }
}
@media (max-width: 900px) {
    .challenge-100k__goal-container{
        padding: 60px 30px;
    }
}
@media (max-width: 575px) {
    .challenge-100k__goal h2 {
        font-size: 35px;
    }
    .challenge-100k__goal-container > p{
        font-size: 18px;
    }
    .challenge-100k__goal-progress-info,
    .challenge-100k__goal-progress-bottom{
        font-size: 15px;
    }
    .challenge-100k__goal__current,
    .challenge-100k__goal__goal,
    .challenge-100k__goal__percent,
    .challenge-100k__goal__left{
        width: min-content;
        min-width: 125px;
    }

    .challenge-100k__goal__goal,
    .challenge-100k__goal__left{
        text-align: right;
    }
}
@media (max-width: 420px) {

}
/****** Goal block *******/

/************* FAQ ***************/
.challenge-100k__faq {
    background: #ffff00;
    color: #000;
    overflow: hidden;
}

.challenge-100k__faq-container {
    width: min(100%, 1780px);
    margin: 0 auto;
    padding: 75px 100px;
}

.challenge-100k__faq-title {
    margin: 0 0 35px;
    font-family: 'Bebas Neue',sans-serif !important;
    font-size: 65px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.challenge-100k__faq-list {
    max-width: 875px;
}

.challenge-100k__faq-item {
    border: none;
}

.challenge-100k__faq-question {
    width: 100%;
    padding: 0 0 30px;
    margin: 0;
    border: 0;
    background: transparent;
    color: #828282;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 40px;
    text-align: left;
    cursor: pointer;

    font-family: 'Open Sans',sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6;
    text-transform: initial;
}

.challenge-100k__faq-question:hover,
.challenge-100k__faq-question:focus,
.challenge-100k__faq-item.is-active .challenge-100k__faq-question {
    color: #000;
    background-color: transparent;
}

.challenge-100k__faq-item.is-active .challenge-100k__faq-question {
    padding: 0 0 15px;
}

.challenge-100k__faq-icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.challenge-100k__faq-icon::before,
.challenge-100k__faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #000;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.challenge-100k__faq-icon::before {
    width: 18px;
    height: 2px;
}

.challenge-100k__faq-icon::after {
    width: 2px;
    height: 18px;
}

.challenge-100k__faq-item.is-active .challenge-100k__faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.challenge-100k__faq-answer {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease;
}

.challenge-100k__faq-item.is-active .challenge-100k__faq-answer {
    opacity: 1;
    transform: translateY(0);
}

.challenge-100k__faq-answer p {
    max-width: 780px;
    margin: 0;
    padding: 0 50px 40px 0;
    color: #000000;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}

.challenge-100k__faq-title,
.challenge-100k__faq-item {
    opacity: 0;
    transform: translateY(34px);
}

.challenge-100k__faq.is-visible .challenge-100k__faq-title {
    animation: challengeFaqFadeUp 0.75s ease forwards;
}

.challenge-100k__faq.is-visible .challenge-100k__faq-item {
    animation: challengeFaqFadeUp 0.7s ease forwards;
    animation-delay: calc(0.12s + (var(--faq-index, 0) * 0.08s));
}

@keyframes challengeFaqFadeUp {
    from {
        opacity: 0;
        transform: translateY(34px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .challenge-100k__faq-title,
    .challenge-100k__faq-item {
        animation: none !important;
        opacity: 1;
        transform: none;
    }

    .challenge-100k__faq-answer {
        transition: none;
    }

    .challenge-100k__faq-icon::before,
    .challenge-100k__faq-icon::after {
        transition: none;
    }
}

@media (max-width: 900px) {
    .challenge-100k__faq-container {
        padding: 75px 30px;
    }
    .challenge-100k__faq-answer p{
        max-width: 650px;
    }
}

@media (max-width: 525px) {
    .challenge-100k__faq-title {
        font-size: 55px;
    }
    .challenge-100k__faq-question{
        font-size: 20px;
        column-gap: 20px;
    }
    .challenge-100k__faq-answer p{
        font-size: 18px;
        padding: 0 25px 40px 0;
    }
}

/****** Join challenge *******/
.challenge-100k__join {
    background: #919800;
}

.challenge-100k__join-container {
    width: min(100%, 1750px);
    margin: 0 auto;
    padding: 100px 30px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.challenge-100k__join-container h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 100px;
    line-height: 0.95;
    color: #ffffff;
    text-transform: uppercase;

    margin: 0 0 25px;
}

.challenge-100k__join-container p {
    max-width: 900px;
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;

    margin: 0 0 30px;
}

.challenge-100k__join-container a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 65px;
    padding: 15px 20px;

    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;

    background: #FFFF00;
    border: 0;
    border-radius: 8px;
    cursor: pointer;

    transition: color 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.challenge-100k__join-container a:hover {
    background: #000000;
    color: #FFFF00;
}

.challenge-100k__join-container a:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 6px;
}

/* Animation initial state */
.challenge-100k__join-container h2,
.challenge-100k__join-container p,
.challenge-100k__join-container a {
    opacity: 0;
    transform: translateY(38px);
}

/* Animation active state */
.challenge-100k__join.is-visible .challenge-100k__join-container h2 {
    animation: challengeJoinFadeUp 0.75s ease forwards;
}

.challenge-100k__join.is-visible .challenge-100k__join-container p {
    animation: challengeJoinFadeUp 0.75s ease forwards;
    animation-delay: 0.15s;
}

.challenge-100k__join.is-visible .challenge-100k__join-container a {
    animation: challengeJoinFadeUp 0.75s ease forwards;
    animation-delay: 0.3s;
}

@keyframes challengeJoinFadeUp {
    from {
        opacity: 0;
        transform: translateY(38px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (prefers-reduced-motion: reduce) {
    .challenge-100k__join-container h2,
    .challenge-100k__join-container p,
    .challenge-100k__join-container a {
        animation: none !important;
        opacity: 1;
        transform: none;
    }

    .challenge-100k__join-container a {
        transition: none;
    }
}

@media (max-width: 1280px) {
    .challenge-100k__join-container{
        padding: 75px 30px;
    }
    .challenge-100k__join-container h2{
        font-size: 65px;
    }
    .challenge-100k__join-container p {
        font-size: 22px;
    }
    .challenge-100k__join-container a {
        font-size: 32px;
    }
}

@media (max-width: 525px) {

    .challenge-100k__join-container h2{
        font-size: 55px;
    }
    .challenge-100k__join-container p {
        font-size: 20px;
    }
}


@media (max-width: 375px) {
    .challenge-100k__join-container h2{
        font-size: 45px;
    }
}
