* {
    box-sizing: border-box;
}

@font-face {
    font-family: zable-icons;
    src: url('fonts/icons.c4e4e3df664348ef.woff2') format('woff2');
}

.css-104wi4v {
    font-style: normal;
    font-family: zable-icons;
}

@font-face {
    font-family: Camphor;
    src: url(/static/fonts/camphor-light-italic.woff2) format("woff2");
    font-weight: 100;
    font-style: italic
}

@font-face {
    font-family: Camphor;
    src: url(/static/fonts/camphor-light.woff2) format("woff2");
    font-weight: 100;
    font-style: normal
}

@font-face {
    font-family: Camphor;
    src: url(/static/fonts/camphor-regular-italic.woff2) format("woff2");
    font-weight: 400;
    font-style: italic
}

@font-face {
    font-family: Camphor;
    src: url(/static/fonts/camphor-regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: Camphor;
    src: url(/static/fonts/camphor-medium.woff2) format("woff2");
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: Camphor;
    src: url(/static/fonts/camphor-medium-italic.woff2) format("woff2");
    font-weight: 700;
    font-style: italic
}

html {
    background: var(--dark-background);
}

html, body {
    margin: 0;
}

.container {
    margin-left: auto;
    margin-right: auto;
    padding: 0 1em;
    max-width: 1000px;
}

.container--small {
    max-width: 600px;
}

.page {
    font-size: 16px;
    font-family: Camphor, sans-serif;
    font-weight: 300;

    display: flex;
    flex-direction: column;
}

.page > footer:last-child {
    /* Sink footer to bottom of page, even on short pages */
    margin-top: auto;
}

.page a {
    color: var(--light-text);
}

:root {
    --dark-background: #192649;
    --dark-text: rgb(240, 245, 249);

    --light-background: rgb(240, 245, 249);
    --light-text: #192649;

    --link-text: rgb(252, 126, 71);
}

/**
 * Typography
 */
h1, h2, h3, h4, h5, h6 { margin: 0; }

h1 { font-size: 2.375em; /* 38px */ font-weight: 700; }
h2 { font-size: 2.063em; /* 33px */ }
h3 { font-size: 1.75em; /* 28px */ }
h4 { font-size: 1.438em; /* 23px */ }
h5 { font-size: 1.438em; /* 18px */ }

/**
 * Blocks
 */
section {
    padding: 3rem 0;
}

.section--light {
    background: var(--light-background);
    color: var(--light-text);
}

.section--light a {
    color: var(--link-text);
}

.section--dark {
    background: var(--dark-background);
    color: var(--dark-text);
}

.section--dark a {
    color: var(--link-text);
}

/**
 * Logo
 */
.logo {
    padding: 1rem;
    margin-right: auto;
    display: inline-block;
}

.logo img {
    display: inline-block;

    width: 100%;
    max-width: 120px;
}

/**
 * Header bar
 */
.masthead {
    background: var(--dark-background);
    color: var(--dark-text);
}

.masthead .container {
    display: flex;
    padding: 0.5rem;
    align-items: center;
    justify-content: space-between;
}

.masthead nav a {
    background: rgba(255,255,255,0);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 0.25rem;
    color: rgba(255,255,255,0.75);
    display: block;
    font-size: 0.8125em;
    padding: 0.5rem 1rem;
    text-decoration: none;
    transition: background 0.25s ease-in-out, color 0.25s ease-in-out;
}

.masthead nav a:hover {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,1);
}

.masthead a {
    color: var(--dark-text);
    text-decoration: none;
}

@media(max-width: 530px) {
    .masthead .logo {
        margin-right: 0;
    }
}

.header-trustpilot {
    display: flex;
    align-items: center;
    margin-right: 1.50rem;
}

.header-trustpilot-stars {
    margin-right: 0.50rem; /* Spacing between stars and reviews text */
}

/**
 * Site footer
 */
.footer {
    background: black;
    color: white;
    padding-top: 2rem;
    padding-bottom: 5rem;
}

.footer .container {
    display: flex;
    flex-direction: row;
    min-width: 0;
}

.footer aside {
    flex-basis: 100%;
    text-align: center;
}

.footer .copy {
    font-size: 0.875em;
}

.footer .social-links {
    padding: 0 1rem;
    white-space: nowrap;
}

.footer .logo {
    padding: 0.5rem 1rem 0;
}

.footer .social-links .social {
    background: white;
    border-radius: 0.25rem;
    color: black;
    display: inline-block;
    padding: 0 0.25rem 0.15rem;
    text-decoration: none;
    font-size: 1.563em;
    margin: 0.5rem 0.15rem;
}

