@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
    --white: #fff0;
    --dark-turquoise: #00bdbe;
}

* {
    box-sizing: border-box;
}

body {
    color: #333;

    background: repeating-linear-gradient(90deg, #fff 0px, #00000017 1px, #fff 1px, #fff 16%);

    min-height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
}

.main-container {
    /* IMPORTANT */
    width: 1280px;
    margin: 0 auto;
    /* border: 3px solid red; */
}

.override-about {
    width: 1000px !important;
}

.p-96 {
    padding: 96px 0;
}

.d-flex {
    display: flex;
}

.flex-1 {
    flex: 1;
}

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

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: end;
}

.gap-100 {
    gap: 100px;
}

.gap-50 {
    gap: 50px;
}

.h-100 {
    height: 100%;
}
/* BUTTONS */
.btn-primary-wrap {
    --offset: 12px;
    position: relative;
    display: inline-block;
}

.btn-primary-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid #000;
    transform: translate(calc(var(--offset) / 2), calc(var(--offset) / -2));
    transition: transform 0.35s ease;
}

.btn-primary-cta {
    font-size: 16px;
    position: relative;
    display: inline-block;
    padding: 14px 28px;
    font-family: sans-serif;
    background: #000;
    color: #fff;
    text-decoration: none;
    transform: translate(calc(var(--offset) / -2), calc(var(--offset) / 2));
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
    z-index: 1; /* always above the border */
    letter-spacing: 0.02em;
    font-weight: 400;
}

.btn-primary-wrap:hover::before {
    transform: translate(0, 0);
}

.btn-primary-wrap:hover .btn-primary-cta {
    transform: translate(0, 0);
    background: #62d4d2;
    color: #000;
}

/* HOMEPAGE HERO */
.hero-main-copy {
    letter-spacing: -0.04em;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 48px;
    font-weight: 500;
    line-height: 120%;
}

.hero-video video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
}

/* LOGO ROW */
.logo-row {
    padding: 36px 0;
}
.logo-row .top-copy {
    opacity: 0.7;
    color: #2e5553;
    text-align: center;
    margin-bottom: 8px;
    font-size: 12px;
}

.logo-row-wrap {
    color: #000;
    background-color: #fafafa;
    justify-content: center;
    align-items: center;
    height: 128px;
    display: flex;
    position: relative;
}
.logo-row img {
    width: auto;
    vertical-align: middle;
    max-width: 100%;
    display: inline-block;
}

.logolink {
    filter: grayscale();
    justify-content: space-between;
    align-items: center;
    width: 120px;
    height: 60px;
    margin-left: 20px;
    margin-right: 20px;
    display: flex;
}
.logolink:hover {
    filter: none;
}

