.epic-what-we-believe {
    position: relative;
    background: #f0ece6;
    color: #c03d2a;
    font-family: var(--epic-font);
}

.epic-what-we-believe__wrapper {
    width: 100%;
}

.epic-what-we-believe__track {
    height: calc(var(--epic-wwb-count, 4) * 50vh);
    height: calc(var(--epic-wwb-count, 4) * 50dvh);
    position: relative;
}

.epic-what-we-believe__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

.epic-what-we-believe__label {
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 39px;
    line-height: 1;
    letter-spacing: 3.6px;
    text-transform: uppercase;
    color: #c03d2a;
    margin-top: 0;
}

.epic-what-we-believe__words {
    display: flex;
    flex-direction: column;
}

.epic-what-we-believe__word {
    font-family: var(--epic-font-heading);
    font-weight: 900;
    font-size: 117px;
    line-height: 105%;
    letter-spacing: 4.2px;
    text-transform: uppercase;
    color: rgba(192, 61, 42, 0.14);
    transition: color 0.4s ease;
}

.epic-what-we-believe__word.is-active {
    color: #c03d2a;
}


.epic-what-we-believe[data-epic-what-we-believe-preview] .epic-what-we-believe__track {
    height: auto;
}

.epic-what-we-believe[data-epic-what-we-believe-preview] .epic-what-we-believe__sticky {
    position: relative;
    height: auto;
    padding: 4rem 0;
}
@media screen and (max-width: 1199.98px){
    .epic-what-we-believe__word{
        font-size: 90px;
    }
}
@media screen and (max-width: 991px) {
    .epic-what-we-believe__word {
        font-size: 56px;
    }

    .epic-what-we-believe__label {
        font-size: 15px;
        letter-spacing: 0.2em;
    }

    .epic-what-we-believe__track {
        height: calc(var(--epic-wwb-count, 4) * 55vh);
        height: calc(var(--epic-wwb-count, 4) * 55dvh);
    }
}

@media screen and (max-width: 600px) {
    .epic-what-we-believe__word {
        font-size: 38px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html:not(.epic-motion-on) .epic-what-we-believe__track {
        height: auto;
    }

    html:not(.epic-motion-on) .epic-what-we-believe__sticky {
        position: relative;
        height: auto;
        padding: 4rem 0;
    }
}