:root {
    --slanted-border: 5vw;
    --header-color: #FF0090;
    --secondary-color: #B900FF;
    --secondary-color-dark-rgb: 152, 0, 209;
    --secondary-color-dark: rgb(var(--secondary-color-dark-rgb));
    --secondary-color-rgb: 185, 0, 285;
    --header-color-rgb: 255, 0, 144;
    --light: #ffffff;
    --dark: #3f3f3f;
    --border-radius-for-clickables: 2em;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 15em;
    overflow-x: hidden;
    background-color: var(--header-color);
}


body {
    color: var(--dark);
    background-color: var(--light);
    font-size: min(14px, 5vw);
    font-family: 'prevue', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-stretch: 100%;
    font-weight: 200;
    font-variation-settings: "wght" 200, "wdth" 100;
    font-optical-sizing: auto;
    /* Safari needs font-variation-settings for variable fonts. Weird. 2022/11/08. */
    margin: 0;
    padding: 0;
}

body>* {
    background-color: var(--light);
}



@keyframes header-logo-animation {
    0% {
        transform: none;
    }

    80% {
        transform: none;
    }

    90% {
        transform: scale(0.8, 0.1) translateX(1.5px);
    }

    95% {
        transform: none;
    }

    100% {
        transform: none;
    }
}




.word-brand,
.inline-brand,
.breadcrumb {
    font-stretch: 170%;
    font-weight: 900;
    font-variation-settings: "wght" 900, "wdth" 170;
    letter-spacing: -0.09em;
    white-space: nowrap;
}



.bold-text,
.thesis-text {
    font-stretch: 100%;
    font-weight: 350;
    font-variation-settings: "wght" 350, "wdth" 100;
}

.very-bold-text {
    font-stretch: 100%;
    font-weight: 550;
    font-variation-settings: "wght" 550, "wdth" 100;
}

.large-text {
    font-size: min(1.1em, 5vw);
}




#footer-brand {
    color: var(--light);
}


#footer-brand svg {
    margin-bottom: 1em;
    width: 20em;
}



:not(input):focus {
    outline: none;
}

.mat-base-shadow,
.header-img .call-us-big-time:active,
.codehilite,
.button.white.frost,
.technical-bullet-row,
.quote {
    box-shadow:
        0px 0px 30px rgba(0, 0, 0, 0.05),
        0px 1px 2px rgba(0, 0, 0, 0.1);
}

.mat-elevated-shadow,
.slides .use-case-slide:after,
.privay-policy {
    box-shadow:
        0px 0px 50px rgba(0, 0, 0, 0.1),
        0px 4px 3px rgba(0, 0, 0, 0.05);
}

.header-img .call-us-big-time {
    box-shadow: 0px 0px 10px rgba(var(--secondary-color-rgb), 0.5), 0px 2px 1px rgba(0, 0, 0, 0.05);
}

.child-to-show-when-active {
    transition: visibility 0s linear 1s, transform 0.15s ease-in-out, opacity 0.15s ease-in-out;
    visibility: hidden;
    transform: rotateX(10deg) scale(0);
    transform-origin: 100% 0%;
    opacity: 0;
    pointer-events: none;
}

*:active>.child-to-show-when-active,
*:focus>.child-to-show-when-active {
    visibility: visible;
    transform: rotateX(0deg);
    opacity: 1;
    transition: visibility 0s linear 0s, transform 0.15s ease-in-out, opacity 0.15s ease-in-out;
    pointer-events: all;
}


h1,
h2,
h3,
.package-name,
.h3alike,
.thesis-metric .animated-value,
svg text {
    font-weight: 750;
    font-stretch: 110%;
    font-variation-settings: "wght" 750, "wdth" 110;
    letter-spacing: 0px;
}

h1 {
    font-size: 2em;
    /* web defaults */
}

h1.extra-big {
    font-size: min(3em, 8vw);
}

h2 {
    font-size: 1.5em;
    /* web defaults */
}

h3,
.h3alike {
    font-size: 1.17em;
    /* web defaults */
}

h3 {
    margin-block-start: 1.5em;
    margin-block-end: 0em;
    margin-bottom: 0;
}

h3+p {
    margin-top: 0.5em;
}

.line {
    display: block;
}

.less-emphasis {
    opacity: 0.8;
}

@media only screen and (max-width : 320px) {
    body {
        font-size: 12px;
    }

    #subpage-body {
        font-size: 14px;
    }
}

#mail-us-button {
    position: fixed;
    user-select: none;
    bottom: 20px;
    right: 10px;
    border-radius: 50%;
    z-index: 9;
    width: 60px;
    height: 60px;
    background: rgb(85, 85, 85);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    margin: 0;
    padding: 2.5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 8px;
    color: var(--light);
    font-weight: 600;
    font-stretch: 100%;
    font-variation-settings: "wght" 600, "wdth" 100;
    text-decoration: none;

    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: transform 0.1s ease-in-out;
}

#mail-us-button:focus {
    outline: none !important;
}

#mail-us-button svg {
    width: 25px;
    height: 25px;
    fill: var(--light);
    user-select: none;
}

#mail-us-button:active {
    transform: translateY(1px);
}


#main-content {
    display: block;
    position: relative;
    flex: 1;
    width: 100vw;
    margin: 0 0 0 0;
    padding: 0px;
    justify-content: center;
    align-items: center;
}


