*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

@font-face {
    font-family: 'Obviously';
    src: url("fonts/Obviously-Bold.woff2") format("woff2"), url("fonts/Obviously-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    color: #030338;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
}

.page-wrapper {
    padding: 50px 0;
}

.max-width900 {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
}

button, a.btn-cta {
    background: #FF3D6B;
    color: white;
    border-radius: 2rem;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    border: 0;
    height: 45px;
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 1.6rem;
    cursor: pointer;
}

a.btn-cta {
    align-items: center;
    text-decoration: none;
    display: inline-flex;
}

h1 {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 1.6rem;
    font-family: 'Obviously', sans-serif;
}

h2 {
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 2rem;
}

h1, h2, h3 {
    text-align: center;
    font-family: 'Obviously', sans-serif;
    line-height: initial;
}

p {
    font-size: 1rem;
    line-height: initial;
}

.text--step {
    color: #66667B;
    font-size: 1rem;
}

.span--number {
    background: #FF3D6B;
    color: white;
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    position: absolute;
    top: -18px;
    right: 50%;
    left: 48%;
}

fieldset {
    border: 0;
    max-width: 320px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content-box {
    background: #F4F4F4;
    display: flex;
    position: relative;
    align-items: center;
    padding: 2.4rem 2rem 2.4rem 2rem;
    flex-direction: column;
    border-radius: 12px;
}

.content-box p {
    font-weight: 700;
}

.content-box p.sub-heading {
    font-size: 1.2rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

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

.input-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 1rem;
    line-height: initial;
}

.input-form input {
    border: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.12);
}

h3.heading-results {
    max-width: 450px;
    width: 100%;
    margin-top: 0;
    margin-bottom: 1.6rem;
    font-size: 1.1rem;
    font-family: 'Open Sans', sans-serif
}

h3.heading-results span {
    color: #FF3D6B;
    font-size: 1.5rem;
    font-family: 'Obviously', sans-serif;
}

span.salary-sacrifice {
    color: #FF3D6B;
}

.results-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
}

.results-box {
    display: flex;
    column-gap: 1rem;
    max-width: 300px;
    width: 100%;
}

.results-box p {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.results-box span {
    color: #FF3D6B;
    display: block;
    font-weight: bold;
    font-size: 1.2rem;
    font-family: "Obviously", sans-serif;
}

span.reffering-text--small {
    font-size: 0.7rem;
    font-family: "Open Sans", sans-serif;
    color: #030338;
    margin-top: 5px;
    font-weight: 400;
}

.content-box .expert-wrapper {
    margin-top: 20px;
    column-gap: 40px;
    display: flex;
}

.content-box .expert-box {
    width: 50%;
}

.content-box .expert-box img {
    max-width: 100%;
}

.content-box .expert-box h2 {
    margin-top: 0;
}

.content-box .expert-box h2, .expert-box p.sub-heading {
    text-align: left;
}

.expert-box p.sub-heading {
    margin-bottom: 0;
}

.content-box .download-link {
    color: #030338;
    font-weight: bold;
    margin-top: 30px;
    display: block;
}

/*** FAQ ***/
.faq-element {
    padding: 0.85rem 1rem;
    background: white;
    margin: 10px 0;
    border-radius: 6px;
    max-width: 550px;
    width: 100%;
    cursor: pointer;
}

.faq-element .question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.question h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.6;
    text-align: left;
}

.element .answer {
    padding: 10px 20px;
    animation: animate .7s;
}

.faq-element .answer p {
    font-weight: normal;
    margin-bottom: 0;
    padding-right: 2.2rem;
    line-height: 1.5;
    margin-top: 0;
}

.faq-element .answer p:first-child {
    margin-top: 10px;
}

.faq-element .answer p:not(p:last-child) {
    margin-bottom: 20px;
}

.faq-element .answer ul {
    padding-left: 20px;
}

.faq-element .answer ol li:not(li:last-child), .faq-element .answer ul li:not(li:last-child) {
    margin-bottom: 10px;
    line-height: 1.5;
}

.hideText {
    display: none;
}

.css-911zy5 {
    width: 32px;
    height: 32px;
    color: currentColor;
    display: inline-block;
    vertical-align: middle;
    opacity: 1;
    -webkit-transition: -webkit-transform 0.2s;
    -webkit-transition: transform 0.2s;
    transition: transform 0.2s;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    border: 2px solid;
    border-color: #030338;
    border-radius: 9999px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.subheading--main {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.sign-wrapper {
    column-gap: 0.8rem;
    display: flex;
    align-items: center;
}

.sign-wrapper span {
    color: #FF3D6B;
    font-weight: 700;
    font-size: 1.4rem;
}

@keyframes animate {
    from {
        opacity: 0;
        transform: scale(0.6);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media screen and (max-width: 900px) {
    .max-width900 {
        padding: 0 1rem;
    }
}

@media screen and (max-width: 650px) {
    h1 {
        font-size: 1.2rem;
        text-align: left;
        margin-bottom: 20px;
    }

    h2, h3 {
        text-align: left;
    }


    .content-box p.sub-heading {
        margin-top: 0;
        font-size: 1rem;
        text-align: left;
    }

    .text--step {
        color: #66667B;
        font-size: 1rem;
        display: flex;
        align-items: center;
        column-gap: 12px;
        font-size: 0.85rem;
    }

    .results-wrapper {
        grid-template-columns: 1fr;
        row-gap: 1rem;
    }

    .span--number {
        position: static;
        width: 24px;
        height: 24px;
        font-size: 0.85rem;
    }

    .content-wrapper {
        row-gap: 2rem;
    }

    .content-box {
        padding: 1rem;
        align-items: inherit;
    }

    h3.heading-results span {
        font-size: 1rem;
    }

    h3.heading-results {
        font-size: 0.9rem;
    }

    .subheading--main {
        text-align: left;
        font-size: 0.9rem;
        margin-top: 0;
        margin-bottom: 2rem;
    }

    h2 {
        font-weight: 700;
        font-size: 0.9rem;
        margin-top: 1rem;
    }

    a.btn-cta {
        justify-content: center;
        margin-top: 1rem;
    }

    .results-box p {
        font-size: 0.85rem;
    }

    .content-box .expert-wrapper {
        flex-direction: column;
    }

    .content-box .expert-box {
        width: 100%;
    }

    .css-911zy5 {
        width: 24px;
        height: 24px;
    }

    .results-box {
        grid-template-columns: 60px 1fr;
        display: grid;        
    }

    .expert-box p.sub-heading {
        font-size: 0.85rem;
    }

    .expert-box:first-child {
        order: 1;
        margin-top: 20px;
    }

    .results-box span {
        font-size: 0.85rem;
    }

    .content-box .download-link {
        font-size: 0.8rem;
        margin-top: 20px;
    }

    .faq-element .answer p, .faq-element .answer ul li {
        font-size: 0.85rem;
    }

    .question h3 {
        font-size: 0.85rem;
        margin-right: 10px;
        line-height: 1.4;
    }

    fieldset {
        padding: 0;
    }

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

    .input-form label {
        font-size: 0.9rem;
    }

    .sign-wrapper span {
        font-size: 1.2rem
    }

    span.reffering-text--small {
        font-size: 0.6rem;
        margin-top: 10px;
    }
}