/*
------------------------------------------
Top-level styles
*/
@font-face {
    font-family: 'Mona Sans';
    src:
      url('/fonts/MonaSans/Mona-Sans.woff2') format('woff2 supports variations'),
      url('/fonts/MonaSans/Mona-Sans.woff2') format('woff2-variations');
    font-weight: 200 900;
    font-stretch: 75% 125%;
  }

@font-face {
    font-family: 'Hubot Sans';
    src:
        url('/fonts/HubotSans/Hubot-Sans.woff2') format('woff2 supports variations'),
        url('/fonts/HubotSans/Hubot-Sans.woff2') format('woff2-variations');
    font-weight: 200 900;
    font-stretch: 75% 125%;
    }

html, body {
    min-width: 375px;
    width: 100%;
    background-color: rgb(252,252,252);
}

body {
    width: 100%;
    margin: 0;
    font-family: 'Hubot Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: black;
    background-color: rgb(252,252,252);
    min-width: 350px;
}

#root {
    z-index: 0;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: center;
    background-color: rgb(252,252,252);
}

section {
    padding: 20px;
}

.s-hero-bottom-shadow {
    height: 1px;
    background-color: rgba(0,0,0,0.08);
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

/*
------------------------------------------
Menu bar
*/

.menu-bar {
    height: 90px;
    padding: 10px;
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: center;
    z-index: 2000;
}

.menu-bar a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.menu-bar-logo {
    color: black;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: center;
    position: relative;
}

.menu-bar-logo a {
    color: black;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: center;
    position: relative;
}

.menu-bar-logo-img {
    width: 32px;
    height: 32px;
}

.menu-bar-logo h1 {
    margin-left: 10px;
    font-size: 30px;
    font-variant: small-caps;
    font-stretch: semi-condensed;
    text-transform: uppercase;
}

#by-zydro-container {
    display: block;
    position:absolute;
    top: calc(100% - 10px);
    right: 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.4;
}

#by-zydro-container img {
    margin-left: 5px;
    margin-right: 5px;
    height: 18px;
}

.menu-bar-spacer {
    flex: 1;
}

a.menu-bar-link {
    color: black;
    margin: 0px;
    font-size: 16px;
    margin-right: 20px;
    font-weight: 500;
}

.menu-actions-outer {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0px 0px 0px 1px rgba(0,0,0,0.15);
    padding: 0px;
    height: 50px;
    margin-left: 10px;
}

.menu-actions-outer a {
    color: black;
    margin: 0px;
    font-size: 16px;
}

#login-button {
    color: black;
    padding: 15px;
    padding-left: 35px;
    padding-right: 20px;
    font-weight: 600;

}

#back-to-main-button {
    color: black;
}

#sign-up-button {
    color: white;
    background-color: rgb(26,125,241);
    border-radius: 25px;
    padding: 15px;
    padding-left: 25px;
    padding-right: 25px;
    margin: 5px;
    margin-right: 2px;
}

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

.menu-bar-mobile-items {
    display: none;
}

@media (max-width: 850px) {
    .menu-bar-desktop-items {
        display: none;
    }
    
    .menu-bar-mobile-items {
        display: block;
    }
    .menu-bar-logo h1 {
        font-size: 24px;
    }
    .menu-bar-logo-img {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 800px) {
    .menu-actions-outer a {
        font-size: 12px;
    }
    #login-button {
        padding-left: 25px;
        padding-right: 10px;
    }
    #sign-up-button {
        padding-left: 20px;
        padding-right: 20px;
        margin-right: 3px;
    }
}

#menu-mobile-hamburger-button-close {
    display: none;
    width: 42px;
    height: 32px;
    background: url('/img/hamburger-cross.svg') no-repeat;
    cursor: pointer;
    position: fixed;
    top: 50px;
    right: 26px;
    z-index: 1001;
}
#menu-mobile-hamburger-button {
    display: block;
    width: 32px;
    height: 22px;
    background: url('/img/hamburger.svg') no-repeat;
    cursor: pointer;
}