#site-navigation-menu {
    position: absolute;
    top: 0em;
    right: 0em;
    width: 4em;
    /* height: 4em; */
    padding: 0;
    margin: 0;
}

/* #subpage-header #site-navigation-menu {
    top: auto;
} */

#site-navigation-menu svg {
    fill: var(--light);
    position: absolute;
    top: min(1em, 2vw);
    right: min(1em, 2vw);
    width: 2em;
    height: 3em;
}



#site-navigation-menu .nav-menu {
    display: flex;
    overflow: visible;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

#site-navigation-menu .nav-menu nav>*,
#site-navigation-menu .nav-menu nav>*:visited,
#site-navigation-menu .nav-menu>*,
#site-navigation-menu .nav-menu>*:visited {
    /* styling the buttons */
    position: relative;
    margin: 0;
    text-decoration: none;
    white-space: nowrap;
    padding: 0.5em;
    font-size: min(24px, 6.7vw);
    font-weight: 400;
    font-stretch: 110%;
    font-variation-settings: "wght" 400, "wdth" 110;
    color: var(--light);
    transition: background-color 0.3s ease-in-out;
}

#site-navigation-menu .nav-menu nav>*:hover,
#site-navigation-menu .nav-menu>*:not(.sub-nav-entry nav):hover {
    background-color: rgba(var(--secondary-color-rgb), 0.5);
    transition: background-color 0.02s ease-in-out;
}

.only-in-hidden-menu {
    display: initial;
}

.sub-nav-entry {
    display: block;
    position: relative;
    overflow: visible;
    z-index: 10000;
    min-height: 0;
}


.sub-nav-entry>nav a {
    display: block;
}

.sub-nav-entry:focus>nav,
.sub-nav-entry:hover>nav,
.sub-nav-entry:active>nav {
    display: block;
}

.sub-nav-entry>nav {
    padding: 1em;
}

.with-pointer {
    cursor: pointer;
}

.min-height-20em {
    min-height: 20em;
    display: flex;
    align-items: center;
    align-content: center;
}

.display-flex {
    display: flex;
    justify-items: center;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.nav-button {
    cursor: pointer;
    border-style: solid;
    border-width: 2px;
    padding: 0.5em 2em;
    border-radius: var(--border-radius-for-clickables);
    text-align: center;
    box-shadow: 0px 0px 10px rgba(var(--secondary-color-rgb), 0.5), 0px 2px 1px rgba(0, 0, 0, 0.05);
}

.nav-button.primary {
    border-color: var(--light);
    background-color: var(--light);
    color: var(--header-color);
}

.nav-button.secondary {
    border-color: var(--light);
    color: var(--light);
    background-color: transparent;
}


@media only screen and (min-width: 800px) {

    .sub-nav-entry>nav {
        display: none;
        position: absolute;
        right: 0;
        top: 100%;
        min-height: 0;
        z-index: 10000;
        background-color: rgba(var(--secondary-color-rgb), 0.6);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        padding: 0;
    }


    .sub-nav-entry:after {
        content: ' ';
        width: 0.5em;
        height: 0.5em;
        border-bottom: 0.2em solid var(--light);
        border-right: 0.2em solid var(--light);
        margin-left: 0.6em;
        transform: translateY(-0.2em) rotate(45deg);
        transition: transform 0.1s ease-in-out;
    }


    .sub-nav-entry:focus:after,
    .sub-nav-entry:hover:after,
    .sub-nav-entry:active:after {
        transform: translateY(-0em) rotate(-135deg);
    }


    #site-navigation-menu .nav-menu.child-to-show-when-active {
        visibility: visible;
        transform: rotateX(0deg);
        opacity: 1;
        transition: visibility 0s linear 0s, transform 0.15s ease-in-out, opacity 0.15s ease-in-out;
        pointer-events: all;

        margin: 0;
        right: 0em;
        flex-direction: row;
        background: transparent;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        box-shadow: none;
    }

    #site-navigation-menu svg {
        fill: transparent;
    }

    #site-navigation-menu,
    #site-navigation-menu .nav-menu {
        height: 100%;
    }

    #site-navigation-menu .nav-menu {
        overflow-y: visible;
        overflow-x: visible;
    }

    #site-navigation-menu .nav-menu nav>*,
    #site-navigation-menu .nav-menu nav>*:visited,
    #site-navigation-menu .nav-menu>*:not(nav),
    #site-navigation-menu .nav-menu>*:not(nav):visited {
        font-weight: 400;
        font-stretch: 100%;
        font-variation-settings: "wght" 400, "wdth" 100 !important;
        font-size: 16px;
        display: inline-flex;
        align-items: center;
        align-content: center;
        height: 100%;
        padding: 0em 1em 0em 1em;
    }

    #site-navigation-menu .nav-menu nav>*,
    #site-navigation-menu .nav-menu nav>*:visited {
        display: flex;
        align-items: center;
        height: 3em;
    }


    .only-in-hidden-menu {
        display: none !important;
    }

}

nav>.conditionally-under-subnav {
    display: flex !important;
}

nav div nav .conditionally-under-subnav {
    display: none !important;
}

@media only screen and (min-width: 800px) and (max-width: 1100px) {
    nav>.conditionally-under-subnav {
        display: none !important;
    }

    nav div nav .conditionally-under-subnav {
        display: flex !important;
    }
}

@media only screen and (max-width: 800px) {
    nav div nav .conditionally-under-subnav {
        display: none !important;
    }
}

