:root {
    --blue: #2C76EB;
    --purple: #9A43FF;
    --yellow: #FFBA01;
    --pink: #FF3B48;
    --red: #CC2F39;
    --grey: #292929;
    --green: #24B573;
    --white: #FFFFFF;
    --black: #000000;
    --text-colour: #000000;
    --secondary-bg: #1A1A1A;
    --font-body: 'Poppins', arial, sans-serif;
    --rules: #8A8A8A;
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;
    scroll-behavior: smooth;
    background: #000;
    color: var(--white);
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

article,
section,
aside,
div,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

.purple {
    color: var(--purple);
}

.yellow {
    color: var(--yellow);
}

strong {
    font-weight: 700;
}

hr {
    border: none;
    border-top: 2px solid var(--rules);
}

span.nobreak {
    white-space: nowrap;
}

a.button,
button {
    display: block;
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
    padding: 15px 24px;
    background: var(--purple);
    color: var(--white);
    font-family: 'Poppins', arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    line-height: 120%;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease;

    &:focus,
    &:hover {
        text-decoration: underline;
        background: var(--blue);
    }
}

.visually-hidden:not(:focus):not(:active),
.sr-only:not(:focus):not(:active) {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

h1,
h2,
h3 {
    font-family: Poppins;
    font-style: normal;
    font-weight: 400;
    color: var(--white);
    text-align: center;
    margin: 0;
    padding: 0;
    /*text-wrap: balance;*/

    &.uppercase {
        text-transform: uppercase;
    }
}

sup {
    line-height: 0 !important;
    font-size: 0.63em !important;
    vertical-align: super !important;
}

p {
    color: var(--white);
    font-family: Poppins;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
}

/* slide */
.splide {
    margin-top: 20px;

    .splide__arrow {
        background: none;

        svg {
            fill: white;
            opacity: 0.7;
            width: 40px;
            height: 40px;
        }
    }

    .splide__arrow {
        width: 40px;
        top: 49%;
        bottom: auto;
        border-radius: 0;
    }

    .splide__arrow:hover:not(:disabled) {
        opacity: 1;
    }

    .splide__arrow--prev {
        left: -80px;
    }

    .splide__arrow--next {
        right: -80px;
    }

    .splide__pagination {
        display: none;
    }


    @media (max-width: 1400px) {

        .splide__pagination {
            display: flex;
        }

        .splide__pagination {
            position: relative;
            margin-top: 40px;

            li {
                margin: 0 10px;
            }

            .splide__pagination__page {
                width: 14px;
                height: 14px;
                opacity: 1;
                background: none;
                border: 2px solid white;

                &.is-active {
                    transform: none;
                    background: white;
                }
            }

        }

        .splide__arrow {
            width: 30px;
            top: auto;
            bottom: 0px;
            opacity: 1;
            bottom: -12px;

            svg {
                opacity: 1;
            }
        }

        .splide__arrow--prev {
            left: -10px;
        }

        .splide__arrow--next {
            right: -10px;
        }
    }

    @media (max-width: 800px) {
        .splide__arrow--prev {
            left: 0px;
        }

        .splide__arrow--next {
            right: 0px;
        }
    }

}

/* header */
header {

    .top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1290px;
        margin: 0 auto;
        padding-inline: 40px;
        padding-block: 23px;

        .logo {
            max-width: 112px;
            height: auto;
        }

        .lang {
            display: flex;
            align-items: center;
            column-gap: 6px;
            font-size: 20px;

            a {
                color: inherit;
                text-decoration: none;

                &:hover {
                    text-decoration: underline;
                }
            }

        }

    }

    .hero {
        width: 100%;
        max-width: 1440px;
        margin: 0 auto;

        img,
        video {
            width: 100%;
            height: auto;
        }

        video.mb {
            display: none;
        }

    }

    @media screen and (max-width: 460px) {
        .top {
            padding-inline: 38px;
            padding-inline: 24px;

            .logo {
                max-width: 75px;
            }
        }

        video.dk {
            display: none;
        }

        video.mb {
            display: block !important;
        }

    }
}

main {
    max-width: 1290px;
    margin: 0 auto;
    padding-inline: 40px;

    @media screen and (max-width: 460px) {
        & {
            padding-inline: 20px;
        }
    }


    p {
        text-align: center;
    }

    >picture {
        >img {
            width: 100%;
            height: auto;
        }
    }


    ul,
    li {
        margin: 0;
        padding: 0;
    }

    /* intro */
    section.intro {
        margin-top: 56px;

        h1 {
            font-family: "Bebas Neue";
            font-size: clamp(3.125rem, calc(-1.977rem + 10.204vw), 6.25rem);
            line-height: 90%;
            margin: 0 auto;
        }

        h2 {
            font-size: clamp(1.75rem, calc(-0.495rem + 4.49vw), 3.125rem);
            line-height: 120%;
            margin: 0 auto;

            &.eventishere {
                display: none;
            }
        }

        p {
            margin: 0;
            padding-block: 40px;
            font-size: clamp(1.125rem, calc(0.411rem + 1.429vw), 1.563rem);
            line-height: 140%;
        }

        ul {
            list-style: none;
            max-width: 850px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;

            li {
                display: flex;
                flex-direction: column;
                align-items: center;

                img {
                    width: auto;
                    height: 90px;
                    object-fit: contain;

                    &.scotiabank-icon {
                        width: 50px;
                    }
                }

                h3 {
                    font-size: clamp(1.125rem, calc(0.105rem + 2.041vw), 1.75rem);
                    font-weight: 700;
                }

                p {
                    font-size: clamp(1rem, calc(0.592rem + 0.816vw), 1.25rem);
                    margin: 0;
                    padding: 0;
                }
            }
        }

        @media screen and (max-width: 600px) {
            & {

                h1 {
                    font-size: 40px;
                }

                h2 {
                    font-size: 28px;
                }

                p {
                    font-size: 18px;
                    margin: 0 auto;
                }

                ul {
                    grid-template-columns: 1fr;
                    gap: 40px;
                    max-width: 270px;

                    li {

                        h3 {
                            font-size: 18px;
                        }

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

    }

    /* content */
    section.content {
        padding: 0 clamp(2.188rem, calc(-0.364rem + 5.102vw), 3.75rem) 60px;
        border-radius: 24px;
        background: var(--secondary-bg);
        margin-top: 24px;
        display: flex;
        flex-direction: column;
        gap: 40px;

        h1 {
            font-family: Poppins;
            font-size: 42px;
            font-weight: 400;
            line-height: 110%;
            margin-top: 40px;
        }

        img.banner {
            display: block;
            width: 562px;
            max-width: 100%;
            height: auto;
            margin: 0 auto;
        }

        @media screen and (max-width: 800px) {
            img.banner {
                width: 364px;
            }
        }

        picture.points {
            img {
                display: block;
                width: 100%;
                max-width: 800px;
                height: auto;
                margin: 0 auto;
            }
        }

        h1,
        h2 {
            font-size: clamp(1.75rem, calc(0.321rem + 2.857vw), 2.625rem);
            /* min: 42px, max: 28px */
            ;
            max-width: 1000px;
            margin: 0 auto;
        }

        p {
            font-size: clamp(1.125rem, calc(0.411rem + 1.429vw), 1.563rem);
        }

        h3 {
            font-size: clamp(1.125rem, calc(0.411rem + 1.429vw), 1.563rem);

            margin: 0 auto;
        }

        ul {
            list-style: none;
            max-width: 850px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;

            li {
                display: flex;
                flex-direction: column;
                align-items: center;

                img {
                    width: auto;
                    height: 90px;
                    object-fit: contain;

                    &.crown-icon {
                        width: 70px;
                    }
                }

                h3 {
                    font-size: clamp(1.125rem, calc(0.105rem + 2.041vw), 1.75rem);
                    font-weight: 700;
                }

                p {
                    font-size: clamp(1rem, calc(0.592rem + 0.816vw), 1.25rem);
                    margin: 0;
                    padding: 0;
                }
            }
        }

        hr {
            max-width: 560px;
            width: 100%;
            margin: 0 auto;
        }

        @media screen and (max-width: 600px) {
            & {
                padding: 0 30px 60px;

                ul {
                    grid-template-columns: 1fr;
                    gap: 40px;
                    max-width: 270px;

                    li {

                        h3 {
                            font-size: 18px;
                        }

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

    }

    /* parenters */
    section.parenters {

        h1 {
            font-size: clamp(1.75rem, calc(0.321rem + 2.857vw), 2.625rem);
            line-height: 110%;
        }

        ul.splide__list {
            margin: 0;
            list-style: none;

            li {
                margin: 0;
                padding: 0;
                max-width: 366px;

                section {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    width: 100%;
                    height: 100%;
                    background: var(--white);
                    border-radius: 24px;
                    overflow: hidden;

                    img.logo {
                        width: 100%;
                        height: 114px;
                        object-fit: contain;

                        &:not(.gif) {
                            max-width: 200px;
                        }
                    }

                    hr {
                        border: 2px solid var(--green);
                        width: 90px;
                        margin: 0;
                        padding: 0;
                    }

                    >div {
                        padding: 40px;
                        flex: 1 1 auto;

                        h1 {
                            color: var(--green);
                            font-size: 28px;
                            font-weight: 700;
                            margin-bottom: 12px;
                        }

                        p {
                            font-size: 1rem;
                            line-height: 1.4rem;
                            color: var(--black);
                            margin: 0;
                            padding: 0;

                            a {
                                color: var(--purple);

                                &:hover {
                                    text-decoration: none;
                                }
                            }
                        }
                    }

                    .offer-logo {
                        padding: 0 20px;
                        flex: none;
                    }

                    img.details {
                        flex: 0 0 auto;
                        width: 100%;
                    }

                    &.blue {

                        h1 {
                            color: var(--blue);
                        }

                        hr {
                            border-color: var(--blue);
                        }

                    }

                    &.purple {

                        h1 {
                            color: var(--purple);
                        }

                        hr {
                            border-color: var(--purple);
                        }

                    }

                    &.pink {

                        h1 {
                            color: var(--pink);
                        }

                        hr {
                            border-color: var(--pink);
                        }

                    }
                }
            }
        }

        @media screen and (max-width: 600px) {
            ul.splide__list {

                li {
                    max-width: none;
                }

            }
        }
    }

    /* offers */
    section.offers {

        h1 {
            font-size: clamp(1.75rem, calc(0.321rem + 2.857vw), 2.625rem);
            line-height: 110%;
            margin: 0 auto;
        }

        p {
            font-size: clamp(1.125rem, calc(0.411rem + 1.429vw), 1.563rem);
            max-width: 964px;
            margin: 0 auto;
            margin-top: 20px;
        }

        ul.splide__list {
            list-style: none;
            margin: 0;
            padding: 0;

            li {
                section {
                    display: flex;
                    background: var(--white);
                    border-radius: 24px;
                    overflow: hidden;
                    height: 100%;
                    max-width: 1040px;

                    .image {
                        img {
                            width: 100%;
                            height: auto;
                        }
                    }

                    .content {
                        color: var(--black);
                        padding: 20px;
                        text-align: left;
                        width: clamp(20.9rem, calc(6.173rem + 32.653vw), 32.5rem);
                        flex: 0 0 auto;

                        .header {
                            display: flex;
                            gap: 10px;
                            color: var(--purple);
                            margin-bottom: 24px;

                            img {
                                display: block;
                                width: 70px;
                                height: auto;
                            }

                            h1 {
                                font-family: "Bebas Neue";
                                font-size: clamp(2.375rem, calc(1.355rem + 2.041vw), 3rem);
                                font-style: normal;
                                line-height: 80%;
                                margin-top: 12px;
                                text-align: inherit;
                                color: inherit;
                            }

                            h2 {
                                font-size: clamp(0.813rem, calc(0.302rem + 1.02vw), 1.125rem);
                                line-height: 150%;
                                text-align: inherit;
                                color: inherit;
                            }

                        }

                        .header {
                            &.fr {

                                h1 {
                                    font-family: "Bebas Neue";
                                    font-size: clamp(2.375rem, calc(1.355rem + 2.041vw), 2.5rem);
                                    font-style: normal;
                                    line-height: 80%;
                                    margin-top: 12px;
                                    text-align: inherit;
                                    color: inherit;
                                }

                                h2 {
                                    font-size: clamp(0.813rem, calc(0.302rem + 1.02vw), 1rem);
                                    line-height: 120%;
                                    text-align: inherit;
                                    color: inherit;
                                }
                            }
                        }

                        h3 {
                            font-size: 20px;
                            font-weight: 700;
                            color: inherit;
                            text-align: inherit;
                        }

                        ul {
                            list-style: none;
                            display: flex;
                            flex-direction: column;
                            gap: 10px;
                            margin: 20px 0;
                            padding: 0;

                            li {
                                display: flex;
                                gap: 15px;
                                color: var(--grey);
                                font-size: clamp(1rem, calc(0.796rem + 0.408vw), 1.125rem);
                                line-height: 150%;

                                .number {
                                    display: flex;
                                    gap: 10px;
                                    color: var(--purple);
                                    font-family: "Bebas Neue";
                                    font-size: clamp(1.75rem, calc(0.934rem + 1.633vw), 2.25rem);
                                    /* min: 36px, max: 28px */
                                    ;
                                    font-style: normal;
                                    font-weight: 400;
                                    line-height: 35.381px;
                                    text-transform: uppercase;

                                    span {
                                        color: var(--grey);
                                        text-decoration-line: line-through
                                    }
                                }
                            }

                        }

                        .button {
                            margin: 0;
                        }

                        small {
                            display: block;
                            margin-top: 20px;
                            color: var(--grey);
                            font-size: clamp(0.688rem, calc(0.585rem + 0.204vw), 0.75rem);
                            /* min: 12px, max: 11px */
                            ;
                            font-weight: 300;
                            line-height: 100%;
                        }

                    }

                    @media screen and (max-width: 800px) {
                        & {
                            flex-direction: column;

                            .content {
                                width: 100%;

                                .header {
                                    display: flex;
                                    gap: 10px;
                                    color: var(--purple);
                                    margin-bottom: 24px;

                                    img {
                                        display: block;
                                        width: 70px;
                                        height: auto;
                                    }

                                    h1 {
                                        font-size: 36px;
                                    }

                                }

                                ul {
                                    list-style: none;
                                    display: flex;
                                    flex-direction: column;
                                    gap: 10px;
                                    margin: 20px 0;
                                    padding: 0;

                                }

                            }
                        }
                    }
                }
            }
        }
    }

    /* register */
    section.register {
        background-color: var(--secondary-bg);
        padding: 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 20px;
        margin-top: 80px;

        h1 {
            max-width: 800px;
            font-size: clamp(1.125rem, calc(0.411rem + 1.429vw), 1.563rem);
            line-height: 140%;
        }

        h2 {
            max-width: 800px;
            font-size: clamp(1.125rem, calc(0.411rem + 1.429vw), 1.563rem);
            font-weight: 700;
            margin-top: 14px;
            margin-bottom: 24px;
        }

        form {
            max-width: 800px;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: 34px;

            .row {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 16px;

                &.full-width {
                    grid-template-columns: 1fr;
                }
            }

            label {
                font-family: Poppins;
                font-size: 14px;
                font-weight: 400;
                line-height: normal;
                margin: 0;
                padding: 0;

                small {
                    font-size: 10px;
                }
            }

            input[type="text"],
            input[type="email"] {
                width: 100%;
                background: none;
                border: none;
                border-bottom: 1px solid var(--rules);
                color: var(--white);
                font-family: Poppins;
                font-size: 18px;
                font-style: normal;
                font-weight: 400;
                line-height: 180%;
                border-radius: 0;
            }

            fieldset {
                border: none;
                margin: 0;
                padding: 0;
                margin-top: 10px;
                margin-bottom: 8px;

                div:first-child {

                    display: flex;
                    align-items: start;
                    gap: 8px;
                    width: 100%;
                    margin-bottom: 8px;

                    input {
                        flex: 0 0 auto;
                        display: block;
                        width: 16px;
                        height: 16px;
                        margin-top: 5px;
                        background: var(--white);
                        border: none;
                        appearance: none;
                        cursor: pointer;
                        border-radius: 0;

                        &:checked {
                            background: url(https://image.news.sceneplus.ca/lib/fe2711717d64047e721379/m/1/9ee1b3bd-bba7-4417-be11-0691246009b7.png) no-repeat center center;
                            background-size: cover;
                        }
                    }

                    label {
                        font-size: 14px;
                        font-weight: 400;
                        line-height: 18px;
                    }

                }
            }

            .error-flag {
                display: none;
                background: var(--red) url(https://image.news.sceneplus.ca/lib/fe2711717d64047e721379/m/1/f6654441-b387-43fc-957c-44953bbf48ef.png) no-repeat 5px 2.5px;
                background-size: 12px 12px;
                padding-left: 21px;
                font-size: 12px;
                font-weight: 400;
                line-height: normal;
                text-transform: uppercase;
            }

            .input-wrap.invalid,
            fieldset:has(.input-wrap.invalid) {
                .error-flag {
                    display: block;

                    span.error-flag-email-emailnotmatch {
                        display: none;
                    }
                }
            }

            >small {
                margin-top: 24px;
                font-size: 12px;
                font-style: normal;
                font-weight: 400;
                line-height: 15px;
            }

            &.invalidsceneemail .input-wrap .error-flag:has(span) {
                display: block;

                span.error-flag-email-enter {
                    display: none;
                }

                span.error-flag-email-emailnotmatch {
                    display: block;
                }
            }


        }

        .confirmation {
            scroll-margin-top: 50px;
            max-width: 800px;
            display: none;

            h1 {
                font-family: Poppins;
                font-size: clamp(1.563rem, calc(-0.172rem + 3.469vw), 2.625rem);
                font-style: normal;
                font-weight: 400;
    text-transform: uppercase;
            }

            p {
                font-size: clamp(1.125rem, calc(0.411rem + 1.429vw), 1.563rem);
                font-style: normal;
                font-weight: 400;
            }
        }

        &:has(form.submitted) {
            form {
                display: none !important;
            }

            .confirmation {
                display: block;
            }
        }


        @media screen and (max-width: 800px) {
            & {
                margin-top: 40px;

                form {
                    .row {
                        grid-template-columns: 1fr;
                    }
                }
            }

        }


        @media screen and (max-width: 460px) {
            & {
                padding: 60px 21px;
            }
        }

    }

    /* closed */
    section.closed {
        display: none;

        >img {
            width: 100%;
            height: auto;
            display: block;
        }

        >div {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 40px;

            h1 {
                font-family: "Bebas Neue";
                text-align: center;
                font-size: clamp(3.125rem, calc(-1.977rem + 10.204vw), 6.25rem);
                font-style: normal;
                font-weight: 395;
                line-height: 88.8%;
                text-transform: uppercase;
                text-wrap: balance;

                strong {
                    font-family: 'DM Serif Display', serif;
                    font-weight: 400;
                }

            }

            p {
                max-width: 584px;
                font-size: clamp(1.125rem, calc(0.411rem + 1.429vw), 1.563rem);
                /* min: 25px, max: 18px */
                ;
                font-style: normal;
                font-weight: 400;
                line-height: 140%;
            }
        }

    }

    .footer-decal img {
        display: block;
    }
}

/* footer */
footer {

    /* legal */
    section.legal {
        background-color: var(--secondary-bg);

        &:has(details[open]) {
            padding-bottom: 40px;
        }

        details {
            width: 100%;
            max-width: 1290px;
            margin: 0 auto;
            padding-inline: 40px;
            cursor: pointer;
            font-family: Poppins;
            font-size: 14px;
            font-weight: 400;
            line-height: 150%;

            summary {
                position: relative;
                display: flex;
                align-items: center;
                justify-content: space-between;
                height: 80px;
                user-select: none;

                h1 {
                    font-family: "Bebas Neue";
                    font-size: clamp(1.75rem, calc(1.546rem + 0.408vw), 1.875rem);
                }
            }

            summary::-webkit-details-marker {
                display: none;
            }

            summary::after {
                content: ' ';
                display: block;
                width: 56px;
                height: 56px;
                background: url(https://image.news.sceneplus.ca/lib/fe2711717d64047e721379/m/1/8acf4a53-918a-4215-a290-aa9db1e38119.png) no-repeat center center;
                background-size: contain;
            }

            &[open] summary::after {
                background: url(https://image.news.sceneplus.ca/lib/fe2711717d64047e721379/m/1/f3b4c681-6aca-4cfd-8234-1508745c3c77.png) no-repeat center center;
                background-size: contain;
            }

            h2 {
                font-size: inherit;
                font-weight: 700;
                text-align: left;
                line-height: 150%;
                margin-bottom: 10px;
                ;
            }

            p {
                font-size: 14px;

                a {
                    color: var(--purple) !important;

                    &:hover {
                        text-decoration: none;
                    }
                }
            }

            ul,
            ol {
                margin: 0;
                padding: 0;
                line-height: 150%;
                list-style-position: inside;

                li {
                    margin-bottom: 10px;
                }

                a {
                    color: var(--purple) !important;

                    &:hover {
                        text-decoration: none;
                    }
                }
            }

            ul {
                list-style: none;
            }
   ul.bulleted-list{
    list-style: disc;
    padding: 0 0 0 30px;
    margin:0;
   }

        }

    }

    /* nav */
    nav {

        a {
            color: var(--white);
            text-decoration: none;

            &:hover {
                text-decoration: underline;
            }
        }

        .top {

            background-color: var(--grey);


            .columns {
                position: relative;
                display: grid;
                grid-template-columns: 1fr auto 1fr;
                gap: 40px;
                max-width: 1290px;
                padding-inline: 40px;
                margin: 0 auto;
                padding: 33px;

                .logo {
                    position: absolute;
                    top: 33px;
                    left: -42px;
                }

                .become {

                    h1 {
                        font-family: Poppins;
                        font-size: 24px;
                        font-style: normal;
                        font-weight: 700;
                        text-transform: none;
                        text-align: left;
                    }

                    p {
                        color: #FFF;
                        font-family: Poppins;
                        font-size: 15px;
                        font-style: normal;
                        font-weight: 400;
                        line-height: 24px;
                        text-align: left;
                    }

                    a {
                        display: block;
                        position: relative;
                        padding: 12px 70px 12px 20px;
                        margin: 0;
                        margin-top: 30px;
                        color: #FFF;
                        font-size: 15px;
                        font-style: normal;
                        font-weight: 600;
                        width: fit-content;
                        max-width: 288px;


                        &:after {
                            content: '';
                            background: url(https://image.news.sceneplus.ca/lib/fe2711717d64047e721379/m/1/181bda72-7a55-4033-84e5-5c9783c432c9.png) black no-repeat;
                            background-size: 12px;
                            background-position: center center;
                            position: absolute;
                            color: white;
                            right: 0;
                            top: 0;
                            bottom: 0;
                            width: 45px;
                            height: 100%;
                        }

                    }

                }

                .more {

                    h1 {
                        font-family: Poppins;
                        font-size: 16px;
                        font-style: normal;
                        font-weight: 700;
                        text-transform: none;
                        text-align: left;
                    }

                    ul {
                        list-style: none;
                        margin: 0;
                        padding: 0;
                        margin-top: 15px;

                        a {
                            font-size: 15px;
                            font-style: normal;
                            font-weight: 400;
                            line-height: 36.8px;
                        }
                    }
                }

                .links {
                    display: flex;
                    flex-direction: column;
                    align-items: end;
                    gap: 40px;

                    .social {
                        display: flex;
                        align-items: center;
                        gap: 32px;
                        align-self: end;
                    }

                    .app {
                        display: flex;
                        align-items: center;
                        gap: 30px;
                    }

                }

                @media screen and (max-width: 1040px) {
                    & {
                        grid-template-columns: 1fr 1fr;
                        padding: 60px 33px;

                        .become {
                            .logo {
                                position: relative;
                                top: 0px;
                                left: 0px;
                                margin-bottom: 10px;
                            }
                        }


                        .more {
                            grid-row: 2;
                            border-top: 1px solid var(--white);
                            padding-top: 40px;
                        }
                    }
                }

                @media screen and (max-width: 800px) {
                    & {
                        grid-template-columns: 1fr;
                        padding: 40px 20px;

                        .become {
                            .logo {
                                position: relative;
                                top: 0px;
                                left: 0px;
                                margin-bottom: 10px;
                            }
                        }


                        .more {
                            grid-row: 2;
                            border-top: 1px solid var(--white);
                            padding-top: 40px;
                        }

                        .links {
                            margin-top: 50px;
                            ;
                            align-items: center;
                            gap: 32px;

                            .social {
                                align-self: center
                            }
                        }
                    }
                }

            }
        }

        .bottom {
            max-width: 1210px;
            padding: 10px 20px;
            height: 50px;
            margin: 0 auto;
            display: flex;
            gap: 5px 33px;
            justify-content: end;
            align-items: center;
            font-size: 15px;
            font-style: normal;
            font-weight: 400;

            @media screen and (max-width: 800px) {
                & {
                    justify-content: center;
                    flex-wrap: wrap;
                    max-width: 300px;
                    text-align: center;
                }
            }

        }

    }
}

/* hide legal on closed state*/
body.closed footer section.legal {
    display: none;
}

/* hide certain legal after coming soon state */
body.registerstate .comingsoon-legal,
body.eventpromo .comingsoon-legal {
    display: none;
}

/* cookie banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-height: 100vh;
    z-index: 999999;
    overflow-y: auto;
    background-color: var(--black);
    color: var(--grey);
    box-shadow: 0 -5px 5.9084px 0 rgba(0, 0, 0, .05);

    &.active {
        display: block;
    }

    .cookie-banner-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 2.5rem 1.5rem;
    }

    .cookie-disclaimer {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 1rem;
        align-self: center;
        max-width: 1200px;
    }

    .cookie-disclaimer p {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 16px;
    }

    .cookie-disclaimer p:first-child {
        margin-top: 0;
    }

    @media (min-width: 600px) {
        .cookie-disclaimer p {
            line-height: 1.5rem;
        }
    }

    .cookie-disclaimer a {
        color: inherit;
    }

    .cookie-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        flex-shrink: 0;

        button {
            display: inline-flex;
            height: 40px;
            padding: 0px 16px;
            justify-content: center;
            white-space: nowrap;
            align-items: center;
            color: var(--white);
            text-decoration: none;
            text-transform: uppercase;
            font-size: 12px;
            line-height: 100%;
            background: var(--purple);
            transition: background-color 0.25s, color 0.25s;

            &:hover,
            &:focus {
                background-color: var(--blue);
                text-decoration: underline;
            }

            &.ghost {
                background: none;
                border: 1px solid var(--white);
            }

        }

        @media (min-width: 500px) {
            & {
                flex-direction: row-reverse;
                justify-content: center;
            }
        }
    }

}



/* preview */
body.closed {

    header .hero,
    main>picture,
    main>section:not(.closed) {
        display: none;
    }

    main>section.closed {
        display: block;
    }
}

body.registerstate,
body.eventpromo {

    h2.comingsoon {
        display: none;
    }

    h2.eventishere {
        display: block !important;
    }

    section.content {

        ul,
        h2,
        a:first-of-type,
        hr {
            display: none;
        }
    }

    &.eventpromo {

        section.content,
        section.register {
            display: none;
        }

    }

}