[data-flex] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body {
    margin: 0
}

svg {
    width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: currentColor;
}

:root {
    box-sizing: border-box;
    scroll-behaviour: smooth;
}

* {
    box-sizing: inherit;
}

:root {
    --font: "IBM Plex Sans", sans-serif;
    --base: 6px;
    --c-main: #00A79D;
    --c-text: #58595B;
    --h-header: 100px;
    font-family: "IBM Plex Sans";
    font-size: 16px;
}

.head {
    font: 500 36px/122% "IBM Plex Sans";
    margin-left: 24px;
    margin-right: 24px;
}

.head-2 {
    font: 500 20px/136% "IBM Plex Sans";
    margin-block: 0 1.25em;
}

.head--clean {
    margin-bottom: 0;
}

.text {
    margin-top: var(--base);
    font: 400 18px/160% "IBM Plex Sans";
    color: var(--c-text);
}

.header,
footer {
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.head,
.text,
.form {
    position: relative;
    z-index: 10;
}

.header a,
.btn {
    transition: opacity 222ms;
}

.header a:hover,
.btn:hover {
    opacity: 0.876;
}

.text,
form {
    width: 100%;
    max-width: 570px;
    margin-left: auto;
    margin-right: auto;
}

footer {
    color: var(--c-text);
    padding-top: 20px;
    padding-bottom: 20px;
}

@media (max-width: 991px) {
    footer {
        flex-direction: column;
    }

    footer> :last-child {
        padding-top: 12px;
    }
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 100;
    height: var(--h-header);
    color: var(--c-text);
}

.header::before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 80px;
    z-index: -1;
    background: linear-gradient(#fff, rgba(255, 255, 255, 0));
}

.header svg {
    width: 190px;
    height: 52px;
}

.header a:not(.btn) {
    font-weight: 500;
}

.header a+a {
    margin-left: 36px;
}

.header a+a[aria-disabled] {
    cursor: sw-resize, help !important;
}

@media (max-width: 767px) {
    :root {
        --h-header: 72px;
    }

    .header {
        padding-left: 18px;
        padding-right: 18px;
    }

    .header svg {
        width: auto;
        height: 44px;

    }
}

section {
    padding: calc(80px + 2vmin) 30px;
    margin-top: auto;
    margin-bottom: auto;
    text-align: center;
    min-height: 600px;
    height: calc(var(--vh, 1vh) * 100);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

section .head {
    margin-top: auto;
}

section .form {
    margin-bottom: auto;
}

main {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

@-webkit-keyframes wow {
    to {
        transform: scale3d(1, 1, 1);
    }
}

@keyframes wow {
    to {
        transform: scale3d(1, 1, 1);
    }
}

#chart {
    position: fixed;
    pointer-events: none;
    opacity: .7;
    width: 3200px;
    height: 90vh;
    left: calc(50% - 1600px);
    transform: translate3d(0, 10vh, 0);
    top: 17.5vh;
}

#lines i {
    position: absolute;
    pointer-events: none;
    width: 1px;
    height: 100%;
    background: var(--c-text);
    opacity: 0.123;
    transform: scale3d(1, 0, 1);
    transform-origin: bottom;
    -webkit-animation: wow 1.25s ease-in-out forwards;
    animation: wow 1.25s ease-in-out forwards;
    bottom: 0;
    top: 0;
}

@media (min-width: 992px) {
    #lines> :nth-child(1) {
        left: 12.5%;
        -webkit-animation-delay: 120ms;
        animation-delay: 120ms;
    }

    #lines> :nth-child(2) {
        left: 25%;
        -webkit-animation-delay: 240ms;
        animation-delay: 240ms;
    }

    #lines> :nth-child(3) {
        left: 37.5%;
        -webkit-animation-delay: 360ms;
        animation-delay: 360ms;
    }

    #lines> :nth-child(4) {
        left: 50%;
        -webkit-animation-delay: 480ms;
        animation-delay: 480ms;
    }

    #lines> :nth-child(5) {
        left: 62.5%;
        -webkit-animation-delay: 600ms;
        animation-delay: 600ms;
    }

    #lines> :nth-child(6) {
        left: 75%;
        -webkit-animation-delay: 720ms;
        animation-delay: 720ms;
    }

    #lines> :nth-child(7) {
        left: 87.5%;
        -webkit-animation-delay: 840ms;
        animation-delay: 840ms;
    }

    #lines> :nth-child(8) {
        left: 100%;
        -webkit-animation-delay: 960ms;
        animation-delay: 960ms;
    }
}

