@charset "UTF-8";

html {
    font-size: 100%;
}

body {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-family: "roc-grotesk";
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
    color: var(--color-black);
    overflow-x: hidden;
}

em {
    font-style: italic;
}

strong {
    font-weight: 700;
}

.--grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(4, 25%);
}

.--span-1 {
    -ms-grid-column-span: 1;
    grid-column: span 1;
}

.--span-2 {
    -ms-grid-column-span: 2;
    grid-column: span 2;
}

.--span-3 {
    -ms-grid-column-span: 3;
    grid-column: span 3;
}

.--span-4 {
    -ms-grid-column-span: 4;
    grid-column: span 4;
}

.--margin-right {
    margin-right: var(--gap);
}

.--margin-left {
    margin-left: var(--gap);
}

.--margin-top {
    margin-top: var(--gap);
}

.--margin-bottom {
    margin-bottom: var(--gap);
}

a.inner-link {
    font-weight: 700;
    color: var(--color-blue);
    text-decoration: underline;
    -webkit-text-decoration-style: solid;
    text-decoration-style: solid;
    -webkit-text-decoration-color: var(--color-blue);
    text-decoration-color: var(--color-blue);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

a.inner-link:hover,
a.current:hover {
    font-weight: 700;
    color: var(--color-black);
    text-decoration: underline;
    -webkit-text-decoration-style: dashed;
    text-decoration-style: dashed;
    -webkit-text-decoration-color: var(--color-blue);
    text-decoration-color: var(--color-blue);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

a.current {
    font-weight: 700;
}

.header {
    max-width: 1440px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: var(--gap) var(--left-right);
    opacity: 0;
    -webkit-transition: opacity .5s .25s ease;
    -o-transition: opacity .5s .25s ease;
    transition: opacity .5s .25s ease;
}

.header.--appear {
    opacity: 1;
}

.header-text {
    width: 100%;
    font-style: normal;
    font-size: var(--header-text-size);
    font-weight: 700;
    line-height: 1;
}

.nav {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
}
.section {
    max-width: 1440px;
    width: 100%;
    padding: var(--top) var(--left-right);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: var(--gap);
}

.section:first-of-type {
    margin-bottom: var(--top);
}

.text-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: var(--top);
    opacity: 0;
    -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
            transform: translateY(50px);
    -webkit-transition: opacity .5s ease, -webkit-transform .5s ease;
    transition: opacity .5s ease, -webkit-transform .5s ease;
    -o-transition: opacity .5s ease, transform .5s ease;
    transition: opacity .5s ease, transform .5s ease;
    transition: opacity .5s ease, transform .5s ease, -webkit-transform .5s ease;
}

.drawing-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    opacity: 0;
    -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
            transform: translateY(50px);
    -webkit-transition: opacity .5s ease, -webkit-transform .5s ease;
    transition: opacity .5s ease, -webkit-transform .5s ease;
    -o-transition: opacity .5s ease, transform .5s ease;
    transition: opacity .5s ease, transform .5s ease;
    transition: opacity .5s ease, transform .5s ease, -webkit-transform .5s ease;
}

.text-container.--appear,
.drawing-container.--appear {
    opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

.text-headline {
    font-family: "roc-grotesk";
    font-style: normal;
    font-size: var(--text-size);
    font-weight: 700;
    text-transform: lowercase;
    -ms-grid-column-align: center;
    justify-self: center;
    -webkit-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out;
}

.main-text {
    font-family: "roc-grotesk";
    font-weight: 400;
    font-style: normal;
    font-size: var(--main-text-size);
    line-height: 1.3;
}

.text-title {
    font-family: "roc-grotesk";
    font-style: normal;
    font-size: var(--main-text-size);
}

.text-title p:not(:last-of-type) {
    margin-bottom: 1rem;
}

.text {
    font-family: "roc-grotesk";
    font-weight: 400;
    font-style: normal;
    font-size: var(--text-size);
    line-height: 1.3;
}

.text p:not(:last-of-type),
.main-text p:not(:last-of-type) {
    margin-bottom: 1rem;
}

.text span,
.main-text span {
    white-space: nowrap;
}

.button {
    font-family: "roc-grotesk";
    font-weight: 400;
    font-style: normal;
    font-size: var(--main-text-size);
    padding: 0.75rem 2rem;
    color: var(--color-white);
    background: var(--color-blue);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 40px;
}

.button:hover {
    background: var(--color-white);
    outline: dashed 2px var(--color-blue);
    color: var(--color-black);
}

.footer {
    width: 100%;
    height: auto;
    font-family: "roc-grotesk";
    font-weight: 300;
    font-size: var(--text-size);
    color: var(--color-white);
    background: var(--color-blue);
    padding: var(--top) var(--left-right);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: var(--gap);
}

.footer .text-title {
    font-weight: 700;
}

.footer .button {
    color: var(--color-blue);
    background: var(--color-white);
}

.footer .button:hover {
    background: var(--color-blue);
    outline: dashed 2px var(--color-white);
    color: var(--color-black);
}

.footer a.inner-link {
    color: var(--color-white);
    text-decoration: underline;
    -webkit-text-decoration-style: solid;
    text-decoration-style: solid;
    -webkit-text-decoration-color: var(--color-white);
    text-decoration-color: var(--color-white);
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.footer a.inner-link:hover {
    color: var(--color-black);
    -webkit-text-decoration-style: dashed;
    text-decoration-style: dashed;
}

@media screen and (max-width: 790px) {
    :root {
        --top: 2rem;
        --left-right: 2rem;
    }

    .--grid {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 1rem;
    }
}

@media screen and (max-width: 600px) {
    :root {
        --header-text-size: 2rem;
        --main-text-size: 1rem;
        --text-size: 1rem;
    }

    .--margin-right {
        margin-right: 0;
    }
    
    .--margin-left {
        margin-left: 0;
    }
    
    .--margin-top {
        margin-top: 0;
    }
    
    .--margin-bottom {
        margin-bottom: 0;
    }

    .section:first-of-type {
        margin-bottom: 0;
    }
}