#site-navigation-menu .nav-menu a.current-page:not(.no-underline) {
    background-color: rgba(var(--secondary-color-rgb), 0.3);
}



.section {
    position: relative;
    margin: 0;
    padding: 4em 0 8em 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.section.bigger-text {
    font-size: 120%;

}

.section.no-bottom-margin {
    padding-bottom: 0;
}

.section.no-top-margin {
    padding-top: 20px;
}

.banner-section {
    position: relative;
    background: rgba(0, 0, 0, 0.05);
    padding: calc(2px + var(--slanted-border)) 0 10px 0;
    margin: calc(-2px - var(--slanted-border)) 0 70px 0;
}

@media only screen and (max-width : 900px) {
    .banner-section {
        margin-bottom: 10px;
    }
}

.section:first-child {
    padding: 0;
}


.responsive-columns {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0;
    padding: 30px;
    max-width: calc(100vw - 60px);
    justify-content: center;
    align-items: center;
    column-gap: 100px;
    row-gap: 20px;
}

.responsive-columns.reverse {
    flex-wrap: wrap-reverse;
}

.responsive-columns>* {
    width: min(350px, calc(100vw - 60px));
}

@media only screen and (min-width : 1200px) {
    .responsive-columns>* {
        width: 450px;
    }
}


.responsive-columns.tiny {
    padding: 5px;
}

.responsive-columns.tiny>* {
    width: auto;
}


.section.filled>* {
    z-index: 1;
}

.section.filled:before {
    content: ' ';
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
    background: linear-gradient(var(--light), var(--secondary-color));
    clip-path: polygon(0% 0%, 0% 100%, 100% calc(100% - var(--slanted-border)), 100% 0%, 0% 0%);
    padding-bottom: var(--slanted-border);
}

.section.filled.plain:before {
    background: var(--secondary-color);
}

.section.filled.brand:before {
    background: linear-gradient(var(--light), var(--header-color));
}

.section.filled.plain.brand:before {
    background: var(--header-color);
}

.section.filled.plain,
.section.filled.plain h1,
.section.filled.plain a {
    color: var(--light);
}

.section.forefilled:before {
    content: ' ';
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
    background: linear-gradient(var(--secondary-color) 0%, var(--light) 50%);
    clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% var(--slanted-border));
}

.section.forefilled {
    padding-top: calc(0.7 * var(--slanted-border));
}

.section.header-img,
.section.header-img a {
    color: var(--light);
}

.section.header-img {
    background-color: var(--header-color);
    z-index: 10;
    clip-path: polygon(0% 0%, 0% 100%, 100% calc(100% - var(--slanted-border)), 100% 0%, 0% 0%);
    padding-bottom: var(--slanted-border);
}

#subpage-body {
    margin: 0;
    padding: 0;
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: scroll;
    overflow-x: hidden;
}

body:not(#subpage-body) .not-on-home {
    display: none;
}

.article {
    font-size: 20px;
}

.article h1,
.article h2,
.article h3,
.article h4,
.article h5 {
    margin-top: 2em;
    margin-bottom: 0.5em;
}

.article h1 {
    font-size: 2.5em;
    /* NOT web defaults */
}

.article h2 {
    font-size: 1.8em;
    /* NOT web defaults */
}

.article h3 {
    font-size: 1.17em;
    /* NOT web defaults */
}


.article .readtime,
.article p,
.article figcaption,
.article aside,
.article time,
.article li,
.article ul {
    -webkit-font-smoothing: antialiased;
    font-family: 'bespoke-serif', Georgia, 'Times New Roman', Times, serif;
    font-stretch: 100%;
    font-weight: 370;
    font-variation-settings: "wght" 370, "wdth" 100;
    overflow-wrap: break-word;
    word-break: break-word;
    line-height: 32px;
    letter-spacing: -0.5px;
}

.article p:first-of-type {
    font-weight: 430;
    font-variation-settings: "wght" 430;
}

.article a,
.article a:visited {
    color: var(--secondary-color-dark);
    font-weight: 430;
    font-variation-settings: "wght" 430, "wdth" 100;
}

.article video {
    max-width: 100%;
}

@media only screen and (max-width: 730px) {
    .article {
        font-size: 18px;
    }

    .article .call-us-big-time {
        font-size: 0.75em;
    }

    .article .readtime,
    .article p,
    .article figcaption,
    .article aside,
    .article time,
    .article p {
        line-height: 28px;
        letter-spacing: -0.4px;
    }

}

.blogpage-title-and-meta {
    margin-bottom: 0;
    margin-top: 0.5em;
}

.blogpage-title-and-meta time,
.blogpage-title-and-meta .readtime,
.blogpage-title-and-meta .metadata-separator {
    opacity: 0.7;
    display: inline-block;
}

.blogpage-title-and-meta h1 {
    margin-bottom: 0;
    margin-top: 0.5em;
}

.blogpage-title-and-meta h2 {
    margin-bottom: 0;
    margin-top: 0em;
    font-variation-settings: "wght" 500, "wdth" 120;
    font-size: 1.2em;
}

.blogpage-title-and-meta .metadata {
    font-size: min(20px, 5.3vw);
}

#subpage-body .codehilite {
    font-size: 14px;
    line-height: 20px;
}

#subpage-body h1,
#subpage-body h2,
#subpage-body h3,
#subpage-body h4 {
    font-family: 'prevue';
}

