button, hr, input {
    overflow: visible
}

audio, canvas, progress, video {
    display: inline-block
}

progress, sub, sup {
    vertical-align: baseline
}

[type=checkbox], [type=radio], legend {
    box-sizing: border-box;
    padding: 0
}

html {
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section {
    display: block
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

figure {
    margin: 1em 40px
}

hr {
    box-sizing: content-box;
    height: 0
}

code, kbd, pre, samp {
    font-family: monospace,monospace;
    font-size: 1em
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

b, strong {
    font-weight: bolder
}

dfn {
    font-style: italic
}

mark {
    background-color: #ff0;
    color: #000
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

audio:not([controls]) {
    display: none;
    height: 0
}

img {
    border-style: none
}

svg:not(:root) {
    overflow: hidden
}

button, input, optgroup, select, textarea {
    font-family: sans-serif;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button, select {
    text-transform: none
}

[type=reset], [type=submit], button, html [type=button] {
    -webkit-appearance: button
}

    [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
        border-style: none;
        padding: 0
    }

    [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
        outline: ButtonText dotted 1px
    }

fieldset {
    padding: .35em .75em .625em
}

legend {
    color: inherit;
    display: table;
    max-width: 100%;
    white-space: normal
}

textarea {
    overflow: auto
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

    [type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
        -webkit-appearance: none
    }

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

summary {
    display: list-item
}

[hidden], template {
    display: none
}
/* COLORS as HSL*/

:root { /* PURPLE #450B9D */
    --c-base-h: 264;
    --c-base-s: 87%;
    --c-base-l: 33%;
    --c-base: var(--c-base-h),var(--c-base-s),var(--c-base-l); /* YELLOW #FFCC00 */
    --c-action-h: 48;
    --c-action-s: 100%;
    --c-action-l: 50%;
    --c-action: var(--c-action-h),var(--c-action-s),var(--c-action-l); /* GREEN #4FCF60 */
    --c-alt-h: 128;
    --c-alt-s: 57%;
    --c-alt-l: 56%;
    --c-alt: var(--c-alt-h),var(--c-alt-s),var(--c-alt-l); /* PINK #D90A6B */
    --c-pink-h: 332;
    --c-pink-s: 91%;
    --c-pink-l: 45%;
    --c-pink: var(--c-pink-h),var(--c-pink-s),var(--c-pink-l); /* BLACK #0E1729 */
    --c-dark-h: 224;
    --c-dark-s: 49%;
    --c-dark-l: 11%;
    --c-dark: var(--c-dark-h),var(--c-dark-s),var(--c-dark-l); /* GRAY #B3B5BC */
    --c-gray-h: 227;
    --c-gray-s: 6%;
    --c-gray-l: 72%;
    --c-gray: var(--c-gray-h),var(--c-gray-s),var(--c-gray-l); /* LIGHT #DAD4E3 */
    --c-light-h: 264;
    --c-light-s: 21%;
    --c-light-l: 86%;
    --c-light: var(--c-light-h),var(--c-light-s),var(--c-light-l); /* LIGHTER #F5F2F9 */
    --c-lighter-h: 266;
    --c-lighter-s: 37%;
    --c-lighter-l: 96%;
    --c-lighter: var(--c-lighter-h),var(--c-lighter-s),var(--c-lighter-l); /* whitest #FAF9FC */
    --c-whitest-h: 260;
    --c-whitest-s: 33%;
    --c-whitest-l: 98%;
    --c-whitest: var(--c-whitest-h),var(--c-whitest-s),var(--c-whitest-l)
}
/* FONTS */

:root {
    --font-base: "Poppins",-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
    --fw-bold: 700;
    --fw-base: 400;
    --fz-h1: 7rem;
    --fz-h2: 5rem;
    --fz-h3: 3.6rem;
    --fz-h4: 2.6rem;
    --fz-20: 2rem;
    --fz-16: 1.6rem;
    --fz-14: 1.4rem
}

@media (max-width: 47.999em) {
    :root {
        --fz-h1: 2.9rem;
        --fz-h2: 2.9rem;
        --fz-h3: 2.6rem;
        --fz-h4: 2rem;
        --fz-20: 1.8rem
    }
}

:root {
    --m-small: 1rem;
    --m-base: 2rem;
    --m-large: 4rem;
    --m-grid: 2.5rem
}

@media (max-width: 47.999em) {
    :root {
        --m-grid: 20px
    }
}
/* MEDIA QUERIES */

@font-face {
    font-family: 'Poppins';
    src: url('/assets/Fonts/Poppins-Bold_20200421.woff2') format('woff2'),url('/assets/Fonts/Poppins-Bold_20200421.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/Fonts/Poppins-Regular_20200421.woff2') format('woff2'),url('/assets/Fonts/Poppins-Regular_20200421.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

.l-container {
    width: 100%;
    z-index: var(--z-base);
    position: relative
}

    .l-container + .l-container {
        margin-top: 12rem
    }

@media (max-width: 47.999em) {
    .l-container + .l-container {
        margin-top: 8rem
    }
}

.l-content {
    width: calc(100% - 2.5rem * 2);
    width: calc(100% - var(--m-grid) * 2);
    max-width: 140rem;
    margin: 0 auto
}

    .l-content.js-slide-in {
        opacity: 0;
        transform: translateY(4rem);
        transition: all 1.6s cubic-bezier(0, 0.75, 0.04, 0.99)
    }

        .l-content.js-slide-in.s-inview {
            opacity: 1;
            transform: translateY(0rem);
            transition-delay: 0.3s
        }

.l-content--nopadding {
    padding: 0
}

.l-image {
}

.l-image__parent {
    position: relative;
    overflow: hidden
}

.l-image__parent--landscape::before {
    content: "";
    display: block;
    padding-top: 56.25%
}

.l-image__parent--landscape > img {
    position: absolute;
    top: 0;
    left: 0
}

.l-image__parent--square::before {
    content: "";
    display: block;
    padding-top: 100%
}

.l-image__parent--square > img {
    position: absolute;
    top: 0;
    left: 0
}

.l-image__item {
    width: 100%;
    height: 100%;
    opacity: 0;
    -o-object-fit: cover;
    object-fit: cover;
    transition: opacity 0.5s cubic-bezier(0.02, 0.61, 0.15, 0.96)
}

    .l-image__item.lazyloaded {
        opacity: 1
    }

.l-image__item--contain {
    -o-object-fit: contain;
    object-fit: contain
}

picture {
    display: block;
    width: 100%
}

.l-item * {
    margin: 0
}

.l-item > * + * {
    margin-top: 2rem;
    margin-top: var(--m-base)
}

.l-item--xs > * + * {
    margin-top: .5rem
}

.l-item--sm > * + * {
    margin-top: 1rem;
    margin-top: var(--m-small)
}

.l-item--lg > * + * {
    margin-top: 4rem;
    margin-top: var(--m-large)
}

.l-item--xl > * + * {
    margin-top: calc(4rem + 2rem);
    margin-top: calc(var(--m-large) + var(--m-base))
}

.l-item > style, .l-item > script {
    display: none
}

.c-header {
}

.c-header__container {
    position: relative;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    margin-bottom: -180px;
    height: 180px;
    z-index: 10
}

@media (max-width: 47.999em) {
    .c-header__container {
        margin-bottom: -112px;
        height: 112px
    }
}

.c-header__navbar {
    padding-top: 2rem;
    display: -ms-grid;
    display: grid;
    grid-template-areas: "logo navigation button";
    -ms-grid-columns: 10rem 1fr;
    grid-template-columns: 10rem 1fr
}

    .c-header__navbar > [class*="__logo"] {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        grid-area: logo
    }

    .c-header__navbar > [class*="__grid-nav"] {
        -ms-grid-row: 1;
        -ms-grid-column: 2;
        grid-area: navigation;
        -ms-grid-row-align: start;
        align-self: start;
        -ms-grid-column-align: center;
        justify-self: center
    }

    .c-header__navbar > [class*="__side-nav"] {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
        grid-area: button;
        -ms-grid-row-align: start;
        align-self: start;
        -ms-grid-column-align: end;
        justify-self: end
    }

@media (min-width: 48em) {
    .c-header__navbar > *:not([class*="__logo"]) {
        margin-top: 2rem
    }
}

@media (max-width: 47.999em) {
    .c-header__navbar {
        -ms-grid-columns: 6.5rem 1fr;
        grid-template-columns: 6.5rem 1fr
    }

        .c-header__navbar::before {
            content: "";
            width: 100%;
            height: 110px;
            background: linear-gradient(-180deg, #0e162a 20%, rgba(0,0,0,0));
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: auto;
            z-index: 2;
            opacity: 0;
            transition: opacity 0.8s ease
        }

        .c-header__navbar.s-opening {
            z-index: 10;
            position: absolute;
            top: auto;
            right: 0;
            bottom: auto;
            left: 0;
            padding: 2rem 2.5rem;
            padding: 2rem var(--m-grid);
            width: 100%
        }

        .c-header__navbar.s-open {
            width: 100%;
            z-index: 10;
            padding: 2rem 2.5rem;
            padding: 2rem var(--m-grid);
            position: fixed;
            top: 0;
            right: 0;
            bottom: auto;
            left: 0;
            bottom: 0;
            height: 100%
        }

            .c-header__navbar.s-open::before {
                opacity: 1
            }

            .c-header__navbar.s-open .c-header__mobnav-image {
                opacity: 1
            }

            .c-header__navbar.s-open .c-header__grid-nav {
                overflow: auto
            }
}

.c-header__logo {
    width: 100%;
    position: relative;
    z-index: 2
}

@media (max-width: 47.999em) {
    .c-header__grid-nav {
        pointer-events: none;
        grid-area: none !important;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: calc(112px + 6rem);
        padding-bottom: calc(4rem * 2);
        padding-bottom: calc(var(--m-large) * 2);
        color: #fff
    }

        .c-header__grid-nav > .c-nav__list + * {
            margin-top: 4rem;
            margin-top: var(--m-large)
        }
}

@media (max-width: 47.999em) {
    .c-header__side-nav {
        z-index: 2;
        position: relative
    }
}

@media (min-width: 48em) {
    .c-header__nav-background {
        display: none
    }
}

@media (max-width: 47.999em) {
    .c-header__nav-background {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: red;
        background: hsl(224, 49%, 11%);
        background: hsl(var(--c-dark));
        opacity: 0
    }
}

@media (min-width: 48em) {
    .c-header__mobnav-image {
        display: none
    }
}

@media (max-width: 47.999em) {
    .c-header__mobnav-image {
        position: fixed;
        top: 10rem;
        right: auto;
        bottom: auto;
        left: -20%;
        width: 100%;
        height: 70vh;
        max-height: 55rem;
        pointer-events: none;
        opacity: 0;
        transition: opacity 1s ease
    }

        .c-header__mobnav-image > svg, .c-header__mobnav-image > img {
            width: 100%;
            height: 100%
        }
}

.c-footer {
}

.c-footer__container {
    margin-top: 12rem
}

@media (max-width: 47.999em) {
    .c-footer__container {
        margin-top: 8rem
    }
}

.c-footer__bar {
    min-height: 10rem;
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media (max-width: 47.999em) {
    .c-footer__bar {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        min-height: 7rem;
        padding: 4rem 0
    }

        .c-footer__bar > * + * {
            margin-top: 2rem
        }
}

.c-footer__right {
    display: flex
}

@media (max-width: 47.999em) {
    .c-footer__right {
        flex-direction: column
    }
}

@media (min-width: 48em) {
    .c-footer__right > * + *::before {
        content: "";
        margin-left: 2rem;
        padding-left: 2rem;
        border-left: 1px solid currentColor;
        opacity: 0.4
    }
}

.c-footer-list {
}

.c-footer-list__list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0
}

@media (max-width: 47.999em) {
    .c-footer-list__list {
        flex-direction: column;
        color: hsl(264, 87%, 33%);
        color: hsl(var(--c-base));
        font-weight: 700
    }
}

@media (min-width: 48em) {
    .c-footer-list__list {
        margin-left: -2rem
    }
}

.c-footer-list__link {
    padding: 0.5rem 0rem;
    display: inline-block
}

@media (min-width: 48em) {
    .c-footer-list__link {
        padding: 0.5rem 2rem
    }
}

.c-footer-list__link {
    color: currentColor
}

    .c-footer-list__link:hover, .c-footer-list__link:focus {
        text-decoration: none
    }

.c-nav {
}

.c-nav__list {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1
}

.c-nav__list--transparent > .c-nav__item {
    color: #fff
}

    .c-nav__list--transparent > .c-nav__item[aria-current="page"], .c-nav__list--transparent > .c-nav__item:hover {
        color: #fff
    }

        .c-nav__list--transparent > .c-nav__item:hover::after {
            opacity: 0.6
        }

@media (max-width: 47.999em) {
    .c-nav__list--main {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start
    }

        .c-nav__list--main > .c-nav__item {
            opacity: 0
        }
}

.c-nav__list--side > .c-nav__item + [class*="__item"] {
    margin-left: 2rem
}

@media (max-width: 47.999em) {
    .c-nav__list--side > .c-nav__item + [class*="__item"] {
        margin-left: 1rem
    }
}

.c-nav__list--side > .c-nav__item::after {
    display: none
}

@media (min-width: 48em) {
    .c-nav__list--mobile-only {
        display: none
    }
}

.c-nav__item {
    font-weight: 700
}

    .c-nav__item[aria-current="page"]::after, .c-nav__item:hover::after {
        opacity: 1;
        transform: translateY(0rem)
    }

    .c-nav__item[aria-current="page"][class*="--is-button"]::after, .c-nav__item:hover[class*="--is-button"]::after {
        display: none
    }

@media (max-width: 47.999em) {
    .c-nav__item {
        font-size: 26px
    }
}

@media (min-width: 48em) {
    .c-nav__item {
        color: hsl(224, 49%, 11%);
        color: hsl(var(--c-dark))
    }

        .c-nav__item[aria-current="page"], .c-nav__item:hover {
            color: hsl(264, 87%, 33%);
            color: hsl(var(--c-base))
        }

            .c-nav__item:hover::after {
                opacity: 0.2
            }
}

.c-nav__item::after {
    pointer-events: none;
    content: "";
    display: block;
    width: calc(100% - 4rem);
    height: 2px;
    position: relative;
    bottom: 1rem;
    margin: auto;
    background: currentColor;
    opacity: 0;
    transform: translateY(0.3rem);
    transition: opacity .1s ease,transform .4s cubic-bezier(0.04, 0.79, 0.29, 0.98)
}

@media (max-width: 47.999em) {
    .c-nav__item--login .btn {
        padding: 1.6rem;
        position: relative
    }

    .c-nav__item--login .l-icon__wrap > span {
        width: 0;
        height: 0;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        opacity: 0;
        font-size: 0px
    }

    .c-nav__item--login .l-icon__wrap > svg {
        margin: 0 !important
    }
}

@media (min-width: 48em) {
    .c-nav__item--open-nav {
        display: none
    }
}

.c-nav__link {
    color: currentColor;
    min-height: 5rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 1.25rem 2rem
}

@media (min-width: 48em) {
    .c-nav__link {
        padding: 1rem 2rem
    }
}

@media (max-width: 47.999em) {
    .c-nav__link.btn--line, .c-nav__link.btn--line-dark {
        padding-left: 2rem;
        padding-right: 2.8rem
    }

        .c-nav__link.btn--line .l-icon__wrap > .l-icon:last-child, .c-nav__link.btn--line-dark .l-icon__wrap > .l-icon:last-child {
            margin-left: 1.2rem
        }
}

.c-optiontile {
}

.c-optiontile__container.l-container {
    margin-top: 4rem
}

.c-optiontile__grid {
    display: -ms-grid;
    display: grid;
    grid-template-areas: "emailbehouden emailendomein emaildoorsturen";
    -ms-grid-columns: minmax(0, 1fr) 4rem minmax(0, 1.15fr) 4rem minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr) minmax(0, 1fr);
    grid-gap: 4rem
}

    .c-optiontile__grid > [class*="item--emailbehouden"] {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        grid-area: emailbehouden;
        -ms-grid-row-align: start;
        align-self: start
    }

    .c-optiontile__grid > [class*="item--emailendomein"] {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
        grid-area: emailendomein;
        -ms-grid-row-align: start;
        align-self: start
    }

    .c-optiontile__grid > [class*="item--emaildoorsturen"] {
        -ms-grid-row: 1;
        -ms-grid-column: 5;
        grid-area: emaildoorsturen;
        -ms-grid-row-align: start;
        align-self: start
    }

    .c-optiontile__grid > *:nth-of-type(n + 4) {
        display: none
    }

@media (max-width: 63.999em) {
    .c-optiontile__grid {
        grid-gap: 2rem
    }
}

@media (max-width: 47.999em) {
    .c-optiontile__grid {
        -ms-grid-rows: auto 2rem auto 2rem auto;
        grid-template-areas: "emailbehouden" "emailendomein" "emaildoorsturen";
        -ms-grid-columns: minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr)
    }

        .c-optiontile__grid > [class*="item--emailbehouden"] {
            -ms-grid-row: 3;
            -ms-grid-column: 1
        }

        .c-optiontile__grid > [class*="item--emailendomein"] {
            -ms-grid-row: 1;
            -ms-grid-column: 1
        }

        .c-optiontile__grid > [class*="item--emaildoorsturen"] {
            -ms-grid-row: 5;
            -ms-grid-column: 1
        }
}

.c-optiontile__normal-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(0, 1fr) 4rem minmax(0, 1fr) 4rem minmax(0, 1fr);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 4rem
}

    .c-optiontile__normal-grid > * {
        -ms-grid-row-align: start;
        align-self: start
    }

        .c-optiontile__normal-grid > *:nth-of-type(n + 4) {
            display: none
        }

@media (max-width: 63.999em) {
    .c-optiontile__normal-grid {
        grid-gap: 2rem
    }
}

@media (max-width: 47.999em) {
    .c-optiontile__normal-grid {
        -ms-grid-columns: minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr)
    }
}

.c-optiontile__static-grid {
    max-width: 95rem;
    margin: auto
}

.c-optiontile__lightbox-grid {
    display: flex;
    flex-wrap: wrap
}

    .c-optiontile__lightbox-grid > * {
        margin-left: 2rem
    }

        .c-optiontile__lightbox-grid > *:nth-child(4n-7) {
            margin-left: 0
        }

        .c-optiontile__lightbox-grid > *:nth-child(n + 5) {
            margin-top: 2rem
        }

    .c-optiontile__lightbox-grid > * {
        max-width: calc(25% - 1.5rem);
        flex: 1 0 25%
    }

@supports (display: grid) {
    .c-optiontile__lightbox-grid {
        display: -ms-grid;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(28rem, 1fr));
        grid-gap: 2rem
    }

    @media (max-width: 47.999em) {
        .c-optiontile__lightbox-grid {
            grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
            grid-gap: 1rem
        }
    }

    .c-optiontile__lightbox-grid > * {
        margin: 0 !important;
        max-width: none;
        flex: none
    }
}

.c-optiontile__content-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(min(30rem, 100%), 1fr));
    grid-gap: 4rem
}

.c-optiontile__content-grid--lg {
    grid-gap: 6rem
}

@media (max-width: 47.999em) {
    .c-optiontile__content-grid--lg {
        grid-gap: 2rem
    }
}

.c-optiontile__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem;
    background: hsl(266, 37%, 96%);
    background: hsl(var(--c-lighter));
    border-radius: 1rem;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid hsl(264, 21%, 86%);
    border: 1px solid hsl(var(--c-light));
    align-self: start;
    height: 100%
}

@media (max-width: 63.999em) {
    .c-optiontile__item {
        padding: 4rem 2rem
    }
}

@media (max-width: 47.999em) {
    .c-optiontile__item {
        padding: 2rem 1.6rem !important
    }
}

.c-optiontile__item--animatable {
    opacity: 0;
    -webkit-animation: showOptionTile 0.6s 0.4s cubic-bezier(0.01, 0.45, 0.27, 0.99) forwards;
    animation: showOptionTile 0.6s 0.4s cubic-bezier(0.01, 0.45, 0.27, 0.99) forwards
}

    .c-optiontile__item--animatable + [class*="--animatable"]:not([class*="--main"]) {
        -webkit-animation-delay: 0.55s;
        animation-delay: 0.55s
    }

        .c-optiontile__item--animatable + [class*="--animatable"]:not([class*="--main"]) + [class*="--animatable"] {
            -webkit-animation-delay: 0.7s;
            animation-delay: 0.7s
        }

            .c-optiontile__item--animatable + [class*="--animatable"]:not([class*="--main"]) + [class*="--animatable"] + [class*="--animatable"] {
                -webkit-animation-delay: 0.85s;
                animation-delay: 0.85s
            }

.c-optiontile__item--main {
    height: auto;
    box-shadow: 2px 2px 50px rgba(0, 0, 0, 0.1);
    margin-top: 4rem;
    margin-top: var(--m-large)
}

@media (min-width: 48em) {
    .c-optiontile__item--main:nth-of-type(2):not(:first-of-type):not(:last-of-type) {
        margin-top: 0;
        box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
        border: 0px;
        background: #fff;
        padding: 8rem 6rem 4rem
    }
}

@media (max-width: 63.999em) {
    .c-optiontile__item--main:nth-of-type(2):not(:first-of-type):not(:last-of-type) {
        padding: 8rem 4.3rem 4rem
    }
}

@media (max-width: 47.999em) {
    .c-optiontile__item--main {
        padding: 3rem 2rem 2rem !important;
        margin-top: 0;
        box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
        border: 0px;
        background: #fff
    }
}

.c-optiontile__item--main:nth-of-type(2) {
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s
}

.c-optiontile__item--white {
    background: #fff;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
    text-align: center
}

.c-optiontile__item--extra-spacing > *:nth-last-child(2), .c-optiontile__item--extra-spacing > *:nth-last-child(1) {
    margin-top: 2.6rem
}

.c-optiontile__static-item {
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    position: relative;
    opacity: 0;
    -webkit-animation: showOptionTile 0.6s 0.4s cubic-bezier(0.01, 0.45, 0.27, 0.99) forwards;
    animation: showOptionTile 0.6s 0.4s cubic-bezier(0.01, 0.45, 0.27, 0.99) forwards
}

@media (max-width: 47.999em) {
    .c-optiontile__static-item {
        flex-direction: column
    }
}

.c-optiontile__static-item > * {
    flex: 1;
    padding: 8rem 6rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center
}

@media (max-width: 47.999em) {
    .c-optiontile__static-item > * {
        padding: 3rem 2rem 2rem
    }
}

.c-optiontile__static-item > *:first-child {
    border-radius: 1rem 1rem 0 0
}

@media (min-width: 48em) {
    .c-optiontile__static-item > *:first-child {
        background: hsl(266, 37%, 96%);
        background: hsl(var(--c-lighter));
        border-radius: 1rem 0 0 1rem
    }
}

.c-optiontile__static-item > *:last-child {
    border-radius: 0 0 1rem 1rem
}

@media (min-width: 48em) {
    .c-optiontile__static-item > *:last-child {
        border-radius: 0 1rem 1rem 0;
        margin-left: -1px
    }
}

@media (max-width: 47.999em) {
    .c-optiontile__static-item > *:last-child {
        padding-top: 2rem
    }
}

.c-optiontile__static-item > *:first-child:last-child {
    border-radius: 1rem
}

.c-optiontile__static-item > *:not(:first-child):not(:last-child) {
    border-radius: 0
}

.c-optiontile__h2 {
    line-height: 1.4;
    text-align: center
}

.c-optiontile__icon-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.4rem;
    font-size: 2rem
}

