/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
    line-height: 1.15; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
     ========================================================================== */

/**
   * Remove the margin in all browsers.
   */

*,
*:before,
*:after {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/**
   * Render the `main` element consistently in IE.
   */

main {
    display: block;
}

/**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */

/* Grouping content
     ========================================================================== */

/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */

hr {
    box-sizing: content-box; /* 1 */
    height: 0; /* 1 */
    overflow: visible; /* 2 */
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */

pre {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
}

/* Text-level semantics
     ========================================================================== */

/**
   * Remove the gray background on active links in IE 10.
   */

a {
    background-color: transparent;
}

/**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */

abbr[title] {
    border-bottom: none; /* 1 */
    text-decoration: underline; /* 2 */
    text-decoration: underline dotted; /* 2 */
}

/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */

b,
strong {
    font-weight: bolder;
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */

code,
kbd,
samp {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
}

/**
   * Add the correct font size in all browsers.
   */

small {
    font-size: 80%;
}

/**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Embedded content
     ========================================================================== */

/**
   * Remove the border on images inside links in IE 10.
   */

img {
    border-style: none;
}

/* Forms
     ========================================================================== */

/**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */

button,
input,
optgroup,
select,
textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 1 */
    line-height: 1.15; /* 1 */
    margin: 0; /* 2 */
}

/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */

button,
input {
    /* 1 */
    overflow: visible;
}

/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */

button,
select {
    /* 1 */
    text-transform: none;
}

/**
   * Correct the inability to style clickable types in iOS and Safari.
   */

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

/**
   * Remove the inner border and padding in Firefox.
   */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

/**
   * Restore the focus styles unset by the previous rule.
   */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

/**
   * Correct the padding in Firefox.
   */

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */

legend {
    box-sizing: border-box; /* 1 */
    color: inherit; /* 2 */
    display: table; /* 1 */
    max-width: 100%; /* 1 */
    padding: 0; /* 3 */
    white-space: normal; /* 1 */
}

/**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */

progress {
    vertical-align: baseline;
}

/**
   * Remove the default vertical scrollbar in IE 10+.
   */

textarea {
    overflow: auto;
}

/**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}

/**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */

[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    outline-offset: -2px; /* 2 */
}

/**
   * Remove the inner padding in Chrome and Safari on macOS.
   */

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */

::-webkit-file-upload-button {
    -webkit-appearance: button; /* 1 */
    font: inherit; /* 2 */
}

/* Interactive
     ========================================================================== */

/*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */

details {
    display: block;
}

/*
   * Add the correct display in all browsers.
   */

summary {
    display: list-item;
}

/* Misc
     ========================================================================== */

/**
   * Add the correct display in IE 10+.
   */

template {
    display: none;
}

/**
   * Add the correct display in IE 10.
   */

[hidden] {
    display: none;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    font-family: inherit;
}

@font-face {
    font-family: 'Helvetica Neue';
    font-display: swap;
    src: url('https://quantfury.co.uk/wp-content/themes/twentytwentyfive/assets/fonts/HelveticaNeue-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    font-display: swap;
    src: url('https://quantfury.co.uk/wp-content/themes/twentytwentyfive/assets/fonts/HelveticaNeue-Roman.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    font-display: swap;
    src: url('https://quantfury.co.uk/wp-content/themes/twentytwentyfive/assets/fonts/HelveticaNeue-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

*,
*:before,
*:after {
    margin: 0;
    padding: 0;
}
:root {
    --s-offset: 1rem;
    --column-width: calc(min(1200px, calc(100vw - (2 * var(--s-offset)))) / 12);
    --primary: #49C0B6;
    --primary-hover: #13B0A3;
    --primary-blue: #003256;
    --primary-orange: #FF9C00;
    --additional-red: #D93D3E;
    --additional-gray-blue: #A4AFC6;
    --neutral-01: #FFF;
    --neutral-02: #F7F9FC;
    --neutral-03: #E8E9E9;
    --neutral-04: #CFD0D3;
    --neutral-05: #868A92;
    --neutral-06: #34363C;
    --neutral-07: #1D2026;
}
body {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #1D2026;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow-x: hidden;
    min-width: unset;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
}

.container {
    width: 100%;
    max-width: 1248px;
    padding: 0 16px;
    margin: 0 auto;
}

.header .container {
    padding: 0 24px;
}
.header {
    border-bottom: 1px solid #1D2026;
    padding: 28px 0;
}

.main {
    overflow: hidden;
    position: relative;
    padding-bottom: 32px;
}
.main h1 {
    font-size: 32px;
    line-height: 38.4px;
    letter-spacing: -0.32px;
    margin-top: 32px;
    z-index: 1;
    position: relative;
    margin-bottom: 16px;
    font-style: normal;
    font-weight: 700;
    color: #1D2026;
}
.main p {
    font-size: 20px;
    line-height: 28px;
    font-weight: 300;
    position: relative;
    z-index: 1;
    padding-right: 14px;
}

.main p span {
    font-weight: 400;
}

.main__img {
    position: relative;
    width: 100%;
    z-index: 1;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    max-height: 200px;
}

.main__img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    bottom: 0;
    right: 0;
}

.footer-text {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), #1D2026;
    color: #fff;
    padding: 48px 0;
}

.footer-text p:first-child {
    margin-bottom: 16px;
}
.footer-text p {
    font-size: 16px;
    line-height: 24px;
}

.footer-copyright {
    padding: 32px 0 48px 0;
    font-size: 12px;
    line-height: 16px;
}

.el-lines {
    z-index: 0;
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    width: 100%;
    max-width: min(1200px, calc(100vw - 2 * var(--s-offset)));
    left: 50%;
    transform: translateX(-50%);
}
.el-lines__line {
    display: block;
    height: 100%;
    width: 1px;
    min-width: 1px;
    background-color: #E8E9E9;
    z-index: 0;
}
.el-lines__line:nth-child(1) {

}
.el-lines__line:nth-child(2) {
    margin-left: calc((var(--column-width) * 6) - 1px);
}
.el-lines__line:nth-child(3) {
    margin-left: calc((var(--column-width) * 6) - 2px);
}
.el-lines__line:nth-child(4) {
    display: none;
}
.el-lines__line:nth-child(5) {
    display: none;
}

@media (min-width: 768px) {
    .main {
        padding-bottom: 48px;
    }
    .main h1 {
        font-size: 44px;
        line-height: 52.8px;
        margin-top: 48px;
        margin-bottom: 24px;
    }
    .main p {
        padding-right: 0;
        font-size: 24px;
        line-height: 33.6px;
    }
    .main__img {
        max-height: 400px;
    }
    .container {
        padding: 0 24px;
    }
    .el-lines__line:nth-child(1) {
        margin-left: calc((var(--column-width) * 2));
    }
    .el-lines__line:nth-child(2) {
        margin-left: calc((var(--column-width) * 4) - 1px);
    }
    .el-lines__line:nth-child(3) {
        margin-left: calc((var(--column-width) * 4) - 2px);
    }
}
@media (min-width: 1200px) {
    .main {
        padding: 157px 0;
    }
    .main__img {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        width: calc(36vw);
        z-index: 1;
        max-height: 100%;
    }
    .main h1 {
        font-size: 48px;
        line-height: 57.6px;
        letter-spacing: -0.48px;
        margin-top: 0;
        margin-bottom: 33px;
    }
    .main p {
        max-width: 600px;
        font-size: 28px;
        line-height: 39.2px;
        margin-left: calc((var(--column-width) * 1) - 1px);
    }
    .el-lines__line:nth-child(1) {
        margin-left: calc((var(--column-width) * 2));
    }
    .el-lines__line:nth-child(2) {
        margin-left: calc((var(--column-width) * 2) - 1px);
    }
    .el-lines__line:nth-child(3) {
        margin-left: calc((var(--column-width) * 2) - 1px);
    }
    .el-lines__line:nth-child(4) {
        margin-left: calc((var(--column-width) * 2) - 1px);
    }
    .el-lines__line:nth-child(5) {
        margin-left: calc((var(--column-width) * 2) - 1px);
    }
}
.modal {
    display: none;
    position: absolute;
    top: 0;
    z-index: 20;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.modal.is-show {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.modal__container {
    background: white;
    border: 1px solid var(--neutral-07);
    margin: 0 auto;
    width: calc(100% - 5rem);
    padding: 1.5rem;
    text-align: left;
    color: var(--neutral-07);
    box-sizing: content-box;
}
.modal__container-header {
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}
.modal__container-body {
    font-size: 1rem;
    line-height: 1.5;
}
.modal__container-footer {
    margin-top: 1.5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--neutral-04);
}

.is-fixed {
    overflow: hidden;
    position: fixed;
    height: 100%;
    width: 100%;
}

@media screen and (min-width: 48rem) {
    .modal__container {
        width: 45rem;
    }
}
@media (max-width: 560px) {
    .modal__container-footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 0.875rem;
    }
    .modal__container-footer button {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
    }
}



.btn-clean {
    background: transparent;
    border: none;
    box-shadow: none;
    cursor: pointer;
    outline: none;
    font-size: inherit;
    color: inherit;
}

.btn, .c-form button[type=submit] {
    /*font-family: var(--font-base);*/
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 400;
    border: 0.0625rem solid transparent;
    box-shadow: none;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    outline: none;
    text-align: center;
    position: relative;
    padding: 0.5625rem 1.4375rem;
    overflow: hidden;
}
.btn[disabled], .c-form button[disabled][type=submit], .btn.disabled, .c-form button.disabled[type=submit] {
    background-color: #C0EAE6;
}
.btn--primary, .c-form button[type=submit] {
    background: var(--primary);
    color: var(--neutral-01);
    border: none;
    -webkit-transition: color 0.3s linear, width 0.3s linear, background 0.3s linear, border-color 0.3s linear;
    transition: color 0.3s linear, width 0.3s linear, background 0.3s linear, border-color 0.3s linear;
}
.btn--primary.is-hover, .c-form button.is-hover[type=submit] {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    -webkit-transition: 0s;
    transition: 0s;
}
@media (hover: hover) and (pointer: fine) {
    .btn--primary:hover, .c-form button[type=submit]:hover, .btn--primary:focus, .c-form button[type=submit]:focus, .btn--primary:active, .c-form button[type=submit]:active {
        background: var(--primary-hover);
        border-color: var(--primary-hover);
    }
}
.btn--primary[disabled], .c-form button[disabled][type=submit], .btn--primary.disabled, .c-form button.disabled[type=submit] {
    color: #ffffff;
    background-color: #C0EAE6;
    border-color: #C0EAE6;
}
.btn--pure {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
    -webkit-transition: color 0.3s linear, width 0.3s linear, background 0.3s linear, border-color 0.3s linear;
    transition: color 0.3s linear, width 0.3s linear, background 0.3s linear, border-color 0.3s linear;
}
.btn--pure:hover, .btn--pure:focus, .btn--pure:active {
    color: var(--primary-hover);
    border-color: var(--primary-hover);
}
.btn--pure[disabled], .btn--pure.disabled {
    color: #ffffff;
    background-color: #C0EAE6;
}
.btn--pure-icon {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
    padding: 0.625rem 0.875rem 0.625rem 1.25rem;
    -webkit-transition: color 0.3s linear, width 0.3s linear, background 0.3s linear, border-color 0.3s linear;
    transition: color 0.3s linear, width 0.3s linear, background 0.3s linear, border-color 0.3s linear;
}
.btn--pure-icon:hover, .btn--pure-icon:focus, .btn--pure-icon:active {
    color: var(--primary-hover);
    border-color: var(--primary-hover);
}
.btn--pure-icon[disabled], .btn--pure-icon.disabled {
    color: #ffffff;
    background-color: #C0EAE6;
}
.btn--pure-arrow {
    background: var(--neutral-01);
    color: var(--primary);
    border-color: var(--primary);
    -webkit-transition: color 0.3s linear, width 0.3s linear, background 0.3s linear, border-color 0.3s linear;
    transition: color 0.3s linear, width 0.3s linear, background 0.3s linear, border-color 0.3s linear;
}
.btn--pure-arrow::after {
    width: 20px;
    height: 20px;
    margin-left: 0.5rem;
    /*content: url("../images/btn-arrow.svg");*/
    display: inline-block;
}
.btn--pure-arrow-left {
    background: var(--neutral-01);
    color: var(--primary);
    border-color: var(--primary);
    -webkit-transition: color 0.3s linear, width 0.3s linear, background 0.3s linear, border-color 0.3s linear;
    transition: color 0.3s linear, width 0.3s linear, background 0.3s linear, border-color 0.3s linear;
}
.btn--pure-arrow-left::before {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    /*content: url("../images/btn-arrow.svg");*/
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    display: inline-block;
}
.btn--full {
    width: 100%;
}
.btn--with-arrow {
    padding: 0.6875rem 1.4375rem;
    background: var(--primary);
    border-color: var(--primary);
    color: var(--neutral-01);
    font-size: 1rem;
    line-height: 1.5rem;
    -webkit-transition: color 0.3s linear, width 0.3s linear, background 0.3s linear, border-color 0.3s linear;
    transition: color 0.3s linear, width 0.3s linear, background 0.3s linear, border-color 0.3s linear;
}
.btn--with-arrow:hover, .btn--with-arrow:focus, .btn--with-arrow:active {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
}
.btn--with-arrow::after {
    /*content: url("../images/btn-arrow-white.svg");*/
    height: 1.25rem;
    min-height: 1.25rem;
    width: 1.25rem;
    min-width: 1.25rem;
    margin-left: 0.5rem;
    -webkit-transition: width 0.2s ease, margin-left 0.2s ease, opacity 0.2s ease-out;
    transition: width 0.2s ease, margin-left 0.2s ease, opacity 0.2s ease-out;
    overflow: hidden;
}
.btn--arrow {
    font-size: 1rem;
    line-height: 1.5rem;
    border-color: var(--primary);
    background: var(--primary);
    width: auto;
    padding: 0.6875rem 1.4375rem;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.btn--arrow:after {
    position: relative;
    /*content: url("../images/btn-arrow-white.svg");*/
    width: 20px;
    height: 20px;
}
.btn--arrow:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
}
.btn--arrow span {
    color: white;
    margin-right: 6px;
    white-space: nowrap;
}
.btn--just-arrow {
    font-size: 1rem;
    line-height: 1.25rem;
    background: var(--neutral-01);
    color: var(--primary);
    padding: 0;
}
.btn--just-arrow::after {
    width: 16px;
    height: 16px;
    margin-left: 0;
    /*content: url("../images/ic-chevron.svg");*/
    display: inline-block;
}
@media screen and (min-width: 62rem) {
    .btn--arrow {
        background: transparent;
        width: 48px;
        height: 48px;
        -webkit-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
    }
    .btn--arrow:after {
        position: absolute;
        right: 0.875rem;
        /*content: url("../images/btn-arrow.svg");*/
    }
    .btn--arrow span {
        opacity: 0;
        width: 0;
    }
    .btn--arrow:hover {
        background: var(--primary-hover);
        border-color: var(--primary-hover);
        width: auto;
        padding: 0.75rem 2.5rem 0.75rem 1.5rem;
    }
    .btn--arrow:hover span {
        width: auto;
        opacity: 1;
    }
    .btn--arrow:hover:after {
        /*content: url("../images/btn-arrow-white.svg");*/
    }
    .btn--with-arrow:hover, .btn--with-arrow:focus, .btn--with-arrow:active {
        background: var(--primary);
        border-color: var(--primary);
    }
    .btn--with-arrow::after {
        /*content: url("../images/btn-arrow-white.svg");*/
        height: 1.25rem;
        -webkit-transition: width 0.2s ease, margin-left 0.2s ease, opacity 0.2s ease-out;
        transition: width 0.2s ease, margin-left 0.2s ease, opacity 0.2s ease-out;
        overflow: hidden;
        opacity: 0;
        width: 0;
        margin-left: 0;
        min-height: auto;
        min-width: auto;
    }
    .btn--with-arrow::before {
        content: " ";
        width: 1.25rem;
        height: 1px;
        border-radius: 1px;
        background: white;
        margin-right: 0.5rem;
        -webkit-transition: width 0.2s ease, margin-right 0.2s ease;
        transition: width 0.2s ease, margin-right 0.2s ease;
    }
    .btn--with-arrow:hover::before {
        width: 0;
        margin-right: 0;
    }
    .btn--with-arrow:hover::after {
        width: 1.25rem;
        margin-left: 0.5rem;
        opacity: 1;
    }
}