/* @media only screen and (min-width : 650px) {
    #subpage-body .single-column {
        padding: 4em 5em 4em 5em;
        box-shadow:
            0px 0px 50px rgba(0, 0, 0, 0.1),
            0px 4px 3px rgba(0, 0, 0, 0.05);
    }
} */

#subpage-header {
    background-color: var(--header-color);
    padding: 1em;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 12;
    display: flex;
    align-items: center;
    align-content: center;
}


.breadcrumbs,
.below-header.breadcrumbs {
    transform-origin: 0% 50%;
    align-content: center;
    align-items: center;
    justify-content: left;
    justify-items: left;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    position: sticky;
    top: 5em;
    z-index: 9;
    background-color: rgba(255, 255, 255, 0.99);
    /* -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px); blur no more. */
    font-size: inherit;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 0em 1.7em;
}


@media only screen and (min-width : 650px) and (max-width : 730px) {

    .breadcrumbs,
    .below-header.breadcrumbs {
        padding-left: 6em;
    }
}

@media only screen and (min-width : 730px) and (max-width : 850px) {

    .breadcrumbs,
    .below-header.breadcrumbs {
        padding-left: 6.5em;
    }
}

@media only screen and (min-width : 850px) {

    .breadcrumbs,
    .below-header.breadcrumbs {
        padding-left: calc(50vw - 331px);
    }
}


.breadcrumb {
    display: inline-flex;
    align-items: center;
    letter-spacing: 0em;
    text-decoration: none;
    cursor: pointer;
    opacity: 1;
    direction: ltr;
    background: rgba(0, 0, 0, 0);
    color: var(--header-color);
    height: 1em;
    font-stretch: 100%;
    font-weight: 600;
    font-variation-settings: "wght" 600, "wdth" 100;
    padding: 0.2em 0.5em 0em 0.5em;
    clip-path: none;
    position: relative;
    margin: 0.5em 1em 0.5em 0;
}

/* .breadcrumbs .breadcrumb:not(.breadcrumb:last-of-type)::after */
.breadcrumbs .breadcrumb::before {
    content: ".";
    width: 0.55em;
    height: 0.55em;
    background-color: var(--header-color);
    position: absolute;
    right: -0.7em;
    bottom: 0.35em;
    transform: translate(0, 0.1em) rotate(-135deg);
    --w: 0.18em;
    clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% calc(100% - var(--w)), var(--w) calc(100% - var(--w)), var(--w) 0%);
}


.breadcrumb:last-child {
    pointer-events: none;
    cursor: default;
}

.breadcrumb svg {
    position: relative;
    height: 1.1em;
    bottom: 0.25em;
}


.subpage-home-button-brand {
    display: inline-flex;
    align-items: center;
    padding: 0 1em;
}

.subpage-home-button-brand svg {
    position: relative;
    height: min(3em, 10vw);
    bottom: 0.25em;
}



.reactive-bread .subpage-home-button-brand {
    display: inline-flex;
}

.below-header.breadcrumbs {
    display: flex;
}

.nobreadcrumbs .below-header.breadcrumbs {
    display: none;
}


.section.header-img {
    min-height: calc(0.35 * 100vw);
}

.section.header-img .responsive-columns {
    padding: 0;
    column-gap: 0;
}

.section.header-img .header-img-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: calc(0.35 * 100vw);
    overflow: hidden;
}

@keyframes header-anim {
    0% {
        transform: scale(130%, 100%);
    }

    50% {
        transform: scale(300%, 100%);
    }

    0% {
        transform: scale(130%, 100%);
    }
}

.section.header-img .header-img-slide svg {
    margin-top: 5em;
    position: absolute;
    width: max(600px, 100vw);
    height: auto;
    bottom: 0;
    right: 0;
    transform: scale(130%, 100%);
    transform-origin: 80% 50%;
    animation: header-anim 60s ease-in-out 0.5s infinite alternate;
}

.forecast-industries-container {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
}


.forecast-industry {
    position: absolute;
}


.call-us-big-time {
    /* white-space: nowrap; */
    display: block;
    width: 100%;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius-for-clickables);
    background: var(--light);
    border-color: var(--light);
    color: var(--secondary-color);
    text-align: center;
    padding: 1em 0em;
    user-select: none;
    transition: transform 0.1s ease-in-out, color 0.5s ease-in-out, background-color 0.3s ease-in-out;
}


.call-us-big-time:hover {
    transform: scale(1.02);
}

.call-us-big-time:active {
    transform: translate(0.5px, 0.5px);
}

.call-us-big-time {
    border: solid 2px var(--secondary-color);
}

.call-us-big-time:hover {
    background-color: var(--secondary-color);
    color: var(--light);
}

.call-us-big-time.cta-variation {
    position: relative;
    overflow: hidden;
    font-weight: 600;
    font-stretch: 100%;
    font-variation-settings: "wght" 600, "wdth" 100;
    white-space: nowrap;
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    border: none;
    color: var(--light);
    font-size: min(1.4em, 5vw);
    max-width: 14em;
    width: 14em;
    padding: 1em;
    box-shadow:
        0px 0px 15px rgba(var(--header-color-rgb), 0.2),
        0px 2px 3px rgba(0, 0, 0, 0.1);
}

.call-us-big-time.cta-variation::after {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: var(--border-radius-for-clickables);
    height: 100%;
    transform: scale(0, 1);
    transform-origin: 100% 50%;
    transition: none;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 100%);
    content: ' ';
}