.c-optiontile__icon-holder--small {
    font-size: 1rem
}

.c-optiontile__icon-single {
    position: relative;
    display: flex;
    color: #fff
}

    .c-optiontile__icon-single > .l-icon:not([class*="icon-shape"]) {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        width: 1em;
        height: 1em;
        color: inherit
    }

@media (min-width: 48em) {
    .c-optiontile__icon-single > .l-icon:not([class*="icon-shape"]) {
        width: 2.5em;
        height: 2.5em
    }
}

.c-optiontile__icon-single + [class*="icon-single"] {
    margin-left: 1.5em
}

@media (min-width: 48em) {
    .c-optiontile__icon-single + [class*="icon-single"] {
        margin-left: 2.75em
    }
}

.c-optiontile__icon-single + [class*="icon-single"]::before {
    content: "+";
    width: 1.5em;
    position: absolute;
    left: -1.5em;
    text-align: center;
    font-weight: 700;
    font-size: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%
}

@media (min-width: 48em) {
    .c-optiontile__icon-single + [class*="icon-single"]::before {
        font-size: 2em;
        left: -1.375em;
        width: 1.375em
    }
}

.c-optiontile__icon-single--action {
    color: hsl(224, 49%, 11%);
    color: hsl(var(--c-dark))
}

.c-optiontile__icon-shape, .c-optiontile__icon-shape.l-icon {
    width: 2.25em;
    height: 2.25em
}