#menu-overlay {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: stretch;
    position: fixed;
    z-index: 1000;
    background-color: rgba(245, 245, 245, 0.9);
    top: 0px;
    transition: height 0.25s;
    left: 0px;
    right: 0px;
    padding: 0px;
    overflow: hidden;
}

#menu-overlay::after {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    color: black;
    background: url(/img/contour-v2.svg), linear-gradient(357deg, rgb(235 235 235) 0%, rgb(244 244 244) 100%);
    z-index: -1;
    opacity: 0.7;
}

.menu-overlay-logo-img {
    width: 42px;
    height: 42px;
    position: absolute;
    top: 43px;
    left: 21px;
}

.menu-overlay-section-title {
    flex: 0 0 auto;
    padding: 14px;
    padding-left: 20px;
    padding-top: 30px;
    text-decoration: none;
    color: black;
    font-size: 14px;
    font-weight: 700;
    background-color: rgba(245, 245, 245, 0.8);
}

.menu-overlay-spacer {
    flex: 0 0 auto;
    height: 124px;
    width: 100%;
}
.menu-overlay-divider {
    flex: 0 0 auto;
    width: 100%;
    height: 1px;
    background-color: rgba(0,0,0,0.2);
}
.menu-overlay-button {
    flex: 0 0 auto;
    padding: 20px;
    text-decoration: none;
    color: black;
    font-size: 24px;
    font-weight: 500;
    background-color: rgba(245, 245, 245, 0.8);
}

.menu-overlay-external-button {
    flex: 0 0 auto;
    padding: 20px;
    text-decoration: none;
    color: black;
    font-size: 24px;
    font-weight: 500;
    background-color: rgba(245, 245, 245, 0.8);
    display: flex;
    column-gap: 10px;
    justify-content: start;
    align-items: center;
}

.menu-overlay-external-button-img {
    opacity: 0.4;
    content: '';
    display: block;
    top: 9px;
    right: 12px;
    width: 20px;
    height: 20px;
    background-image: url('/img/icons/arrow-top-right-black.svg');
}

.menu-overlay-closed {
    height: 0px;
}

.menu-overlay-open {
    height: 100%;
}

/*
------------------------------------------
*/

.s-hero {
    width: 100%;
    display: block;
    position: relative;
}

.s-hero h1 {
    font-weight: 600;
}
.s-hero h2 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 10px;
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    column-gap: 15px;
}

.cta-signup-button {
    color: white;
    margin: 0px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    background-color: rgb(26,125,241);
    border: 1px solid rgb(26,125,241);
    border-radius: 25px;
    padding: 12px;
    padding-left: 20px;
    padding-right: 20px;
}

.cta-contact-button {
    color: rgb(25, 25, 25);
    margin: 0px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.769);
    border-radius: 25px;
    padding: 12px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.img-darken {
    mix-blend-mode: darken;
    margin: 0 auto;
}
.cta-tryitout-button{
    color: rgb(0, 0, 0);
    margin: 0px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 25px;
    padding: 10px;
    padding-left: 20px;
    padding-right: 40px;
    box-sizing: border-box;
    position: relative;
}
.cta-tryitout-button::after {
    opacity: 0.4;
    content: '';
    display: block;
    position: absolute;
    top: 9px;
    right: 12px;
    width: 20px;
    height: 20px;
    background-image: url('/img/icons/arrow-top-right-black.svg');
}

.cta-docs-button {
    color: rgb(25, 25, 25);
    margin: 0px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 25px;
    padding: 10px;
    padding-left: 20px;
    padding-right: 40px;
    box-sizing: border-box;
    position: relative;
}
.cta-docs-button::after {
    opacity: 0.4;
    content: '';
    display: block;
    position: absolute;
    top: 9px;
    right: 12px;
    width: 20px;
    height: 20px;
    background-image: url('/img/icons/arrow-top-right-black.svg');
}

#try-it-out-text {
    position: absolute;
    top: -25px;
    left: 0px;
    right: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgba(0, 0, 0, 0.412);
    font-size: 14px;
    font-weight: 600;

}

.s-hero-spacer {
    height: 150px;
}

.s-hero p {
    margin-top: 10px;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.5;
    max-width: 800px;
    text-align: center;
}