.call-us-big-time.cta-variation:hover::after {
    transition: transform 0.5s ease-out;
    transform: scale(0.5, 1) translate(150%, 0);
    transform-origin: 0% 50%;
    opacity: 1;
}

.call-us-big-time.cta-variation.cta-variation-light {
    background: transparent;
    border: 2px solid var(--light);
    color: var(--light);
}

.header-img .call-us-big-time {
    border: none;
}

.header-img .call-us-big-time:hover {
    background-color: var(--light);
    color: var(--secondary-color);
}


.section>h1 {
    /* free floating h1 needs to align*/
    padding: 0 45.5px;
}

@media only screen and (max-width : 320px) {
    .section>h1 {
        /* free floating h1 needs to align*/
        padding: 0 10px;
        font-size: 1.5em;
        max-width: 200px;
        ;
    }
}

@media only screen and (max-width : 510px) {
    .h1-500px {
        width: 220px;
    }
}

@media only screen and (max-width : 320px) {
    .h1-500px {
        width: 120px;
    }
}

@media only screen and (max-width : 760px) {
    .h1-670px {
        width: 400px;
        padding: 0 !important;
    }
}

@media only screen and (max-width : 500px) {
    .h1-670px {
        width: 250px;
    }
}

@media only screen and (max-width : 250px) {
    .h1-670px {
        width: initial;
    }
}


.section.filled h1 {
    color: var(--dark);
}

.full-text {
    display: flex;
    flex-direction: column;
    border-left: 0.5px solid rgb(200, 200, 200);
    padding: 0 15px;
    gap: 15px;
}

.full-text p {
    margin: 0;
}

.full-text.technical {
    flex-direction: row;
    padding-top: 0;
    padding-bottom: 0;
    border-left: 0.5px solid rgb(250, 250, 250);
}

.full-text.technical.noflex {
    display: block;
}

.single-column {
    max-width: min(calc(100vw - 60px), 650px);
}

.single-column img {
    max-width: 100%;
    ;
}


.central-text {
    padding: 15px 0;
}

.central-text p {
    line-height: 1.5em;
    ;
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in-left {
    0% {
        opacity: 0;
        transform: scale(0.9) translateX(-20px);
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in-right {
    0% {
        opacity: 0;
        transform: scale(0.9) translateX(20px);
    }

    100% {
        opacity: 1;
    }
}


.built-in-onload {
    opacity: 0;
    animation-name: fade-in;
    animation-timing-function: ease-out;
    animation-duration: 1s;
    animation-delay: 0.1s;
    animation-iteration-count: 1;
    animation-play-state: running;
    animation-fill-mode: forwards;
}

.built-in-onload.left {
    animation-name: fade-in-left;
    animation-delay: 0.3s;
}

.built-in-onload.right {
    animation-name: fade-in-right;
    animation-delay: 0.5s;
}

.built-in-onload.built-in-onload-delayed {
    animation-delay: 1s;
}

#trusters-caroussel {
    display: flex;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: center;
    gap: 2em;
    padding: 0;
}

#trusters-caroussel img {
    font-size: min(30px, max(20px, 5vw));
    margin: 0;
    filter: grayscale(1) opacity(0.7);
}

#trusters-caroussel img.landscape-auto {
    height: 0.833333em;
}

#trusters-caroussel img.landscape-auto.smaller {
    height: 0.5em;
}


#trusters-caroussel img.aspect-6-1 {
    width: 5em;
    height: 0.833333em;
}

#trusters-caroussel img.aspect-1-1 {
    width: 2em;
    height: 2em;
}

#trusters-caroussel img.aspect-3-1 {
    width: 2.4em;
    height: 0.8em;
}

#trusters-caroussel img.aspect-9-2 {
    width: 3.6em;
    height: 0.8em;
}


#trusters-caroussel img.max-width-150px {
    max-width: 3em;
}

#trusters-caroussel img.max-width-100px {
    max-width: 2em;
}

#trusters-caroussel .h3alike {
    font-size: min(14px, 3vw);
    white-space: nowrap;
    width: 21em;
    margin: 0;
    padding: 0;
}

#trusters-logos {
    display: flex;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: center;
    gap: 5em;
    flex-direction: row;
    flex-wrap: wrap;
    width: initial;
}


.technical-bullet-list {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.section.show-overflow * {
    overflow: visible;
}

.section.show-overflow {
    overflow: visible;
    z-index: 5;
}

.technical-bullet-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: relative;
    left: 0;
    right: 0;
    padding: min(20px, 5vw);
    margin: 0 0 min(20px, 5vw) 0;
    background-color: var(--light);
    color: var(--dark);
    overflow: visible;
    perspective: 1000px;
    flex-wrap: wrap;
    height: 175px;
    gap: 0;
}

.technical-bullet-row::before {
    background-color: var(--secondary-color);
    position: absolute;
    content: ' ';
    border-radius: 10px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.02;
}

.scroll-sensitive-down {
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
}

.scroll-sensitive-down.scrolled-out {
    opacity: 0;
    transform: scale(0.9);
}

