.manifesto-main {
    background: var(--Grey-100, #EEE);
    padding-bottom: 240px;
}

.manifesto-container {
    padding-top: 120px;
}


.manifesto-top-row {
    /*position: sticky;*/
    top: 130px;
    z-index: 1000;
    background: var(--Grey-100, #EEE);
    padding-bottom: 0;
    display: flex;
    flex-direction: row;
    gap: 80px;
}

.manifesto-top-row.sticky-header {
    position: sticky;
}

.manifesto-top-row:not(.sticky-header) {
    position: relative;
    top: 2310px;
    width: 1280px;
    transition: none;
}

@media (max-width: 767px) {
    .manifesto-top-row:not(.sticky-header) {
        position: relative !important;
    }
}

.manifesto-title {
    color: var(--Grey-900, #121212);
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    text-transform: uppercase;
    margin-bottom: 80px;
    letter-spacing: 2px;
}

.manifesto-download-link {
    display: flex;
    width: 300px;
    height: 64px;
    padding: 19px 52px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: 100px;
    border: 1px solid var(--Grey-900, #121212);
    color: var(--Grey-900, #121212);
    font-family: 'Campton';
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}

.manifesto-col-left {
    width: 50%;
}

.manifesto-col-right {
    position: relative;
    width: 50%;
}

.manifesto-col-right img {
    position: absolute;
    top: 0;
    left: 50%;
    height: 523px;
    transform: translate(-50%);
}

.statements-row {
    width: 50%;
}

.statement-item {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-bottom: 40px;
}

.statement-count {
    display: flex;
    width: 60px;
    height: 60px;
    min-width: 60px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: var(--Orange, #FF4900);
    color: var(--Grey-900, #121212);
    text-align: center;
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    text-transform: uppercase;
    padding-top: 7px;
    font-family: 'Titling Gothic FB Skyline Bold';
}

.statement-text {
    color: var(--Grey-700, #474747);
    font-family: 'Campton';
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.manifesto-bottom-banner {
    margin-top: 240px;
    border-radius: 8px;
    background: #C378FF;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
}

.bottom-text-col p {
    color: var(--Grey-900, #121212);
    font-family: 'Campton';
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.bottom-text-col {
    width: 50%;
}

.bottom-button-col a {
    display: flex;
    padding: 19px 52px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: 100px;
    background: var(--Grey-900, #121212);
    color: var(--Grey-100, #EEE);
    font-family: 'Campton';
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    transition: .3s ease;
}

.bottom-button-col a img {
    transition: .3s ease;
}

.bottom-button-col a:hover {
    background: var(--Orange);
    color: #121212;
}

.bottom-button-col a:hover img {
    filter: invert(1);
}

@media (max-width: 768px) {
    .manifesto-top-row,
    .manifesto-top-row.sticky-header {
        position: static;
        flex-direction: column-reverse;
        gap: 70px;
    }

    .manifesto-col-left,
    .manifesto-col-right {
        width: 100%;
    }

    .manifesto-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .manifesto-col-right img {
        position: static;
        transform: unset;
        width: auto;
        height: 100%;
    }

    .manifesto-download-link {
        height: 56px;
        padding: 18px 52px 13px;
        font-size: 16px;
        width: 100%;
    }

    .statements-row {
        width: 100%;
    }

    .statement-item {
        gap: 10px;
        margin-bottom: 30px;
    }

    .statement-count {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 26px;
        padding-top: 5px;
    }

    .statement-text p {
        font-size: 16px;
    }

    .manifesto-bottom-banner {
        margin-top: 70px;
        flex-direction: column;
        padding: 30px 16px;
        gap: 30px;
    }

    .bottom-text-col,
    .bottom-button-col {
        width: 100%;
    }

    .bottom-text-col p {
        font-size: 16px;
    }

    .bottom-button-col a {
        padding: 20px 52px 14px;
        font-size: 16px;
        height: 56px;
    }

    .manifesto-main {
        padding-bottom: 70px;
    }

}