#phone-img {
    position: absolute;
    z-index: 10;
    height: 600px;
    right: 0px;
    top: -320px;
    user-select: none;
    pointer-events: none;
    filter: grayscale();
}

@media (max-width: 900px) {
    #phone-img {
        height: 400px;
        right: 20px;
        top: -160px;
    }
}

.s-subhero {
    padding-bottom: 40px;
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    position: relative;
    align-self: stretch;
    margin: 0 auto;
}

.s-subhero p {
    max-width: 60%;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
    margin-top: 40px;
    line-height: 1.4;
    color: rgba(0,0,0,0.9);

}

.s-showcase {
    width: 100%;
    background-color: white;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 30px;
    padding-bottom:50px;
}

.get-started-box {
    flex: 1;
    margin: 0 auto;
    max-width: 1100px;
    width: 100%;
    background-color: rgba(255,255,255,0.8);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.1);
}

h1 {
    font-size: 32px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 20px;
}

h2 {
    font-size: 24px;
    margin-top: 16px;
    margin-bottom: 16px;
}

h3 {
    font-weight: 600;
    font-size: 20px;
    margin-top: 16px;
    margin-bottom: 18px;
    color: rgba(0,0,0,0.6);
}

#mapbox-link-1 { 
    color: black;
}


@media (max-width: 800px) {
    .cta-buttons {
        flex-direction: column;
        row-gap: 15px;
    }
    .s-hero h2 {
        font-size: 28px;
        line-height: 1.5;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 0px;
    }
    .s-hero p {
        font-size: 20px;
        margin-bottom: 20px;
    }
    h1 {
        font-size: 28px;
    }
}

.get-started-box h1 {
    font-size: 28px;

}
.get-started-box p {
    font-size: 22px;
    margin-bottom: 20px;
}

.s-showcase h1 {
    margin-bottom: 30px;
}


.s-spacer {
    flex: 1 0 10px;
    max-width: 1000px;
    flex-basis: 10px;
}

.s-diagram {
    width: 100%;
}

.s-diagram-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: stretch;
}

.s-diagram-block {
    flex: 1;
    border: 4px solid rgb(128, 245, 167);
    border-radius: 10px;
    padding: 10px;
    background-color: white;
}


.s-horizontal-spacer {
    width: 100%;
}

.s-horizontal-line {
    width: 100%;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 0;
}
.s-terms-of-service-text {
    flex: 1 0 100px;
    width: 100%;
    max-width: 1200px;
    flex-basis: 100px;
    padding: 35px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 50px;
}

.s-terms-of-service-text h1 {
    font-size: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.s-terms-of-service-text p {
    line-height: 1.5;
    margin-top: 20px;
}

#s-chart-sources-text {
    flex: 0 0 100px;
    padding-bottom: 20px;
    padding: 40px;
}

.flex-spacer {
    flex: 1;
}

.s-chart-sources {
    flex: 0 0 auto;
    width: calc(100% - 80px);
    max-width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
    padding: 35px;
    padding-bottom: 50px;
    padding: 0px;
    background: white;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    margin-left: 40px;
    margin-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    margin-top: 20px;
    margin-bottom: 50px;
    border: 1px solid rgba(0,0,0,0.1);
    line-height: 1.2;
}

table #chart-source-table {
    background-color: white;
}
#chart-source-table tr {
    color: black;
    padding: 10px;
    border-top: 1px solid rgba(0,0,0,0.1);
    line-height: 1.2;
}
#chart-source-table th {
    padding: 20px;
    font-style: italic;
    text-align: left;
}
#chart-source-table td {
    padding: 20px;
    text-align: left;
}

#demo-frame2 {
    width: 100%;
    min-height: 800px;
    flex: 0 0 auto;
    border-radius: 0px;
}

.s-body-text {
    flex: 1 0 1000px;
    max-width: 1000px;
    flex-basis: 1000px;
}

.s-body-text div {
    flex: 1 0 1000px;
}

.s-centered {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    position: relative;
    align-self: stretch;
}

.s-pricing {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    position: relative;
    align-self: stretch;
}

.s-center-children {
    justify-content: center;
    align-items: center;
}