/* TABS */
.feature-images {
    width: 60%;
    padding-right: 50px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.image-strip {
    height: 100%;
    overflow-y: auto;

    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;

    scrollbar-width: none; /* Firefox */
}

.image-strip::-webkit-scrollbar {
    display: none;
}

.image-strip img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;

    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.feature-content {
    width: 40%;
    flex-direction: column;
}

.feature-tab {
    padding: 24px 24px 22px 39px;
    cursor: pointer;
    transition:
        background 0.3s,
        color 0.3s;
    font-size: 14px;
}

.feature-tab:hover {
    background: rgba(0, 191, 191, 0.05);
}

.feature-tab.active {
    background: rgba(0, 191, 191, 0.15);
}

.tabs-cta-container .wrapper {
    width: 40%;
    margin-top: 40px;
}

/* SPLIT CONTENT BLOCK */
.split-content .col-smaller {
    width: 40%;
}

.override-about .col-smaller {
    width: 60% !important;
}

.split-content .col-larger {
    width: 60%;
}

.override-about .col-larger {
    width: 40% !important;
}

.split-content .col-smaller .feature-image,
.split-content .col-larger .feature-image {
    width: 100%;
}

.split-content .eyebrow {
    text-transform: uppercase;
    color: #778e8d;
    letter-spacing: 0.02em;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    font-family: "Inter", sans-serif;
}
.split-content h2 {
    color: #000;
    text-transform: none;
    margin-top: 6px;
    margin-bottom: 24px;
    font-family: "Inter", sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 48px;
}
.override-about h2 {
    color: #000;
    text-transform: none;
    margin-top: 6px;
    margin-bottom: 24px;
    font-family: "Inter", sans-serif;
    font-size: 32px !important;
    font-weight: 500;
    line-height: 40px;
}
.override-about .name {
    text-align: left;
    margin-top: 40px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    position: relative;
    inset: 0% 0% 0% auto;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 30px;
}
.split-content p {
    color: #000;
    letter-spacing: 0.02em;
    white-space: normal;
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
}

/* Link with teal arrow */
.simple-link {
    color: black;
    text-decoration: none;
    display: block;
    margin-top: 48px;
}

.simple-link img {
    display: inline-block;
    transform: translateX(10px) translateY(2px);
    transition: transform 0.2s ease;
}

.simple-link:hover img {
    transform: translateX(10px) translateY(2px) rotate(45deg);
    transition: transform 0.2s ease;
}

/* CROSS-SELL BLOCK */
.cross-sell {
    height: 906px;
    position: relative;
}

.cross-sell h2 {
    color: #000;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 48px;
    line-height: 60px;
}

.cross-sell .blue {
    text-align: center;
    font-size: 48px;
    line-height: 60px;
    color: #555cff;
    font-weight: 700;
}

.cross-sell_white {
    z-index: 2;
    background-color: #fff;
    width: 16.6667%;
    height: 91.5px;
    position: absolute;
    top: 0;
    left: 66.6667%;
}
.cross-sell_gradient {
    opacity: 0.1;
    background-image: linear-gradient(#778e8d, #fff);
    width: 33.3333%;
    height: 611px;
    position: absolute;
    top: 183px;
    left: 0;
}
.cross-sell_gradient.gradient2 {
    width: 50%;
    height: 183px;
    top: 0;
    left: 33.3333%;
}
.cross-sell_gradient.gradient3 {
    width: 16.6667%;
    height: 210px;
    left: 83.333%;
}
.cross-sell_gradient.gradient4 {
    width: 16.6667%;
    height: 128px;
    top: 601px;
    left: 83.3333%;
}
.cross-sell_gradient.gradient5 {
    width: 50%;
    height: 112px;
    top: auto;
    bottom: 0;
}

/* READY TO GET STARTED */
.ready-to-get-started {
    color: #000;
    letter-spacing: -0.04em;
    background-color: #fff;
    border: 0.5px solid #000;
    width: 100%;
    height: 112px;
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 48px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transform: translate3d(0, 0, 0);
    transform-style: preserve-3d;
    transition: background-color 0.25s ease-in-out;
}

.ready-to-get-started:hover {
    background-color: rgb(0, 191, 191);
}

.ready-to-get-started p {
    padding-top: 32px;
    padding-bottom: 32px;
    padding-right: 50px;
    transition:
        transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        font-size 0.35s ease;
}

.ready-to-get-started:hover p {
    transform: translateX(2px);
    font-size: 60px;
}

.ready-to-get-started img {
    display: block;
    transform: translate3d(0, 0, 0) rotate(0deg);
    transition: transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ready-to-get-started:hover img {
    transform: translate3d(100px, 0, 0) scale(0.6) rotate(45deg);
}

/* LIST BLOCK (lightning bolt) */
.list-block .heading {
    color: #000;
    letter-spacing: -0.04em;
    vertical-align: baseline;
    width: auto;
    font-family: "Inter", sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 120%;
    display: inline-block;
}

.list-block .wrapper {
    background-image: url(https://cdn.prod.website-files.com/634425c2b807f7f20055760d/63724f0b3641406d07f0f9bf_grid-cropped.svg);
    background-position: 0 0;
    background-size: 40px;
    border-bottom: 1px solid black;
}

.content {
    object-fit: fill;
    background-color: #fff;
    border: 1px solid #000;
    border-bottom: none;
    /* flex-flow: row;
    justify-content: flex-start;
    align-items: stretch; */
    padding: 96px 0 28px;
    position: relative;
    display: grid;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 2fr 2fr;
}

.list-block .item {
    width: auto;
    margin-bottom: 56px;
    margin-left: 36px;
    margin-right: 36px;
    padding-left: 28px;
    display: block;
    position: relative;
}

.list-block img {
    position: absolute;
    inset: 2px auto auto 0%;
}

.list-block h5 {
    color: #000;
    letter-spacing: -0.04em;
    white-space: normal;
    object-fit: fill;
    margin-top: 0;
    margin-bottom: 4px;
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 26px;
}

.list-block .itemcontent {
    color: #2e5553;
    letter-spacing: 0.02em;
    line-height: 22px;
}

/* RICHTEXT BLOCK */
.richtext {
    z-index: 2;
    background-image: radial-gradient(circle, #fff, #fff 66%, #0000);
    flex-flow: column;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    min-width: auto;
    max-width: 608px;
    min-height: auto;
    margin: 0;
    display: flex;
    position: relative;
}
.richtext h1,
.richtext h2 {
    color: #000;
    letter-spacing: -0.04em;
    background-color: #0000;
    margin-bottom: 48px;
    font-family: Goodsans, sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 58px;
}
.richtext p {
    color: #000;
    letter-spacing: 0.02em;
    width: 608px;
    max-width: 100%;
    margin-top: 24px;
    margin-bottom: 24px;
    font-family:
        Public Sans,
        sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
}