@media (min-width: 48em) {
    .c-optiontile__icon-shape, .c-optiontile__icon-shape.l-icon {
        width: 5.6em;
        height: 5.6em
    }
}

.c-optiontile__icon-shape {
    color: hsl(264, 87%, 33%);
    color: hsl(var(--c-base))
}

.c-optiontile__icon-shape--action {
    color: hsl(48, 100%, 50%);
    color: hsl(var(--c-action))
}

.c-optiontile__icon-shape--pink {
    color: hsl(332, 91%, 45%);
    color: hsl(var(--c-pink))
}

.c-optiontile__icon-shape--dark {
    color: hsl(224, 49%, 11%);
    color: hsl(var(--c-dark))
}

.c-optiontile__price-holder {
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 1.4rem;
    font-size: var(--fz-14);
    text-align: center;
    font-weight: 700;
    font-weight: var(--fw-bold);
    line-height: 1.14
}

.c-optiontile__price-row {
    display: flex;
    align-items: flex-end;
    line-height: 1
}

    .c-optiontile__price-row > * {
        margin: 0 1rem;
        top: 5px;
        position: relative
    }

@media (max-width: 47.999em) {
    .c-optiontile__price-row > * {
        top: 3px
    }
}

.c-optiontile__price-sub {
    font-weight: 400;
    font-weight: var(--fw-base);
    display: inline-block;
    margin-top: 0.6rem;
    line-height: 1.4
}

.c-optiontile__price-sub--space {
    margin-top: 1.2rem
}

.c-optiontile__form {
    margin-top: 4rem;
    margin-top: var(--m-large)
}

.c-optiontile__ribbon {
    pointer-events: none;
    display: flex;
    position: absolute;
    top: 0;
    margin: 0;
    right: 0;
    height: 4rem;
    overflow: hidden;
    padding: 10rem;
    width: 210px
}

    .c-optiontile__ribbon::before {
        content: "";
        display: block;
        width: 200%;
        top: 0;
        right: 0;
        height: 4rem;
        position: absolute;
        transform-origin: bottom right;
        transform: rotate(30deg) translateX(49%) translateY(150%);
        background: hsl(128, 57%, 56%);
        background: hsl(var(--c-alt))
    }

@media (max-width: 47.999em) {
    .c-optiontile__ribbon {
        transform: scale(0.7);
        transform-origin: top right
    }
}

.c-optiontile__ribbon-content {
    z-index: 10;
    color: #fff;
    font-weight: bold;
    display: block;
    width: 100%;
    top: 0;
    right: 0;
    text-align: center;
    height: 4rem;
    position: absolute;
    transform-origin: bottom right;
    transform: rotate(30deg) translateX(23%) translateY(166%)
}

@media (max-width: 79.999em) {
    .c-optiontile__ribbon-content {
        transform: rotate(30deg) translateX(28%) translateY(171%)
    }
}

@media (max-width: 63.999em) {
    .c-optiontile__ribbon-content {
        transform: rotate(30deg) translateX(32.5%) translateY(171%)
    }
}

@media (max-width: 47.999em) {
    .c-optiontile__ribbon-content {
        transform: rotate(30deg) translateX(23%) translateY(166%)
    }
}

.c-optiontile__usp-list {
    width: 100%;
    padding: 0
}

@media (max-width: 47.999em) {
    .c-optiontile__usp-list {
        padding: 0 2rem 0 2rem
    }
}

.c-optiontile__usp-list--flex {
    flex: 1 0 auto
}

.c-optiontile__usp-list--padding {
    padding: 0 2rem 0 2rem
}

@media (min-width: 48em) {
    .c-optiontile__usp-list--margin {
        margin-top: 4rem;
        margin-top: var(--m-large)
    }
}

@media (min-width: 48em) {
    .c-optiontile__usp-list--flex {
        flex: 1 1 auto
    }
}

@media (max-width: 47.999em) {
    .c-optiontile__usp-list--tiny {
        padding: 0
    }
}

.c-optiontile__usp-item {
    display: flex;
    color: #9da1af
}

    .c-optiontile__usp-item::before {
        display: none !important
    }

    .c-optiontile__usp-item + [class*="usp-item"] {
        margin-top: 1.4rem
    }

@media (max-width: 47.999em) {
    .c-optiontile__usp-item + [class*="usp-item"] {
        margin-top: 0.8rem
    }
}

.c-optiontile__usp-item.s-checked {
    color: hsl(224, 49%, 11%);
    color: hsl(var(--c-dark))
}

    .c-optiontile__usp-item.s-checked [class*="usp-icon-holder"] {
        background: hsl(128, 57%, 56%);
        background: hsl(var(--c-alt))
    }

.c-optiontile__usp-icon-holder, .c-optiontile__usp-dot {
    flex: 0 0 auto;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: #9da1af;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 2px
}

.c-optiontile__usp-dot {
    width: 0.8rem;
    height: 0.8rem;
    background: hsl(264, 87%, 33%);
    background: hsl(var(--c-base));
    top: 0.8rem
}

    .c-optiontile__usp-dot.color-alt, .c-optiontile__usp-dot.color-pink {
        background: currentColor
    }

.c-optiontile__usp-icon.l-icon {
    width: 1.2rem;
    height: 0.85rem;
    color: #fff
}

.c-optiontile__usp-text {
    margin-left: 1rem;
    color: inherit;
    font-weight: 700;
    font-weight: var(--fw-bold);
    font-size: 1.5rem
}