@media (min-width: 801px) {
    .s-centered {
        margin: 0 auto;
    }
    .s-pricing {
        margin: 0 auto;
    }
}

.s-centered-expand {
    overflow: hidden;
}
.s-centered-expand h3 {
    width: 1000px;
}

.s-light {
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
}

.s-dark {
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    background-color: rgba(0,0,0,0.03);
}

.contour-bg {
    color: black;
    background: url(/img/contour-v2.svg), linear-gradient(357deg, rgb(235 235 235) 0%, rgb(244 244 244) 100%);
}

.f-container-monitor-centered {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: stretch;
    margin-top: 50px;

}
.f-container-outer {
    position: relative;
    background-color: rgba(163, 163, 163, 0.334);
    border-radius: 22px;
    padding: 8px;
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: stretch;
    /* border: 1px solid rgba(0,0,0,0.05); */
    margin-bottom: -200px;
    z-index: 10;
}

.f-container-outer2 {
    background-color: rgba(0, 0, 0, 0.834);
    border-radius: 16px;
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: stretch;
}

.f-container-spacer {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
}

.f-container-inner {
    flex: 1;
    padding: 10px;
    background-color: white;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.1);
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    line-height: 1.4;
    position: relative;
}

.f-container-inner-nopadding {
    flex: 1;
    background-color: white;
    border-radius: 10px;
    /* border: 1px solid rgba(0,0,0,0.15); */
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.f-pricing-container-inner {
    max-width: 800px;
    min-width: 400px;
    flex: 1;
    width: 100%;
}

.f-container-inner h2 {
    font-weight: bold;
    font-size: 22px;
    font-variant: small-caps;
    font-stretch: semi-condensed;
    text-transform: uppercase;
}
.f-container-inner p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.f-container-inner img {
    /* position: absolute;
    top: 10px;
    right: 10px; */
    height: 40px;
    margin-top: 10px;
    margin-bottom: -10px;
    opacity: 0.4;
}

.f-container-inner-nopadding video {
    position: relative;
    width: 100%;
    margin-bottom: -5px;
}

.s-cta-outer {
    background-color: rgba(143, 143, 143, 0.1);
    border-radius: 16px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    border: 1px solid rgba(0,0,0,0.05);
}

.s-cta-spacer {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
}

.s-cta-inner {
    flex: 1;
    padding: 10px;
    background-color: white;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.1);
    padding-left: 20px;
    padding-right: 20px;
    line-height: 1.4;
    position: relative;
}
.cta-outer {
    flex: 0 0 auto;
    background-color: rgba(255,255,255,0.5);
    border-radius: 16px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    min-width: 400px;
    margin-bottom: 20px;

}

.cta-inner {
    padding: 0px;
    background-color: white;
    border-radius: 10px;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 1.4;
    user-select: auto;
    flex: 1;

}

.s-cta {
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    margin: 0 auto;
    margin-bottom: 100px;
}

.s-cta h1 {
    font-weight: bold;
}
.s-cta h2 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: bold;
    margin-top: 0px;
    padding: 10px;
    padding-top: 20px;
    flex: 1;
}
.s-cta form {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;

}

.s-cta input {
    border: 1px solid rgba(0,0,0,0.2);
    padding: 10px;
    border-radius: 6px;
    flex: 1;
    font-size: 16px;
}

.s-cta button {
    background-color: black;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-stretch: semi-condensed;
    margin-top: 10px;
    float: right;
}

.s-cta-layout {
    min-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
}

.s-cta-layout h2 {
    margin-right: 20px;
}

.green-tag { 
    background-color: #61ff617d;
    display: inline-block;
    padding: 4px;
    padding-left: 8px;
    border-radius: 6px;
    padding-right: 8px;
}

@media (max-width: 800px) {
    .f-container-outer {
        flex-direction: column;
    }
    .s-cta-layout {
        min-width: 0px;
        flex-direction: column;
    }
    .s-cta h2 {
        margin-right: 0px;
        font-size: 20px;
    }
    .cta-outer {
        min-width: 0px;
    }


}


.s-footer {
    border-top: 1px solid rgba(0,0,0,0.1);
}