.footer .legal {
    font-size: 0.813em;
    color: rgb(179, 179, 179);
}

.footer nav a {
    color: white;
    text-decoration: none;
    font-size: 0.9em;
    margin-right: 0.25rem;
    white-space: nowrap;
}

/**
 * Place reviews text below stars in narrow viewports
 */
@media(max-width: 530px) {
    .header-trustpilot {
        flex-direction: column;
        align-self: end;
        margin-bottom: 0.40rem;
        margin-right: 0;
    }

    .header-trustpilot-stars {
        padding-right: 0;  /* Stars are above text in this orientation */
    }

    .header-trustpilot-reviews {
        padding-top: 0.25rem;
    }
}

/**
 * Hero carousel
 */
.hero {
    text-align: center;
    padding: 3rem 0;
}

.hero img {
    margin-bottom: 3em;
    min-height: 240px;
}

.hero-cta {
    margin-top: 2rem;
}

.hero-cta .cta {
    display: block;
    background: rgb(252, 126, 71);
    font-weight: bold;
    border-radius: 0.25rem;
    box-shadow: 0 5px 5px rgba(0, 0, 0 ,0.25);
    text-align: center;
    font-size: 1.125em;
    padding: 2.00rem 1.50rem;
    color: white;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    position: relative;
}

.hero-cta .cta:hover {
    text-decoration: underline;
}

.hero .graphic {
    margin-bottom: 2rem;
}

.hero .heading {
    margin-bottom: 1rem;
}

.hero .sub-heading {
    font-weight: 100;
}

/**
 * Top carousel
 */

.take-control {
    background: var(--light-background);
    color: var(--light-text);
    padding-top: 0;
}

/**
 * Testimonials
 */
.trust {
    text-align: center;
}

@media (min-width: 530px) {
    .trust header {
        margin-bottom: 3rem;
    }
}

.testimonial {
    background: #001931;
    color: var(--dark-text);
    border-radius: 0.25rem;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin: 1rem auto;
    padding-top: 0.5rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    max-width: 45%;
}

.testimonials {
    display: flex;
    justify-content: space-evenly;
}

@media(max-width: 530px) {
    .testimonials {
        flex-direction: column;
    }

    .testimonial {
        max-width: 100vw;
    }
}

.testimonial q {
    padding: 1rem 0;
}

.avatar {
    width: 20%;
    align-self: end;
}

.testimonial:nth-child(odd) {
    padding-left: 1rem;
}

.testimonial:nth-child(even) {
    flex-direction: row-reverse;
    padding-right: 1rem;
}

.testimonial:nth-child(odd) .avatar {
    right: -25vw;
    margin-left: 1rem;
}

.testimonial:nth-child(even) .avatar {
    left: -25vw;
    margin-right: 1rem;
}

/**
 * Bottom carousel
 */
.how-it-works {
    text-align: center;
}

.how-it-works .carousel-thumb {
    font-weight: bold;
    width: 3rem;
    height: 3rem;
    line-height: 1.5rem;
    padding-top: 0.9rem;
}

.step-gadget {
    color: #fb6320;
    font-weight: bold;
    font-size: 1.20em;
    text-transform: lowercase;
    margin-bottom: 0.50rem;
}

/**
 * Utils
 */
.text-center {
    text-align: center;
}

.tight {
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.90em;
    text-align: center;
}

a.no-underline {
    text-decoration: none;
}

a.no-underline .no-underline--text::after {
    content: " \203A"; /* Right angle quote */
    font-weight: bold;
}

.button {
    border-radius: 0.25rem;
    text-align: center;
    margin: 0.25rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: white;
    cursor: pointer;
}

.button--primary {
    background: #0076e3;
    color: white;
}

/**
 * Cookie banner
 */
.cookies {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;

    font-size: 0.90em;
}

.cookies a {
    color: #0076e3;
}

.cookies a.button {
    color: white;
    word-break: keep-all;
}

.cookies .cookies-inner {
    zoom: 1;
    background: #000;
    padding: 10px 10px 10px 30px;
    box-sizing: border-box;
    color: #fff;
    border-radius: 3px 3px 0 0;
    border: 1px solid hsla(0,0%,100%,.2);
    border-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookies .cookies-actions {
    display: flex;
}

@media(max-width: 530px) {
    .cookies .cookies-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookies .cookies-actions {
        width: 100%;
    }

    .cookies .cookies-actions .button {
        display: block;
        width: 100%;
    }
}