a.clickable-technical-bullet {
    text-decoration: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.clickable-technical-bullet a {
    text-decoration: none !important;
    display: inline !important;
}

.technical-bullet-icon {
    width: min(50px, 10vw);
    margin: 0;
    padding: 0 15px 0 10px;
    border-right: 0.5px solid rgb(200, 200, 200);
}

.technical-bullet-icon svg {
    fill: var(--header-color);
    width: 100%;
}

.technical-bullet-title {
    margin: 0 0 0 min(15px, 3.7vw);
    width: min(200px, 40vw);
    vertical-align: baseline;
    font-weight: 600;
    font-stretch: 100%;
    font-variation-settings: "wght" 600, "wdth" 100;
}

.technical-bullet-icon,
.technical-bullet-title {
    display: flex;
    align-items: center;
    height: 70px;
}

.technical-bullet-full-text {
    width: 100%;
}

.front-video {
    width: min(100vw, 900px);
    max-width: min(100vw, 900px);
    margin: 0em 0 4em 0em;
}

/* Not supported yet: */
/* video::cue { */
/* background: rgba(250, 0, 0, 0.8); */
/* color: #ffffff; */
/* font: bold 'prevue', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
/* backdrop-filter: blur(10px); */
/* } */



#multicloud {
    display: flex;
}

#footer {
    background: var(--light);
    color: var(--light);
    padding: var(--slanted-border) 10vw 10px 10vw;
    text-align: center;
    font-size: 10px;
    z-index: 8;
    position: relative;
    overflow: visible;
}

#footer::before {
    content: ' ';
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100vw;
    z-index: -1;
    clip-path: polygon(0% var(--slanted-border), 0% 100%, 100% 100%, 100% 0%);
    background: var(--header-color);
}

#footer .nobreak-block {
    white-space: nowrap;
    margin: 0 0.8em;
}

#footer .breaking-block {
    margin: 0 0.8em;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
    white-space: normal;
}

#footer .breaking-block>span {
    white-space: nowrap;
    margin-right: 0.5em;
}

#footer .breaking-block>span:not(:last-child)::after {
    content: " - ";
}

.svg-4-icon-grid {
    display: grid;
    margin-left: 1em;
    width: 100%;
    grid-template-columns: 25px 25px;
    grid-template-rows: 25px 25px;
    gap: 10px;
}

.svg-4-icon-grid svg {
    width: 25px;
    max-height: 25px;
}

.aws-icon {
    transform: translateY(5px);
}

#me-me-me,
.founder-image-link {
    width: 180px !important;
    height: 240px !important;
    clip-path: circle(90px at 90px 90px);
}

a.inline {
    color: var(--dark);
}

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


.inline-link,
#footer a {
    display: inline-block;
    text-decoration: underline;
    cursor: pointer;
    color: inherit;
}

.privay-policy {
    color: var(--dark);
    text-align: left;
    position: fixed;
    z-index: 100000;
    bottom: 0;
    top: 70px;
    left: calc(50vw - min(40vw, 250px) - 15px);
    width: min(80vw, 500px);
    overflow-y: scroll;
    background-color: var(--light);
}

.privay-policy #policy-closer {
    position: sticky;
    top: 10px;
    float: right;
    display: inline;
    background: var(--light);
}

.underline {
    text-decoration: underline;
}

.displaynone {
    display: none;
}

.blogindex-body h1 {
    display: block;
    text-align: center;
    font-size: 3em;
}

.blog-index {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-items: center;
    justify-content: center;
    gap: 50px;
    padding: 50px;
}

:root {
    --bloglink-width: min(400px, min(max(40vw, 250px), calc(100vw - 60px)));
}

@media only screen and (max-width : 760px) {
    :root {
        --bloglink-width: min(400px, calc(100vw - 60px));
    }
}

.blogpage-link {
    position: relative;
    width: var(--bloglink-width);
    height: var(--bloglink-width);
    overflow: hidden;
}

.blogpage-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blogpage-poster img {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.1s ease-in-out;
}

.blogpage-link:hover img {
    transform: scale(1.05);
}

.blogpage-link-description {
    background-color: rgba(43, 0, 60, 0.8);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: var(--light);
    padding: 10px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    min-height: min(50px, 14vw);
}

.blogpage-link-title {
    font-size: min(18px, 5vw);
    font-weight: 600;
    font-stretch: 100%;
    font-variation-settings: "wght" 600, "wdth" 100;
}

.blogpage-link-description time,
.blogpage-link-description .readtime,
.blogpage-link-description .metadata-separator {
    position: relative;
    display: inline-block;
    margin-top: 5px;
    font-style: italic;
}

.metadata-separator {
    margin: 0 0.5em;
    transform: translateY(0.5em);
}

.metadata-separator::before {
    content: "ᐧ";
    font-size: 200%;
}

.readtime::after {
    content: " min.";
}


figcaption {
    padding: 0.5em 1em 0.2em 1em;
    font-size: 90%;
    font-style: italic;
    background-color: rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-top: -0.3em;
}

p+figcaption {
    margin-top: -1.7em;
}

blockquote {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 0.5em 3em;
}

blockquote,
blockquote p {
    font-weight: 390;
    font-variation-settings: "wght" 390 !important;
    font-style: italic;
}

span.tab::before {
    content: ' ';
}

span.tab {
    display: inline-block;
    width: 2em;
}

.in-blog-svg-image.float-right {
    width: 200px;
    float: right;
    margin: 1em;
    display: inline-flex;
    justify-content: center;
    justify-items: center;
}

.in-blog-svg-image.float-right svg {
    position: relative;
    width: 100%;
}

@media only screen and (max-width: 400px) {
    .in-blog-svg-image.float-right {
        float: unset;
        margin: 1em;
        display: none;

    }

}

.draft-mark::before,
.blogpage-link.draft::after {
    content: "DRAFT";
}