.s-footer-links {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: flex-start;

}
.s-footer-links > div {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: flex-start;
    align-items: flex-start;
    margin-left: 0px;

}

.s-footer-links a {
    flex: 0 0 auto;
    color: rgba(0,0,0,0.75);
    text-decoration: none;
    margin-bottom: 12px;
}

.s-footer-llc {
    color: rgba(0,0,0,0.5);
}

.s-footer-llc a {
    color: rgba(0,0,0,0.75);
}

.s-footer-links-subheader {
    flex: 0 0 auto;
    color: rgba(0,0,0,0.45);
    margin-bottom: 12px;
}

.s-split {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
}

.s-split-horizontal {
    flex-direction: row;
    column-gap: 20px;
}

@media (max-width: 800px) {
    .s-split-horizontal {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

image {
    max-width: 100vw !important;
}

.s-split-vertical {
    flex-direction: column;
    align-items: center;
}

.s-split-left {
    flex: 1;
    max-width: 80%;
}

.s-split-left-image {
    flex: 2;
    max-width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.s-split-vertical .s-split-left {
    margin-bottom: 30px;
}

.s-split-right {
    flex: 1;
}

.s-split h1 {
    font-size: 26px;
    line-height: 1.5;
}

.s-split p {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.5;
}
.s-split video {
    width: 600px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.15);
}
.s-split img {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.15);
}

@media (max-width: 800px) {
    .s-footer-links {
        flex-direction: column;
    }
    .s-footer-links > div {
        margin-top: 20px;
        margin-left: 0px;
    }
}


.s-try-it-out {
    /* background-color: rgba(40,40,40,1.0); */
    /* color: white; */
    width: 100%;
}
.s-try-it-out-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    flex-direction: row;
}

#try-it-out-image {
    width: 600px;
}

@media (max-width: 1100px) { 
    #try-it-out-image {
        width: 400px;
    }
}

@media (max-width: 800px) {
    .s-try-it-out-inner {
        flex-direction: column;
    }
    #try-it-out-image {
        width: 100%;
        margin-bottom: -50px;
    }
}


.s-try-it-out-left  {
    padding: 20px;
}

.s-try-it-out p {
    font-size: 18px;
    line-height: 1.5;
}

.grid-wrapper {
    display: grid;
    grid-template-columns: 300px 300px 300px;
    grid-gap: 20px;
    margin: 0 auto;
    max-width: 940px;
  }
  
.grid-item {
    background-color: #f0f0f0;
    border-radius: 5px;
    padding: 20px;
    font-size: 150%;
    min-height: 150px;
    cursor: pointer;
}

.f-feature-container-column {
    flex: 1;
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    flex-direction: column;
}
.f-feature-container-column .f-container-inner {
    flex: 1;
    overflow: hidden;
}

.s-get-started {
    position: relative;
    width: 100%;
    background: rgb(95,238,255);
    background: radial-gradient(circle, rgba(95,238,255,1) 0%, rgba(161,233,104,1) 73%);
    padding: 40px;
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    border-top: 1px solid rgba(0,0,0,0.1);
}

.s-get-started-bg {
    background: url(/img/contour-v2.svg), linear-gradient(357deg, rgb(235 235 235) 0%, rgb(244 244 244) 100%);
}

.s-get-started-button-outer {
    padding: 4px;
    outline: 10px solid rgba(0,0,0,0.1);
    border-radius: 34px;
    background-color: white;
}

.s-get-started-button {
    position: relative;
    background-color: black;
    height: 100px;
    cursor: pointer;
    font-size: 32px;
    color: white;
    border-radius: 30px;
    padding: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    border: 10px solid rgba(0,0,0,0.1);
    box-sizing: border-box;
}

.s-get-started-footerline {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 10px;
    background-color: rgba(0,0,0,0.05);
}
.s-get-started-footerline2 {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 10px;
    background-color: rgba(0,0,0,0.05);
}

#s-point-to-point-routing {
    padding-top: 30px;
    padding-bottom: 30px;
}

#s-point-to-point-routing > .s-split {
    column-gap: 30px;
}

