:root {
    --color--black: #101011;
    --color--white: white;
    --text-size--regular: 1rem;
    --heading--h2: 5rem;
    --heading--h6: 2rem;
    --color--grey: #353535;
    --text-size--large: 1.5rem;
    --text-size--tiny: .75rem;
    --heading--h1: 10.5rem;
    --heading--h4: 3rem;
    --heading--h5: 2.5rem;
    --text-size--small: .875rem;
    --color--ccld-blue: #12a0c2;
    --color--dark-grey: #1f1f1f;
    --heading--h3: 4rem;
    --color--ccld-green: #68c293;
    --color--ccld-dark-blue: #003551;
    --text-size--medium: 1.125rem;
}

.w-layout-blockcontainer {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.w-layout-grid {
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.w-layout-hflex {
    flex-direction: row;
    align-items: flex-start;
    display: flex;
}

@media screen and (max-width: 991px) {
    .w-layout-blockcontainer {
        max-width: 728px;
    }
}

@media screen and (max-width: 767px) {
    .w-layout-blockcontainer {
        max-width: none;
    }

    .w-layout-grid {
        grid-column-gap: 23px;
        grid-template-columns: 1fr;
    }
}

body {
    background-color: var(--color--black);
    color: var(--color--white);
    font-family: Satoshi, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

h1 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 38px;
    font-weight: 700;
    line-height: 44px;
}

h2 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 36px;
}

h3 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
}

h4 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
}

h5 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
}

p {
    margin-bottom: 10px;
}

a {
    text-decoration: underline;
}

img {
    object-fit: cover;
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: inline-block;
}

blockquote {
    border-left: 5px solid #e2e2e2;
    margin-bottom: 10px;
    padding: 10px 20px;
    font-size: 18px;
    line-height: 22px;
}

.hero-style-guide-wrapper {
    background-color: #121212;
    border-radius: 1rem;
    width: 100%;
    margin-top: 1rem;
    padding: 13rem 2rem 2rem;
    overflow: hidden;
}

.text-size-regular {
    font-size: var(--text-size--regular);
    line-height: 1.5;
}

.heading-2 {
    font-size: var(--heading--h2);
    font-weight: 300;
    line-height: 1;
}

.heading-2.text-weight-bold {
    text-shadow: 0 0 20px #000;
    margin-top: 10px;
    font-family: Satoshi, sans-serif;
    font-weight: 300;
}

.text-box {
    max-width: 27rem;
}

.text-box.large {
    max-width: 60rem;
}

.hero-style-guide-content {
    grid-row-gap: 1.5rem;
    color: #f3f3f3;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
}

.container {
    border-bottom: 1px #ffffff80;
    width: 100%;
    max-width: none;
}

.container.medium,
.container.small {
    max-width: 90rem;
}

.container.testimonials-container {
    margin-top: 7em;
}

.padding-global {
    color: var(--color--white);
    background-color: #0000;
    border: 1px #000;
    max-width: 100%;
    min-height: auto;
    margin-top: 0;
    padding-left: 5rem;
    padding-right: 5rem;
}

.padding-global.small {
    padding-left: 1rem;
    padding-right: 1rem;
}

.padding-global.footer-section {
    background-color: #ececec;
}