.draft-mark {
    position: fixed;
    display: block;
    top: calc(50vh - 0.5 * min(200px, 20vw));
    left: calc(50% - 350px);
    width: 700px;
    text-align: center;
    font-family: 'prevue';
    font-size: min(200px, 20vw);
    font-variation-settings: "wght" 600;
    color: var(--header-color);
    opacity: 0.1;
    z-index: 1000;
    transform: rotate(-30deg);
    pointer-events: none;
}

.blogpage-link.draft::after {
    content: "DRAFT";
    font-family: 'prevue';
    font-size: min(200px, 20vw);
    font-variation-settings: "wght" 600;
    color: var(--header-color);
    opacity: 0.1;
    z-index: 1000;
    text-decoration: none;
    position: absolute;
    width: 100%;
    text-align: center;
}

.share-twitter,
.share-linkedin {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    opacity: 0.5;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 0.6em 0 0.2em;
    transform: translate(0, 0.25em);

}

.share-twitter {
    background-image: url(/img/twitter.svg);
}

.share-linkedin {
    background-image: url(/img/linkedin.svg);
}

.big-big-title {
    font-size: 400%;
}

@media only screen and (max-width : 400px) {
    .big-big-title {
        font-size: 200%;
    }
}

.text-size-icon {
    overflow: visible;
    width: 0;
    height: 0;
    display: inline;
    position: relative;
    margin-right: 1.2em;
}

.text-size-icon img {
    position: absolute;
    max-width: 1.1em;
    max-height: 1.1em;
    /* transform: translateY(-0.1em); */
    line-height: 0;
}

.dagster-emoji {
    transform: scale(1.5);
}

img.product-image {
    max-width: min(100vw, 600px);
}

.subthesis-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    gap: 3em;
}

.thesis-metric {
    position: relative;
    background-color: var(--header-color);
    background-image: linear-gradient(150deg, var(--header-color) 50%, var(--secondary-color) 150%);
    color: var(--light);
    width: min(55vw, 17em);
    padding: 3em;
}

.article .thesis-metric {
    margin-top: 2em;
}

.thesis-metric>* {
    position: relative;
    z-index: 2;
}

.thesis-metric::before {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: ' ';
    background-image: linear-gradient(-30deg, var(--header-color) 50%, var(--secondary-color) 150%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.thesis-metric:hover::before {
    /* background-position: -50px -50px; */
    opacity: 1;
}

.thesis-metric .animated-value {
    font-size: min(4em, 15vw);
    text-align: center;
    white-space: nowrap;
}

.thesis-text {
    margin-top: 1.7em;
    margin-left: 0.5em;
    min-height: 4em;
}

.thesis-title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 1em;
}

a.slide-container {
    display: flex;
    text-decoration: none;
    color: var(--dark);
}

.slide-container {
    background: var(--light);
}

.slide-container:nth-child(even) .use-case-quote {
    border-left: 5px solid var(--secondary-color);
    /* color: var(--light); */
}

.slide-container:nth-child(odd) .use-case-quote {
    border-left: 5px solid var(--header-color);
    /* color: var(--light); */
}


.use-case-slide {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 2em;
    padding: 3em 3em 9em 3em;
    justify-content: center;
    justify-items: center;
}


.use-case-quote {
    position: relative;
    max-width: none;
    text-align: left;
    /* font-style: italic; */
    font-weight: 300;
    font-stretch: 90%;
    font-variation-settings: "wght" 300, "wdth" 90;
    padding: 1em;
    font-size: 2em;
}

/* .use-case-quote::before {
    content: '"';
}

.use-case-quote::after {
    content: '"';
} */

.use-case-person {
    display: flex;
    flex-direction: row;
    gap: 2em;
    align-items: end;
    justify-items: start;
    align-content: end;
    justify-content: end;

    font-size: 1.1em;
    font-weight: 400;
    font-stretch: 90%;
    font-variation-settings: "wght" 400, "wdth" 90;

}

.name-role-company iframe {
    border: none;
    width: min(13em, 50vw);
    height: 4em;
}

.use-case-person .picture {
    width: min(8em, 30vw);
    height: min(8em, 30vw);
    border-radius: 100%;
    overflow: hidden;
    background-color: #FF0090;
}

.use-case-person .picture img {
    position: relative;
    width: 100%;
    height: auto;
}

.use-case-person .picture.no-picture {
    display: none;
}

/* .use-case-person .picture.no-picture+ */
.name-role-company {
    position: relative;
}

/* .use-case-person .picture.no-picture+ */
.name-role-company .name::before {
    content: "-";
    position: absolute;
    left: 0;
    transform: translate(-1em);
}

.use-case-person .name,
.use-case-person .role,
.use-case-person .company {
    margin: 0.1em;
    padding: 0;
    white-space: nowrap;
    text-align: left;
}

#subpage-body.in-iframe {
    background-color: var(--light);
}

.in-iframe .use-case-person {
    font-size: 8vw;
}

.use-case-logo {
    display: flex;
    width: 100%;
    justify-content: center;
    align-content: end;
    margin: 0;
    padding: 0;
    height: 5em;
}

.use-case-logo img {
    height: min(5em, 10vw);
}

.use-case-logo.smaller img {
    height: min(2em, 5vw);
}


@media only screen and (max-width : 840px) {
    .use-case-logo+.use-case-quote {
        font-size: 1.5em;
    }
}