#demo-frame {
    width: 900px;
    height: 600px;
    max-width: 80vw;
}

@media (max-width: 600px) {
    #demo-frame {
        width: 100%;
        max-width: 85vw;
    }
}

@media (max-width: 1100px) { 
    #demo-frame {
        width: 650px;
        height: 450px;
    }
}

@media (max-width: 800px) {
    .s-split-left {
        max-width: 100%;
    }
    .s-split-left-image {
        max-width: 100%;
    }
    #routing-video {
        margin-bottom: 15px;
    }
    #vector-tiles-1-image {
        margin-top: 15px;
        max-width: 100%;
    }
    #s-point-to-point-routing {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
}

.s-compatibility {
    padding: 40px;
}
.s-compatibility p {
    font-size: 18px;
    line-height: 1.5;
}
.s-compatibility h1 {
    font-size: 26px;
    line-height: 1.5;
}

#vector-tiles-1-image {
    width: 400px;
}
#routing-video {
    max-width: 1000px;
    width: 100%;
}

#search-image {
    max-width: 1000px;
    width: 100%;

}

#theme-variations-image {
    max-width: 900px;
    width: 100%;

}

#compatible-libraries-image {
    margin-top: 15px;
    max-width: 600px;
    width: 100%;
}

#contact-us-form {
    width: 100%;
    max-width: 1200px;
    flex-grow: 1;
}

#contact-us-form label {
    font-weight: bold;
}
#contact-us-form input {
    width: 100%;
    padding: 12px 12px;
    margin: 8px 0;
    box-sizing: border-box;
    font-size: 16px;
    font-family: unset;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.2);
    background-color: white;
}
#contact-us-form textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px 12px;
    margin: 8px 0;
    box-sizing: border-box;
    font-size: 16px;
    font-family: unset;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.2);
    background-color: white;
    resize: none;
}

#contact-us-form button {
    border: none;
    color: white;
    background-color: rgb(26, 125, 241);
    border-radius: 25px;
    padding: 15px;
    padding-left: 25px;
    padding-right: 25px;
    margin: 5px;
    margin-right: 2px;
    font-size: 16px;
    font-family: unset;
    font-weight: 600;
    float: right;
    cursor: pointer;
}

#contact-us-form button:hover {
    background-color: rgb(36, 130, 238);

}

.external-site-link {
    display: inline-block;
    position: relative
}

.external-site-link::after {
    opacity: 0.6;
    content: '';
    display: block;
    position: absolute;
    top: 0px;
    left: calc(100% + 4px);
    width: 12px;
    height: 12px;
    background-image: url('/img/icons/arrow-top-right-black.svg');
}


.pricing-box {
    flex: 1;
    margin: 0 auto;
    max-width: 1100px;
    width: 100%;
    background-color: rgba(255,255,255,1.0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.15);
    margin-top: -160px;
    -webkit-box-shadow: 0px 0px 29px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 29px 0px rgba(5, 2, 2, 0.1);
    box-shadow: 0px 0px 29px 0px rgba(0,0,0,0.1);
    margin-bottom: 80px;
}

#pricing-hero {
    padding-top: 40px;
    padding-bottom:150px;
}

#pricing-hero h1 {
    font-size: 28px;
    margin-bottom: 8px;
}
#pricing-hero p {
    font-size: 22px;
}

.pricing-element-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(0,0,0,0.1);
}
.pricing-element-outer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: stretch;
    min-height: 140px;
}

.pricing-price-display {
    flex: 1;
    background-color: rgba(0,0,0,0.01);
    padding: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    min-width: 180px;
}

.pricing-description {
    flex: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    height: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
}

.pricing-description h1 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 10px;
}
.pricing-description p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(0,0,0,0.8);
    margin-bottom: 0px;
}