.rich-text h1 {
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.rich-text p {
    margin-bottom: 1.5rem;
}

.rich-text h2,
.rich-text h3,
.rich-text h4 {
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.rich-text img {
    border-radius: .5rem;
    overflow: hidden;
}

.rich-text h5 {
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.rich-text blockquote {
    margin-bottom: 1.5rem;
}

.rich-text h6 {
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.button-text-absolute {
    position: absolute;
    bottom: -2rem;
}

.style-guide-header {
    grid-row-gap: 2.5rem;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    margin-bottom: 4.5rem;
    display: flex;
}

.style-tag {
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid #fbfbfb33;
    border-radius: 10rem;
    padding: .625rem 1.5rem;
    font-weight: 500;
}

.text-weight-medium {
    font-weight: 500;
}

.typography-wrapper {
    grid-row-gap: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    max-width: 30rem;
    display: flex;
}

.style-gudie-content {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
}

.style-gudie-content.grid {
    grid-column-gap: 3rem;
    grid-row-gap: 5rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    font-size: 2rem;
    display: grid;
}

.style-guide-menu-links {
    grid-row-gap: 1.5rem;
    opacity: .5;
    color: #fbfbfb;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    transition: opacity .3s;
    display: flex;
}

.style-guide-menu-links:hover,
.style-guide-menu-links.w--current {
    opacity: 1;
}

.button-line {
    background-color: #3f3f3f;
    width: 100%;
    height: 1px;
}

.text-size-xsmall {
    letter-spacing: .5px;
    font-size: .9rem;
    line-height: 1.3;
}

.text-size-xsmall.text-style-caps {
    text-transform: uppercase;
}

.divider-line {
    opacity: .1;
    background-color: #dfddda;
    width: 100%;
    height: 1px;
}

.heading-6 {
    font-size: var(--heading--h6);
    line-height: 1.15;
}

.heading-6.text-weight-medium,
.heading-6.text-weight-medium.text-center {
    margin-left: auto;
    margin-right: auto;
}

.heading-6.grey-text {
    color: var(--color--grey);
}

.text-weight-bold {
    font-weight: 700;
}

.button {
    grid-row-gap: .25rem;
    color: #fbfbfb;
    flex-direction: column;
    text-decoration: none;
    display: flex;
    overflow: hidden;
}

.text-size-large {
    font-size: var(--text-size--large);
    line-height: 1.3;
}

.text-size-large.text-weight-medium {
    color: var(--color--white);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.typography-content {
    grid-row-gap: .5rem;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
}

.text-size-tiny {
    font-size: var(--text-size--tiny);
}

.color-palette-card {
    grid-row-gap: 2rem;
    border: 1px solid #dfddda;
    border-radius: 1rem;
    flex-direction: column;
    padding: .5rem .5rem 2rem;
    display: flex;
}

.style-guide-content {
    margin-bottom: 10rem;
}

.text-size-medium {
    border: 1px #12a0c2;
    margin-left: 0;
    margin-right: 0;
    font-size: 1.125rem;
    display: block;
}

.text-size-medium.text-weight-bold.center-text {
    text-align: center;
    line-height: 1.3;
}

.text-size-medium.text-grey {
    color: var(--color--grey);
}

.text-size-medium.margin-20 {
    margin-top: 10px;
    margin-bottom: 20px;
}

.text-size-medium.margin-20.text-center {
    margin-left: auto;
    margin-right: auto;
}

.text-size-medium.text-center {
    text-align: center;
}

.heading-1 {
    font-size: var(--heading--h1);
    font-weight: 300;
    line-height: 1;
}

.text-weight-regular {
    font-weight: 400;
}

.button-text {
    flex-direction: column;
    display: flex;
    position: relative;
}

.style-guide-component {
    grid-template-rows: auto;
    grid-template-columns: .25fr 1fr;
    margin-bottom: 10rem;
}

.style-guide-menu {
    grid-row-gap: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    display: flex;
}

.heading-4 {
    color: var(--color--grey);
    font-size: var(--heading--h4);
    line-height: 1.15;
}

.heading-4.text-weight-bold {
    color: var(--color--grey);
    font-weight: 500;
}

.heading-4.text-weight-medium {
    color: var(--color--grey);
}

.heading-4.text-color-white {
    text-shadow: 0 0 4px #0003;
}

.heading-4.text-color-white.text-weight-bold-white {
    font-weight: 700;
}

.heading-4.text-color-white.margin-bottom-50 {
    margin-bottom: 50px;
}

.text-weight-light {
    font-weight: 300;
}

.heading-5 {
    font-size: var(--heading--h5);
    line-height: 1.25;
}

.heading-5.grey-text {
    color: var(--color--grey);
}

.text-size-small {
    color: #12a0c2;
    font-size: var(--text-size--small);
}

.text-size-small.text-weight-medium {
    color: #12a0c2;
}

.text-size-small.text-weight-bold {
    color: #fff;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
    display: inline-flex;
}

.text-size-small.text-weight-bold.text-size-small-blue {
    color: #12a0c2;
}

.class-name-wrapper {
    grid-row-gap: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 6rem;
    display: flex;
}

.class-name-wrapper.margin-bottom-0 {
    margin-bottom: 0;
}

.color-palette {
    border: 1px solid #ffffff1a;
    border-radius: 1rem;
    width: 100%;
    height: 10rem;
}

.color-palette.color-white {
    background-color: var(--color--white);
}

.color-palette.color-orange {
    background-color: var(--color--ccld-blue);
}

.color-palette.color-black {
    background-color: var(--color--black);
}

.color-palette.color-dark-grey {
    background-color: var(--color--dark-grey);
}

.color-palette.color-grey {
    background-color: var(--color--grey);
}

.style-guide-menu-wrapper {
    grid-row-gap: 2rem;
    flex-direction: column;
    align-items: flex-start;
}

.color-palette-text {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.section-style-guide {
    margin-top: 5.75rem;
}

.heading-3 {
    font-size: var(--heading--h3);
    line-height: 1;
}

.sticky-menu {
    grid-row-gap: 2rem;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
    position: sticky;
    top: 4rem;
}

.trusted-by-component {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    align-items: center;
    margin-top: 4rem;
    display: flex;
}

.read-more-button {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    align-items: center;
    transition: all .25s;
    display: flex;
}

.read-more-button:hover {
    grid-column-gap: .8rem;
    grid-row-gap: .8rem;
}

.hero-wrapper {
    flex-flow: column;
    align-items: center;
    margin-top: 25vh;
    margin-bottom: 10vh;
    display: flex;
}

.primary-button {
    color: var(--color--white);
    background-color: #12a0c2;
    border-radius: 50rem;
    justify-content: center;
    align-items: center;
    padding: .75rem 1.5rem;
    text-decoration: none;
    display: flex;
    position: relative;
    overflow: hidden;
}

.primary-button.w--current {
    display: inline-flex;
}

.primary-button.inline-button {
    margin-left: 0;
    margin-right: 10px;
}

.primary-button.inline-button.w--current,
.primary-button.inline-button.double-button {
    margin-left: 10px;
    margin-right: 10px;
}

.primary-button.inline-button.margin-20 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.primary-button.margin10.slim-button {
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.trusted-by-hero-logos {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    justify-content: center;
    align-items: center;
    display: flex;
}

.logos {
    justify-content: center;
    align-items: center;
    height: 2rem;
    display: flex;
}

.double-button-component {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    justify-content: center;
    align-items: stretch;
    display: flex;
}

.double-button-component.margin-top-button-hero {
    margin-top: 2.8rem;
}

.double-button-component.margin-top-button-features {
    margin-top: .5rem;
}

.max-width-50ch {
    max-width: 50ch;
}

.hero-component {
    grid-column-gap: 1.875rem;
    grid-row-gap: 1.875rem;
    text-align: center;
    flex-flow: column;
    align-items: center;
    display: flex;
}

.secondary-button-text {
    z-index: 2;
    margin-left: .9rem;
    position: relative;
}

.vertical-line-tag {
    opacity: .5;
    color: #fff;
    background-color: #12a0c2;
    width: 1px;
    height: 1rem;
}

.opacity-50 {
    opacity: .5;
}

.opacity-60 {
    opacity: .6;
}

.secondary-button {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    color: var(--color--white);
    border: 1px solid #353535;
    border-radius: 50rem;
    justify-content: center;
    align-items: center;
    padding-left: .5rem;
    padding-right: .5rem;
    text-decoration: none;
    display: flex;
    position: relative;
}

.read-more-tag {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    color: var(--color--white);
    border: 1px solid #12a0c2;
    border-radius: 2.3125rem;
    justify-content: space-between;
    align-items: center;
    padding: .5rem .75rem;
    text-decoration: none;
    display: flex;
}

.arrow {
    width: 20px;
    height: auto;
}

.integrations-block {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    background-color: #1f1f1f;
    border-radius: 1rem;
    flex-flow: column;
    align-items: center;
    padding: 4rem 5rem 2.4rem;
    display: flex;
}

.integrations-block.second {
    width: 40%;
}

.integrations-block.first {
    width: 60%;
}

.max-width-46ch {
    max-width: 46ch;
}

.header {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    text-align: center;
    flex-flow: column;
    align-items: center;
    max-width: 63ch;
    display: flex;
}

.opacity-70 {
    opacity: .7;
}

.integrations-image {
    border-radius: .875rem;
    justify-content: center;
    align-items: center;
    height: 10rem;
    display: flex;
    overflow: hidden;
}

.features-cards-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    text-align: center;
    flex-flow: column;
    align-items: center;
    display: flex;
}

.integrations-content-component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    display: flex;
}

.home-integrations-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-flow: column;
    width: 100%;
    display: flex;
}

.integrations-content {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    flex-flow: column;
    align-items: center;
    display: flex;
}

.home-features-wrapper {
    grid-column-gap: 5.5rem;
    grid-row-gap: 5.5rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 9rem;
    display: flex;
}

.features {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.features-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
}

.max-width-48ch {
    max-width: 48ch;
}

.features-content {
    object-fit: contain;
    flex: 0 auto;
    max-width: 20ch;
}

.testimonial-grid {
    grid-column-gap: 23px;
    grid-row-gap: 1rem;
    grid-template-rows: auto;
    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    display: grid;
}

.testimonial-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    flex-flow: column;
    align-items: center;
    margin-top: 8rem;
    display: flex;
    padding-bottom: 6rem;
}

.quote-icon {
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    display: flex;
}

.testimonial-image {
    text-align: center;
    background-color: #fff;
    border-radius: .5rem;
    flex: 0 auto;
    max-width: 7rem;
    min-height: 60px;
    max-height: 5rem;
    margin-bottom: 5px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 3px;
    padding-right: 3px;
    display: block;
    position: static;
    overflow: hidden;
}

.testimonial-quote {
    border: 1px #096980;
}

.testimonial-quote:hover {
    border-style: none;
}

.max-width-40ch {
    max-width: 40ch;
}

.testimonial-component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    text-align: center;
    flex-flow: column;
    align-items: center;
    max-width: 50vw;
    display: flex;
}

.testimonial-content {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    border-top: 1px #000;
    flex-flow: column;
    flex: 1;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: flex-start;
    display: flex;
}

.testimonial-card {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    -webkit-text-stroke-color: var(--color--white);
    background-color: #6ac5d6;
    border: 1px #49dcff;
    border-radius: .5rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 80ch;
    height: 100%;
    padding: 2.5rem 2.3rem 3rem;
    transition: background-color .25s;
    display: flex;
}

.testimonial-card:hover {
    background-color: #003551;
}

.testimonial-company-info {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    text-align: center;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.steps-card {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: #f8f8f8;
    border: 1px solid #e6e6e6;
    border-radius: 1rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr .75fr;
    grid-auto-columns: 1fr;
    width: 100%;
    height: 53vh;
    display: grid;
    overflow: hidden;
}

.steps-content {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    color: #fbfbfb;
    flex-flow: column;
    align-items: flex-start;
    display: flex;
}

.left-content {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding: 4rem 5rem;
    display: flex;
}

.steps-stack-component {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column;
    width: 1200px;
    max-width: 90%;
    display: flex;
}

.steps-image {
    z-index: 1;
    position: absolute;
    inset: 0%;
}

.right-content {
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    display: flex;
    position: relative;
}

.steps-tag {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    border: 1px solid #12a0c2;
    border-radius: 2.3125rem;
    justify-content: center;
    align-items: center;
    padding: .5rem .75rem;
    display: flex;
}

.image {
    box-sizing: border-box;
    aspect-ratio: auto;
    object-fit: cover;
}

.steps-description {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    opacity: .7;
    flex-flow: column;
    max-width: 40ch;
    display: flex;
}

.max-width-42ch {
    max-width: 42ch;
}

.steps-item {
    position: sticky;
    top: 8vh;
}

.services-wrapper {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
    flex-flow: column;
    align-items: center;
    margin-top: 8rem;
    display: flex;
}

.max-width-30ch {
    max-width: 50ch;
}

.credits-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.credits {
    text-decoration: none;
    transition: opacity .2s;
}

.credits:hover {
    opacity: .8;
}

.footer-grid-wrap {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.footer-grid-wrap.footer-links {
    text-decoration: none;
}

.footer-grid-wrap.footer-link {
    text-decoration: underline;
}

.vertical-line {
    background-color: #8e8c87;
    width: 1px;
    height: .8rem;
}

.footer-social-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 4.8rem;
    margin-bottom: 11rem;
    display: flex;
}

.footer-links-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.paragraph {
    color: #ffffff80;
}

.icon-embed {
    object-fit: contain;
    justify-content: center;
    align-items: center;
    height: 100%;
    display: flex;
}

.footer-grid {
    grid-column-gap: .6rem;
    grid-row-gap: 19px;
    text-align: center;
    border: 1px #000;
    flex-flow: wrap;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    grid-auto-rows: 0;
    grid-auto-columns: 1fr;
    place-items: center stretch;
    margin-bottom: 40px;
    display: grid;
}

.footer-grid.footer-menu {
    grid-column-gap: 1.9rem;
    border-top-style: solid;
    border-top-color: gray;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    margin-top: 40px;
    padding-top: 10px;
}

.footer-heading {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
    max-height: 4rem;
    margin-bottom: 0;
    margin-right: 5%;
    display: flex;
    position: relative;
}

.footer-link {
    line-height: 1;
    text-align: center;
    color: #8e8c87;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    transition: all .25s;
}

.footer-link:hover {
    color: #68c293;
    transform: translate(0, -2px);
}

.footer-links {
    grid-column-gap: 1.1rem;
    grid-row-gap: 1.1rem;
    align-items: center;
    display: flex;
}

.footer-social {
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 2.6rem;
    height: 2.6rem;
    padding: .7rem;
    transition: all .3s;
    display: flex;
}

.footer-social:hover {
    color: #c9d4d8;
    background-color: #ed5145;
    transform: translate(0, -2px);
}

.text-color-white {
    opacity: 1;
    color: #ebebeb;
}

.footer-component {
    color: var(--color--grey);
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 5rem;
    padding-bottom: 10rem;
    display: flex;
}

.trusted-by-about-component {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    flex-flow: column;
    align-items: center;
    margin-top: 7rem;
    display: flex;
}

.trusted-by-about-logos {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: grid;
}

.opacity-80 {
    opacity: .8;
}

.about-features-image {
    border-radius: 1rem;
    width: 100%;
    height: 15rem;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.max-width-33ch {
    max-width: 33ch;
}

.about-features-wrapper {
    grid-column-gap: 4.8rem;
    grid-row-gap: 4.8rem;
    flex-flow: column;
    align-items: center;
    max-width: 100%;
    margin-top: 4rem;
    display: flex;
    padding-bottom: 5rem;
}

.about-features-card {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    display: flex;
}

.about-features-content {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    opacity: .7;
    text-align: center;
    flex-flow: column;
    width: 100%;
    max-width: none;
    display: flex;
}

.about-features-grid {
    grid-column-gap: 4.1rem;
    grid-row-gap: 5.7rem;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    place-items: start stretch;
    width: 1300px;
    max-width: 98%;
    display: grid;
}

.about-features-header {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    text-align: center;
    flex-flow: column;
    align-items: center;
    max-width: 50vw;
    display: flex;
}

.max-width-26ch {
    max-width: 26ch;
}

.phase-cards-wrapper {
    grid-column-gap: 6.6rem;
    grid-row-gap: 6.6rem;
    flex-flow: column;
    align-items: center;
    margin-top: 12rem;
    display: flex;
}

.phase-number {
    opacity: .2;
    color: #fbfbfb;
}

.phase-cards-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    height: auto;
    display: grid;
}

.phase-cards {
    grid-column-gap: 3.5rem;
    grid-row-gap: 3.5rem;
    background-color: #151515;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 55vh;
    padding: 4rem 3rem 4.3rem;
    display: flex;
}

.phase-cards-header {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    text-align: center;
    flex-flow: column;
    align-items: center;
    max-width: 50vw;
    display: flex;
}

.phase-cards-content {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-flow: column;
    align-items: flex-start;
    max-width: 29ch;
    display: flex;
}

.event-card {
    grid-column-gap: 1.125rem;
    grid-row-gap: 1.125rem;
    text-align: center;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: inline-flex;
}

.team-grid {
    grid-column-gap: 1.375rem;
    grid-row-gap: 1.375rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 500px;
    max-width: 100%;
    display: grid;
}

.team-grid.max-width-30ch {
    grid-column-gap: 4.375rem;
    grid-template-columns: 1fr 1fr;
}

.team-content {
    grid-column-gap: .375px;
    grid-row-gap: .375px;
    text-align: center;
    flex-flow: column;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
    display: inline-flex;
}

.children-perspective {
    perspective: 1000px;
    text-align: center;
}

.team-image {
    border-radius: 1rem;
    align-self: auto;
    width: 120px;
    max-width: 50%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: inline-flex;
    overflow: hidden;
}

.team-wrapper {
    grid-column-gap: 4.6rem;
    grid-row-gap: 4.6rem;
    flex-flow: column;
    align-items: center;
    margin-top: 10rem;
    margin-bottom: 10rem;
    display: flex;
}

.team-header {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    text-align: center;
    flex-flow: column;
    align-items: center;
    max-width: 48vw;
    display: flex;
}

.caps {
    text-transform: uppercase;
}

.banner-button-line {
    color: #ed5145;
    background-color: #ed5145;
    width: 100%;
    height: 1px;
    position: relative;
    overflow: hidden;
}

.banner-overlay {
    z-index: 2;
    pointer-events: none;
    background-image: linear-gradient(45deg, #101011e6, #10101108);
    position: absolute;
    inset: 0%;
}

.banner-background {
    z-index: 1;
    position: absolute;
    inset: 0%;
}

.bottom-content {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    flex-flow: column;
    align-items: flex-start;
    display: flex;
}

.button-content {
    grid-column-gap: 13.8125rem;
    grid-row-gap: 13.8125rem;
    display: flex;
}

.banner-content {
    z-index: 3;
    grid-column-gap: 16rem;
    grid-row-gap: 16rem;
    flex-flow: column;
    align-items: stretch;
    display: flex;
    position: relative;
}

.banner-button {
    grid-column-gap: .7rem;
    grid-row-gap: .7rem;
    color: var(--color--white);
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-decoration: none;
    display: flex;
}

.text-align-right {
    text-align: right;
}

.banner-wrapper {
    border-radius: .5rem;
    flex-flow: column;
    padding: 3.5rem;
    display: flex;
    position: relative;
    overflow: hidden;
}

.max-width-38ch {
    max-width: 38ch;
}

.top-content {
    justify-content: flex-end;
    align-items: flex-start;
    display: flex;
}

.max-width-75ch {
    max-width: 75ch;
}

.check-icon-wrap {
    background-color: #272727;
    border-radius: 50%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 1.75em;
    min-width: 1.75rem;
    height: 1.75rem;
    min-height: 1.75rem;
    padding-bottom: .15rem;
    display: flex;
}

.features-component {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
    perspective: 100vw;
    perspective-origin: 50%;
    flex-flow: column;
    width: 100%;
    max-width: none;
    height: auto;
    display: flex;
}

.features-heading {
    grid-row-gap: .625rem;
    text-align: center;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    max-width: 100ch;
}

.features-heading.align-left {
    color: var(--color--black);
    text-align: center;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.check-icon {
    width: .875rem;
    height: auto;
    padding-top: .2rem;
}

.features-vantages-content {
    grid-row-gap: 2rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 60%;
    margin-right: 2em;
    display: flex;
}

.features-wrapper {
    grid-column-gap: 7.5rem;
    grid-row-gap: 7.5rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    margin: 10rem auto 10rem;
    display: flex;
}

.gradient-overlay {
    z-index: 2;
    pointer-events: none;
    background-image: linear-gradient(0deg, #101011, #1010111a);
    position: absolute;
    inset: 0%;
}

.gradient-overlay.bigger {
    pointer-events: none;
    height: 50vw;
}

.gradient-overlay.hero {
    height: 100vh;
}

.features-image-container {
    justify-content: center;
    align-items: center;
    width: 50%;
    display: flex;
    overflow: visible;
}

.check-list {
    grid-row-gap: 1.25rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.check-item {
    grid-column-gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.features-image-wrapper {
    border-radius: 1rem;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 35vw;
    min-width: 35rem;
    max-width: 35rem;
    height: 32vw;
    min-height: 32rem;
    max-height: 35rem;
    display: flex;
    position: relative;
    overflow: hidden;
}

.features-heading-wrapper {
    grid-row-gap: 1rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    display: flex;
}

.features-icon-wrapper {
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
}

.features-venues {
    grid-column-gap: 4vw;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-left: 2rem;
    padding-right: 2rem;
    display: flex;
}

.max-width-55ch {
    max-width: 55ch;
}

.blog-list-wrap {
    width: 100%;
}

.blog-list {
    grid-column-gap: 2rem;
    grid-row-gap: 4rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.empty-state {
    text-align: center;
    background-color: #0000;
}

.blog-card {
    grid-row-gap: 1rem;
    border-radius: 1rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    text-decoration: none;
    display: flex;
}

.blog-card-image {
    border-radius: .5rem;
    width: 100%;
    height: 40vh;
    overflow: hidden;
}

.card-content {
    z-index: 2;
    grid-row-gap: .75rem;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: .5rem;
    margin-left: .3rem;
    text-decoration: none;
    display: flex;
}

.title-wrapper {
    color: #fbfbfb;
    max-width: 60ch;
    text-decoration: none;
}

.blog-content-wrapper {
    grid-row-gap: 6rem;
    flex-flow: column;
    align-items: center;
    margin-top: 15vh;
    display: flex;
}

.max-width-70ch {
    max-width: 70ch;
}

.faq-component {
    grid-column-gap: 0px;
    grid-row-gap: 4.8125rem;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 4rem;
    margin-bottom: 7.5rem;
    display: flex;
}

.faq-list {
    grid-row-gap: .5rem;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: flex;
    position: relative;
}

.faq-item {
    cursor: pointer;
    background-color: #dfdfdf0f;
    border-radius: .5rem;
    flex-flow: column;
    padding: 1.5rem;
    transition: background-color .25s;
    display: flex;
}

.faq-item:hover {
    background-color: #dfdfdf1a;
}

.faq-top {
    z-index: 1;
    cursor: pointer;
    position: relative;
}

.faq-title-wrapper {
    z-index: 10;
    height: 100%;
    padding-right: 5rem;
    position: relative;
}

.faq-action-wrapper {
    z-index: 25;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 100%;
    display: flex;
    position: absolute;
    inset: 0% 0 0% auto;
}

.faq-bottom {
    z-index: 10;
    margin-right: 12rem;
    position: relative;
    overflow: hidden;
}

.faq-bottom-content {
    grid-column-gap: 0px;
    grid-row-gap: 16px;
    opacity: .7;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    margin-top: 1.5rem;
    margin-bottom: .5rem;
    display: grid;
}

.price-button {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
}

.price-button.enterprise {
    width: auto;
}

.contain {
    object-fit: contain;
}

.enterprise-content {
    grid-column-gap: 2rem;
    align-items: center;
    display: flex;
}

.enterprise-text {
    margin-left: 1.5rem;
}

.pricing-grid-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    width: 100%;
    margin-top: 2rem;
    display: flex;
}

.enterprise-banner {
    color: #fbfbfb;
    background-color: #151515;
    border: 1px solid #393939;
    border-radius: .5rem;
    justify-content: space-between;
    width: 100%;
    padding: 2.5rem 2rem;
    text-decoration: none;
    display: flex;
}

.pricing-grid {
    grid-column-gap: 3.2rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
}

.price-icon {
    background-color: #000;
    border-radius: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 3.5rem;
    height: 3.5rem;
    padding: .9rem;
    display: flex;
    opacity: .8;
}

.price-icon.black {
    background-color: #101011;
}

.price-icon.wired {
    padding-left: .5rem;
    padding-right: .25rem;
}

.price-card {
    grid-row-gap: 4rem;
    background-color: #0009;
    border-radius: .5rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 55svh;
    padding: 2.5rem 2.5rem 4rem;
    display: flex;
}

.price-card:nth-child(2n) {
    background-color: #1f1f1f;
}

.price-card.dark-grey {
    background-color: var(--color--dark-grey);
}

.price-card.blue {
    background-color: #003651b3;
}

.price-card.green {
    background-color: #0ca1a3c2;
}

.price-card.grey {
    background-color: #5fc9dcb5;
}

.price-card.pc2 {
    background-color: #0009;
}

.price-card-heading {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    align-items: flex-start;
    display: flex;
}

.price-check-item {
    grid-column-gap: .75rem;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.price {
    grid-column-gap: .75rem;
    align-items: flex-end;
    display: flex;
}

.price-check {
    width: .875rem;
    height: auto;
}

.margin-bottom-05 {
    margin-bottom: .4rem;
}

.price-check-list {
    grid-row-gap: 1.25rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.price-card-content {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    display: flex;
}

.price-check-icon {
    background-color: #393939;
    border-radius: 50%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 1.75em;
    min-width: 1.75rem;
    height: 1.75rem;
    min-height: 1.75rem;
    display: flex;
}

.price-features-wrap {
    grid-row-gap: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
}

.utility-page-wrap {
    justify-content: center;
    align-items: center;
    width: 100vw;
    max-width: 100%;
    height: 90vh;
    max-height: 100%;
    display: flex;
}

.utility-page-content {
    text-align: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    display: flex;
}

.utility-page-form {
    flex-direction: column;
    align-items: center;
    display: flex;
}

.max-width-90ch {
    max-width: 90ch;
}

.blog-image-wrapper {
    border-radius: .5rem;
    width: 90vw;
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.blog-overlay {
    background-image: linear-gradient(#10101100 10%, #101011db);
    position: absolute;
    inset: 0%;
}

.blog-component {
    grid-row-gap: 4rem;
    flex-direction: column;
    width: 100%;
    max-width: 100ch;
    margin: 9.5rem auto 7.5rem;
    display: flex;
}

.rich-text-paddig {
    grid-row-gap: 4.5rem;
    flex-direction: column;
    padding-left: 1.25rem;
    display: flex;
}

.features-hero-image {
    border-radius: 1rem;
    width: 95vw;
    height: 80vh;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.about-hero-image {
    border-radius: 1.5rem;
    width: 95vw;
    height: 90vh;
    margin-top: 3.2rem;
    position: relative;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
}

.not-found-heading {
    font-size: 23.1113rem;
    font-weight: 900;
    line-height: 1.15;
}

.larst-card-nav {
    opacity: 1;
    border-top-right-radius: .5rem;
    border-bottom-right-radius: .5rem;
    justify-content: center;
    align-items: center;
    width: auto;
    padding: .5rem;
    transition: opacity .25s;
    display: flex;
    position: relative;
    overflow: hidden;
}

.larst-card-nav:hover {
    opacity: .7;
}

.brand {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    justify-content: center;
    align-items: center;
    height: 2.5rem;
    display: flex;
}

.brand.w--current {
    grid-column-gap: .3rem;
    grid-row-gap: .3rem;
    object-fit: fill;
    height: 3.2rem;
}

.right-navbar-content {
    grid-column-gap: .8rem;
    grid-row-gap: .8rem;
    align-items: center;
    display: flex;
}

.navbar-component {
    grid-column-gap: 1.75rem;
    grid-row-gap: 1.75rem;
    border: 1px #ffffff42;
    border-bottom-style: solid;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
}

.nav-menu {
    z-index: 2;
    grid-column-gap: 1.9rem;
    grid-row-gap: 1.9rem;
    object-fit: fill;
    align-items: center;
    padding-left: 0;
    display: flex;
    position: relative;
}

.nav-menu-wrap {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    text-align: left;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: none;
    display: flex;
}

.link-block-navbar {
    color: var(--color--white);
    justify-content: center;
    align-items: center;
    padding: .46rem .75rem;
    text-decoration: none;
    transition: all .25s;
    display: flex;
}

.link-block-navbar:hover {
    opacity: .8;
    transform: translate(0, 1px);
}

.mobile-navbar-content {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    align-items: center;
    display: none;
}

.navbar {
    background-color: #0000;
    position: absolute;
    inset: 0% 0% auto;
}

.navbar-link {
    grid-column-gap: .6rem;
    grid-row-gap: .6rem;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.nav-link {
    color: var(--color--white);
    padding-top: .2rem;
    padding-bottom: .2rem;
    padding-left: 0;
    text-decoration: none;
    transition: all .25s;
    position: relative;
}

.nav-link:hover {
    opacity: .8;
    transform: translate(0, 1px);
}

.nav-link.w--current {
    text-shadow: 0 1px 14px #00000080;
}

.about-hero-interaction {
    flex-flow: column;
    align-items: center;
    height: 200vh;
    display: flex;
    position: relative;
}

.hero-sticky-component {
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100vh;
    margin-top: 5.5rem;
    display: flex;
    position: sticky;
    top: 5vh;
    bottom: 5vh;
}

.sticky-images {
    border-radius: 1.5rem;
    width: 30vw;
    height: 30vw;
    position: absolute;
    overflow: hidden;
}

.sticky-images.left {
    z-index: 2;
    margin-top: 5vh;
    right: 58vw;
}

.sticky-images.middle {
    z-index: 3;
}

.sticky-images.right {
    z-index: 1;
    margin-top: 5vh;
    left: 58vw;
}

.password {
    opacity: .37;
    filter: invert();
    width: 10rem;
    margin-left: auto;
    margin-right: auto;
}

.password-heading {
    text-align: center;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.5;
}

.display-none {
    display: none;
}

.text-field {
    color: var(--color--white);
    font-size: var(--text-size--regular);
    background-color: #fbfbfb33;
    border: 1px solid #0000;
    border-radius: 0;
    margin-top: .5rem;
    margin-bottom: 1.5rem;
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
    padding-left: 1rem;
    transition: all .4s;
}

.text-field:hover {
    color: var(--color--white);
    border-width: .5px;
    border-color: #fbfbfb40;
    border-radius: .5rem;
    padding-left: 1.2rem;
}

.text-field:active {
    color: var(--color--black);
}

.text-field:focus {
    border-color: var(--color--black);
    color: var(--color--white);
}

.submit-button {
    z-index: 3;
    color: #0000;
    background-color: #0000;
    position: absolute;
    inset: 0%;
}

.instruction-content-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 80%;
    margin-top: 15vh;
    display: flex;
}

.instruction-heading {
    grid-column-gap: .8rem;
    grid-row-gap: .8rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    display: flex;
}

.instructions {
    grid-column-gap: 1.3125rem;
    grid-row-gap: 1.3125rem;
    flex-flow: column;
    align-items: flex-start;
    width: 100%;
    display: flex;
}

.instructions-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    align-items: flex-start;
    display: flex;
}

.divider-line-instructions {
    background-color: var(--color--white);
    opacity: .1;
    width: 100%;
    height: 1px;
}

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

.style-guide-hero {
    background-color: #000;
    border-bottom: 1px solid #333;
}

.hero-changelog-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    background-color: #000;
    border-radius: 1rem;
    flex-flow: column;
    width: 100%;
    margin-top: 1rem;
    padding: 12rem 3rem 3rem;
    display: flex;
    overflow: hidden;
}

.style-guide-heading {
    font-size: 6.125vw;
    font-weight: 300;
    line-height: 1;
}

.changelog-component {
    grid-template-rows: auto;
    grid-template-columns: 1fr minmax(auto, 82%);
    width: 100%;
    margin-bottom: 10rem;
}

.style-guide-text {
    font-size: 2.75rem;
    line-height: 1.55;
}

.opacity-85 {
    opacity: .8;
}

.license-content {
    grid-column-gap: 5rem;
    grid-row-gap: 2rem;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.text-size-huge {
    font-size: 3.25rem;
    font-weight: 300;
    line-height: 1.2;
}

.style-guide-button {
    grid-row-gap: .25rem;
    color: #e5e5e5;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    transition: opacity .2s;
    display: flex;
    overflow: hidden;
}

.style-guide-button:hover {
    opacity: .5;
}

.license-component {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    margin-top: 6.2rem;
    margin-bottom: 7.7rem;
}

.overflow-hidden {
    overflow: clip;
}

.error-message {
    text-align: center;
    background-color: #e54e4e;
    border-radius: .5rem;
}

.text-size-medium-contact {
    font-size: 1.125rem;
}

.form {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
}

.text-field-contact {
    background-color: #0000;
    border: 1px solid #0000;
    border-bottom-color: #c9d4d833;
    border-radius: 0;
    margin-top: .5rem;
    margin-bottom: 1.5rem;
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
    padding-left: 1rem;
    font-size: 1rem;
    transition: all .4s;
}

.text-field-contact:hover {
    border-width: 1px;
    border-color: #c9d4d81a;
    padding-left: 1.2rem;
}

.text-field-contact:active {
    color: #212121;
}

.text-field-contact:focus {
    border-color: #212121;
}

.relative {
    z-index: 2;
    position: relative;
}

.form-content {
    width: 100%;
}

.success-message {
    color: #000;
    text-align: center;
    background-color: #f4f4f4;
    border-radius: .6rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.text-size-medium-vw {
    font-size: 1vw;
    font-weight: 400;
}

.form-wrapper {
    width: 50%;
}

.text-size-contact {
    font-size: 1.375rem;
}

.name-wrapper-contact {
    width: 100%;
}

.contact-button {
    background-color: #1d1d1f;
    border-radius: .3rem;
    transition: all .25s;
}

.contact-button.align-center {
    background-color: #0000;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
}

.contact-wrapper {
    grid-column-gap: 6.125rem;
    grid-row-gap: 6.125rem;
    flex-flow: column;
    align-items: center;
    margin-top: 15vh;
    display: flex;
    padding-bottom: 4rem;
}

.button-elipse {
    background-color: #68c293;
    border-radius: 50%;
    width: 10rem;
    height: 10rem;
    position: absolute;
    top: 3rem;
}

.button-wrapper {
    z-index: 2;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    border-radius: 12rem;
    justify-content: flex-end;
    align-items: center;
    padding-left: .4px;
    display: flex;
    position: relative;
    overflow: hidden;
}

.button-icon {
    z-index: 2;
    background-color: var(--color--dark-grey);
    border-radius: 12rem;
    padding: .6rem;
    display: flex;
    position: relative;
    overflow: hidden;
}

.button-icon.absolute {
    z-index: 1;
    opacity: 0;
    border-radius: 13rem;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    top: 0%;
    bottom: 0%;
    right: 0%;
    overflow: hidden;
}

.icon-wrapper {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    justify-content: flex-end;
    align-items: center;
    width: 1rem;
    display: flex;
    overflow: hidden;
}

.line-fill {
    z-index: 2;
    background-color: var(--color--white);
    color: var(--color--white);
    position: absolute;
    inset: 0% auto 0% 0%;
}

.mask-frame {
    background-color: var(--color--ccld-blue);
    display: none;
    position: absolute;
    inset: 0%;
}

.delete-this {
    z-index: 10;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    background-color: var(--color--white);
    border-radius: .75rem;
    flex-flow: column;
    padding: 1.5rem;
    text-decoration: none;
    display: flex;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
}

.modal-content {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    flex-flow: column;
    align-items: flex-start;
    display: flex;
}

.modal-text {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    color: #101828;
    flex-flow: column;
    display: flex;
}

.max-width-37ch {
    max-width: 37ch;
}

.modal-link {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    color: #101828;
    font-weight: 500;
    text-decoration: none;
    display: flex;
}

.webflix-link {
    color: #101828;
}

.modal-button {
    color: var(--color--white);
    text-align: center;
    cursor: pointer;
    background-color: #101011;
    border-radius: .5rem;
    width: 100%;
    padding: .8rem 1rem;
    text-decoration: none;
    transition: all .25s;
}

.modal-button:hover {
    background-color: #101011cc;
    transform: scale(.98);
}

.modal-embed {
    display: flex;
}

.link {
    color: var(--color--ccld-blue);
    text-decoration: none;
}

.link:hover {
    color: var(--color--ccld-green);
}

.link.blue-link {
    color: var(--color--ccld-blue);
    text-align: left;
}

.margin-top-description {
    margin-top: 2rem;
}

.heading-2-instruction {
    font-size: var(--heading--h2);
    font-weight: 300;
    line-height: 1;
}

.heading-2-instruction.text-weight-bold {
    font-weight: 700;
}

.section {
    background-image: url('../images/igor-omilaev-R4xgDZ8jtKo-unsplash.jpg');
    background-position: 100% 0;
    background-size: cover;
    min-height: 80vh;
}

.section.homepage {
    background-image: url('../images/bg.jpg');
}

.body {
    background-color: var(--color--white);
    color: var(--color--white);
}

.image-2 {
    object-fit: contain;
    overflow: visible;
}

.section-2 {
    overflow: visible;
}

.partner-logo {
    object-fit: contain;
    width: 150px;
    height: auto;
}

.text-block {
    color: #3a3a3a;
}

.text-block-2 {
    color: var(--color--grey);
}

.text-block-3,
.text-block-4 {
    color: #3a3a3a;
}

.div-block {
    flex: 1;
}

.text-block-5 {
    color: var(--color--grey);
}

.image-3 {
    flex: 0 auto;
    align-self: auto;
    align-items: stretch;
    width: 50px;
    height: auto;
    margin-right: 10px;
    display: inline-flex;
}

.footer-icon-link {
    color: var(--color--ccld-dark-blue);
    justify-content: flex-start;
    align-items: center;
    display: inline-flex;
}

.footer-icon-link:hover {
    color: var(--color--ccld-green);
}

.text-block-7 {
    display: inline-flex;
}

.text-block-8 {
    text-align: left;
    line-height: 1.3;
    display: inline-flex;
}

.text-block-9 {
    color: var(--color--ccld-blue);
    display: inline-flex;
}

.text-block-9:hover {
    color: var(--color--ccld-green);
}

.section-3 {
    margin-top: 8em;
}

.footer-margin {
    margin-top: 10em;
}

.footer-grid-menu {
    grid-column-gap: 30px;
    outline-offset: 0px;
    border: 1px #aaa;
    border-top-style: solid;
    outline: 3px #353535;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    margin-top: 2em;
    margin-bottom: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}

.footer-map-link {
    color: var(--color--ccld-blue);
    text-align: left;
    vertical-align: middle;
    line-height: 1.3;
    text-decoration: none;
}

.footer-email-link {
    color: var(--color--ccld-blue);
}

.footer-logo {
    margin-bottom: 3em;
    max-width: 50%;
}

.text-block-10:hover {
    color: var(--color--ccld-green);
}

.testimonial-grid-2 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1.5fr 1fr .75fr;
    grid-auto-columns: 1fr;
    margin-top: 20px;
    display: grid;
}

.image-4 {
    margin-top: 10px;
}

.image-5,
.image-6 {
    margin-top: 20px;
}

.image-7 {
    margin-top: 23px;
}

.dropdown-toggle {
    color: var(--color--white);
    padding-left: 0;
    padding-right: 18px;
    transition: all .25s;
}

.dropdown-toggle:hover {
    mix-blend-mode: normal;
    transform: translate(0, 1px);
}

.dropdown-list {
    background-color: #ddd;
}

.dropdown-list.w--open {
    z-index: auto;
    color: var(--color--white);
    background-color: #0f94c9d6;
    border-radius: 13px;
}

.link-block {
    display: block;
}

.section-about {
    background-color: #0000;
    background-image: radial-gradient(circle, #00000036, #0000005c 46%, #000000ba), url('../images/CCLD-teams.jpg');
    background-position: 0 0, 50% 45%;
    background-size: auto, cover;
    min-height: 60vh;
}

.about-features-header-copy {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    text-align: center;
    flex-flow: column;
    align-items: center;
    max-width: 50vw;
    display: flex;
}

.body-text-with-padding {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    text-align: center;
    flex-flow: column;
    align-items: center;
    width: auto;
    max-width: none;
    margin-top: 5em;
    margin-bottom: 4em;
    display: flex;
}

.body-text-with-padding.max-width-70ch {
    max-width: none;
}

.body-black {
    background-color: var(--color--black);
}

.partner-wrapper {
    grid-column-gap: 5.5rem;
    grid-row-gap: 5.5rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10rem;
    display: flex;
}

.button-light-text {
    margin-left: 10px;
    font-weight: 300;
    display: inline-flex;
}

.dropdown:focus,
.dropdown.w--current {
    color: var(--color--white);
}

.icon-2 {
    margin-right: 0;
}

.customer-reviews-header-section {
    background-image: linear-gradient(#000000c4, #0000002b), url('../images/Testimonial.jpg');
    background-position: 0 0, 50%;
    background-size: auto, cover;
    min-height: 60vh;
}

.text-block-11 {
    width: auto;
}

.text-block-11.max-width-70ch {
    text-shadow: 0 0 6px #0003;
    font-size: 1.2rem;
}

.text-block-11.max-width-70ch.left-text {
    color: var(--color--white);
    text-align: left;
    margin-left: 0;
}

.bold-text,
.bold-text-2,
.bold-text-3,
.bold-text-4,
.bold-text-5 {
    font-size: 1.5rem;
}

.body-3 {
    background-color: var(--color--white);
}

.image-8 {
    width: 20px;
    height: auto;
    margin-left: 10px;
}

.logo-image {
    width: 140px;
    height: auto;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
}

.logo-image.smaller {
    width: 120px;
}

.bold-text-6,
.bold-text-7,
.bold-text-8,
.bold-text-9,
.bold-text-10,
.bold-text-11,
.bold-text-12,
.bold-text-13,
.bold-text-14,
.bold-text-15,
.bold-text-16,
.bold-text-17 {
    font-size: 1.5rem;
}

.featured-bg {
    background-color: #0000;
    background-position: 50% 40%;
    background-size: cover;
    position: relative;
    background-image: url('../images/Camera-System.jpg');
    min-height: 60vh;
}

.featured-bg:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(#000000c4, #0000002b);
}

.image-9 {
    width: 20px;
    margin-left: 10px;
}

.body-internet-services {
    background-color: var(--color--black);
    background-image: url('../images/internet-bg5.jpg');
    background-position: 50% 60%;
    background-size: cover;
    padding-bottom: 3rem;
}

.body-digital-signage {
    background-color: var(--color--black);
    background-image: url('../images/digital-signage-bg2.jpg');
    background-position: 50% 60%;
    background-size: cover;
    padding-bottom: 3rem;
}

.dark-bg {
    background-color: var(--color--black);
    color: #fff;
    padding-bottom: 5rem;
}

.flex-block {
    max-width: 380px;
}

.flex-block.margin10 {
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.div-block-3 {
    margin-top: 4em;
}

.image-10 {
    text-align: center;
    background-image: radial-gradient(circle, #fff, #277c8f 70%);
    width: 100%;
    height: 100%;
}

.image-11 {
    background-image: radial-gradient(circle, #fff, #247c07b3);
}

.center-align,
.center-text {
    margin-left: auto;
    margin-right: auto;
}

.margin10 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.internet-service-grid {
    grid-column-gap: 3.2rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
}

.digital-signage-body {
    background-color: var(--color--black);
    background-image: url('../images/internet-bg5.jpg');
    background-position: 50% 0;
    background-size: cover;
}

.section-camera {
    background-color: #0000;
    background-image: linear-gradient(180deg, var(--color--black), #000000ba 0%, #0000005c 66%, #00000036), url('../images/Camera-System.jpg');
    background-position: 0 0, 50% 40%;
    background-size: auto, cover;
    min-height: 60vh;
}

.grid-2 {
    grid-column-gap: 39px;
    grid-template-rows: auto;
}

.camera-features-wrapper {
    grid-column-gap: 4.8rem;
    grid-row-gap: 4.8rem;
    flex-flow: column;
    align-items: center;
    width: 1150px;
    max-width: 100%;
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.section-security {
    background-color: #0000;
    background-image: linear-gradient(180deg, var(--color--black), #000000ba 0%, #0000005c 66%, #00000036), url('../images/Digital-Signage-bg.jpg');
    background-position: 0 0, 50% 40%;
    background-size: auto, cover;
    min-height: 60vh;
}

.body-white {
    background-color: var(--color--white);
}

.text-black {
    color: var(--color--grey);
}

.text-black.left-aligned {
    text-align: left;
    font-size: 1.2rem;
}

.features-security {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.security-features-wrapper {
    grid-column-gap: 4.8rem;
    grid-row-gap: 4.8rem;
    flex-flow: column;
    align-items: center;
    max-width: 100%;
    margin-top: 4rem;
    display: flex;
}

.about-table {
    grid-column-gap: 5px;
    grid-row-gap: 23px;
    background-color: #1c638a3d;
    border-bottom: 1px #fff;
    border-radius: 10px;
    flex: 0 auto;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1fr;
    align-content: stretch;
    max-width: 900px;
    margin-top: 0;
    padding: 10px 5px;
}

.check-mark {
    vertical-align: baseline;
    width: 25px;
    height: auto;
    margin-top: 0%;
}

.bold-text-18,
.bold-text-19 {
    font-size: .8rem;
    font-weight: 300;
    line-height: 1.2;
}

.home-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
}

.dropdown-link {
    color: var(--color--ccld-dark-blue);
    -webkit-text-stroke-color: var(--color--white);
    font-weight: 400;
}

.dropdown-link:hover,
.dropdown-link:focus {
    color: var(--color--ccld-green);
}

.dropdown-link:lang(en),
.dropdown-link.w--current {
    color: var(--color--white);
}

@media screen and (max-width: 991px) {
    .heading-2 {
        font-size: 4.5rem;
    }

    .footer-icon-link {
        text-align: center;
    }

    .container.small {
        max-width: none;
        padding-left: 0;
        padding-right: 0;
    }

    .style-guide-header {
        margin-bottom: 0;
    }

    .style-gudie-content.grid {
        grid-column-gap: 1rem;
    }

    .heading-6 {
        font-size: 1.75rem;
    }

    .text-size-large {
        font-size: 1.4rem;
    }

    .heading-1 {
        font-size: 8rem;
        line-height: 1.15;
    }

    .style-guide-component {
        grid-column-gap: 2rem;
        grid-row-gap: 1rem;
        grid-template-columns: 1fr;
    }

    .heading-4 {
        font-size: 2.75rem;
    }

    .heading-5 {
        font-size: 2.25rem;
    }

    .section-style-guide {
        margin-top: 4rem;
    }

    .heading-3 {
        font-size: 3.5rem;
    }

    .hero-wrapper {
        margin-bottom: 12vh;
    }

    .trusted-by-hero-logos {
        flex-flow: wrap;
    }

    .max-width-50ch {
        max-width: none;
    }

    .integrations-block.second {
        width: 100%;
        padding: 2rem 2.5rem;
    }

    .integrations-block.first {
        grid-column-gap: 2rem;
        grid-row-gap: 2rem;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 2rem 2.5rem;
    }

    .header {
        max-width: 70vw;
    }

    .features-cards-wrapper {
        margin-top: 6rem;
    }

    .integrations-content-component {
        flex-flow: column;
    }

    .home-features-wrapper {
        margin-top: 8rem;
    }

    .features-grid {
        grid-row-gap: 4rem;
        grid-template-columns: 1fr 1fr;
    }

    .testimonial-grid {
        grid-column-gap: 23px;
        grid-template-columns: 1fr;
    }

    .testimonial-wrapper {
        margin-top: 8rem;
    }

    .testimonial-component {
        max-width: none;
    }

    .testimonial-card {
        justify-content: space-between;
        padding-top: 1.5rem;
        padding-bottom: 2rem;
    }

    .steps-card {
        border-radius: 1rem;
        flex-flow: column;
        height: auto;
    }

    .steps-content {
        width: 100%;
    }

    .left-content {
        justify-content: space-between;
        width: 100%;
        padding: 4rem 4rem 4rem 2rem;
    }

    .right-content {
        width: 100%;
        height: 50vh;
    }

    .steps-description {
        max-width: none;
    }

    .steps-item {
        position: relative;
        top: auto;
    }

    .services-wrapper {
        margin-top: 8rem;
    }

    .footer-social-wrapper {
        margin-bottom: 4rem;
    }

    .footer-grid {
        grid-column-gap: 1.7rem;
        grid-template-rows: auto auto;
        grid-template-columns: 2fr 2.75fr;
    }

    .footer-heading {
        margin-bottom: 4rem;
    }

    .footer-component {
        min-height: 0;
        padding-top: 6rem;
        padding-bottom: 4rem;
    }

    .trusted-by-about-logos {
        grid-column-gap: 3rem;
        grid-row-gap: 4rem;
        flex-flow: wrap;
    }

    .max-width-33ch {
        max-width: 50ch;
    }

    .about-features-wrapper {
        grid-column-gap: 4rem;
        grid-row-gap: 4rem;
        margin-top: 8rem;
    }

    .about-features-card {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
    }

    .about-features-content {
        max-width: 50ch;
    }

    .about-features-grid {
        grid-column-gap: 4rem;
        grid-row-gap: 4rem;
        flex-flow: column;
        margin-left: auto;
        margin-right: auto;
        display: flex;
    }

    .about-features-header {
        max-width: none;
    }

    .phase-cards-wrapper {
        grid-column-gap: 4rem;
        grid-row-gap: 4rem;
        margin-top: 8rem;
    }

    .phase-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .phase-cards {
        height: auto;
        padding: 3rem 2.5rem;
    }

    .phase-cards-header {
        max-width: none;
    }

    .team-grid {
        flex-flow: column;
        display: flex;
        text-align: center;
    }

    .children-perspective {
        text-align: left;
        align-self: center;
    }

    .team-image {
        height: auto;
    }

    .team-wrapper {
        margin-top: 8rem;
        margin-bottom: 8rem;
    }

    .team-header {
        max-width: none;
    }

    .features-component {
        grid-column-gap: 6rem;
        grid-row-gap: 6rem;
        flex-flow: column;
        margin-bottom: 0;
        display: flex;
    }

    .features-heading {
        text-align: left;
        align-items: flex-start;
    }

    .features-vantages-content {
        order: 1;
        width: 100%;
    }

    .features-wrapper {
        margin-top: 8rem;
    }

    .gradient-overlay {
        background-image: linear-gradient(0deg, #101011, #10101196);
    }

    .gradient-overlay.bigger {
        height: 100vw;
    }

    .features-image-container {
        width: 100%;
    }

    .check-list {
        padding-left: 0;
    }

    .features-image-wrapper {
        width: 100%;
        min-width: auto;
        max-width: none;
    }

    .features-heading-wrapper {
        max-width: none;
    }

    .features-venues {
        grid-column-gap: 0vw;
        grid-row-gap: 3rem;
        flex-direction: column;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .blog-list {
        grid-template-columns: 1fr 1fr;
    }

    .blog-card {
        width: 100%;
        max-width: none;
    }

    .faq-component {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        margin-top: 4rem;
        margin-bottom: 4rem;
    }

    .faq-list {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        grid-template-columns: 1fr;
    }

    .faq-title-wrapper {
        justify-content: flex-start;
        align-items: flex-start;
        padding-right: 3rem;
        display: flex;
    }

    .faq-action-wrapper {
        justify-content: center;
        align-items: center;
        height: 1.5rem;
        right: 0;
    }

    .faq-bottom {
        margin-right: 0;
    }

    .faq-bottom-content {
        grid-template-columns: 1fr;
    }

    .enterprise-content {
        grid-row-gap: 1rem;
        flex-direction: column;
    }

    .enterprise-text {
        margin-left: 0;
    }

    .enterprise-banner {
        grid-row-gap: 2rem;
        flex-direction: column;
        align-items: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card {
        min-height: auto;
    }

    .price-check-list {
        padding-left: 0;
    }

    .utility-page-content {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
    }

    .blog-component {
        max-width: none;
        margin-top: 8rem;
        margin-bottom: 6rem;
    }

    .rich-text-paddig {
        padding-left: 0;
    }

    .not-found-heading {
        font-size: 18rem;
    }

    .larst-card-nav {
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        height: 100%;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .menu-button {
        border-radius: 4px;
        overflow: hidden;
    }

    .menu-button.w--open {
        background-color: #7d7d7d66;
    }

    .right-navbar-content {
        display: none;
    }

    .navbar-component {
        padding-top: .6rem;
        padding-bottom: .6rem;
    }

    .nav-menu {
        grid-column-gap: .5rem;
        grid-row-gap: .5rem;
        color: #fff;
        background-color: #1a1a1a;
        justify-content: center;
        align-items: center;
        padding-bottom: 2rem;
        position: absolute;
    }

    .nav-menu-wrap {
        justify-content: flex-end;
        align-items: center;
    }

    .mobile-navbar-content {
        grid-column-gap: 2rem;
        grid-row-gap: 2rem;
        flex-flow: column;
        justify-content: space-around;
        display: flex;
    }

    .menu-icon {
        color: #b5b5b5;
    }

    .nav-link {
        flex-flow: column;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 2rem;
        display: flex;
    }

    .password-heading {
        white-space: nowrap;
        font-size: 10vw;
    }

    .style-guide-heading {
        font-size: 7rem;
    }

    .changelog-component {
        flex-flow: column;
        display: flex;
    }

    .style-guide-text {
        font-size: 2rem;
    }

    .text-size-huge {
        font-size: 2.3rem;
    }

    .license-component {
        grid-column-gap: 2rem;
        grid-row-gap: 1rem;
        grid-template-columns: 1fr;
        margin-top: 5.3rem;
        margin-bottom: 6rem;
    }

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

    .text-size-medium-vw {
        font-size: 1.125rem;
    }

    .form-wrapper {
        width: 100%;
    }

    .link.blue-link {
        text-align: center;
        display: block;
    }

    .heading-2-instruction {
        font-size: 4.5rem;
    }

    .image-3 {
        margin-bottom: 5px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .footer-grid-menu {
        grid-template-columns: 1fr 1.25fr 1fr 1fr 1fr;
    }

    .footer-map-link {
        margin-top: 0;
    }

    .text-block-10 {
        text-align: center;
    }

    .div-block-2 {
        position: relative;
    }

    .testimonial-grid-2 {
        grid-template-rows: auto auto auto auto;
        grid-template-columns: 1fr;
        margin-top: -47px;
    }

    .dropdown-toggle {
        max-width: 130px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .dropdown-list {
        text-align: center;
    }

    .about-features-header-copy,
    .body-text-with-padding {
        max-width: none;
    }

    .partner-wrapper {
        margin-top: 8rem;
    }

    .dropdown {
        margin-bottom: 2rem;
        padding-top: .2rem;
        padding-bottom: .2rem;
    }

    .internet-service-grid {
        grid-template-columns: 1fr;
    }

    .camera-features-wrapper,
    .security-features-wrapper {
        grid-column-gap: 4rem;
        grid-row-gap: 4rem;
    }

    .about-table {
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .home-grid {
        grid-row-gap: 4rem;
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 767px) {
    .hero-style-guide-wrapper {
        padding-top: 8rem;
    }

    .heading-2 {
        font-size: 4rem;
    }

    .container.small {
        padding-left: 0;
        padding-right: 0;
    }

    .padding-global {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .style-guide-header {
        font-size: .875rem;
    }

    .style-gudie-content.grid {
        grid-column-gap: 1rem;
        grid-row-gap: 4rem;
        grid-template-columns: 1fr;
    }

    .heading-6 {
        font-size: 1.5rem;
    }

    .text-size-large {
        font-size: 1.3rem;
    }

    .text-size-medium {
        font-size: 1.2rem;
    }

    .heading-1 {
        font-size: 6.5rem;
    }

    .style-guide-component {
        grid-row-gap: 4rem;
        grid-template-columns: 1fr;
    }

    .style-guide-menu {
        grid-column-gap: 2rem;
        grid-row-gap: 1.5rem;
        grid-template-rows: auto auto;
        grid-template-columns: 1fr 1fr 1fr;
        grid-auto-columns: 1fr;
        display: grid;
    }

    .heading-4 {
        font-size: 2.5rem;
    }

    .heading-5 {
        font-size: 2rem;
    }

    .heading-3 {
        font-size: 3rem;
    }

    .double-button-component.margin-top-button-features {
        margin-top: 0;
    }

    .integrations-block.second,
    .integrations-block.first {
        width: 100%;
    }

    .header {
        max-width: none;
    }

    .features-cards-wrapper {
        margin-top: 4rem;
    }

    .integrations-content-component {
        flex-flow: column;
    }

    .home-features-wrapper {
        grid-column-gap: 4rem;
        grid-row-gap: 4rem;
        margin-top: 6rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-wrapper {
        margin-top: 6rem;
    }

    .testimonial-card {
        padding: 1rem 2rem 2rem;
    }

    .testimonial-card.hide-landscape {
        display: none;
    }

    .steps-card {
        display: flex;
    }

    .left-content {
        padding: 3rem 2rem 2rem 3rem;
    }

    .services-wrapper {
        grid-column-gap: 4rem;
        grid-row-gap: 4rem;
        margin-top: 6rem;
    }

    .credits-wrapper {
        flex-flow: column;
    }

    .footer-grid-wrap {
        text-align: left;
        justify-content: flex-start;
        align-items: center;
    }

    .footer-grid {
        grid-column-gap: 0rem;
        grid-row-gap: .9rem;
        grid-template-rows: auto auto;
        grid-template-columns: 1.25fr 1.75fr;
    }

    .footer-component {
        padding-top: 4rem;
    }

    .trusted-by-about-logos {
        grid-row-gap: 3rem;
        display: flex;
    }

    .about-features-image {
        height: 20rem;
    }

    .max-width-33ch {
        max-width: none;
    }

    .about-features-wrapper {
        margin-top: 6rem;
    }

    .about-features-card {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
    }

    .phase-cards-wrapper {
        margin-top: 6rem;
    }

    .phase-cards-grid {
        grid-template-columns: 1fr;
    }

    .phase-cards {
        padding: 2.5rem 2rem;
    }

    .team-wrapper {
        margin-top: 6rem;
        margin-bottom: 6rem;
    }

    .banner-content {
        grid-column-gap: 10rem;
        grid-row-gap: 10rem;
    }

    .banner-wrapper {
        padding: 2.5rem;
    }

    .features-component {
        grid-column-gap: 4rem;
        grid-row-gap: 4rem;
    }

    .features-wrapper {
        margin-top: 6rem;
        margin-bottom: 6rem;
    }

    .blog-list {
        grid-column-gap: 3rem;
        grid-row-gap: 3rem;
        grid-template-columns: 1fr;
    }

    .faq-bottom-content {
        padding-bottom: 0;
    }

    .price-card {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .utility-page-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .blog-component {
        margin-top: 4rem;
        margin-bottom: 4rem;
    }

    .rich-text-paddig {
        padding-left: 0;
    }

    .not-found-heading {
        font-size: 12rem;
    }

    .navbar-component {
        padding-top: .3rem;
        padding-bottom: .3rem;
    }

    .mobile-navbar-content {
        flex-flow: column;
        justify-content: space-around;
        align-items: center;
    }

    .style-guide-heading {
        font-size: 6rem;
    }

    .style-guide-heading.mobile {
        font-size: 4rem;
    }

    .changelog-component {
        grid-template-columns: 1fr;
    }

    .style-guide-text {
        font-size: 2rem;
        line-height: 1.15;
    }

    .license-content {
        grid-row-gap: 4rem;
        flex-direction: column;
    }

    .text-size-huge {
        font-size: 2rem;
        line-height: 1.3;
    }

    .license-component {
        grid-row-gap: 4rem;
        grid-template-columns: 1fr;
        margin-top: 4.2rem;
        margin-bottom: 5.7rem;
    }

    .delete-this {
        left: 1.5rem;
    }

    .heading-2-instruction {
        font-size: 4rem;
    }

    .footer-grid-menu {
        grid-column-gap: 4px;
        grid-template-columns: 1fr 1.25fr 1fr 1fr 1fr;
    }

    .text-block-10 {
        text-align: left;
        font-size: 1rem;
    }

    .partner-wrapper {
        grid-column-gap: 4rem;
        grid-row-gap: 4rem;
        margin-top: 6rem;
    }

    .camera-features-wrapper,
    .security-features-wrapper {
        margin-top: 2rem;
    }
}

@media screen and (max-width: 479px) {
    .hero-style-guide-wrapper {
        padding-top: 6rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .heading-2 {
        font-size: 3.5rem;
        line-height: 1.1;
    }

    .padding-global {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .divider-line {
        width: 100%;
    }

    .heading-6 {
        font-size: 1.25rem;
    }

    .text-size-large {
        font-size: 1.2rem;
    }

    .style-guide-content {
        margin-bottom: 6rem;
    }

    .text-size-medium {
        font-size: 1.125rem;
    }

    .heading-1 {
        font-size: 5rem;
    }

    .style-guide-component {
        width: 100%;
    }

    .style-guide-menu {
        grid-column-gap: 1rem;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .heading-4 {
        font-size: 2.25rem;
    }

    .heading-5 {
        font-size: 1.75rem;
    }

    .style-guide-menu-wrapper {
        width: 100%;
    }

    .heading-3 {
        font-size: 2.75rem;
    }

    .sticky-menu,
    .primary-button {
        width: 90%;
    }

    .form-content {
        width: 90%;
    }

    .trusted-by-hero-logos {
        grid-column-gap: 4rem;
        grid-row-gap: 4rem;
        grid-template-rows: auto;
        grid-template-columns: 1fr 1fr;
        grid-auto-columns: 1fr;
        justify-items: center;
        display: grid;
    }

    .logos {
        height: auto;
    }

    .double-button-component {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        flex-flow: column;
        align-items: center;
        width: 100%;
    }

    .secondary-button-text {
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-left: 2.5rem;
        display: flex;
    }

    .secondary-button {
        width: 90%;
        padding-top: .4rem;
        padding-bottom: .4rem;
    }

    .read-more-tag {
        grid-column-gap: .75rem;
        grid-row-gap: .75rem;
        border-radius: 1rem;
        flex-flow: row;
        width: auto;
        padding-top: .75rem;
        padding-bottom: .75rem;
    }

    .integrations-block.second,
    .integrations-block.first {
        grid-column-gap: 1.5rem;
        grid-row-gap: 1.5rem;
        padding: 1rem;
    }

    .integrations-image {
        height: 8rem;
    }

    .features-grid {
        grid-row-gap: 3rem;
        flex-flow: column;
        display: flex;
    }

    .features-content {
        max-width: none;
    }

    .testimonial-card {
        padding: 1rem 1rem 2rem;
    }

    .steps-content {
        text-align: center;
        justify-content: flex-start;
        align-items: center;
    }

    .left-content {
        align-items: center;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .steps-stack-component {
        grid-column-gap: 2rem;
        grid-row-gap: 2rem;
    }

    .right-content {
        flex-flow: column;
        align-items: center;
        padding-right: 1.75rem;
    }

    .steps-tag {
        grid-column-gap: .75rem;
        grid-row-gap: .75rem;
        border-radius: 1rem;
        flex-flow: row;
        width: auto;
        padding-top: .75rem;
        padding-bottom: .75rem;
    }

    .steps-item {
        top: auto;
    }

    .credits-wrapper {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        flex-flow: wrap;
        justify-content: center;
        align-items: center;
    }

    .footer-social-wrapper {
        margin-bottom: 2rem;
    }

    .footer-links-wrapper {
        text-align: center;
    }

    .footer-grid {
        grid-column-gap: 3rem;
        grid-row-gap: 2rem;
        grid-template-rows: auto auto auto auto;
        grid-template-columns: 1fr;
        grid-auto-columns: 1fr;
        justify-content: flex-end;
        place-items: flex-start center;
    }

    .footer-links {
        flex-flow: wrap;
        justify-content: center;
        align-items: center;
    }

    .about-features-content {
        margin-left: 0;
        margin-right: 0;
    }

    .phase-cards {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .button-content {
        grid-column-gap: 0rem;
        grid-row-gap: 0rem;
        justify-content: space-between;
        width: 100%;
        display: flex;
    }

    .banner-content {
        grid-column-gap: 8rem;
        grid-row-gap: 8rem;
    }

    .banner-button {
        width: 100%;
    }

    .banner-wrapper {
        padding: 1.5rem;
    }

    .features-component {
        display: flex;
    }

    .features-heading {
        width: 100%;
    }

    .features-vantages-content {
        padding-left: 0;
    }

    .features-wrapper {
        margin-bottom: 4rem;
    }

    .features-image-container {
        height: 100%;
        overflow: visible;
    }

    .features-image-wrapper {
        height: 100%;
        min-height: auto;
        max-height: none;
        overflow: hidden;
    }

    .blog-list {
        grid-row-gap: 0rem;
    }

    .blog-card {
        grid-row-gap: 1rem;
        padding-bottom: 3rem;
    }

    .card-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-title-wrapper {
        padding-right: 3.5rem;
    }

    .faq-bottom-content {
        display: flex;
    }

    .price-button {
        align-items: stretch;
    }

    .enterprise-banner {
        text-align: center;
    }

    .blog-component {
        margin-top: 6rem;
    }

    .rich-text-paddig {
        margin-bottom: 2rem;
        padding-left: 0;
    }

    .not-found-heading {
        font-size: 7rem;
    }

    .larst-card-nav {
        border-top-right-radius: 0;
        border-bottom-left-radius: .5rem;
        padding-left: 2rem;
    }

    .navbar-component {
        padding-top: .2rem;
        padding-bottom: .2rem;
    }

    .nav-menu {
        width: 100%;
        padding-top: 1.8rem;
        padding-bottom: 1.8rem;
    }

    .about-hero-interaction {
        height: auto;
        margin-top: 4rem;
    }

    .hero-sticky-component {
        grid-column-gap: .5rem;
        grid-row-gap: .5rem;
        flex-flow: column;
        height: auto;
        margin-top: 0;
        position: static;
    }

    .sticky-images {
        border-radius: .5rem;
    }

    .sticky-images.left {
        width: 100%;
        max-width: none;
        height: 50vw;
        margin-top: 0;
        position: relative;
        right: auto;
    }

    .sticky-images.middle {
        width: 100%;
        max-width: none;
        height: 50vw;
        position: relative;
    }

    .sticky-images.right {
        width: 100%;
        max-width: none;
        height: 50vw;
        margin-top: 0;
        position: relative;
        left: auto;
    }

    .divider-line-instructions {
        width: 100%;
    }

    .hero-changelog-wrapper {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .style-guide-heading {
        font-size: 5rem;
        line-height: 1.1;
    }

    .style-guide-heading.mobile {
        font-size: 3rem;
    }

    .changelog-component {
        width: 100%;
    }

    .style-guide-text {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .text-size-huge {
        font-size: 2rem;
    }

    .license-component {
        grid-row-gap: 1.75rem;
        width: 100%;
        margin-top: 3rem;
        margin-bottom: 2.5rem;
    }

    .form,
    .form-wrapper {
        width: 100%;
    }

    .button-elipse {
        width: 20rem;
        height: 20rem;
    }

    .button-wrapper {
        justify-content: space-between;
        width: 100%;
    }

    .heading-2-instruction {
        font-size: 3rem;
        line-height: 1.1;
    }

    .footer-grid-menu {
        grid-template-rows: auto auto auto auto auto;
        grid-template-columns: 1fr;
        font-size: 1.5rem;
    }

    .text-block-10 {
        text-align: center;
    }

    .dropdown {
        width: 180px;
    }

    .about-table {
        grid-row-gap: 4px;
        max-width: 100%;
    }

    .home-grid {
        grid-row-gap: 3rem;
        flex-flow: column;
        display: flex;
    }
}

#w-node-_525f333e-16b4-a716-1c03-a45f2fadfa83-5ba8c95a {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_525f333e-16b4-a716-1c03-a45f2fadfa63-5ba8c95a {
    align-self: auto;
}

#w-node-_6509065d-a105-aa39-dc71-4f3041c8aa46-5ba8c963,
#w-node-_6509065d-a105-aa39-dc71-4f3041c8aa5d-5ba8c963,
#w-node-_6509065d-a105-aa39-dc71-4f3041c8aa62-5ba8c963,
#w-node-_6509065d-a105-aa39-dc71-4f3041c8aa79-5ba8c963,
#w-node-_6509065d-a105-aa39-dc71-4f3041c8aaa3-5ba8c963,
#w-node-_6509065d-a105-aa39-dc71-4f3041c8aac7-5ba8c963,
#w-node-_6509065d-a105-aa39-dc71-4f3041c8aae5-5ba8c963,
#w-node-_6509065d-a105-aa39-dc71-4f3041c8aae7-5ba8c963,
#w-node-_6509065d-a105-aa39-dc71-4f3041c8aaec-5ba8c963,
#w-node-_6509065d-a105-aa39-dc71-4f3041c8aaf1-5ba8c963,
#w-node-dd7df214-e761-ab1d-aed6-2c451646c459-5ba8c963,
#w-node-a5049ae8-6674-d873-8e1f-2d15f2daee2e-5ba8c963,
#w-node-_6509065d-a105-aa39-dc71-4f3041c8aafa-5ba8c963 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_91e12cbe-367c-7e54-2d16-a09548eda936-5ba8c964,
#w-node-f841d6c5-6e13-1a9e-34cb-2992a5db25ca-5ba8c964,
#w-node-f8a5659d-bc74-d90c-b98d-12e7a42b5cc5-5ba8c964,
#w-node-_7276b49b-ef5c-091f-2d97-96ef1d577644-5ba8c964,
#w-node-_40c21b8b-c93e-f948-fbde-7f0c4c9a12ae-5ba8c964,
#w-node-_6d41e98a-0866-2b5f-aea2-64058e6c9410-5ba8c964,
#w-node-_875a4fb3-05c3-fa53-39c2-35dbdc881500-5ba8c964,
#w-node-ee6a01ab-da1a-1a80-232f-9ed084412f5d-5ba8c964,
#w-node-_422456f9-81c7-c6ae-78b6-7c4811a22a47-5ba8c964,
#w-node-_0c91e98d-cc94-7459-f9dc-7bcc51720924-5ba8c964,
#w-node-_8c0d9b92-7335-49bc-d4c0-935b667b6c59-5ba8c964,
#w-node-a495ffa4-0f92-89ea-8656-f35d0dbbdf1e-5ba8c964,
#w-node-f10031f0-0787-d17d-79cd-9f0278087de8-5ba8c964,
#w-node-dcd693c6-e0ef-004d-ca01-5e71737f9e22-5ba8c964,
#w-node-_7bf4fb80-9c05-7b4c-5f1c-91f6935b2b0c-5ba8c964,
#w-node-_126f797f-771d-b821-7187-0271e9433e39-5ba8c964,
#w-node-_33b11685-77df-cc1d-90a2-a8079c6cac6f-5ba8c964,
#w-node-_34bf0d36-f982-bd71-000a-86be319480af-5ba8c964,
#w-node-_9cfc982b-19f6-49ff-a53f-319a25fa9bfe-5ba8c964,
#w-node-_518c3f68-72ed-d794-0db3-9eac518d5205-5ba8c964,
#w-node-_59adf034-cb5c-cd0d-6666-e45fe4cfd794-5ba8c964,
#w-node-a086476e-54fd-1c37-930f-fa57cce3b1f2-5ba8c964,
#w-node-_7f3850da-44a1-b252-ebdb-76178315b994-5ba8c964,
#w-node-_8a7968f5-d51f-0385-502e-23939f52207c-5ba8c964,
#w-node-de8c5015-3e87-756f-4136-3fa050f3926d-5ba8c964,
#w-node-_136b18d3-1de3-73d9-61a4-3ad86842fbbd-5ba8c964,
#w-node-db185db7-6178-40c6-8c5d-6a4778b8bd60-5ba8c964,
#w-node-_7ceb914f-5381-d5d8-5bba-40088d6a8432-5ba8c964,
#w-node-c4f423b2-9428-d0e0-da28-ad476a559dd6-5ba8c964,
#w-node-b919401c-f830-8ffc-b25e-64c59a0dff40-5ba8c964,
#w-node-_37fde734-d0ff-9bdc-987f-733c21b636c2-5ba8c964,
#w-node-f5305e56-68b7-cc73-6c3c-48195de3736f-5ba8c964,
#w-node-_6542488f-819e-d0e2-99af-135fdbd9ffd7-5ba8c964,
#w-node-a034f91b-7088-f764-853c-1b9a8805e972-5ba8c964,
#w-node-_4d325029-333a-b100-2575-f3175368de88-5ba8c964,
#w-node-_8cfa90ff-9207-1e49-2094-1ef5cecdc64c-5ba8c964,
#w-node-_33f0fee2-4f26-e718-4997-2e9ee5b2a159-5ba8c964,
#w-node-_549a4e5d-8fea-1b3c-4aa5-6a6c53155f1a-5ba8c964,
#w-node-_04135fd2-4bbc-cfe6-4016-f9cad292ffc2-5ba8c964,
#w-node-d9fcb3af-6c6b-d0d0-4db7-bf7248b6ef99-5ba8c964,
#w-node-dcf0bf0b-d233-1469-a10d-fbcf74f5efcb-5ba8c964,
#w-node-f8346d6e-040a-bcc1-146a-846c45bcc760-5ba8c964,
#w-node-c4c6bf12-9bde-62ab-c532-5f339761e4f0-5ba8c964,
#w-node-_09a53420-491c-9c76-77a1-cd8685efce01-5ba8c964,
#w-node-_5b54fa69-34eb-7a53-e9bb-bc29def42262-5ba8c964,
#w-node-_328a26ca-201b-b84e-f819-9cf204d17e20-5ba8c964,
#w-node-eddf6c6b-2e95-1e59-ee05-59917e6a9354-5ba8c964,
#w-node-_4bf67710-b211-1262-42b4-2aaf664b5966-5ba8c964,
#w-node-_52ed92b4-3c12-9bf8-6577-355d53d4d802-5ba8c964,
#w-node-_1d0c883d-b1d7-3992-066f-84f601bbb138-5ba8c964,
#w-node-_7e6bd18f-bc27-7921-9c88-703b17067dcf-5ba8c964,
#w-node-_0272a881-1322-7ca4-4162-96d91b64b866-5ba8c964,
#w-node-_3f43accd-116a-4d93-5ddb-831bc3625e0b-5ba8c964 {
    align-self: center;
}

#w-node-b0baddf6-0c43-40d8-7f14-c746c2b3a395-5ba8c968,
#w-node-_4ef4cf6b-b6f7-79e8-09e3-947f0eee47d5-5ba8c969,
#w-node-_2b8467f3-6f47-de62-983c-32440ef64dc1-5ba8c96f,
#w-node-f6f89a7d-c001-e637-1e54-4afb3bc7aa43-5ba8c96f,
#w-node-_2b8467f3-6f47-de62-983c-32440ef64de0-5ba8c96f {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_525f333e-16b4-a716-1c03-a45f2fadfa63-2657b635 {
    align-self: auto;
}

#w-node-_242347ee-c119-a454-fa16-7e583518beea-3c285942 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_242347ee-c119-a454-fa16-7e583518bf11-3c285942 {
    align-self: auto;
}

#w-node-_268f7c49-dff5-41b4-c5a5-4b1e21b53ad0-3c285942 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_268f7c49-dff5-41b4-c5a5-4b1e21b53aec-3c285942,
#w-node-_268f7c49-dff5-41b4-c5a5-4b1e21b53afa-3c285942 {
    align-self: auto;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-BoldItalic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi Variable';
    src: url('../fonts/Satoshi-Variable.woff2') format('woff2'), url('../fonts/Satoshi-Variable.woff2') format('woff2');
    font-weight: 300 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-MediumItalic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-BlackItalic.woff2') format('woff2');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-LightItalic.woff2') format('woff2');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

.social-icon {
    background-size: 40px;
    width: 40px;
    height: 40px;
    min-width: 40px;
}

.social-icon-footer {
    background-size: 35px;
    width: 35px;
    height: 35px;
    display: inline-block;
    margin: 0 5px;
}

#email-icon {
    background-image: url('../images/email-grey_2.svg');
}

#email-icon:hover {
    background-image: url('../images/email-wc_2.svg');
}

#facebook-icon {
    background-image: url('../images/facebook-grey_1.svg');
}

#facebook-icon:hover {
    background-image: url('../images/facebook-wc_1.svg');
}

#facebook-icon-footer {
    background-image: url('../images/facebook-grey.svg');
}

#facebook-icon-footer:hover {
    background-image: url('../images/facebook-blue.svg');
}

#instagram-icon {
    background-image: url('../images/instagram-grey_1.svg');
}

#instagram-icon:hover {
    background-image: url('../images/instagram-wc_1.svg');
}

#instagram-icon-footer {
    background-image: url('../images/instagram-grey.svg');
}

#instagram-icon-footer:hover {
    background-image: url('../images/instagram-blue.svg');
}

#linkedin-icon {
    background-image: url('../images/linkedin-grey_1.svg');
}

#linkedin-icon:hover {
    background-image: url('../images/linkedin-wc_1.svg');
}

#linkedin-icon-footer {
    background-image: url('../images/linkedin-grey.svg');
}

#linkedin-icon-footer:hover {
    background-image: url('../images/linkedin-blue.svg');
}

#nohuman {
    display: none;
}