@media only screen and (max-width : 500px) {

    .use-case-slide {
        flex-wrap: wrap;
    }

    .use-case-quote {
        font-size: 1.5em;
        max-width: 60vw;
    }

    .use-case-logo+.use-case-quote {
        font-size: 1em;
    }

    .use-case-person {
        flex-direction: row;
        gap: 1em;
    }


}

.article .case-study-logo {
    position: relative;
    width: 80%;
    margin-top: 2em;
}

.article .use-case-slide {
    background: var(--light);
    box-shadow: -10px 1px 20px rgba(var(--header-color-rgb), 0.03), 1px 10px 20px rgba(var(--secondary-color-rgb), 0.03);
    color: var(--dark);
    margin-top: 4em;
    font-size: 0.8em;
    font-weight: 600;
    font-stretch: 100%;
    font-variation-settings: "wght" 600, "wdth" 100;
    text-decoration: none;
}

.article .use-case-slide .use-case-quote {
    border-right: 5px solid var(--secondary-color);
}

.article .use-case-slide .use-case-logo {
    display: none;
}

.call-us-big-time h1 {
    display: inline-flex;
}

.article .call-us-big-time {
    width: 70%;
    max-width: 70%;
    margin: 4em auto 1em auto;
    padding: 1em;
}

.article .call-us-big-time h1 {
    margin: 0;
    padding: 0.2em;
}

.article .call-us-big-time.cta-variation.read-study {
    display: none;
}

@media only screen and (max-width: 730px) {

    .article .call-us-big-time {
        font-size: 0.5em;
    }

    .article .call-us-big-time h1 {
        padding: 1em 0.1em;
    }

}

@media print {

    body {
        display: block !important;
        position: relative !important;
        width: auto !important;
        height: auto !important;
        overflow: visible !important;
        margin-left: 0 !important;
    }
}


.image-frame {
    display: flex;
    align-items: center;
    align-content: center;
    padding: 0.5em;
    background-image: linear-gradient(150deg, var(--header-color), var(--secondary-color));
    position: relative;
    z-index: 1;
}

.image-frame+figcaption {
    position: relative;
    z-index: 0;
}

.image-frame img {
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2), 0px 0px 10px rgba(0, 0, 0, 0.2);
}

iframe.live-demo {
    border: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.founder-image-link {
    display: inline;
}

#packages {
    background-image: linear-gradient(rgba(var(--secondary-color-rgb), 0.8) 0%, rgba(var(--secondary-color-rgb), 0.3) 20%, var(--light));
    clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% var(--slanted-border), 0% 0%);
}

#packages h1 {
    color: var(--light);
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.31);
}

.package-table {
    display: flex;
    gap: 2em;
    flex-direction: row;
}


.package:nth-child(1) {
    /* grid-area: 1 / 1 / 2 / 2; */
}

.package:nth-child(2) {
    /* grid-area: 1 / 2 / 2 / 3; */
}

.package:nth-child(3) {
    /* grid-area: 1 / 3 / 2 / 4; */
}

.package {
    position: relative;
    border: 1px solid var(--header-color);
    /* background-color: rgba(var(--header-color-rgb), 0.1); */
    border-radius: 0.2em;
    padding: 2em;
    background-color: var(--header-color);
    background-image: linear-gradient(150deg, var(--header-color) 50%, var(--secondary-color) 200%);
    color: var(--light);
    width: 23em;
    padding: 3em;
    font-stretch: 90%;
    font-weight: 400;
    font-variation-settings: "wght" 400, "wdth" 90;
}

@media only screen and (max-width : 1400px) {
    .package {
        width: 16em;
    }
}

.package-name {
    font-size: 2em;
    height: 3em;
    margin-bottom: 1em;
}


.package>* {
    position: relative;
    z-index: 1;
}

.package-background-svg svg {
    position: relative;
    width: 80%;
    max-height: 80%;
    fill: rgba(120, 120, 120, 0.1);
}

.package-background-svg {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0 !important;
    opacity: 1;
}

.package .you-get {
    font-stretch: 100%;
    font-weight: 600;
    font-variation-settings: "wght" 600, "wdth" 100;
    font-size: 1.2em;

}

.package ul.you-get-ul {
    min-height: 24em;
}

.package ul.you-goodbye-ul {
    min-height: 12em;
}

.package .you-goodbye-ul,
.package .you-get.you-goodbye {
    opacity: 0.7;
}

.package ul {
    padding-left: 1.1em;
    list-style-position: outside;
}

.package li {
    margin-bottom: 1em;
}

.package ul *::marker {
    font-size: 1.5em;
}

.package ul ul {
    font-style: italic;
}

.package .call-us-big-time.cta-variation.cta-variation-light {
    font-size: 1.1em;
    /* position: ; */
    bottom: 0.3em;
    width: 11em;
    padding: 0.6em 1em;
    font-stretch: 100%;
    font-weight: 400;
    font-variation-settings: "wght" 400, "wdth" 100;
    margin: 2em auto 0 auto;
}

@media only screen and (max-width : 1100px) {
    .package-table {
        flex-direction: column;
    }

    .package {
        width: 23em;
    }

    .package>ul.you-get-ul,
    .package>ul.you-goodbye-ul {
        min-height: initial;
    }

}

@media only screen and (max-width : 500px) {
    .package {
        width: 13em;
    }
}

.loom-vid-front-page {
    width: 100vw;
}

.loom-vid-front-page iframe {
    border: none;
    width: min(100vw, 900px);
    height: min(55vw, 495px);
}

/* done */