.pricing-slider {
    flex: 2;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.pricing-slider-label {
    font-weight: 500;
    font-size: 14px;
    color: rgba(0,0,0, 0.4);
    margin-bottom: 10px;
}

.pricing-slider-el {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
}

.pricing-slider-ticks {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding-left: 8px;
    padding-right: 1px;
}
.pricing-slider-tick {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 1px;
    overflow: visible;
}
.pricing-slider-tick .line {
    height: 10px;
    width: 2px;
    margin-bottom: 4px;
    background-color: #ECEFF5;
}
.pricing-slider-tick .text {
    font-weight: 500;
    font-size: 14px;
    color: rgba(0,0,0, 0.5);
}


#pricing-grade-table {
    margin-top: 10px;
    display: none;
}
#pricing-grade-table tr {
    padding: 2px;
    line-height: 1.2;
    font-size: 14px;
}
#pricing-grade-table th {
    padding: 2px;
    text-align: left;
    color: rgb(94, 94, 94);
    font-weight: 500;
}
#pricing-grade-table td {
    padding: 4px;
    text-align: left;
    color: rgb(94, 94, 94);
    font-weight: 400;
    padding-right:20px;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(to right,  #ECEFF5 0%, #ECEFF5 100%);
    margin-bottom: 0px;
    z-index: 2;
    padding: 0px;
}

.pricing-count {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pricing-count-number {
    font-size: 20px;
}

.pricing-count-label {
    font-weight: 500;
    font-size: 14px;
    color: rgba(0,0,0, 0.4);
    margin-top: 10px;
    display: none;
}

.pricing-contact-us {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.pricing-contact-us h1 {
    font-size: 20px;
    line-height: 1.8;
    text-align: center;
}
.pricing-contact-us p {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 700px;
    line-height: 1.8;
    text-align: center;
}

.pricing-element-group {
    flex: 2;
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: stretch;

}
.pricing-price-display-spacer {
    flex: 1;
}
.pricing-price-display-fixed-size { 
    max-width: 180px;
}

.pricing-add-on-tag {
    background-color: #00a5ffeb;
    display: inline-block;
    border-radius: 20px;
    font-size: 14px;
    padding: 4px 10px;
    color: #ffffffe3;
    margin-left: 10px;
    margin-right: 10px;
    transform: translateY(-2px);
}

.pricing-element-spacer {
    flex: 2;
}

.pricing-custom-styles {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.pricing-custom-styles-detail {
    font-size: 14px;
}

#toggle-pricing {
    margin-top: 12px;
    margin-bottom: 4px;
    background-color: rgba(0,0,0,0.04);
    outline: none;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 0px 10px;
    font-family: unset;
    font-size: 14px;
    border-radius: 25px;
    height: 30px;
    color: rgba(0,0,0,0.7);
    font-weight: 500;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
#toggle-pricing img {
    width: 18px;
    height: 18px;
    opacity: 0.5;
    transform: translateY(1px);
    margin-left: 4px;
}
#toggle-pricing:hover {
    background-color: rgba(0,0,0,0.12);
    cursor: pointer;
}

.coming-soon-banner {
    background-color: rgba(235, 204, 117, 0.377);
    display: inline-block;
    padding: 8px 15px;
    border-radius: 20px;
}

@media (max-width: 800px) {
    .pricing-element-outer {
        flex-direction: column;
    }
    .pricing-element-group {
        flex-direction: row;
        /* border-top: 1px solid rgba(0,0,0,0.05); */
    }
    .pricing-slider {
        padding-left: 30px;
        padding-right: 30px;
    }
    .pricing-count-label {
        display: block;
    }
    .pricing-count {
        flex: 1;
        border-right: 1px solid rgba(0,0,0,0.05);
    }
    .pricing-price-display {
        flex: 1;
        background: none;
    }
    .pricing-price-display-fixed-size { 
        max-width: unset;
    
    }
    .s-light {
        padding: 0px;
    }
    .pricing-price-display-spacer {
        display: none;
    }
}

.s-footer-socials {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    padding-top: 0px;
    padding-bottom: 0px;
    width: 100%;
}
.social-icon {
    width: 32px;
    height: 32px;
    opacity: 0.6;
}

.social-icon-label {
    font-style: italic;
    opacity: 0.6
}

.footer-zydro-logo {
    max-width: 80px;
    width: 80px;
    opacity: 0.5;
    margin-bottom: 15px;
    margin-top: 10px;
}

.flex-spacer {
    flex: 1;
}