@media (max-width: 991px) {
    #lines> :nth-child(n) {
        display: none;
    }

    #lines> :nth-child(1) {
        display: block;
        left: 20%;
    }

    #lines> :nth-child(2) {
        display: block;
        left: 40%;
    }

    #lines> :nth-child(3) {
        display: block;
        left: 60%;
    }

    #lines> :nth-child(4) {
        display: block;
        left: 80%;
    }
}

label,
.btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input,
button {
    font-family: inherit;
}

button,
.btn {
    --color: var(--c-text);
    --bg: #ebebeb;
    box-shadow: none;
    border: none;
    border-radius: var(--base);
    background: var(--bg);
    color: var(--color);
    padding: calc(var(--base) * 2) calc(var(--base) * 2.75);
    font-weight: 500;
}

button[class*=submit],
.btn[class*=submit] {
    --color: #fff;
    /* --bg: #3D518C; */
    --bg: var(--c-main);
    height: 60px;
}

@media (min-width: 768px) {

    button[class*=submit],
    .btn[class*=submit] {
        font-size: 1em;
        padding: calc(var(--base) * 3.25) calc(var(--base) * 5);
    }
}

.form {
    margin-top: calc(var(--base) * 5);
}

.form input,
.form button {
    border: none;
    box-shadow: none;
}

.form label {
    white-space: nowrap;
}

.form input {
    width: 100%;
    padding: 0 12px;
    border-radius: calc(var(--base) / 1);
    height: 60px;
    padding-right: 112px;
}

.form button {
    cursor: pointer;
    position: absolute;
    right: 4px;
    top: 6px;
}

.form__row {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.148);
    border-radius: var(--base);
    padding: var(--base);
}

.form__row--stacked-signup {
    background: #fff;
}

.form__row--stacked-signup label {
    color: var(--c-text);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    position: absolute;
    display: inline;
    padding: 8px 12px;
    border-radius: calc(var(--base) / 3);
    left: 7px;
    top: 7px;
}

.form__row--stacked-signup label+input {
    font-size: 16px;
    padding-top: 16px;
    text-transform: lowercase;
}

.form__row--legend {
    justify-content: center;
    padding: calc(var(--base) * 4) 40px 60px;
    border: 0;
    font-size: 0.9em;
    line-height: 1.567;
    color: var(--c-text);
}

.form__row--legend span {
    opacity: 0.532;
}

.form__row--legend br {
    display: none;
}

@media (max-width: 767px) {
    .form__row--legend br {
        display: initial;
    }

    .form__row--legend {
        padding: calc(var(--base) * 3.5) 19px 0px;
        text-align: left;
    }
}

@media (min-width: 768px) {
    .form__row--legend {
        margin-left: auto;
        margin-right: auto;
    }

    section .form {
        margin-top: calc(var(--base) * 8);
    }

    #email {
        border-radius: calc(var(--base) / 2.5)
    }

    .form__row--stacked-signup {
        padding: 12px
    }

    .form__row--stacked-signup label {
        padding-left: 18px;
        padding-top: 12px;
    }

    .form__row--stacked-signup input,
    .form__row--stacked-signup input~[type=submit] {
        height: 60px;
    }

    .form__row--stacked-signup input~[type=submit] {
        top: 12px;
        right: 12px;
    }
}

@media not all and (min-resolution:.001dpcm) {
    @supports (-webkit-appearance:none) {
        @media (min-width: 768px) {
            .form__row--stacked-signup input~[type=submit] {
                right: 10px;
            }
        }
    }
}

@media (max-width: 767px) {
    nav[data-flex] [aria-disabled] {
        display: none !important;
    }

    #chart {
        top: 20vmin;
        transform: translate3d(90vw, 0vh, 0);
    }

    .text,
    nav[data-flex] a {
        font-size: 15px;
    }

    [type=submit] {
        font-size: 14px;
        padding-left: 26px;
        padding-right: 26px;
    }

    section {
        min-height: 96vh;
        height: auto;
        margin-bottom: 0;
    }

    footer {
        font-size: 0.875em;
    }

    footer> :first-child {
        display: none;
    }
}