@-webkit-keyframes showOptionTile {
    0% {
        opacity: 0;
        transform: translateY(40px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes showOptionTile {
    0% {
        opacity: 0;
        transform: translateY(40px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.c-coloredtiles {
}

.c-coloredtiles__container {
}

.c-coloredtiles__grid {
    display: flex
}

    .c-coloredtiles__grid > * {
        flex: 1 1 auto
    }

@supports(display:grid) {
    .c-coloredtiles__grid {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (minmax(0, 1fr))[1];
        grid-template-columns: repeat(1, minmax(0, 1fr))
    }

        .c-coloredtiles__grid > * {
            flex: none
        }

    @media (min-width: 48em) {
        .c-coloredtiles__grid {
            grid-row-gap: 4rem;
            grid-row-gap: var(--m-large);
            -ms-grid-columns: (minmax(0, 1fr))[2];
            grid-template-columns: repeat(2, minmax(0, 1fr))
        }
    }
}

.c-coloredtiles__item {
    padding: 5rem 4rem;
    width: 100%;
    background: hsl(48, 100%, 50%);
    background: hsl(var(--c-action));
    color: hsl(224, 49%, 11%);
    color: hsl(var(--c-dark))
}

    .c-coloredtiles__item:nth-of-type(even) {
        background: hsl(264, 87%, 33%);
        background: hsl(var(--c-base));
        color: #fff
    }

    .c-coloredtiles__item > * {
        max-width: 41rem
    }

@media (min-width: 48em) {
    .c-coloredtiles__item {
        padding: 5vw
    }
}

@media (min-width: 64em) {
    .c-coloredtiles__item {
        padding: 8rem 12rem
    }
}

@media (min-width: 48em) {
    .c-coloredtiles__item:nth-of-type(odd) {
        border-radius: 10px 0 0 10px
    }

        .c-coloredtiles__item:nth-of-type(odd):last-of-type {
            border-radius: 10px
        }

    .c-coloredtiles__item:nth-of-type(even) {
        border-radius: 0 10px 10px 0
    }

    .c-coloredtiles__item:first-of-type:last-of-type {
        border-radius: 10px
    }
}

@media (max-width: 47.999em) {
    .c-coloredtiles__item:first-of-type {
        border-radius: 10px 10px 0 0
    }

    .c-coloredtiles__item:last-of-type {
        border-radius: 0 0 10px 10px
    }

        .c-coloredtiles__item:last-of-type:first-of-type {
            border-radius: 10px
        }
}

.c-coloredtiles__item--action, .c-coloredtiles__item--action:nth-of-type(even) {
    background: hsl(48, 100%, 50%);
    background: hsl(var(--c-action));
    color: hsl(224, 49%, 11%);
    color: hsl(var(--c-dark))
}

.c-coloredtiles__item--v2 > * {
    max-width: none
}

@media (max-width: 47.999em) {
    .c-coloredtiles__item--v2:nth-of-type(odd) {
        padding-bottom: 2rem;
        padding-bottom: var(--m-base)
    }
}

@media (max-width: 47.999em) {
    .c-coloredtiles__item--v2:nth-of-type(even) {
        padding-top: 0
    }
}

@media (min-width: 48em) {
    .c-coloredtiles__item--v2:nth-of-type(even) {
        padding-left: 0
    }
}

.c-pageheader {
}

.c-pageheader__container {
    padding-top: 180px;
    font-size: 2rem;
    font-size: var(--fz-20)
}

@media (max-width: 47.999em) {
    .c-pageheader__container {
        padding-top: 130px
    }
}

.c-pageheader__content {
    position: relative;
    z-index: 1
}

.c-pageheader__content--home {
    padding-top: calc(2rem * 3);
    padding-top: calc(var(--m-base) * 3)
}

.c-pageheader__picture {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: calc(100% + 36rem);
    -webkit-clip-path: url(#hexagonHuge);
    clip-path: url(#hexagonHuge);
    background: hsl(264, 87%, 33%);
    background: hsl(var(--c-base))
}

@media (max-width: 47.999em) {
    .c-pageheader__picture {
        -webkit-clip-path: url(#hexagonHugeMobile);
        clip-path: url(#hexagonHugeMobile);
        height: calc(100% + 10rem)
    }
}

.c-pageheader__picture::after {
    content: "";
    background: linear-gradient( 0deg, hsla(224, 49%, 11%, 30%) 75%, hsla(224, 49%, 11%, 50%) );
    background: linear-gradient( 0deg, hsla(var(--c-dark), 30%) 75%, hsla(var(--c-dark), 50%) );
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

@media (max-width: 47.999em) {
    .c-pageheader__picture::after {
        background: hsla(224, 49%, 11%, 30%);
        background: hsla(var(--c-dark), 30%)
    }
}

.c-pageheader__rte > h1 {
    margin-bottom: calc(2rem + 1rem);
    margin-bottom: calc(var(--m-base) + var(--m-small))
}

.c-pageheader__rte > *:not(h1) {
    max-width: 75rem;
    margin: 0 auto
}

@media (min-width: 48em) {
    .c-pageheader__rte {
        display: flex;
        flex-direction: column;
        min-height: 25rem
    }
}

@media (-ms-high-contrast: none),(-ms-high-contrast: active) {
    .c-pageheader__rte {
        display: block;
        min-height: 0px
    }

        .c-pageheader__rte > h1 {
            flex: none
        }
}

@media (min-width: 48em) {
    .c-pageheader__rte--spacing > h1 {
        flex: 1
    }
}

.c-pageheader__image {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover";
    transition-delay: 0.3s
}

.c-content-normal-1, .c-content-normal-2 {
}

.c-content-normal-1__grid, .c-content-normal-2__grid {
    display: -ms-grid;
    display: grid;
    grid-template-areas: "content picture";
    -ms-grid-columns: minmax(0, 1fr) 12rem minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column-gap: 12rem
}

@media (max-width: 63.999em) {
    .c-content-normal-1__grid, .c-content-normal-2__grid {
        grid-column-gap: 8rem
    }
}

@media (max-width: 47.999em) {
    .c-content-normal-1__grid, .c-content-normal-2__grid {
        -ms-grid-rows: auto var(--m-large) auto;
        grid-template-areas: "content" "picture";
        grid-column-gap: 0;
        grid-row-gap: 4rem;
        grid-row-gap: var(--m-large);
        -ms-grid-columns: minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr)
    }
}

.c-content-normal-1__grid > [class*="__article-content"], .c-content-normal-2__grid > [class*="__article-content"] {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: content;
    -ms-grid-row-align: center;
    align-self: center
}

.c-content-normal-1__grid > [class*="__picture"], .c-content-normal-2__grid > [class*="__picture"] {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    grid-area: picture
}

@media (max-width: 47.999em) {
    .c-content-normal-1__grid > [class*="__article-content"], .c-content-normal-2__grid > [class*="__article-content"] {
        -ms-grid-row: 1;
        -ms-grid-column: 1
    }

    .c-content-normal-1__grid > [class*="__picture"], .c-content-normal-2__grid > [class*="__picture"] {
        -ms-grid-row: 3;
        -ms-grid-column: 1
    }
}

.c-content-normal-1__article-content > .btn:last-child, .c-content-normal-2__article-content > .btn:last-child {
    margin-top: 4rem;
    margin-top: var(--m-large)
}

.c-content-normal-1__picture, .c-content-normal-2__picture {
    border-radius: 50%;
    overflow: hidden
}

@supports((-webkit-clip-path: url(#hexagonBase)) or (clip-path: url(#hexagonBase))) {
    .c-content-normal-1__picture, .c-content-normal-2__picture {
        border-radius: 0;
        overflow: visible;
        -webkit-clip-path: url(#hexagonBase);
        clip-path: url(#hexagonBase)
    }
}

.c-content-normal-2 {
}

.c-content-normal-2__grid {
    grid-template-areas: "picture content"
}

@media (max-width: 47.999em) {
    .c-content-normal-2__grid {
        grid-template-areas: "content" "picture"
    }

        .c-content-normal-1__grid > [class*="__article-content"], .c-content-normal-2__grid > [class*="__article-content"] {
            -ms-grid-row: 1;
            -ms-grid-column: 1
        }

        .c-content-normal-1__grid > [class*="__picture"], .c-content-normal-2__grid > [class*="__picture"] {
            -ms-grid-row: 2;
            -ms-grid-column: 1
        }
}

.c-content-faq-1 {
}

.c-content-faq-1__title + [class*="__grid"] {
    margin-top: 5rem
}

.c-content-faq-1__grid {
    max-width: 95rem;
    margin: auto
}

.c-content-faq-1__item {
    border-bottom: 2px solid hsl(264, 21%, 86%);
    border-bottom: 2px solid hsl(var(--c-light))
}

.c-content-faq-1__header {
    display: flex;
    align-items: center;
    padding: 3rem 0;
    position: relative;
    transition: color .15s ease
}

@media (max-width: 47.999em) {
    .c-content-faq-1__header {
        padding: 2rem 0
    }
}

.c-content-faq-1__header:hover {
    color: hsl(224, calc(49% - 30%), calc(11% + 20%));
    color: hsl(var(--c-dark-h), calc(var(--c-dark-s) - 30%), calc(var(--c-dark-l) + 20%))
}

.c-content-faq-1__title {
    flex: 1 1 auto;
    line-height: 1.55
}

.c-content-faq-1__sub-title {
    margin-top: 10rem;
    padding-bottom: 1rem
}

@media (max-width: 47.999em) {
    .c-content-faq-1__sub-title {
        margin-top: 6rem
    }
}

.c-content-faq-1__button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: hsl(264, 87%, 33%);
    background: hsl(var(--c-base));
    border: 0;
    color: #fff;
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    flex: 0 0 auto;
    margin-left: 4rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    transition: background .15s ease,box-shadow .3s ease
}

    .c-content-faq-1__button::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0
    }

@media(min-width: 48em) {
    .c-content-faq-1__button::after {
        content: "";
        border-radius: 50%;
        background: hsl(264, 87%, 33%);
        background: hsl(var(--c-base));
        position: absolute;
        width: 3rem;
        height: 3rem;
        z-index: -1;
        transform: scale(1);
        transition: background .15s ease,transform .4s cubic-bezier(0.54, 0.55, 0.03, 0.79)
    }
}

@media (-ms-high-contrast: none),(-ms-high-contrast: active) {
    .c-content-faq-1__button::after {
        display: none
    }
}

.c-content-faq-1__button:hover {
    background: hsl( 264, 87%, calc(33% + 10%) );
    background: hsl( var(--c-base-h), var(--c-base-s), calc(var(--c-base-l) + 10%) )
}

@media(min-width: 48em) {
    .c-content-faq-1__button:hover::after {
        background: hsl( 264, 87%, calc(33% + 10%) );
        background: hsl( var(--c-base-h), var(--c-base-s), calc(var(--c-base-l) + 10%) );
        transform: scale(1.15)
    }
}

.c-content-faq-1__button:focus {
    background: hsl( 264, 87%, calc(33% + 5%) );
    background: hsl( var(--c-base-h), var(--c-base-s), calc(var(--c-base-l) + 5%) )
}

.c-content-faq-1__button[aria-expanded="true"] {
    background: hsl(264, 21%, 86%);
    background: hsl(var(--c-light));
    color: hsl(264, 87%, 33%);
    color: hsl(var(--c-base))
}

    .c-content-faq-1__button[aria-expanded="true"]::after {
        background: hsl(264, 21%, 86%);
        background: hsl(var(--c-light))
    }

.c-content-faq-1__icon {
    width: 1.5rem;
    height: 1.5rem
}

.c-content-faq-1__panel {
    padding-bottom: 3rem
}

    .c-content-faq-1__panel h1 {
        font-size: 2rem
    }

    .c-content-faq-1__panel h2 {
        font-size: 1.8rem
    }

    .c-content-faq-1__panel[aria-hidden="true"] {
        display: none
    }

.c-frame {
}

.c-frame__wrapper {
    position: relative;
    max-width: 960px;
    width: 100%;
    margin: auto;
    background: #fff;
    border-radius: 10px;
    padding: 0;
    box-shadow: 2px 2px 20px rgba(0,0,0,0.1);
    overflow: hidden
}

@media (max-width: 47.999em) {
    .c-frame__wrapper {
        padding: 4rem 2.5rem;
        padding: var(--m-large) var(--m-grid)
    }
}

.c-frame__wrapper--center {
    display: flex;
    align-items: center;
    justify-content: center
}

@media (max-width: 47.999em) {
    .c-frame__wrapper--mobile-blend {
        width: calc(100% + (2.5rem * 2));
        width: calc(100% + (var(--m-grid) * 2));
        left: calc(2.5rem * -1);
        left: calc(var(--m-grid) * -1);
        border-radius: 0;
        box-shadow: 2px 2px 15px rgba(0,0,0,0.05)
    }
}

.c-frame__explainer {
    color: hsla(224, 49%, 11%, 40%);
    color: hsla(var(--c-dark), 40%);
    text-transform: uppercase;
    font-weight: 700;
    font-weight: var(--fw-bold);
    font-size: 2.6rem;
    font-size: var(--fz-h4)
}

.l-container + .l-container.c-frame__container {
    margin-top: 6rem
}

@media (max-width: 47.999em) {
    .l-container + .l-container.c-frame__container {
        margin-top: 4rem
    }
}

.pplx-lightbox__container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    display: none
}

@-webkit-keyframes containerShow {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes containerShow {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes containerHide {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes containerHide {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@-webkit-keyframes itemShow {
    from {
        opacity: 0;
        transform: scale(0.9)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes itemShow {
    from {
        opacity: 0;
        transform: scale(0.9)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@-webkit-keyframes itemHide {
    from {
        opacity: 1;
        transform: scale(1)
    }

    to {
        opacity: 0;
        transform: scale(0.95)
    }
}

@keyframes itemHide {
    from {
        opacity: 1;
        transform: scale(1)
    }

    to {
        opacity: 0;
        transform: scale(0.95)
    }
}

.pplx-lightbox__scroll-container {
    position: relative;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    z-index: 10;
    width: 100%;
    height: 100%
}

.pplx-lightbox__item {
    position: relative;
    max-width: 1370px;
    width: 100%;
    background: #fff;
    color: #000;
    border-radius: 10px;
    margin: 70px auto 60px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15)
}

.pplx-lightbox__header {
    padding: 3rem 2rem 1rem
}

@media (min-width: 48em) {
    .pplx-lightbox__header {
        padding: 6rem 6rem 3rem 6rem
    }
}

.pplx-lightbox__content {
    padding: 2rem
}

@media (min-width: 48em) {
    .pplx-lightbox__content {
        padding: 6rem
    }
}

.pplx-lightbox__header + .pplx-lightbox__content {
    padding-top: 2rem
}

.pplx-lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: auto;
    left: auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2d1d3f;
    z-index: 10;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
    transition: all 0.2s ease-in-out
}

    .pplx-lightbox__close > * {
        transition: all 0.2s ease-in-out
    }

    .pplx-lightbox__close:hover, .pplx-lightbox__close:focus {
        background: rgba(45, 29, 63, 0.5)
    }

        .pplx-lightbox__close:hover > *, .pplx-lightbox__close:focus > * {
            transform: scale(1.1)
        }

.pplx-lightbox__background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8)
}

.vh {
    position: absolute !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden !important;
    clip: rect(1px,1px,1px,1px) !important
}

.c-pagestyle {
}

.c-pagestyle__holder {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start
}

.c-pagestyle__holder--bottom {
    bottom: 0;
    top: auto
}

.c-pagestyle__holder--right {
    justify-content: flex-end
}

    .c-pagestyle__holder--right > [class*="__item"] {
        transform: translateY(-60%) translateX(calc(100% - 18rem));
        margin-left: 0
    }

@media (min-width: 100em) {
    .c-pagestyle__holder--right > [class*="__item"] {
        transform: translateY(-50%) translateX(calc(100% - 8rem))
    }
}

@media (max-width: 47.999em) {
    .c-pagestyle__holder--right > [class*="__item"] {
        transform: translateY(-82%) translateX(20%)
    }
}

.c-pagestyle__wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    pointer-events: none
}

    .c-pagestyle__wrapper > *:first-child img {
        transition-delay: 0.6s
    }

    .c-pagestyle__wrapper > *:last-child img {
        transition-delay: 0.4s
    }

.c-pagestyle__wrapper--spacing-top {
    top: 18%
}

.c-pagestyle__item {
    width: 25rem;
    margin-left: -8rem;
    transform: translateY(50%);
    overflow: visible
}

    .c-pagestyle__item > img {
        transition-timing-function: ease-out;
        transition-duration: 0.3s
    }

@media (max-width: 47.999em) {
    .c-pagestyle__item {
        transform: translateY(10%);
        margin-left: -4rem;
        width: 15rem
    }
}

.c-pagestyle__item > img {
    transition-delay: 0.7s
}

.c-pagestyle__item--one {
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    width: 24rem;
    height: 70rem;
    transform: translateY(-35%);
    z-index: -1
}

@media (max-width: 47.999em) {
    .c-pagestyle__item--one {
        display: none
    }
}

@media (max-width: 99.999em) {
    .c-pagestyle__item--one {
        margin-left: -12rem
    }
}

@media (max-width: 79.999em) {
    .c-pagestyle__item--one {
        margin-left: -16rem
    }
}

.c-pagestyle__item--one > img {
    -o-object-fit: auto;
    object-fit: auto
}

.c-text-normal-1 {
}

.c-text-normal-1__article-content {
    max-width: 63rem;
    margin: auto
}

.c-header-message {
}

.c-header-message__container {
    background: hsl(264, 87%, 33%);
    background: hsl(var(--c-base));
    color: #fff
}

    .c-header-message__container + .l-container {
        margin-top: 0
    }

@media (min-width: 48em) {
    .c-header-message__container {
        position: -webkit-sticky;
        position: sticky;
        z-index: 20;
        top: 0
    }
}

.c-header-message__item {
    min-height: 6rem;
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.c-header-message__icon-wrap {
    display: inline-flex;
    align-items: center
}

    .c-header-message__icon-wrap > .l-icon {
        flex: 0 0 auto;
        margin-right: 2rem;
        margin-right: var(--m-base)
    }

@media (max-width: 47.999em) {
    .c-header-message__icon-wrap > .l-icon {
        display: none
    }
}

.c-header-message__column {
    flex: 0 0 auto
}

    .c-header-message__column + [class*="__column"] {
        margin-left: 4rem;
        margin-left: var(--m-large)
    }

    .c-header-message__column a[href] {
        color: inherit
    }

@media (max-width: 47.999em) {
    .c-header-message__column {
        font-size: 12px
    }
}

.c-header-message__column--shrink {
    flex: 1 1 auto
}

@media (min-width: 48em) {
    .c-header-message__button.btn {
        margin-top: -1rem;
        margin-bottom: -1rem
    }
}

@media (max-width: 47.999em) {
    .c-header-message__button.btn {
        padding: 0;
        background: transparent;
        min-height: 0;
        font-size: 12px
    }
}

.c-domeincheck {
}

.c-domeincheck__container {
    max-width: 62rem;
    margin: 0 auto;
    text-align: center
}

.c-domeincheck__holder {
    display: flex;
    height: 7rem;
    margin-top: 3.5rem
}

@media (max-width: 47.999em) {
    .c-domeincheck__holder {
        height: auto;
        display: -ms-grid;
        display: grid;
        grid-template-areas: "label input" "button button";
        -ms-grid-columns: auto 1fr;
        grid-template-columns: auto 1fr;
        -ms-grid-rows: 7rem;
        grid-template-rows: 7rem;
        grid-row-gap: 1rem
    }

        .c-domeincheck__holder > [class*="__label"] {
            grid-area: label
        }

        .c-domeincheck__holder > [class*="__input"] {
            grid-area: input
        }

        .c-domeincheck__holder > [class*="__button"] {
            -ms-grid-row: 1;
            -ms-grid-column: 3;
            grid-area: button
        }

    @media (max-width: 47.999em) {
        .c-domeincheck__holder > [class*="__label"] {
            -ms-grid-row: 1;
            -ms-grid-column: 1
        }

        .c-domeincheck__holder > [class*="__input"] {
            -ms-grid-row: 1;
            -ms-grid-column: 2
        }

        .c-domeincheck__holder > [class*="__button"] {
            -ms-grid-row: 3;
            -ms-grid-column: 1;
            -ms-grid-column-span: 2
        }
    }

    .c-domeincheck__holder > [class*="__side-nav"] {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
        -ms-grid-column-span: 2
    }
}

.c-domeincheck__label {
    padding: 0.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7rem 0 0 7rem;
    background: hsl(264, 21%, 86%);
    background: hsl(var(--c-light));
    order: 0;
    border: 2px solid hsl(264, 21%, 86%);
    border: 2px solid hsl(var(--c-light));
    border-right: 0;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.5);
    transition: border-color 0.2s ease
}

    .c-domeincheck__label[for] {
        cursor: pointer
    }

.c-domeincheck__input.form__input {
    height: 100%;
    border-radius: 0;
    border-left: 0;
    order: 1
}

@media (min-width: 48em) {
    .c-domeincheck__input.form__input {
        border-right: 0
    }
}

@media (max-width: 47.999em) {
    .c-domeincheck__input.form__input {
        border-radius: 0 7rem 7rem 0
    }
}

.c-domeincheck__input.form__input:focus ~ .btn::after, .c-domeincheck__input.form__input:focus ~ label {
    border-top-width: 2px;
    border-bottom-width: 2px;
    border-right-width: 2px;
    border-color: hsl( calc(264 + 10), 21%, calc(86% - 25%) );
    border-color: hsl( calc(var(--c-light-h) + 10), var(--c-light-s), calc(var(--c-light-l) - 25%) )
}

.c-domeincheck__input.form__input:focus ~ label {
    border-right-width: 0;
    border-left-width: 2px
}

.c-domeincheck__button {
    order: 2
}

@media (min-width: 48em) {
    .c-domeincheck__button {
        border-radius: 5rem !important;
        width: auto;
        flex: 0 0 auto;
        margin-top: 1rem;
        margin-right: 1rem;
        margin-bottom: 1rem;
        position: relative;
        margin-left: 1rem;
        order: 2
    }

        .c-domeincheck__button::after {
            background: #fff;
            content: "";
            width: calc(100% + 2rem);
            height: calc(100% + 2rem);
            position: absolute;
            left: -1rem;
            top: -1rem;
            right: 0;
            z-index: -1;
            border: 2px solid #dad4e3;
            border-radius: 0 7rem 7rem 0;
            border-left: 0;
            transition: border-color 0.2s ease
        }
}

.c-panelswitch {
}

.c-panelswitch__list {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0
}

@media (max-width: 47.999em) {
    .c-panelswitch__item {
        flex: 1 1 0%
    }
}

.c-panelswitch__item + [class*="__item"] {
    margin-left: calc(4rem * 2);
    margin-left: calc(var(--m-large) * 2)
}

@media (max-width: 47.999em) {
    .c-panelswitch__item + [class*="__item"] {
        margin-left: 2rem;
        margin-left: var(--m-base)
    }
}

.c-panelswitch__button {
    padding: 0 0 1.2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2rem;
    font-size: var(--fz-20);
    font-weight: 700;
    font-weight: var(--fw-bold);
    margin-top: 0 !important;
    color: inherit;
    background: transparent;
    height: 100%;
    border: 0;
    outline: 0;
    font-family: inherit;
    transition: color .2s ease
}

    .c-panelswitch__button[aria-selected="true"] {
        color: hsl(264, 87%, 33%);
        color: hsl(var(--c-base))
    }

        .c-panelswitch__button[aria-selected="true"]::after {
            border-color: currentColor
        }

    .c-panelswitch__button::after {
        content: "";
        width: 100%;
        margin-top: 1.4rem;
        border-bottom: 3px solid hsl(264, 21%, 86%);
        border-bottom: 3px solid hsl(var(--c-light));
        transition: all .2s ease
    }

    .c-panelswitch__button:hover {
        color: hsl(264, 87%, calc(33% - 10%));
        color: hsl(var(--c-base-h), var(--c-base-s), calc(var(--c-base-l) - 10%))
    }

    .c-panelswitch__button:focus {
        color: hsl(calc(264 - 10), 87%, calc(33% - 5%));
        color: hsl(calc(var(--c-base-h) - 10), var(--c-base-s), calc(var(--c-base-l) - 5%))
    }

        .c-panelswitch__button:focus::after {
            width: 10rem;
            max-width: 80%;
            border-color: currentColor
        }

@media (max-width: 47.999em) {
    .c-panelswitch__icon.l-icon {
        width: 4rem;
        height: 4rem
    }
}

.c-panelswitch__text {
    flex: 1 1 auto;
    display: flex;
    align-items: center
}

.c-panelswitch__panel-item {
    padding-top: 6rem
}

    .c-panelswitch__panel-item[aria-hidden="true"] {
        display: none
    }

.c-hosting-table {
}

.c-hosting-table__item {
    border-collapse: collapse;
    width: 100%
}

@media (max-width: 47.999em) {
    .c-hosting-table__item {
        overflow-x: auto;
        overflow-y: hidden;
        display: block;
        margin-left: calc(2.5rem * -1);
        margin-left: calc(var(--m-grid) * -1);
        width: calc(100% + 2.5rem * 2);
        width: calc(100% + var(--m-grid) * 2)
    }
}

.c-hosting-table__item thead th {
    font-size: 2.6rem;
    font-size: var(--fz-h4);
    height: 11rem;
    border-bottom: 2px solid hsl(264, 21%, 86%);
    border-bottom: 2px solid hsl(var(--c-light));
    padding: 2rem
}

    .c-hosting-table__item thead th:nth-of-type(even) {
        background: #fff
    }

    .c-hosting-table__item thead th:first-child {
        border-bottom: 0
    }

    .c-hosting-table__item thead th > span {
        color: hsl(332, 91%, 45%);
        color: hsl(var(--c-pink))
    }

.c-hosting-table__item tbody > tr > * {
    padding: 1rem 2rem
}

@media (min-width: 48em) {
    .c-hosting-table__item tbody > tr > * {
        padding: 1rem 4rem
    }
}

.c-hosting-table__item tbody > tr > th {
    font-weight: 400;
    text-align: right
}

@media (min-width: 48em) {
    .c-hosting-table__item tbody > tr > th {
        padding-left: 0;
        width: 100px;
        max-width: 300px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 1.4rem;
        font-size: var(--fz-14)
    }
}

.c-hosting-table__item tbody > tr > td {
    border-bottom: 2px solid hsl(264, 21%, 86%);
    border-bottom: 2px solid hsl(var(--c-light));
    text-align: center
}

    .c-hosting-table__item tbody > tr > td:nth-of-type(odd) {
        background: #fff
    }

.c-hosting-table__item tbody > tr:last-of-type * {
    border-bottom: 0
}

    .c-hosting-table__item tbody > tr:last-of-type *::after {
        content: "";
        display: block;
        height: 5rem
    }

.c-hosting-table__item tbody > tr.spacer > * {
    vertical-align: bottom;
    font-weight: 700;
    height: 8rem
}

.c-hosting-table__item tbody > tr.spacer > td {
    color: hsl(264, 21%, 86%);
    color: hsl(var(--c-light));
    font-size: 2.6rem;
    font-size: var(--fz-h4)
}

.c-hosting-table__item .c-optiontile__usp-icon-holder {
    margin: auto;
    top: 0;
    background: hsl(128, 57%, 56%);
    background: hsl(var(--c-alt))
}

.c-tld-optionlist {
}

.c-tld-optionlist__holder {
    overflow: hidden;
    position: relative;
    top: -2px
}

.c-tld-optionlist__list {
    counter-reset: list-counter;
    -moz-column-count: 1;
    column-count: 1;
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
    column-gap: 8rem;
    padding: 0;
    position: relative;
    margin: 0;
    top: 2px
}

@media (min-width: 48em) {
    .c-tld-optionlist__list {
        -moz-column-count: 3;
        column-count: 3
    }
}

.c-tld-optionlist__item {
    counter-increment: list-counter;
    list-style: none;
    display: flex;
    align-items: center;
    min-height: 7rem;
    border-bottom: 2px solid hsl(264, 21%, 86%);
    border-bottom: 2px solid hsl(var(--c-light));
    page-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid
}

    .c-tld-optionlist__item:last-of-type {
        border-bottom: 0
    }

.c-tld-optionlist__number {
    flex: 0 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

    .c-tld-optionlist__number::before {
        content: counter(list-counter);
        position: absolute;
        line-height: 1;
        font-weight: 700;
        font-weight: var(--fw-bold)
    }

.c-tld-optionlist__icon {
    color: hsl(48, 100%, 50%);
    color: hsl(var(--c-action))
}

.c-tld-optionlist__title {
    flex: 1 1 auto;
    margin-left: 5rem;
    font-weight: 700;
    font-weight: var(--fw-bold);
    display: inline-block
}

.c-tld-optionlist__title--nowrap {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.c-tld-optionlist__price {
    flex: 0 0 auto;
    margin-left: 2rem
}

.c-cookies {
}

.c-cookies__container {
    background: #fff;
    color: #000;
    position: fixed;
    top: auto;
    right: 1rem;
    bottom: 1rem;
    left: auto;
    z-index: 110;
    box-shadow: 15px 15px 35px rgba(0, 0, 0, 0.35);
    border-radius: 1.6rem;
    width: calc(100% - 2rem);
    font-size: var(--fz-12);
    opacity: 0;
    -webkit-animation: showHideCookies .6s 1s cubic-bezier(0.07, 0.63, 0.21, 1.01) forwards;
    animation: showHideCookies .6s 1s cubic-bezier(0.07, 0.63, 0.21, 1.01) forwards;
    pointer-events: none;
    display: none
}

    .c-cookies__container[aria-hidden="false"] {
        display: block;
        pointer-events: auto
    }

@media (min-width: 48em) {
    .c-cookies__container {
        right: 4rem;
        bottom: 4rem;
        max-width: 32vw;
        width: auto
    }
}

@media (min-width: 100em) {
    .c-cookies__container {
        font-size: 1.4rem;
        font-size: var(--fz-14)
    }
}

.c-cookies__content {
    padding: 1rem;
    padding: var(--m-small);
    width: auto;
    max-width: none
}

@media (max-width: 47.999em) {
    .c-cookies__content {
        padding: 2rem;
        padding: var(--m-base)
    }
}

.c-cookies__container--fullscreen {
    top: 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch
}

    .c-cookies__container--fullscreen > [class*="__content"] {
        margin-bottom: 4rem
    }

.c-cookies__grid {
    display: flex;
    align-items: center
}

@media (max-width: 47.999em) {
    .c-cookies__grid {
        flex-direction: column
    }
}

.c-cookies__grid > * + * {
    margin-left: 2rem
}

.c-cookies__right {
    flex: 0 0 auto
}

@media (max-width: 47.999em) {
    .c-cookies__right {
        width: 100%;
        margin: 0
    }
}

.c-cookies__button.btn {
    width: 100%;
    margin: 0;
    padding: 1rem 2rem;
    text-align: center;
    min-height: 0;
    justify-content: center
}

@media (min-width: 48em) {
    .c-cookies__button.btn + [class*="btn"] {
        margin-top: 1rem
    }
}

@media (max-width: 47.999em) {
    .c-cookies__button.btn + [class*="btn"] {
        margin-left: 1rem
    }
}

@media (min-width: 48em) {
    .c-cookies__cookietext__holder {
        padding: 2rem
    }
}

@media (max-width: 47.999em) {
    .c-cookies__cookietext__holder {
        padding-bottom: 2rem
    }
}

@media screen and (max-width: 600px) {
    .c-cookies__cookietext__holder {
        max-height: 50vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch
    }
}

.c-cookies__buttoncontainer {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%
}

@media (max-width: 47.999em) {
    .c-cookies__buttoncontainer {
        flex-direction: row
    }
}

@-webkit-keyframes showHideCookies {
    0% {
        opacity: 0;
        transform: translateY(30px)
    }

    100% {
        opacity: 1;
        transform: translateY(0px)
    }
}

@keyframes showHideCookies {
    0% {
        opacity: 0;
        transform: translateY(30px)
    }

    100% {
        opacity: 1;
        transform: translateY(0px)
    }
}

html {
    overflow-y: scroll;
    min-height: 100vh;
    box-sizing: border-box
}

@media (max-width: 47.999em) {
    html.is-locked {
        position: fixed;
        overflow: hidden;
        max-height: 100%
    }
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
   
    position: relative;
    background: hsl(266, 37%, 96%);
    background: hsl(var(--c-lighter))
}

main {
    width: 100%;
    position: relative;
    outline: 0;
    overflow: hidden;
}

@media (min-width: 48em) {
    main {
        z-index: var(--z-base)
    }
}

*, *:before, *:after {
    box-sizing: inherit
}

.vh {
    position: absolute;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px)
}

.skip-link {
    position: absolute;
    top: 0;
    left: -9999px;
    z-index: 10001;
    padding: 0.5rem 1rem;
    background: @base;
    color: #fff
}

    .skip-link:focus {
        left: 0
    }

.ta-right {
    text-align: right
}

.js-viewport > * {
    transform: translateY(4rem);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0, 0.6, 0.05, 1)
}

    .js-viewport > *:nth-child(2n) {
        transform: translateY(-4rem);
        transition-delay: 0.3s
    }

.js-viewport.s-inview > * {
    transform: translateY(0rem);
    opacity: 1
}

@media (max-width: 47.999em) {
    [data-hide-on-mobile="true"] {
        display: none
    }
}

.btn {
    font-family: "Poppins",-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
    font-family: var(--font-base);
    font-size: 1.6rem;
    font-size: var(--fz-16);
    border: 0;
    min-height: 5rem;
    width: auto;
    background: hsl(264, 87%, 33%);
    background: hsl(var(--c-base));
    color: #fff;
    display: inline-flex;
    align-items: center;
    padding: 1rem 3rem;
    font-weight: 700;
    font-weight: var(--fw-bold);
    border-radius: 5rem;
    text-decoration: none;
    transition: background .15s ease;
    line-height: 1.3;
    word-break: break-all;
    word-break: break-word
}

@media (-ms-high-contrast: none),(-ms-high-contrast: active) {
    .btn {
        height: 5rem
    }
}

@media (max-width: 47.999em) {
    .btn {
        width: 100%;
        text-align: center;
        justify-content: center
    }
}

.btn:hover {
    background: hsl(264, 87%, calc(33% + 10%));
    background: hsl(var(--c-base-h), var(--c-base-s), calc(var(--c-base-l) + 10%))
}

.btn:focus {
    background: hsl(264, 87%, calc(33% + 5%));
    background: hsl(var(--c-base-h), var(--c-base-s), calc(var(--c-base-l) + 5%))
}

.btn--action {
    background: hsl(48, 100%, 50%);
    background: hsl(var(--c-action));
    color: hsl(224, 49%, 11%);
    color: hsl(var(--c-dark))
}

    .btn--action:hover {
        background: hsl(calc(48 - 4), 100%, calc(50% + 5%));
        background: hsl(calc(var(--c-action-h) - 4), var(--c-action-s), calc(var(--c-action-l) + 5%))
    }

    .btn--action:focus {
        background: hsl(calc(48 - 5), 100%, 50%);
        background: hsl(calc(var(--c-action-h) - 5), var(--c-action-s), var(--c-action-l))
    }

.btn--dark {
    background: hsl(224, 49%, 11%);
    background: hsl(var(--c-dark))
}

    .btn--dark:hover {
        background: hsl(224, 49%, calc(11% + 10%));
        background: hsl(var(--c-dark-h), var(--c-dark-s), calc(var(--c-dark-l) + 10%))
    }

    .btn--dark:focus {
        background: hsl(224, 49%, calc(11% + 5%));
        background: hsl(var(--c-dark-h), var(--c-dark-s), calc(var(--c-dark-l) + 5%))
    }

.btn--line {
    background: transparent;
    border: 2px solid #fff
}

    .btn--line:hover {
        background: hsl(264, 87%, 33%);
        background: hsl(var(--c-base))
    }

.btn--line-dark {
    background: transparent;
    color: hsl(224, 49%, 11%);
    color: hsl(var(--c-dark));
    border: 2px solid currentColor
}

    .btn--line-dark:hover {
        background: #fff
    }

    .btn--line-dark.s-active {
        color: #fff
    }

        .btn--line-dark.s-active:hover {
            background: transparent
        }

.btn--underline {
    text-decoration: underline
}

.btn-blend {
    border: 0;
    font-family: "Poppins",-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
    font-family: var(--font-base);
    font-size: 1.6rem;
    font-size: var(--fz-16);
    font-weight: 700;
    font-weight: var(--fw-bold);
    padding: 0;
    display: inline-block;
    -webkit-appearance: none;
    background: transparent;
    color: hsl(264, 87%, 33%);
    color: hsl(var(--c-base));
    transition: all .15s ease
}

    .btn-blend:hover {
        color: hsl(264, 87%, calc(33% + 10%));
        color: hsl(var(--c-base-h), var(--c-base-s), calc(var(--c-base-l) + 10%))
    }

    .btn-blend:focus {
        color: hsl(264, 87%, calc(33% + 5%));
        color: hsl(var(--c-base-h), var(--c-base-s), calc(var(--c-base-l) + 5%))
    }

.btn-blend--underline {
    text-decoration: underline
}

    .btn-blend--underline:hover, .btn-blend--underline:focus {
        text-decoration: none
    }

button[class] {
    cursor: pointer
}

html {
    font-size: 56.25%
}

@media (min-width: 48em) {
    html {
        font-size: 40%
    }
}

@media (min-width: 64em) {
    html {
        font-size: 50%
    }
}

@media (min-width: 80em) {
    html {
        font-size: 62.5%
    }
}

body {
    font-family: var(--font-family);
    font-size: 1.6rem;
    font-size: var(--fz-16);
    line-height: 1.625;
    font-family: "Poppins",-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
    font-family: var(--font-base)
}
/* BASIC TEXT STYLING */

strong, .bold {
    font-weight: 700;
    font-weight: var(--fw-bold)
}

em, i, .italic {
    font-style: italic
}

a:not([class]) {
    color: currentColor;
    text-decoration: underline
}

ul:not([class]), ol:not([class]) {
    padding-left: 1.6rem
}

a, button {
    cursor: pointer
}

    a[href^="tel:"] {
        text-decoration: none;
        cursor: none
    }

.text-center {
    text-align: center
}

@media (max-width: 47.999em) {
    .link-mobile-block {
        display: block
    }
}
/* HEADINGS */

h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins",-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
    font-family: var(--font-base);
    font-weight: 700;
    font-weight: var(--fw-bold);
    line-height: 1.14;
    margin: 0;
    position: relative
}

h1, .h1 {
    font-size: 7rem;
    font-size: var(--fz-h1)
}

h2, .h2 {
    font-size: 5rem;
    font-size: var(--fz-h2)
}

h3, .h3 {
    font-size: 3.6rem;
    font-size: var(--fz-h3)
}

h4, .h4 {
    font-size: 2.6rem;
    font-size: var(--fz-h4)
}

.line-height--lg {
    position: relative;
    top: -.15em;
    line-height: 1.4
}

.color-base {
    color: hsl(264, 87%, 33%);
    color: hsl(var(--c-base))
}

.color-alt {
    color: hsl(128, 57%, 56%);
    color: hsl(var(--c-alt))
}

.color-pink {
    color: hsl(332, 91%, 45%);
    color: hsl(var(--c-pink))
}

.fz-20 {
    font-size: 2rem;
    font-size: var(--fz-20)
}
/* RESET ITEMS */

main:focus {
    outline: 0
}

p:empty {
    display: none;
    margin: 0
}

.rte h1, .rte .h1, .rte h2, .rte .h2 {
    color: hsl(264, 87%, 33%);
    color: hsl(var(--c-base))
}

    .rte h1.keep-color, .rte .h1.keep-color, .rte h2.keep-color, .rte .h2.keep-color {
        color: inherit
    }

.rte p + h2, .rte p + h3, .rte p + h4 {
    margin-top: 4rem;
    margin-top: var(--m-large)
}

.rte ul:not([class]) {
    list-style: none;
    padding: 0
}

    .rte ul:not([class]) li {
        display: flex
    }

        .rte ul:not([class]) li::before {
            content: "";
            width: 8px;
            height: 8px;
            top: 8px;
            position: relative;
            flex: 0 0 auto;
            display: block;
            border-radius: 50%;
            margin-right: 1.2rem;
            background: hsl(264, 87%, 33%);
            background: hsl(var(--c-base))
        }

        .rte ul:not([class]) li + li {
            margin-top: 1rem
        }

.rte--sm {
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto
}

.rte--md {
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto
}

.rte--lg {
    max-width: 85rem;
    margin-left: auto;
    margin-right: auto
}

.rte--xl {
    max-width: 95rem;
    margin-left: auto;
    margin-right: auto
}

.rte--white {
    color: #fff
}

    .rte--white h1, .rte--white .h1, .rte--white h2, .rte--white .h2 {
        color: inherit
    }
/*  RESET FONT-SIZE TO DISABLE ZOOM ON IPHONE WHEN INPUT IS SELECTED */

@media (max-width: 47.999em) {
    input[type="text"], input[type="search"], input[type="tel"], input[type="email"], input[type="date"], input[type="number"], input[type="password"], textarea, select {
        font-size: 16px
    }
}

.l-icon {
    height: 100%;
    width: 100%;
    display: inline-block;
    fill: #000;
    fill: currentColor;
    display: inline-block;
    vertical-align: -0.1em /* Icon sizes */ /* Rotate icons */ /* Spinner */
}

.l-icon--xs {
    width: 1.2rem;
    height: 1.2rem
}

.l-icon--sm {
    width: 1.4rem;
    height: 1.4rem
}

.l-icon--md {
    width: 1.8rem;
    height: 1.8rem
}

.l-icon--mid {
    width: 2.4rem;
    height: 2.4rem
}

.l-icon--lg {
    width: 3rem;
    height: 3rem
}

.l-icon--xl {
    width: 6rem;
    height: 6rem
}

.l-icon--rotate-90 {
    transform: rotate(90deg)
}

.l-icon--rotate-90--neg {
    transform: rotate(-90deg)
}

.l-icon--rotate-180 {
    transform: rotate(180deg)
}

.l-icon--flip-y {
    transform: scaleY(-1)
}

.l-icon--flip-x {
    transform: scaleX(-1)
}

.l-icon--flip-and-rotate {
    transform: rotate(90deg) scaleX(-1)
}

.l-icon--rotate-animation {
    -webkit-animation: animationRotate360 1.4s cubic-bezier(0.79, 0.37, 0.17, 0.65) infinite;
    animation: animationRotate360 1.4s cubic-bezier(0.79, 0.37, 0.17, 0.65) infinite
}

.l-icon__wrap {
    display: flex;
    align-items: center
}

    .l-icon__wrap > .l-icon {
        flex: 1 0 auto;
        position: relative;
        top: 1px
    }

        .l-icon__wrap > .l-icon:first-child {
            margin-left: -1rem;
            margin-right: 1.6rem
        }

        .l-icon__wrap > .l-icon:last-child {
            margin-left: 1.6rem;
            margin-right: -1rem
        }

@media (max-width: 47.999em) {
    .l-icon__wrap > .l-icon:first-child {
        margin-right: 0.6rem
    }

    .l-icon__wrap > .l-icon:last-child {
        margin-left: 0.6rem
    }
}

.l-icon__wrap.btn > .l-icon:first-child {
    margin-left: -1rem
}

.l-icon__wrap.btn > .l-icon:last-child {
    margin-right: -1rem
}

.l-icon__wrap > span:not(.l-icon) {
    width: 100%
}

.l-icon__wrap--align-start {
    align-items: flex-start;
    .l-icon

{
    top: 6px
}

}

@-webkit-keyframes animationRotate360 {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes animationRotate360 {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

input, select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important
}

    input::-webkit-inner-spin-button {
        -webkit-appearance: none !important;
        appearance: none !important
    }

    select::-ms-expand {
        display: none !important
    }

select {
    background-position: right 1rem center;
    background-position: right var(--m-small) center;
    background-repeat: no-repeat;
    background-size: 10px 10px;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxhYWdfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA0MCA0MCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDAgNDA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj48Zz48ZyBpZD0iY2hldnJvbi1yaWdodF8xNF8iPjxwb2x5Z29uIHBvaW50cz0iMzksMTIuNyAzNC42LDguMyAyMCwyMi44IDUuNCw4LjMgMSwxMi43IDIwLDMxLjcgIi8+PC9nPjwvZz48L3N2Zz4=)
}

.form {
}

.form__flex {
    display: flex
}

.form__element {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 60rem;
    align-items: flex-start
}

    .form__element > * {
        width: 100%
    }

.form__row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%
}

    .form__row > * + * {
        margin-top: 0.4rem
    }

.form__row--center {
    align-items: center
}

.form__row--button {
    padding: 0 2rem;
    padding: 0 var(--m-base)
}

@media (min-width: 48em) {
    .form__row--button {
        margin-top: 4rem;
        margin-top: var(--m-large)
    }
}

.form__item {
    display: flex;
    width: 100%
}

    .form__item > .form__input {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        flex: 1 1 auto
    }

.form__extensionbox {
    background: hsl(264, 21%, 86%);
    background: hsl(var(--c-light));
    width: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    font-size: var(--fz-16);
    font-weight: 700;
    font-weight: var(--fw-bold);
    color: hsl(224, 49%, 11%);
    color: hsl(var(--c-dark))
}

    .form__extensionbox:last-child {
        border-top-right-radius: 0.6rem;
        border-bottom-right-radius: 0.6rem
    }

.form__label {
    width: 100%;
    font-weight: 700;
    font-weight: var(--fw-bold);
    display: block
}

.form__input {
    width: 100%;
    height: 6rem;
    border: 2px solid hsl(264, 21%, 86%);
    border: 2px solid hsl(var(--c-light-h), var(--c-light-s), var(--c-light-l));
    font-size: 1.6rem;
    font-size: var(--fz-16);
    padding: 0.5rem calc(1rem + 2rem);
    padding: 0.5rem calc(var(--m-small) + var(--m-base));
    font-family: var(--font-title);
    border-radius: 0.6rem;
    outline: 0;
    transition: border-color .2s ease;
    line-height: normal
}

    .form__input:focus {
        border-color: hsl(calc(264 + 10), 21%, calc(86% - 25%));
        border-color: hsl(calc(var(--c-light-h) + 10), var(--c-light-s), calc(var(--c-light-l) - 25%))
    }

    .form__input::-webkit-input-placeholder {
        color: hsla(224, 49%, 11%, 0.5);
        color: hsla(var(--c-dark-h), var(--c-dark-s), var(--c-dark-l), 0.5)
    }

    .form__input::-moz-placeholder {
        color: hsla(224, 49%, 11%, 0.5);
        color: hsla(var(--c-dark-h), var(--c-dark-s), var(--c-dark-l), 0.5)
    }

    .form__input:-ms-input-placeholder {
        color: hsla(224, 49%, 11%, 0.5);
        color: hsla(var(--c-dark-h), var(--c-dark-s), var(--c-dark-l), 0.5)
    }

    .form__input::-ms-input-placeholder {
        color: hsla(224, 49%, 11%, 0.5);
        color: hsla(var(--c-dark-h), var(--c-dark-s), var(--c-dark-l), 0.5)
    }

    .form__input::placeholder {
        color: hsla(224, 49%, 11%, 0.5);
        color: hsla(var(--c-dark-h), var(--c-dark-s), var(--c-dark-l), 0.5)
    }

    .form__input.input-validation-error {
        border-color: red
    }

    .form__input.valid {
        border-color: green
    }

    .form__input + .btn {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0
    }

.form__input--textarea {
    height: auto;
    min-height: 6rem;
    padding-top: 1.6rem
}

.form__checkbox__label {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer
}

    .form__checkbox__label::before {
        content: "";
        width: 2.4rem;
        height: 2.4rem;
        display: inline-block;
        background: #f8f9ff;
        margin-right: 1.4rem;
        border-radius: 5px;
        border: 2px solid var(--base)
    }

    .form__checkbox__label::after {
        content: "";
        width: 2.4rem;
        height: 2.4rem;
        display: inline-block;
        background: var(--base);
        margin-right: 1.4rem;
        border-radius: 5px;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: auto;
        margin: auto 0;
        opacity: 0;
        transform: scale(0);
        transition: all 0.2s ease-in-out
    }

    .form__checkbox__label:hover::before {
        background: color-mod(var(--base) a(0.1))
    }

.form__checkbox__input:checked + [class*="checkbox__label"]::after {
    opacity: 1;
    transform: scale(0.5)
}

.form__checkbox__input:focus + [class*="checkbox__label"]::before {
    border-width: 3px
}

.form__radio-list {
    background: #fff;
    height: 5rem;
    display: flex;
    flex-direction: row;
    padding: 0;
    position: relative
}

    .form__radio-list > label ~ label {
        left: 2px
    }

    .form__radio-list input[type="radio"] {
        width: 0px;
        height: 0px;
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0
    }

        .form__radio-list input[type="radio"]:checked + label {
            background: hsl(264, 87%, 33%);
            background: hsl(var(--c-base));
            box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
            color: #fff
        }

            .form__radio-list input[type="radio"]:checked + label [class*="radio-box"] {
                background: rgba(255,255,255,0.25);
                border-color: #fff
            }

                .form__radio-list input[type="radio"]:checked + label [class*="radio-box"]::before {
                    opacity: 1;
                    transform: scale(1)
                }

        .form__radio-list input[type="radio"]:focus + label {
            background: hsl(264, 87%, calc(33% + 5%));
            background: hsl(var(--c-base-h), var(--c-base-s), calc(var(--c-base-l) + 5%))
        }

            .form__radio-list input[type="radio"]:focus + label::after {
                opacity: 0.4;
                transform: scaleX(1);
                transition: all .6s .2s cubic-bezier(0, 0.54, 0.32, 0.97)
            }

.form__radio-label {
    width: 100%;
    flex: 1;
    height: calc(100% + 4px);
    top: -2px;
    left: -2px;
    bottom: -2px;
    margin-top: 0;
    border-radius: 0.7rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease
}

    .form__radio-label::after {
        content: "";
        width: 50%;
        height: 2px;
        display: block;
        position: absolute;
        background: hsl(264, 87%, 33%);
        background: hsl(var(--c-base));
        bottom: -5px;
        border-radius: 4rem;
        opacity: 0;
        transform: scaleX(0.8);
        transition: all .3s ease-in
    }

.form__radio-box {
    width: 2rem;
    height: 2rem;
    position: relative;
    background: hsl(266, 37%, 96%);
    background: hsl(var(--c-lighter));
    border-radius: 50%;
    margin-right: 1rem;
    border: 2px solid hsl(264, 21%, 86%);
    border: 2px solid hsl(var(--c-light))
}

    .form__radio-box::before {
        content: "";
        width: 1rem;
        height: 1rem;
        border-radius: 50%;
        background: #fff;
        margin: auto;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        opacity: 0;
        transform: scale(0.6);
        transition: all .2s ease,transform .6s cubic-bezier(0.5, 0.49, 0, 1.01)
    }

.form__cb-parent {
    padding: 0;
    border: 0
}

.form__cb-wrapper {
    display: flex;
    width: 100%
}

.form__cb-item {
    position: relative;
    overflow: hidden;
    flex: 1;
    text-align: center;
    border: 1px solid var(--light);
    min-width: 25%
}

    .form__cb-item + @element cb-item {
        border-left: 0
    }

.form__cb-input {
    position: absolute;
    right: 100%;
    bottom: 100%
}

.form__cb-label {
    padding: 1rem 2rem;
    padding: var(--m-small) var(--m-base);
    display: block
}

.form__cb-input:checked ~ @element cb-label {
    background: var(--base);
    color: #fff
}

.form__error {
    color: var(--error)
}

.form__errorlist {
    color: var(--error)
}

    .form__errorlist ul {
        list-style: none;
        padding: 0
    }

.form__input-holder {
    display: flex;
    width: 100%
}

    .form__input-holder > *:first-child:not(:last-child) {
        border-radius: 0.6rem 0 0 0.6rem
    }

    .form__input-holder > *:last-child:not(:first-child) {
        border-radius: 0 0.6rem 0.6rem 0;
        border-left: 0
    }

    .form__input-holder > *:not(:first-child):not(:last-child) {
        border-radius: 0
    }

.form__tile {
    display: flex;
    align-items: center;
    background: transparent;
    padding: 14px;
    border: 1px solid var(--border-gray)
}

.form__radio-list__item {
    flex: 1;
    padding: 15px 10px 15px 12px;
    margin: 0;
    border-radius: 0.6rem;
    border: 1px solid var(--border-gray);
    font-family: var(--font-title);
    transition: all 0.2s ease-in-out
}

@media (min-width: 48em) {
    .form__radio-list__item {
        padding: 20px 10px 20px 25px
    }
}

.form__radio-list__item:first-of-type:not(:last-of-type) {
    border-radius: 0.6rem 0 0 0.6rem
}

.form__radio-list__item:last-of-type:not(:first-of-type) {
    border-radius: 0 0.6rem 0.6rem 0
}

.form__radio-list__item:not(:first-of-type):not(:last-of-type) {
    border-radius: 0
}

@media (max-width: 79.999em) {
    .c-submit-form__form--header .btn > span {
        display: none
    }

    .c-submit-form__form--header .btn > svg {
        margin-left: 0 !important
    }
}

@media (max-width: 47.999em) {
    input, select {
        font-size: 16px !important
    }
}

.c-wizard {
}

.c-wizard__wrapper {
    display: none;
}

    .c-wizard__wrapper h3 {
        color: hsl(264, 87%, 33%);
        color: hsl(var(--c-base));
    }

.c-wizard__content {
    display: flex;
    flex-flow: row wrap;
}

    .c-wizard__content input[type="radio"] {
        width: 0px;
        height: 0px;
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0;
    }

        .c-wizard__content input[type="radio"]:checked + label {
            border-color: transparent;
            box-shadow: 0 0 0 2px hsl(128, 57%, 56%);
            box-shadow: 0 0 0 2px hsl(var(--c-alt));
            opacity: 1;
        }

            .c-wizard__content input[type="radio"]:checked + label:before {
                background: hsl(128, 57%, 56%);
                background: hsl(var(--c-alt));
                border-color: #FFF;
            }

    .c-wizard__content.s-done label {
        opacity: .5;
    }

.c-wizard__intro {
    font-weight: 600;
}

.c-wizard__item-title span {
    color: hsl(264, 87%, 33%);
    color: hsl(var(--c-base));
}

.c-wizard__item {
    position: relative;
    flex: 1;
    padding: 4rem 4rem 4rem 10rem;
    font-weight: 600;
    border-radius: 1rem;
    border: 1px solid hsl(264, 21%, 86%);
    border: 1px solid hsl(var(--c-light));
    -ms-grid-row-align: start;
    align-self: start;
    height: 100%;
    background: #FFF;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    font-size: 2rem;
    font-size: var(--fz-20);
    cursor: pointer;
    transition: all .3s ease;
    margin-bottom: 1.5rem;
    min-width: 100%;
}

    .c-wizard__item:before {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 4rem;
        width: 4rem;
        height: 4rem;
        border-radius: 50%;
        background: hsl(266, 37%, 96%);
        background: hsl(var(--c-lighter));
        border: 2px solid hsl(264, 21%, 86%);
        border: 2px solid hsl(var(--c-light));
        transition: all .2s ease,transform .6s cubic-bezier(0.5, 0.49, 0, 1.01);
    }

@media (min-width: 48em) {
    .c-wizard__item {
        margin: 0 1.5rem;
        min-width: unset;
    }
}

.c-wizard__item--package {
    padding: 4rem;
    text-align: center;
}

    .c-wizard__item--package:before {
        content: '';
        position: absolute;
        right: 2rem;
        top: 2rem;
        width: 3rem;
        height: 3rem;
        transform: none;
        left: auto;
    }

@media (max-width: 47.999em) {
    .c-wizard__item--package {
        min-width: 100%;
    }

        .c-wizard__item--package:not(:last-child) {
            margin-bottom: 4rem;
        }
}

.c-wizard__list {
    text-align: left;
    padding-left: 2rem;
    font-size: 1.6rem;
    font-size: var(--fz-16);
}

.c-wizard__icon-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.4rem;
    font-size: 1.2rem;
}

.c-wizard__icon-holder--small {
    font-size: 1rem;
}

.c-wizard__icon-single {
    position: relative;
    display: flex;
    color: #FFF;
}

    .c-wizard__icon-single > .l-icon:not([class*="icon-shape"]) {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        width: 1em;
        height: 1em;
        color: inherit;
    }

@media (min-width: 48em) {
    .c-wizard__icon-single > .l-icon:not([class*="icon-shape"]) {
        width: 2.5em;
        height: 2.5em;
    }
}

.c-wizard__icon-single + [class*="icon-single"] {
    margin-left: 1.5em;
}

@media (min-width: 48em) {
    .c-wizard__icon-single + [class*="icon-single"] {
        margin-left: 2.75em;
    }
}

.c-wizard__icon-single + [class*="icon-single"]::before {
    content: "+";
    width: 1.5em;
    position: absolute;
    left: -1.5em;
    text-align: center;
    font-weight: 700;
    font-size: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

@media (min-width: 48em) {
    .c-wizard__icon-single + [class*="icon-single"]::before {
        font-size: 2em;
        left: -1.375em;
        width: 1.375em;
    }
}

.c-wizard__icon-single--action {
    color: hsl(224, 49%, 11%);
    color: hsl(var(--c-dark));
}

.c-wizard__icon-shape, .c-wizard__icon-shape.l-icon {
    width: 2.25em;
    height: 2.25em;
}

@media (min-width: 48em) {
    .c-wizard__icon-shape, .c-wizard__icon-shape.l-icon {
        width: 5.6em;
        height: 5.6em;
    }
}

.c-wizard__icon-shape {
    color: hsl(264, 87%, 33%);
    color: hsl(var(--c-base));
}

.c-wizard__icon-shape--action {
    color: hsl(48, 100%, 50%);
    color: hsl(var(--c-action));
}

.c-wizard__icon-shape--pink {
    color: hsl(332, 91%, 45%);
    color: hsl(var(--c-pink));
}

.c-wizard__icon-shape--dark {
    color: hsl(224, 49%, 11%);
    color: hsl(var(--c-dark));
}

.c-wizard__price-holder {
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 1.4rem;
    font-size: var(--fz-14);
    text-align: center;
    font-weight: 700;
    font-weight: var(--fw-bold);
    line-height: 1.14;
}

.c-wizard__price-sub {
    font-weight: 400;
    font-weight: var(--fw-base);
    display: inline-block;
    margin-top: 0.6rem;
    line-height: 1.4;
}

.c-wizard__price-sub--space {
    margin-top: 1.2rem;
}

/*# sourceMappingURL=style.css.map */
