.qr-modal{
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: #00000063;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-modal-content{
    background-color: #ffffff;
    padding: 10px 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 80%;
}

.qr-modal-title{
    text-align: center;
}

.video-modal{
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: #000000cf;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-modal-content{
    padding: 0;
    border-radius: 10px;
    text-align: center; 
    max-width: 100%;
    position: relative;
}

.video-modal-title{
    text-align: center;
}

.video-modal-close{
    position: absolute;
    right: -2em;
}

.video-icon-close{
    font-size: 2em;
    color: rgb(255, 255, 255);
}

.embed-responsive-item{
    max-width: 100%;
    /* min-width: 900px; */
}

.video-modal-cta{
    margin-top: 50px;
    transform: scale(1.5);
}

.video-bg {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
    right: 0;
    bottom: 0;
    opacity: .8;
    filter: brightness(0.4);
}

.text-white {
    color: antiqueWhite !important;
}

.bg-white {
    background-color: antiqueWhite;
}

/* Slider */

.mySlides {display: none}
.mySlides img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: var(--custom-blue);
  font-weight: bold;
  font-size: 25px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: -30px;
  border-radius: 3px 0 0 3px;
}

.prev {
    left: -30px;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  color: var(--light-blue);
}

/* Caption text */
/* .text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
} */

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}
/* Slider */


.header-buttons {
    margin-top: 2rem;
}

h1,
h2,
h3 {
    color: var(--black)
}

h1,
h2,
.h1 {
    font-size: 32px;
    line-height: 1.36
}

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

    h1,
    h2,
    .h1 {
        font-size: 1.4rem
    }
}

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

    h1,
    h2,
    .h1 {
        font-size: 1.325rem
    }
}

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

    h1,
    h2,
    .h1 {
        font-size: 2rem
    }
}

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

    h1,
    h2,
    .h1 {
        font-size: 2.5rem
    }
}

h2 {
    margin-top: 0;
    margin: 0 0 22px
}

h3 {
    margin-top: 0
}

h3,
.h3 {
    font-size: 22px;
    line-height: 1.4
}

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

    h3,
    .h3 {
        font-size: 1.375rem
    }
}

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

    h3,
    .h3 {
        font-size: 1.5rem
    }
}

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

    h3,
    .h3 {
        font-size: 1.325rem
    }
}

h4,
.h4 {
    font-size: 16px
}

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

    h4,
    .h4 {
        font-size: 1.3125rem
    }
}

h5,
.h5 {
    font-size: 16px
}

.description-image {
    object-fit: contain;
    width: 400px;
}  

.divider {
    max-width: 100px;
    margin-left: 0;
    background-color: rgb(0, 25, 106);
    height: 7px;
    background: linear-gradient(to right,#3fb2f4, #115edb);
    border-radius: 5px;
    border: none;
}

:root {
    --container: 1420px;
    --container-gutter: calc((100vw - var(--container)) / 2);
    --dl-container: 1342px;
    --white: #fff;
    --black: #020408;
    --light-gray: #f2e9e9;
    --medium-gray: #b0a8b3;
    --hover-gray: #f6f6f6;
    --gray: #a498a6;
    --background-blue: #ecf5f7;
    --light-blue: #5ba3b1;
    --purple: #582f6b;
    --light-purple: #672373;
    --red: #1c8fd8;
    --salmon: #fe9b7c;
    --body: #3e3840;
    --border-color: #ede9ee;
    --row-border-color: #e5e5e5;
    --alt-border-color: #e1d6db;
    --footer-nav-spacing: 150px;
    --shadow: rgba(0, 0, 0, .11);
    --gray-column: #ecf5f7;
    --code-gray: #e9dddd;
    --step-line: #e7cdcd;
    --step-top-offset: 85px;
    --step-circle-size: 80px;
    --cube-size: 70px;
    --side-offset: 35px;
    --section-padding: 90px;
    --drop-shadow: rgba(226, 239, 241, .8);
    --code: #272822;
    --custom-blue: #092290;
    --light-blue: #1c8fd8;
    --gradient: linear-gradient(to right,#3fb2f4, #115edb);
}

.space {
    margin-top: 7rem;
}

.mobile-slider {
    display: none;
}

.space-right {
    margin-right: 2rem;
}

.space-top {
    margin-top: 4rem;
}

.space-bottom {
    margin-bottom: 7rem;
}

@media screen and (max-width: 1679px) {
    :root {
        --container: 1200px;
        --footer-nav-spacing: 112px
    }
}

@media screen and (max-width: 1439px) {
    :root {
        --container: 1100px
    }
}

@media screen and (max-width: 1239px) {
    :root {
        --container: 970px;
        --section-padding: 90px;
        --footer-nav-spacing: 75px
    }
}

@media screen and (max-width: 1079px) {
    :root {
        --container: 840px;
        --footer-nav-spacing: 38px
    }
}

@media screen and (max-width: 879px) {
    :root {
        --container: 700px
    }
}

@media screen and (max-width: 766px) {
    :root {
        --container: 480px;
        --section-padding: 68px
    }
}

@media screen and (max-width: 579px) {
    :root {
        --container: 440px;
        --section-padding: 45px
    }
}

@media screen and (max-width: 469px) {
    :root {
        --container: 340px
    }

    .desktop-grid {
        display: none;
    }

    .mobile-slider {
        display: block;
        margin-bottom: 3rem;
    }
}

@media screen and (max-width: 374px) {
    :root {
        --container: 300px
    }
}

*,
*::after,
*::before {
    box-sizing: border-box
}

::selection {
    color: var(--white);
    background-color: var(--purple)
}

*:focus {
    outline: 1px dotted var(--salmon)
}

html {
    line-height: 1.15
}

body {
    margin: 0;
    color: var(--body);
    background-color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.75
}

button {
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    appearance: none;
    color: inherit;
    background-color: transparent;
    border: 0;
    text-align: inherit;
    cursor: pointer
}

a {
    color: var(--purple);
    text-decoration: none;
    transition: color 300ms ease-in-out
}

.custom-link {
    color: var(--white);
    text-decoration: none;
    transition: color 300ms ease-in-out
}

a:active {
    color: var(--black)
}

@media (hover: hover) {
    a:hover {
        color: var(--custom-blue)
    }
}

ul {
    padding: 0;
    margin: 0
}

ul li {
    list-style: none
}

svg,
img {
    max-width: 100%
}

img[src$='#center'] {
    display: block;
    margin: 0.7rem auto;
    width: 80%
}

time {
    color: var(--black)
}

pre {
    padding: 10px 20px;
    color: var(--black) !important;
    background-color: var(--white) !important;
    border-radius: 10px;
    overflow: scroll
}

pre span {
    color: var(--black) !important
}

blockquote,
.highlight,
.gist {
    margin: 40px 0
}

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

    blockquote,
    .highlight,
    .gist {
        margin: 30px 0
    }
}

figure img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%
}

figure figcaption {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-style: italic;
    font-size: 14px
}

blockquote {
    padding: 60px;
    background-color: var(--light-gray)
}

@media screen and (max-width: 1439px) {
    blockquote {
        padding: 45px
    }
}

@media screen and (max-width: 1239px) {
    blockquote {
        padding: 30px
    }
}

.shape {
    position: absolute;
    z-index: -1;
    pointer-events: none
}

.square {
    box-shadow: 0 0 76px 29px var(--shadow)
}

.square--micro {
    width: 15px;
    height: 15px
}

.square--for-ants {
    width: 54px;
    height: 54px
}

.square--tiny {
    width: 100px;
    height: 100px
}


.square--small {
    width: 133px;
    height: 133px
}

.square--large {
    width: 150px;
    height: 150px
}

.square--jumbo {
    width: 320px;
    height: 320px
}

.square--big-boy {
    width: 370px;
    height: 370px
}

.square--no-box-shadow {
    box-shadow: none
}

.circle {
    border-radius: 50%
}

.circle--for-ants {
    width: 10px;
    height: 10px
}

.circle--micro {
    width: 15px;
    height: 15px
}

.circle--mini {
    width: 24px;
    height: 24px
}

.circle--tiny {
    width: 32px;
    height: 32px
}

.circle--small {
    width: 45px;
    height: 45px
}

.circle--kinda-small {
    width: 74px;
    height: 74px
}

.circle--medium {
    width: 104px;
    height: 104px
}

.circle--kinda-large {
    width: 115px;
    height: 115px
}

.circle--ooki {
    width: 134px;
    height: 134px
}

.circle--large {
    width: 160px;
    height: 160px
}

.circle--jumbo {
    width: 196px;
    height: 196px
}

.circle--wumbo {
    width: 400px;
    height: 400px
}

.circle--af {
    width: 570px;
    height: 570px
}

.circle--outlined-gray {
    border: 3px solid var(--light-blue)
}

.circle--outlined-purple {
    border: 4px solid var(--custom-blue)
}

.circle--outlined-red {
    border: 4px solid var(--custom-blue)
}

.circle--outlined-blue {
    border: 4px solid var(--custom-blue)
}

.circle--highlight {
    background-image: radial-gradient(66% 84%, #E6DEC3 26%, #C5BB96 61%, #9E9473 89%)
}

.triangle--really-tiny {
    width: 14px;
    height: 14px
}

.triangle--tiny {
    width: 22px;
    height: 22px
}

.triangle--smaller {
    width: 27px;
    height: 27px
}

.triangle--small {
    width: 35px;
    height: 35px
}

.triangle--kinda-small {
    width: 65px;
    height: 65px
}

.triangle--kinda-medium {
    width: 100px;
    height: 100px
}

.triangle--medium {
    width: 130px;
    height: 130px
}

.triangle--red {
    color: var(--light-blue)
}

.triangle--purple {
    color: var(--custom-blue)
}

.triangle--gray {
    color: var(--light-gray)
}

.triangle--gray svg {
    filter: drop-shadow(0 0 29px var(--shadow))
}

.triangle--blue {
    color: var(--light-blue)
}

.triangle-sided-1 {
    width: 29px;
    height: 29px
}

.triangle-sided-2 {
    width: 22px;
    height: 24px
}

.box--tiny {
    width: 35px;
    height: 32px
}

.box--small {
    width: 56px;
    height: 52px
}

.box--normal {
    width: 75px;
    height: 69px
}

.box--large {
    width: 100px;
    height: 94px
}

.box-2 {
    width: 118px;
    height: 129px
}

.box-3--tiny {
    width: 26px;
    height: 29px
}

.box-3--small {
    width: 34px;
    height: 39px
}

.box-3--medium {
    width: 68px;
    height: 78px
}

.box-4 {
    width: 68px;
    height: 38px
}

.elephant-head {
    width: 200px;
    height: auto
}

.elephant-head svg {
    width: 100%;
    height: 100%
}

.tusks {
    width: 172px;
    height: 145px
}

@media screen and (max-width: 1239px) {
    .tusks {
        width: 125px;
        height: 98px
    }
}

.active {
    color: var(--light-blue)
}

.blurb {
    max-width: 80ch;
    margin: auto
}

.left {
    text-align: left
}

.center {
    text-align: center
}

.border-radius-four-pixels {
    border-radius: 4px
}

.border-radius-ten-pixels {
    border-radius: 10px
}

.border-top {
    border-top: 1px solid var(--border-color)
}

.border-bottom {
    border-bottom: 1px solid var(--border-color)
}

.hs-form label:not(.hs-error-msg),
.visually-hide {
    position: absolute;
    top: 0;
    left: -9999px;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.navigation-heading {
    display: block;
    margin-bottom: 26px;
    font-size: .875rem;
    font-weight: 600
}

@media screen and (max-width: 879px) {
    .navigation-heading {
        margin-bottom: 13px
    }
}

.block-list li:not(:last-of-type) {
    margin-bottom: 4px
}

.inline-list li {
    display: inline-block
}

.card {
    border-radius: 10px
}

.card p {
    margin-bottom: 38px;
    font-size: .9375rem;
    text-align: left;
}

.card__subtitle,
.card__date {
    color: var(--red);
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase
}

.card__subtitle {
    color: var(--red)
}

.card__date {
    color: var(--light-blue)
}

@media screen and (min-width: 880px) {
    .card--small {
        max-width: 400px
    }
}

@media screen and (max-width: 879px) {
    .card--small {
        text-align: center
    }
}

@media screen and (min-width: 880px) {
    .card--left {
        text-align: left
    }
}

.card--about {
    padding: 48px 62px
}

@media screen and (max-width: 1439px) {
    .card--about {
        padding: 24px 32px
    }
}

.card--resources {
    padding: 85px 122px
}

@media screen and (max-width: 1439px) {
    .card--resources {
        padding: 64px 92px
    }
}

@media screen and (max-width: 1239px) {
    .card--resources {
        padding: 42px 62px
    }
}

.card--icon-cards,
.card--resources-events,
.card--resources-examples {
    padding: 40px
}

.card--case-studies {
    padding: 97px 60px 92px
}

.card--careers {
    padding: 54px
}

@media screen and (max-width: 766px) {
    .card--careers {
        padding: 34px 34px 44px
    }
}

.card--use-case {
    padding: 20px 20px 30px
}

.red {
    background-color: var(--red)
}

.gray {
    background-color: var(--light-gray)
}

.lighter-gray {
    background-color: #e1d6dc
}

.blue {
    background-color: var(--light-blue)
}

.purple {
    background-color: var(--purple)
}

.opacity {
    opacity: 0.3;
}

.light-blue {
    background-color: var(--light-blue)
}

.light-blue-text {
    color: #8eb7fa;
}

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

.background-blue {
    background-color: var(--background-blue)
}

.translate-x {
    transform: translateX(-50%)
}

.purple-link {
    color: var(--purple);
    font-weight: 600
}

.custom-blue-link {
    color: var(--custom-blue);
    font-weight: 600
}


@media (hover: hover) {
    .purple-link:hover {
        color: var(--light-purple)
    }
    .custom-blue-link:hover {
        color: var(--light-blue);
    }
}

.split-bars {
    position: relative
}

.split-bars h2,
.split-bars h3 {
    display: inline-block;
    position: relative;
    z-index: 4;
    padding: 40px;
    top: 40px;
    margin: 0;
    color: var(--black);
    font-size: 1rem;
    font-weight: 400;
}

.split-bars::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    transform: translateY(-50%)
}

.platform-border {
    border-top: 1px solid var(--alt-border-color)
}

.small-text {
    font-size: .875rem
}

.section-padding {
    padding: var(--section-padding) 0
}

.case-image {
    width: 124px;
    height: 124px;
    position: relative;
    background-color: var(--red);
    transform: rotate(45deg)
}

.block-link {
    display: block;
    color: inherit
}

.case-image-wrap {
    width: 100%;
    height: 100%;
    position: absolute
}

.case-image-wrap-inner {
    position: relative;
    min-width: 142%;
    height: auto;
    transform: rotate(-45deg);
    padding-bottom: 142%;
    margin-top: -21%;
    margin-left: -21%
}

.case-image-wrap-inner img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover
}

.case-image-corners {
    width: 180px;
    height: auto;
    top: -44px;
    left: -71px;
    transform: rotate(-45deg)
}

.social-logo {
    position: relative;
    display: block;
    border: 1px solid var(--light-blue);
    color: var(--light-blue) !important;
    border-radius: 8px;
    transition: border 300ms ease-in-out
}

.social-logo--header {
    width: 60px;
    height: 38px
}

.social-logo--header svg {
    width: 24px;
    height: 24px
}

@media screen and (max-width: 1439px) {
    .social-logo--header {
        width: 45px;
        height: 38px
    }
}

.social-logo--resources {
    width: 88px;
    height: 56px
}

.social-logo--resources svg {
    width: 38px;
    height: 38px
}

@media (hover: hover) {
    .social-logo:hover {
        border: 1px solid var(--light-blue)
    }
}

.social-logo svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.document-icon {
    width: 56px;
    height: 66px
}

.document-icon svg {
    width: 100%;
    height: 100%
}

.drop-shadow {
    box-shadow: 0 25px 35px 0 rgba(0, 0, 0, 0.04)
}

.positive-z-index {
    z-index: 1
}

.relative {
    position: relative
}

.overflow-hidden {
    overflow: hidden
}

.internal-header {
    margin-bottom: 42px
}

.internal-header h1 {
    max-width: 80ch;
    margin: 0 auto 30px
}

.internal-header span {
    display: inline-block
}

@media screen and (max-width: 766px) {
    .internal-header span {
        display: block
    }
}

.internal-header__list {
    display: inline-block
}

@media screen and (max-width: 766px) {
    .internal-header__list {
        display: block;
        margin-top: 20px
    }
}

.internal-header__list-item {
    display: inline-block
}

@media screen and (min-width: 767px) {
    .internal-header__list-item:not(:last-of-type) {
        margin-right: 20px
    }
}

@media screen and (max-width: 766px) {
    .internal-header__list-item:not(:last-of-type) {
        margin-bottom: 20px
    }
}

@media screen and (max-width: 766px) {
    .internal-header__list-item {
        display: block !important
    }
}

.internal-header__separator {
    display: inline-block;
    padding: 0 18px
}

@media screen and (max-width: 766px) {
    .internal-header__separator {
        display: none
    }
}

.internal-header__image {
    display: inline-block;
    width: 35px;
    height: 35px;
    margin-right: 9px;
    border-radius: 50%;
    vertical-align: middle
}

@media screen and (max-width: 1439px) {
    .internal-header {
        margin-bottom: 54px
    }
}

.internal-content {
    max-width: 974px;
    margin: auto
}

.side-by-side-tusks {
    top: -120px
}

@media screen and (max-width: 1439px) {
    .side-by-side-tusks {
        top: -90px
    }
}

@media screen and (max-width: 1239px) {
    .side-by-side-tusks {
        top: -60px
    }
}

.side-by-side-tusks--left {
    left: 300px;
    transform: scaleX(-1) rotate(-10deg)
}

@media screen and (max-width: 1439px) {
    .side-by-side-tusks--left {
        left: 225px
    }
}

@media screen and (max-width: 1239px) {
    .side-by-side-tusks--left {
        left: 150px
    }
}

@media screen and (max-width: 1079px) {
    .side-by-side-tusks--left {
        left: 75px
    }
}

@media screen and (max-width: 766px) {
    .side-by-side-tusks--left {
        left: 50px
    }
}

@media screen and (max-width: 469px) {
    .side-by-side-tusks--left {
        left: 25px
    }
}

.side-by-side-tusks--right {
    right: 300px;
    transform: rotate(-10deg)
}

@media screen and (max-width: 1439px) {
    .side-by-side-tusks--right {
        right: 225px
    }
}

@media screen and (max-width: 1239px) {
    .side-by-side-tusks--right {
        right: 150px
    }
}

@media screen and (max-width: 1079px) {
    .side-by-side-tusks--right {
        right: 75px
    }
}

@media screen and (max-width: 766px) {
    .side-by-side-tusks--right {
        right: 50px
    }
}

@media screen and (max-width: 469px) {
    .side-by-side-tusks--right {
        right: 25px
    }
}

.button-group .button:last-of-type {
    margin-left: 10px
}

.subheading {
    color: var(--red);
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase
}

.fade-in {
    opacity: .2;
    transform: translateY(20px);
    transition: opacity .7s ease-out, transform .7s ease-out;
    will-change: opacity, transform
}

.fade-in.fade-in--active {
    opacity: 1;
    transform: translateY(0px)
}

.beta {
    position: absolute;
    top: -10px;
    right: -1px;
    padding: 2px 8px;
    color: var(--white);
    background-color: var(--red);
    border-radius: 5px;
    font-size: .5625rem;
    pointer-events: none
}

.code {
    margin: 0;
    border-radius: 5px
}

.code--white {
    background-color: var(--white)
}

.code--gray {
    background-color: var(--code-gray)
}

.code--block {
    display: block
}

.code--padding-small {
    padding: 10px
}

.code--padding-normal {
    padding: 14px 30px
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%
}

.getting-started-heading {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto
}

@media screen and (max-width: 1239px) {
    .getting-started-heading {
        max-width: 440px
    }
}

@media screen and (min-width: 580px) {
    .float-image--left {
        float: left;
        margin: 1em 1.5rem 0 0
    }

    .float-image--right {
        float: right;
        margin: 1em 0 0 1.5rem
    }
}

@media screen and (max-width: 579px) {
    .float-image {
        width: 100%;
        margin: 1.5em auto
    }
}

.highlight {
    overflow: hidden
}

.highlight pre {
    padding: 20px;
    overflow-x: auto
}

.inherit {
    color: inherit
}

.faded-line:not(:last-of-type)::before {
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(0deg, transparent 0%, #e6cdce 100%);
    content: ""
}

@media screen and (max-width: 1239px) {
    .faded-line:not(:last-of-type)::before {
        display: none
    }
}

.faded-line--three-col::before {
    right: -85px
}

@media screen and (max-width: 1679px) {
    .faded-line--three-col::before {
        right: -64px
    }
}

@media screen and (max-width: 1439px) {
    .faded-line--three-col::before {
        right: -43px
    }
}

.data-lineage-spacing {
    margin-top: 32px
}

.blue-link {
    color: var(--light-blue);
    font-weight: 600
}

.image-ratio {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden
}

.image-ratio:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 52.23880597%
}

.image-ratio>.content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

@media screen and (min-width: 767px) and (max-width: 1239px) {
    .mobile-width {
        max-width: 640px;
        width: 640px;
        margin: auto
    }
}

.full-height {
    height: 100%
}

.exit-button {
    position: absolute;
    font-size: 1.875rem;
    line-height: 40px
}

.exit-button--banner {
    top: 50%;
    right: -10px;
    width: 40px;
    transform: translateY(-50%)
}

.exit-button--modal {
    top: -22px;
    right: -22px;
    width: 44px;
    height: 44px;
    color: var(--white);
    background-color: var(--light-blue);
    border-radius: 50%;
    text-align: center;
    transition: background-color 300ms ease-in-out
}

@media (hover: hover) {
    .exit-button--modal:hover {
        background-color: var(--custom-blue)
    }
}

.modal-is-open {
    position: fixed;
    top: 0;
    left: 0;
    max-height: 100vh;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none
}

.show-more {
    margin-top: 15px
}

.show-more-toggle {
    height: 0;
    opacity: 0;
    transition: opacity 300ms ease
}

.show-more-toggle--show {
    height: auto;
    opacity: 1
}

.footnotes p {
    display: inline-block
}

.overflow-x {
    overflow-x: hidden
}

.span-across {
    grid-column: 1 / -1
}

.w-24 {
    width: 24px;
    height: 24px
}

.w-40 {
    width: 40px;
    height: 40px
}

.w-60 {
    width: 60px;
    height: 60px
}

.small-blurb {
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto
}

.cube--small {
    --cube-size: 42px;
    --side-offset: 21px
}

@media screen and (max-width: 1079px) {
    .cube--small {
        --cube-size: 36px;
        --side-offset: 18px
    }
}

.spinning-cube-wrapper {
    width: var(--cube-size);
    height: var(--cube-size);
    position: relative;
    perspective: 0px;
    margin: 0 auto
}

.spinning-cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform: rotateY(0) rotateX(45deg) rotateZ(45deg);
    animation: spin 10s infinite linear;
    transform-style: preserve-3d
}

.side {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden
}

.side--one {
    transform: rotateX(90deg) translateZ(var(--side-offset));
    /* background-color: #FE9B7C; */
    background: linear-gradient(to right,#3fb2f4, #115edb);
    animation: bg-one 36s infinite linear
}

.side--five {
    transform: rotateY(-90deg) translateZ(var(--side-offset));
    /* background-color: #FE9B7C; */
    background: linear-gradient(to right,#3fb2f4, #115edb);
    animation: bg-five 36s infinite linear
}

.side--two {
    transform: translateZ(var(--side-offset));
    /* background-color: #D06868; */
    background: linear-gradient(to right,#3fb2f4, #115edb);
    animation: bg-two 36s infinite linear
}

.side--three {
    transform: rotateY(90deg) translateZ(var(--side-offset));
    /* background-color: #874972; */
    background: linear-gradient(to right,#3fb2f4, #115edb);
    animation: bg-three 36s infinite linear
}

.side--four {
    transform: rotateY(180deg) translateZ(var(--side-offset));
    /* background-color: #A5597E; */
    background: linear-gradient(to right,#3fb2f4, #115edb);
    animation: bg-four 36s infinite linear
}

.side--six {
    transform: rotateX(-90deg) translateZ(var(--side-offset));
    /* background-color: #A5597E; */
    background: linear-gradient(to right,#3fb2f4, #115edb);
    animation: bg-six 36s infinite linear
}

@keyframes spin {
    from {
        transform: rotateY(0deg) rotateX(45deg) rotateZ(45deg)
    }

    to {
        transform: rotateY(-360deg) rotateX(45deg) rotateZ(45deg)
    }
}

@keyframes bg-one {
    0% {
        background-color: #FE9B7C
    }

    25% {
        background-color: #FE9B7C
    }

    50% {
        background-color: #D06868
    }

    75% {
        background-color: #FE9B7C
    }

    100% {
        background-color: #FE9B7C
    }
}

@keyframes bg-five {
    0% {
        background-color: #FE9B7C
    }

    25% {
        background-color: #FE9B7C
    }

    50% {
        background-color: #FE9B7C
    }

    75% {
        background-color: #D06868
    }

    100% {
        background-color: #D06868
    }
}

@keyframes bg-two {
    0% {
        background-color: #E88373
    }

    12.5% {
        background-color: #D06868
    }

    50% {
        background-color: #D06868
    }

    87.5% {
        background-color: #FE9B7C
    }

    100% {
        background-color: #E88373
    }
}

@keyframes bg-three {
    0% {
        background-color: #A5597E
    }

    12.5% {
        background-color: #884A72
    }

    37.5% {
        background-color: #79426D
    }

    87.5% {
        background-color: #A5597E
    }

    100% {
        background-color: #A5597E
    }
}

@keyframes bg-four {
    0% {
        background-color: #79426D
    }

    25% {
        background-color: #A5597E
    }

    50% {
        background-color: #A5597E
    }

    75% {
        background-color: #79426D
    }

    100% {
        background-color: #79426D
    }
}

@keyframes bg-six {
    0% {
        background-color: #79426D
    }

    25% {
        background-color: #79426D
    }

    50% {
        background-color: #A5597E
    }

    75% {
        background-color: #A5597E
    }

    100% {
        background-color: #79426D
    }
}

/*! Flickity v2.2.1
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
    position: relative
}

.flickity-enabled:focus {
    outline: none;
    box-shadow: none
}

.flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%
}

.flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%
}

.flickity-enabled.is-draggable {
    user-select: none
}

.flickity-enabled.is-draggable .flickity-viewport {
    cursor: move;
    cursor: grab
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
    cursor: grabbing
}

.flickity-enabled.is-fade .flickity-slider>* {
    pointer-events: none;
    z-index: 0
}

.flickity-enabled.is-fade .flickity-slider>.is-selected {
    pointer-events: auto;
    z-index: 1
}

.four-oh-four {
    padding: var(--section-padding) 0 70px
}

.four-oh-four h1 {
    margin: 0 0 18px;
    color: var(--light-blue)
}

.four-oh-four span {
    display: block;
    margin-bottom: 36px;
    color: var(--black);
    font-weight: bold
}

.four-oh-four__grid {
    margin-top: 38px
}

@media screen and (max-width: 766px) {
    .four-oh-four__left {
        display: none
    }
}

@media screen and (max-width: 766px) {
    .four-oh-four__right {
        order: 1
    }
}

.container {
    max-width: var(--container);
    margin: auto
}

@media screen and (min-width: 1440px) {
    .container--promo {
        max-width: 1220px
    }
}

.container-small {
    max-width: 1300px;
    margin: auto
}

@media screen and (max-width: 1679px) {
    .container-small {
        max-width: 1000px
    }
}

@media screen and (max-width: 1239px) {
    .container-small {
        max-width: var(--container)
    }
}

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

.grid--header {
    grid-template-columns: 173px 1fr;
    grid-gap: 54px
}

@media screen and (max-width: 1679px) {
    .grid--header {
        grid-template-columns: 130px 1fr;
        grid-gap: 20px
    }
}

@media screen and (max-width: 1239px) {
    .grid--header {
        grid-template-columns: repeat(2, 1fr)
    }
}

.grid--header-nav-items {
    grid-template-columns: 1fr 125px 290px;
    grid-gap: 54px
}

@media screen and (max-width: 1679px) {
    .grid--header-nav-items {
        grid-gap: 20px
    }
}

@media screen and (max-width: 1439px) {
    .grid--header-nav-items {
        grid-template-columns: 1fr 95px 290px
    }
}

@media screen and (max-width: 1239px) {
    .grid--header-nav-items {
        grid-template-columns: repeat(2, 1fr);
        grid-column: span 2
    }
}

.grid--site-header-buttons {
    grid-template-columns: 200px 1fr 30px;
    grid-gap: 10px;
    align-items: start
}

@media screen and (max-width: 1239px) {
    .grid--site-header-buttons {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media screen and (max-width: 766px) {
    .grid--site-header-buttons {
        grid-column: span 2
    }
}

.description-grid {
    grid-template-columns: 1fr .5fr 1fr;
    margin-top: 2rem;
}

.description-grid__second {
    grid-template-columns: 1fr .5fr 1fr;
    margin-top: 2rem;
}

.description-content {
    text-align: left;
}

.description-icon i {
    font-size: 30px;
    color: var(--custom-blue);
}

.description-icon-grid {
    margin-top: 1.5rem;
}

.description-icon-grid div {
    text-align: center;
}

.grid--two-column {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
}

.grid--three-column {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 3rem;
    margin-top: 1rem;
}

.grid--four-column {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}

.grid--five-column {
    grid-template-columns: repeat(5, 1fr)
}

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

    .grid--links-logo-grid,
    .grid--logo-grid {
        justify-content: space-between
    }
}

.grid--links-logo-grid {
    grid-template-columns: repeat(8, auto)
}

.grid--links-logo-grid img {
    object-fit: contain;
    width: 100px;
}

@media screen and (max-width: 879px) {
    .grid--links-logo-grid {
        grid-gap: 40px
    }
}

@media screen and (max-width: 766px) {
    .grid--links-logo-grid {
        grid-template-columns: repeat(2, auto);
        grid-gap: 40px 20px
    }
    .grid--four-column {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-gap: 10px;
    }
    .grid--three-column {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(3, 1fr);
        grid-gap: 10px;
    }
    .grid--two-column {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-gap: 10px;
    }
}

.grid--logo-grid-3 {
    grid-template-columns: repeat(3, auto);
    grid-row-gap: 50px
}

@media screen and (max-width: 766px) {
    .grid--logo-grid-3 {
        grid-template-columns: 1fr
    }
}

.grid--logo-grid-4 {
    grid-template-columns: repeat(4, auto);
    align-items: center
}

@media screen and (max-width: 1239px) {
    .grid--logo-grid-4 {
        grid-template-columns: repeat(2, auto);
        grid-row-gap: 50px
    }
}

@media screen and (min-width: 1680px) {
    .grid--home-hero {
        grid-gap: 0 100px
    }
}

@media screen and (min-width: 1440px) and (max-width: 1679px) {
    .grid--home-hero {
        grid-gap: 0 75px
    }
}

@media screen and (min-width: 1240px) {
    .grid--home-hero {
        grid-template-areas: "content graphic""buttons graphic""slider graphic";
        grid-gap: 0 50px
    }
}

@media screen and (max-width: 1239px) {
    .grid--home-hero {
        grid-template-areas: "content""buttons""graphic""slider"
    }
}

.grid--resources {
    grid-gap: 38px
}

@media screen and (max-width: 879px) {
    .grid--resources {
        grid-template-columns: 1fr
    }
}

.grid--about-buttons {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px
}

.grid--hero-buttons {
    grid-template-columns: 194px 1fr;
    grid-gap: 20px
}

@media screen and (max-width: 1239px) {
    .grid--hero-buttons {
        grid-template-columns: 1fr
    }
}

.grid--testimonials {
    grid-gap: 20px
}

@media screen and (max-width: 1239px) {
    .grid--testimonials {
        grid-template-columns: 1fr
    }
}

.grid--case-studies {
    grid-gap: 0 135px
}

@media screen and (max-width: 1679px) {
    .grid--case-studies {
        grid-gap: 0 100px
    }
}

@media screen and (max-width: 1439px) {
    .grid--case-studies {
        grid-gap: 0 75px
    }
}

@media screen and (max-width: 1379px) {
    .grid--case-studies {
        grid-gap: 0 50px
    }
}

@media screen and (max-width: 1239px) {
    .grid--case-studies {
        grid-template-columns: 1fr;
        grid-gap: 135px 0
    }
}

.grid--links {
    grid-template-columns: 3fr 1fr
}

@media screen and (max-width: 1239px) {
    .grid--links {
        grid-template-columns: 1fr;
        grid-row-gap: 60px
    }
}

.grid--options {
    grid-template-columns: 440px repeat(3, 1fr);
    grid-gap: 0 20px
}

@media screen and (max-width: 1439px) {
    .grid--options {
        grid-template-columns: 330px repeat(3, 1fr)
    }
}

@media screen and (max-width: 1239px) {
    .grid--options {
        grid-template-columns: 210px repeat(3, 1fr)
    }
}

@media screen and (max-width: 879px) {
    .grid--options {
        grid-template-columns: 150px repeat(3, 1fr)
    }
}

@media screen and (max-width: 766px) {
    .grid--options {
        grid-template-columns: 1fr
    }
}

.grid--enterprise {
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 20px
}

@media screen and (max-width: 1079px) {
    .grid--enterprise {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media screen and (max-width: 766px) {
    .grid--enterprise {
        grid-template-columns: repeat(2, 1fr)
    }
}

.grid--list {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
    grid-auto-flow: dense
}

@media screen and (max-width: 1379px) {
    .grid--list {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px
    }
}

@media screen and (max-width: 1079px) {
    .grid--list {
        grid-template-columns: 1fr
    }
}

.grid--about-cards {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px
}

@media screen and (max-width: 1239px) {
    .grid--about-cards {
        grid-template-columns: 1fr
    }
}

.grid--social-logos {
    grid-column-gap: 45px
}

@media screen and (min-width: 1240px) {
    .grid--social-logos {
        justify-self: end
    }
}

@media screen and (max-width: 1239px) {
    .grid--social-logos {
        place-self: center
    }
}

.grid--documentation {
    grid-gap: 40px
}

@media screen and (max-width: 1239px) {
    .grid--documentation {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media screen and (max-width: 579px) {
    .grid--documentation {
        grid-template-columns: 1fr;
        grid-gap: 20px
    }
}

@media screen and (max-width: 1239px) {
    .grid--resources-case-studies {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media screen and (max-width: 766px) {
    .grid--resources-case-studies {
        grid-template-columns: 1fr
    }
}

.grid--resources-blog {
    grid-gap: 60px 140px
}

@media screen and (max-width: 1679px) {
    .grid--resources-blog {
        grid-gap: 60px 70px
    }
}

@media screen and (max-width: 1439px) {
    .grid--resources-blog {
        grid-gap: 60px 35px
    }
}

@media screen and (max-width: 766px) {
    .grid--resources-blog {
        grid-template-columns: 1fr
    }
}

.grid--resources-blog-article {
    grid-template-columns: 240px 1fr;
    grid-gap: 40px;
    align-items: start
}

@media screen and (max-width: 1679px) {
    .grid--resources-blog-article {
        grid-template-columns: 1fr 2fr;
        grid-gap: 20px
    }
}

@media screen and (max-width: 1439px) {
    .grid--resources-blog-article {
        grid-template-columns: 1fr;
        grid-gap: 20px
    }
}

.grid--resources-cards {
    grid-gap: 40px
}

@media screen and (max-width: 1239px) {
    .grid--resources-cards {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media screen and (max-width: 879px) {
    .grid--resources-cards {
        grid-template-columns: 1fr
    }
}

.grid--resources-featured-post {
    grid-column-gap: 80px;
    align-items: center
}

@media screen and (max-width: 1439px) {
    .grid--resources-featured-post {
        grid-column-gap: 60px
    }
}

@media screen and (max-width: 1239px) {
    .grid--resources-featured-post {
        grid-template-columns: 1fr;
        grid-row-gap: 30px
    }
}

.grid--company-hero {
    grid-template-columns: 580px 1fr;
    grid-gap: 60px;
    align-items: center
}

@media screen and (max-width: 1439px) {
    .grid--company-hero {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media screen and (max-width: 1079px) {
    .grid--company-hero {
        grid-template-columns: 1fr;
        grid-gap: 30px
    }
}

.grid--company-about {
    grid-gap: 20px 150px
}

@media screen and (max-width: 1439px) {
    .grid--company-about {
        grid-gap: 20px 113px
    }
}

@media screen and (max-width: 1239px) {
    .grid--company-about {
        grid-gap: 20px 75px
    }
}

@media screen and (max-width: 1079px) {
    .grid--company-about {
        grid-template-columns: 1fr
    }
}

.grid--careers {
    grid-auto-flow: dense;
    grid-gap: 40px
}

@media screen and (max-width: 1079px) {
    .grid--careers {
        grid-template-columns: 1fr
    }
}

@media screen and (max-width: 766px) {
    .grid--careers {
        grid-gap: 20px
    }
}

.grid--use-cases {
    grid-template-columns: auto 1fr;
    grid-gap: 60px
}

@media screen and (max-width: 1679px) {
    .grid--use-cases {
        grid-gap: 30px
    }
}

@media screen and (max-width: 1079px) {
    .grid--use-cases {
        grid-template-columns: 1fr;
        grid-gap: 40px
    }
}

.grid--use-cases-cards {
    grid-gap: 42px 22px;
    align-items: stretch
}

@media screen and (max-width: 1439px) {
    .grid--use-cases-cards {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media screen and (max-width: 766px) {
    .grid--use-cases-cards {
        grid-template-columns: 1fr;
        grid-gap: 40px
    }
}

.grid--post {
    grid-template-columns: 1fr;
    grid-row-gap: 72px
}

.grid--single-case-study {
    grid-gap: 20px;
    align-items: center
}

.grid--platform-local {
    grid-template-columns: 854px 1fr;
    grid-column-gap: 170px
}

@media screen and (max-width: 1679px) {
    .grid--platform-local {
        grid-template-columns: 640px 1fr;
        grid-column-gap: 128px
    }
}

.grid--platform-hub {
    grid-template-columns: 1fr 610px;
    grid-column-gap: 180px
}

@media screen and (max-width: 1679px) {
    .grid--platform-hub {
        grid-column-gap: 135px
    }
}

.grid--platform-local,
.grid--platform-hub {
    align-items: center
}

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

    .grid--platform-local,
    .grid--platform-hub {
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 90px
    }
}

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

    .grid--platform-local,
    .grid--platform-hub {
        grid-template-columns: 1fr;
        grid-row-gap: 90px
    }
}

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

    .grid--platform-local,
    .grid--platform-hub {
        grid-row-gap: 45px
    }
}

.grid--concepts {
    grid-gap: 168px
}

@media screen and (max-width: 1679px) {
    .grid--concepts {
        grid-gap: 126px
    }
}

@media screen and (max-width: 1439px) {
    .grid--concepts {
        grid-gap: 84px
    }
}

@media screen and (max-width: 1379px) {
    .grid--concepts {
        grid-gap: 42px
    }
}

.grid--where {
    grid-gap: 40px
}

@media screen and (max-width: 1079px) {
    .grid--where {
        grid-row-gap: 120px
    }
}

@media screen and (max-width: 1079px) {
    .grid--getting-started {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 40px auto 80px
    }
}

.grid--biotech {
    grid-template-columns: 600px 1fr;
    grid-gap: 150px
}

@media screen and (max-width: 1439px) {
    .grid--biotech {
        grid-gap: 75px
    }
}

@media screen and (max-width: 1239px) {
    .grid--biotech {
        grid-template-columns: 1fr;
        grid-gap: 50px
    }
}

@media screen and (max-width: 766px) {
    .grid--biotech {
        grid-gap: 25px
    }
}

.grid--data-lineage-about {
    grid-auto-flow: dense;
    grid-gap: 30px 142px;
    align-items: start
}

@media screen and (max-width: 1679px) {
    .grid--data-lineage-about {
        grid-gap: 30px 106px
    }
}

@media screen and (max-width: 1439px) {
    .grid--data-lineage-about {
        grid-gap: 30px 70px
    }
}

@media screen and (max-width: 1239px) {
    .grid--data-lineage-about {
        grid-gap: 20px;
        align-items: stretch
    }
}

.grid--data-lineage-gap {
    grid-gap: 170px
}

@media screen and (max-width: 1679px) {
    .grid--data-lineage-gap {
        grid-gap: 128px
    }
}

@media screen and (max-width: 1439px) {
    .grid--data-lineage-gap {
        grid-gap: 85px
    }
}

@media screen and (max-width: 1239px) {
    .grid--data-lineage-gap {
        grid-gap: 64px
    }
}

@media screen and (max-width: 1079px) {
    .grid--data-lineage-gap {
        grid-gap: 42px
    }
}

@media screen and (max-width: 766px) {
    .grid--data-lineage-gap {
        grid-gap: 20px
    }
}

.grid--article-with-graphic {
    grid-template-columns: 460px 1fr;
    justify-items: center
}

.grid--blog-page {
    grid-gap: 40px
}

@media screen and (max-width: 1079px) {
    .grid--blog-page {
        grid-template-columns: 1fr
    }
}

.grid--related {
    grid-gap: 40px
}

.grid--author {
    grid-template-columns: 90px 1fr;
    grid-gap: 140px;
    align-items: center
}

@media screen and (max-width: 1079px) {
    .grid--author {
        grid-gap: 70px
    }
}

@media screen and (max-width: 766px) {
    .grid--author {
        grid-template-columns: 1fr;
        grid-gap: 35px
    }
}

.grid--footer {
    grid-template-columns: 1fr auto auto auto
}

@media screen and (min-width: 1680px) {
    .grid--footer {
        padding-right: 40px
    }
}

@media screen and (max-width: 879px) {
    .grid--footer {
        grid-template-columns: 1fr;
        grid-gap: 50px
    }
}

.grid--grid-gap {
    grid-gap: 20px
}

.grid--biotech-hero {
    grid-template-areas: "header form""list form";
    grid-gap: 0 100px;
    align-items: center
}

@media screen and (max-width: 879px) {
    .grid--biotech-hero {
        grid-template-areas: "header""form""list";
        grid-template-columns: 1fr
    }
}

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

    .grid--icon-blocks,
    .grid--studies,
    .grid--biotech-buttons {
        grid-template-columns: 1fr
    }
}

@media screen and (max-width: 1079px) {
    .grid--studies {
        grid-gap: 100px 0
    }
}

.grid--404 {
    align-items: end;
    grid-gap: 60px
}

@media screen and (max-width: 766px) {
    .grid--404 {
        grid-template-columns: 1fr;
        grid-gap: 0
    }
}

.grid--dl-hero {
    grid-template-columns: 560px 1fr;
    grid-gap: 100px;
    align-items: center
}

@media screen and (max-width: 1679px) {
    .grid--dl-hero {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 50px
    }
}

@media screen and (max-width: 1239px) {
    .grid--dl-hero {
        align-items: start
    }
}

.grid--dl-two-col {
    grid-template-columns: 1fr 670px;
    grid-gap: 170px
}

@media screen and (max-width: 1679px) {
    .grid--dl-two-col {
        grid-gap: 84px
    }
}

@media screen and (max-width: 1439px) {
    .grid--dl-two-col {
        grid-gap: 48px
    }
}

@media screen and (max-width: 1079px) {
    .grid--dl-two-col {
        grid-gap: 0
    }
}

@media screen and (max-width: 1079px) {
    .grid--data-lineage-col {
        grid-template-columns: 1fr
    }
}

.grid--promo {
    grid-template-columns: 540px 1fr;
    grid-gap: 180px;
    align-items: start
}

@media screen and (max-width: 1679px) {
    .grid--promo {
        grid-gap: 135px
    }
}

@media screen and (max-width: 1439px) {
    .grid--promo {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 40px
    }
}

@media screen and (max-width: 1079px) {
    .grid--promo {
        grid-template-columns: 1fr
    }
}

.button {
    padding: 10px 20px;
    text-align: center;
    font-size: .875rem;
    font-weight: 600;
    appearance: none;
    border: 1px solid transparent;
    transition: color 300ms ease-in-out, background-color 300ms ease-in-out, border 300ms ease-in-out
}

@media (hover: hover) {
    .button:hover {
        color: var(--white);
        background-color: var(--light-blue)
    }
}

.button--inline-block {
    display: inline-block
}

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

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

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

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

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

.button--border {
    color: var(--custom-blue);
    border: 1px solid var(--custom-blue)
}

@media (hover: hover) {
    .button--border:hover {
        color: var(--light-blue);
        background-color: transparent;
        border: 1px solid var(--light-blue)
    }
}

.button--custom-blue--border {
    color: var(--light-blue);
    border: 1px solid var(--light-blue)
}

.button--standard {
    padding: 12px 40px
}

.button--single {
    margin-top: 20px
}

@media screen and (max-width: 766px) {
    .button {
        padding: 10px
    }
}

.scrollmagic-pin-spacer {
    height: 0 !important;
    min-height: 0 !important;
    z-index: 100;
}

@media screen and (max-width: 1240px) {
    .scrollmagic-pin-spacer {
        height: 54px !important;
        z-index: 100;
    }
    .site-header--scrolled {
        background: var(--black) !important;
    }
    .site-header__list-item-link{
        color: var(--black) !important;
    }
}

.site-header {
    z-index: 20;
    width: 100% !important;
    height: 75px !important;
    padding: 20px 0;
    /* border-bottom: 1px solid var(--border-color) */
}

.site-header--scrolled {
    /* background-color: var(--white); */
    background: rgb(74 74 74);
    background: linear-gradient(0deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 57%) 100%);
}

@media screen and (min-width: 1240px) {
    .site-header--promo {
        overflow: hidden
    }
}

@media screen and (max-width: 1239px) {
    .site-header .container {
        max-width: 100%
    }
}

.site-header .button {
    height: 100%;
    padding: 5px 20px;
    cursor: pointer
}

.site-header__logo {
    width: 173px;
    height: 37px;
    display: inline-block
}

.site-header__logo svg {
    width: 100%;
    height: 100%
}

@media screen and (max-width: 1679px) {
    .site-header__logo {
        width: 130px;
        height: 28px
    }
}

@media screen and (max-width: 1239px) {
    .site-header__logo {
        margin-left: var(--container-gutter)
    }
}

.site-header__social-logos {
    grid-template-columns: repeat(2, 60px);
    grid-gap: 8px;
    justify-items: start
}

.site-header__social-logos li {
    display: inline-block
}

@media screen and (max-width: 766px) {
    .site-header__social-logos li:not(:last-of-type) {
        margin-right: 8px
    }
}

@media screen and (max-width: 1439px) {
    .site-header__social-logos {
        grid-template-columns: repeat(2, 45px)
    }
}

@media screen and (max-width: 766px) {
    .site-header__social-logos {
        display: block;
        grid-template-columns: unset;
        grid-column: span 2;
        grid-gap: unset;
        order: 3;
        text-align: center
    }
}

.site-header__navigation {
    display: inline-block;
    font-size: .875rem;
    margin-left: 34px;
    align-self: center
}

@media screen and (max-width: 1439px) {
    .site-header__navigation {
        margin-left: 0
    }
}

@media screen and (max-width: 1239px) {
    .site-header__navigation {
        grid-column: span 2;
        order: 1
    }
}

@media screen and (max-width: 766px) {
    .site-header__navigation {
        order: 2
    }
}

/* @media screen and (max-width: 1079px) {
    .site-header__request-button-desktop {
        display: none
    }
}

@media screen and (min-width: 1080px) {
    .site-header__request-button-mobile {
        display: none
    }
} */

.site-header__list-item {
    position: relative;
    display: inline-block
}

@media screen and (min-width: 1440px) {
    .site-header__list-item:not(:last-of-type) {
        margin-right: 0px
    }
}

@media screen and (max-width: 1239px) {
    .site-header__list-item {
        display: block;
        margin-bottom: 20px
    }
}

.site-header__list-item-link {
    display: block;
    padding: 6px 10px;
    color: var(--white);
    font-weight: 600;
    transition: color 300ms ease-in-out, background-color 300ms ease-in-out
}

@media (hover: hover) {
    .site-header__list-item-link:hover {
        color: var(--custom-blue)
    }
}

.site-header__list-item-link--active {
    color: var(--purple)
}

@media screen and (max-width: 1679px) {
    .site-header__list-item-link {
        padding: 6px 10px
    }
}

.site-header__menu-button {
    justify-self: end;
    margin-right: var(--container-gutter)
}

@media screen and (min-width: 1240px) {
    .site-header__menu-button {
        display: none
    }
}

@media screen and (max-width: 766px) {
    .site-header__buttons {
        order: 1
    }
}

.site-header__hide-mobile {
    transition: background-color 100ms ease-in-out
}

@media screen and (max-width: 1239px) {
    .site-header__hide-mobile {
        width: 100%;
        height: 0;
        position: absolute;
        top: 52px;
        left: 0;
        z-index: 9;
        padding: 20px var(--container-gutter);
        border-bottom: 1px solid var(--border-color);
        opacity: 0;
        pointer-events: none
    }
}

@media screen and (max-width: 579px) {
    .site-header__hide-mobile {
        top: 42px
    }
}

.site-header__hide-mobile--show {
    background-color: var(--white);
    height: auto;
    opacity: 1;
    pointer-events: auto
}

.site-header__promo-button {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9
}

.site-header__promo-button--opened {
    display: none
}

@media screen and (max-width: 1239px) {
    .site-header__promo-button {
        display: none
    }
}

@media screen and (min-width: 1240px) {
    .site-header__promo-navigation {
        transform: translateX(200%);
        transition: transform .75s ease
    }

    .site-header__promo-navigation--open {
        transform: translateX(0)
    }
}

.site-header__login-button {
    border: 1px solid var(--border-color)
}

@media screen and (min-width: 1240px) {
    .site-header__sub-nav {
        position: absolute;
        top: 100%;
        left: -10px;
        width: 150px;
        z-index: 20;
        background-color: var(--white);
        border: 1px solid #f4f4f4;
        border-radius: 4px;
        box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.1);
        opacity: 0;
        pointer-events: none;
        overflow: hidden;
        transition: opacity 300ms ease-in-out
    }

    .site-header__sub-nav--show {
        opacity: 1;
        pointer-events: auto
    }
}

.site-header__sub-nav-item a {
    position: relative;
    display: block;
    padding: 8px 20px;
    color: var(--black);
    font-size: .75rem;
    transition: background-color 300ms ease-in-out
}

@media (hover: hover) {
    .site-header__sub-nav-item a:hover {
        background-color: var(--hover-gray)
    }
}

@media screen and (max-width: 1239px) {
    .site-header {
        position: relative !important;
        height: auto !important;
        padding: 22px 0
    }
}

@media screen and (max-width: 579px) {
    .site-header {
        height: 54px !important
    }
}

@media screen and (max-width: 579px) {
    .site-header {
        padding: 12px 0
    }
}

.skip-link {
    position: fixed;
    top: -6em;
    left: 50%;
    transform: translateX(-50%);
    transition: top .5s ease-in-out;
    padding: 20px;
    color: var(--white);
    background-color: var(--red)
}

.skip-link:focus {
    top: 0
}

.site-footer {
    padding: 90px 0
}

@media screen and (min-width: 880px) {
    .site-footer nav:nth-of-type(-n+2) {
        border-right: 1px solid var(--border-color);
        padding-right: var(--footer-nav-spacing)
    }

    .site-footer nav:nth-of-type(n+2) {
        padding-left: var(--footer-nav-spacing)
    }
}

.site-footer a {
    color: var(--black)
}

@media (hover: hover) {
    .site-footer a:hover {
        color: var(--light-purple)
    }
}

.site-footer__logo {
    width: 58px;
    height: 98px;
    display: block;
    margin-bottom: 34px
}

.site-footer__logo svg {
    width: 100%;
    height: 100%
}

@media screen and (max-width: 879px) {
    .site-footer__logo {
        margin: auto auto 28px
    }
}

.site-footer a,
.site-footer__copyright {
    font-size: .8125rem
}

@media screen and (max-width: 1239px) {
    .site-footer {
        padding: 68px 0
    }
}

@media screen and (max-width: 879px) {
    .site-footer {
        text-align: center
    }
}

@media screen and (max-width: 579px) {
    .site-footer {
        padding: 45px 0
    }
}

.article {
    transition: background-color 300ms ease-in-out
}

.article a {
    display: block
}

.article h2,
.article h3 {
    margin-bottom: 10px;
    line-height: 1.23
}

.article p {
    font-size: .9375rem;
    margin: 5px 0 20px
}

.article time {
    display: inline-block;
    color: var(--purple);
    font-size: 0.75rem
}

.article--featured-card {
    grid-column: 1 / span 1;
    grid-row: 1 / span 2
}

.article--featured-card a {
    padding: 46px
}

.article--featured-card h2,
.article--featured-card p {
    color: var(--white)
}

.article--featured-card time {
    color: var(--white)
}

.article--featured-card .grid {
    grid-gap: 60px;
    align-items: center
}

@media screen and (max-width: 1439px) {
    .article--featured-card .grid {
        grid-gap: 45px
    }
}

@media screen and (max-width: 1239px) {
    .article--featured-card .grid {
        grid-gap: 30px
    }
}

@media screen and (max-width: 1679px) {
    .article--featured-card {
        align-self: start
    }
}

@media (hover: hover) {
    .article--featured-card:hover {
        background-color: var(--light-purple)
    }
}

.article--card a {
    display: block;
    padding: 46px
}

.article--card time {
    margin: 4px 0 8px
}

.article--card img {
    display: block
}

@media (hover: hover) {
    .article--card:hover {
        color: var(--light-purple)
    }
}

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

    .article--featured-card a,
    .article--card a {
        padding: 45px 25px
    }
}

.article--with-graphic {
    grid-column: 1 / -1
}

.article--with-graphic a {
    padding: 60px 50px 30px
}

.article--with-graphic time {
    margin: 8px 0 16px
}

@media screen and (max-width: 1239px) {
    .article__graphic {
        order: 1
    }
}

.article__circle-1 {
    top: calc(50% - 130px);
    left: calc(50% + 100px);
    transform: translate(-50%, -50%)
}

.article__circle-2 {
    top: 60px;
    right: 70px
}

@media screen and (max-width: 1439px) {
    .article__circle-2 {
        top: 45px;
        right: 52px
    }
}

@media screen and (max-width: 1239px) {
    .article__circle-2 {
        top: 30px;
        right: 35px
    }
}

.article__circle-3 {
    right: 14px;
    bottom: 28px
}

.article__triangle-1 {
    bottom: 90px;
    left: -30px;
    transform: rotate(20deg)
}

.article__triangle-2 {
    top: 0;
    left: calc(50% + 182px);
    transform: translateX(-50%) rotate(20deg)
}

.article__box-1 {
    top: 0;
    left: 0;
    transform: rotate(-35deg)
}

.article__square-1,
.article__square-2 {
    transform: rotate(24deg)
}

.article__square-1 {
    top: -14px;
    left: -14px
}

.article__square-2 {
    right: -14px;
    bottom: -14px
}

.article__line {
    left: 50%;
    bottom: 40px;
    width: var(--container);
    height: 1px;
    background-color: var(--border-color)
}

@media screen and (max-width: 1239px) {
    .article__line {
        display: none
    }
}

.list__featured-roll {
    padding: var(--section-padding) 0 40px
}

.list__roll {
    padding-top: 40px
}

.list__pagination {
    padding: 65px 0
}

.list__pagination-number {
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    border-radius: 50%;
    text-align: center;
    transition: color 300ms ease-in-out, background-color 300ms ease-in-out
}

.list__pagination-number--current {
    color: var(--white);
    background-color: var(--purple)
}

@media (hover: hover) {
    .list__pagination-number:hover {
        color: var(--white);
        background-color: var(--red)
    }
}

.single ul li,
.single ol li {
    list-style: disc;
    list-style-position: inside
}

.single ol {
    padding: 0
}

.single h1 {
    margin-top: 0
}

.single p~h2 {
    margin-top: 40px
}

.single p~h3 {
    margin-top: 30px
}

.single time {
    font-weight: bold
}

.single pre {
    margin: 25px 0;
    background-color: var(--light-gray) !important
}

.single__image {
    margin: 20px 0 40px
}

@media screen and (max-width: 766px) {
    .single__bio-image {
        max-width: 90px;
        margin: auto
    }
}

.single__author {
    padding: 62px 140px;
    margin-top: 50px
}

.single__author img {
    border-radius: 50%
}

@media screen and (max-width: 1079px) {
    .single__author {
        padding: 62px 70px
    }
}

@media screen and (max-width: 766px) {
    .single__author {
        padding: 62px
    }
}

.single__circle-1 {
    bottom: 0;
    left: -40px;
    width: 20px;
    height: 20px
}

.single__triangle-1,
.single__triangle-2 {
    width: 10px;
    height: 10px
}

.single__triangle-1 {
    top: -40px;
    left: calc(50% - 20px);
    transform: translateX(-50%) rotate(20deg)
}

.single__triangle-2 {
    bottom: 10px;
    right: -20px;
    transform: rotate(20deg)
}

.single__box-1 {
    top: 0;
    right: -20px;
    transform: rotate(-45deg)
}

.single__footer {
    margin-top: 40px
}

@media screen and (max-width: 1239px) {
    .single__footer {
        margin-top: 20px
    }
}

.single__tag-list li:not(:last-of-type) {
    margin-right: 10px
}

.single__links {
    margin-bottom: 50px
}

.single__links li:not(:first-of-type) {
    margin-left: 20px
}

.related__title {
    margin-bottom: 40px
}

.single-pagination a {
    display: block;
    padding: 45px 0
}

.single-pagination::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background-color: var(--light-gray);
    transform: translateX(-50%);
    content: ""
}

.single-pagination__next-article {
    grid-column: 2 / -1
}

.banner {
    padding: 10px;
    color: var(--white);
    background-color: var(--light-blue)
}

.banner p {
    margin: 0;
    font-weight: bold
}

.banner a {
    position: relative;
    color: inherit
}

.banner a::before {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    opacity: 0;
    transition: opacity 300ms ease-in-out;
    content: ""
}

.banner a:hover::before {
    opacity: 1
}

.hs-form {
    display: grid;
    grid-gap: 10px;
    max-width: 80ch;
    margin: auto
}

.hs-form input,
.hs-form textarea,
.hs-form select {
    width: 100%;
    padding: 16px;
    color: var(--gray);
    background-color: var(--white);
    font-size: inherit;
    font-family: inherit;
    border: 1px solid #d1d1d1;
    border-radius: 2px;
    opacity: 1;
    box-shadow: inset 0 1px 10px 0 rgba(0, 0, 0, 0.05)
}

.hs-form input::placeholder,
.hs-form textarea::placeholder,
.hs-form select::placeholder {
    color: var(--gray);
    opacity: 1
}

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

    .hs-form input,
    .hs-form textarea,
    .hs-form select {
        padding: 8px
    }
}

.hs-form input:not([type="checkbox"]),
.hs-form select {
    -webkit-appearance: none;
    appearance: none
}

.hs-form input,
.hs-form textarea,
.hs-form button {
    font-size: 1rem
}

.hs-form select {
    padding: 16px 14px
}

.hs-form .hs-error-msg {
    display: block;
    margin-top: 8px;
    color: var(--red);
    line-height: 1.2;
    font-size: .75rem;
    font-style: italic
}

.hs-form .hs_what_s_your_area_of_expertise {
    position: relative;
    grid-column: 1 / -1
}

.hs-form .hs_what_s_your_area_of_expertise ::before {
    position: absolute;
    top: calc(50% - 3px);
    right: 25px;
    padding: 4px;
    border: solid var(--purple);
    border-width: 0 3px 3px 0;
    pointer-events: none;
    transform: translateY(-50%) rotate(45deg);
    content: ""
}

.hs-form .actions {
    text-align: center
}

.hs-form .hs-form-required {
    color: var(--red)
}

.hs-form .hs-button {
    padding: 10px 20px;
    color: var(--white);
    background-color: var(--purple);
    border-radius: 4px;
    border: 0;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    transition: color 300ms ease-in-out, background-color 300ms ease-in-out, border 300ms ease-in-out
}

@media (hover: hover) {
    .hs-form .hs-button:hover {
        color: var(--white);
        background-color: var(--light-purple)
    }
}

@media screen and (min-width: 767px) {
    .hs-form .hs-button {
        max-width: 270px
    }
}

.hs-form .hs-recaptcha {
    position: absolute;
    top: 0;
    left: -999px;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.legal-consent-container {
    margin-top: 20px
}

.legal-consent-container .hs-form-booleancheckbox-display {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 20px;
    align-items: start
}

.legal-consent-container .hs-form-booleancheckbox-display input {
    width: 20px;
    height: 20px;
    margin: 0
}

.legal-consent-container .hs-form-booleancheckbox-display>span {
    margin-left: 0 !important;
    font-size: .8125rem;
    font-weight: normal
}

@media screen and (min-width: 880px) {
    .legal-consent-container .hs-form-booleancheckbox-display>span {
        justify-self: end
    }
}

.request-a-demo-form {
    grid-gap: 100px;
    margin-top: 50px
}

.request-a-demo-form .hbspt-form {
    order: 2
}

@media screen and (max-width: 766px) {
    .request-a-demo-form .hbspt-form {
        order: 3
    }
}

.request-a-demo-form .hs-form {
    grid-template-columns: repeat(2, 1fr)
}

.request-a-demo-form .hs-form .hs-company,
.request-a-demo-form .hs-form .hs-demo_request_additional_info,
.request-a-demo-form .hs-form .hs-submit {
    grid-column: 1 / -1
}

.request-a-demo-form__or {
    position: absolute;
    top: 0;
    left: calc(50% - 50px);
    width: 1px;
    height: 100%;
    background-color: var(--border-color);
    transform: translateX(-50%)
}

@media screen and (max-width: 1239px) {
    .request-a-demo-form__or {
        left: calc(50% - 25px)
    }
}

@media screen and (max-width: 1079px) {
    .request-a-demo-form__or {
        order: 2;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        transform: unset
    }
}

.request-a-demo-form__or-text {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 20px;
    color: var(--white);
    background-color: var(--light-blue);
    font-weight: 600;
    border-radius: 50%;
    line-height: 1;
    transform: translate(-50%, -50%)
}

@media screen and (max-width: 1079px) {
    .request-a-demo-form__or-text {
        padding: 10px
    }
}

@media screen and (max-width: 766px) {
    .request-a-demo-form__or-text {
        font-size: .875rem
    }
}

.request-a-demo-form__cta {
    order: 1
}

@media screen and (max-width: 1079px) {
    .request-a-demo-form {
        grid-template-columns: 1fr;
        grid-gap: 40px;
        margin-top: 30px
    }
}

@media screen and (max-width: 766px) {
    .request-a-demo-form {
        grid-gap: 34px;
        margin-top: 15px
    }
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    background-color: rgba(236, 245, 247, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    pointer-events: none
}

.modal__content {
    padding: 60px;
    box-shadow: -19.068px 12.861px 46px 0 rgba(141, 163, 169, 0.15);
    border-radius: 4px;
    pointer-events: all
}

@media screen and (max-width: 766px) {
    .modal__content {
        padding: 40px
    }
}

@media screen and (max-width: 579px) {
    .modal__content {
        padding: 40px 20px
    }
}

.modal .hs-form {
    margin: 0
}

.modal.is-open {
    display: flex
}

.modal__circle-1 {
    width: 18px;
    height: 18px;
    top: -9px;
    left: calc(50% - 9px)
}

.modal__square-1 {
    top: -10px;
    left: calc(50% + 15px);
    transform: translateX(-50%) rotate(-10deg)
}

.modal__triangle-1 {
    top: -40px;
    left: 50%;
    transform: translateX(-50%) rotate(15deg)
}

.request-modal__content {
    width: 100ch;
    margin: auto
}

@media screen and (max-width: 1239px) {
    .request-modal__content {
        width: 80ch
    }
}

@media screen and (max-width: 1079px) {
    .request-modal__content {
        width: 60ch
    }
}

@media screen and (max-width: 766px) {
    .request-modal__content {
        max-width: calc(100% - 60px);
        width: unset
    }
}

.biotech-modal .hs-form {
    grid-template-columns: repeat(2, 1fr)
}

.biotech-modal .hs-form .hs-jobtitle,
.biotech-modal .hs-form .hs-submit {
    grid-column: 1 / -1
}

.biotech-modal__container {
    max-width: calc(100% - 50px);
    margin: auto
}

@media screen and (max-width: 766px) {
    .biotech-modal__container {
        max-width: calc(100% - 60px)
    }
}

.dsbor h1 {
    max-width: 20ch;
    margin: auto auto 24px
}

.dsbor h3 {
    margin-top: 40px
}

.dsbor span {
    color: var(--purple)
}

.dsbor__hero {
    padding: var(--section-padding) 0 440px
}

@media screen and (max-width: 1439px) {
    .dsbor__hero {
        padding: var(--section-padding) 0 330px
    }
}

@media screen and (min-width: 1240px) {
    .dsbor__container {
        max-width: 1100px
    }
}

.dsbor__box {
    top: 0;
    left: -80px;
    transform: rotate(20deg)
}

@media screen and (max-width: 1239px) {
    .dsbor__box {
        display: none
    }
}

.dsbor__circle-1 {
    width: 600px;
    height: 600px;
    bottom: -300px;
    left: 50%
}

@media screen and (max-width: 1439px) {
    .dsbor__circle-1 {
        width: 450px;
        height: 450px;
        bottom: -225px
    }
}

.dsbor__circle-2 {
    width: 70px;
    height: 70px;
    bottom: 70px;
    left: calc(50% + 135px)
}

.dsbor__square-1,
.dsbor__square-2 {
    transform: translateX(-50%) rotate(-20deg)
}

.dsbor__square-1 {
    bottom: 110px;
    left: calc(50% - 300px)
}

@media screen and (max-width: 1439px) {
    .dsbor__square-1 {
        bottom: 83px;
        left: calc(50% - 225px)
    }
}

.dsbor__square-2 {
    bottom: 100px;
    left: calc(50% + 275px)
}

@media screen and (max-width: 1439px) {
    .dsbor__square-2 {
        bottom: 75px;
        left: calc(50% + 206px)
    }
}

.dsbor__triangle-1,
.dsbor__triangle-2 {
    transform: translateX(-50%) rotate(20deg)
}

.dsbor__triangle-1 {
    bottom: 35px;
    left: calc(50% - 375px)
}

@media screen and (max-width: 1439px) {
    .dsbor__triangle-1 {
        left: calc(50% - 280px)
    }
}

.dsbor__triangle-2 {
    bottom: 230px;
    left: calc(50% + 310px)
}

@media screen and (max-width: 1439px) {
    .dsbor__triangle-2 {
        bottom: 173px;
        left: calc(50% + 233px)
    }
}

.dsbor__elephant {
    bottom: -430px;
    left: calc(50% - 140px);
    transform: translateX(-50%)
}

.dsbor__elephant img {
    max-width: 540px
}

@media screen and (max-width: 1439px) {
    .dsbor__elephant img {
        max-width: 405px
    }
}

@media screen and (max-width: 1439px) {
    .dsbor__elephant {
        bottom: -323px
    }
}

.companies {
    padding-top: 50px
}

.companies img {
    max-width: 164px
}

@media screen and (min-width: 1240px) {
    .companies img {
        align-self: center
    }
}

@media screen and (max-width: 1239px) {
    .companies img {
        place-self: center
    }
}

@media screen and (max-width: 766px) {
    .companies img {
        max-width: 140px
    }

    .companies img:last-of-type {
        grid-column: span 2
    }
}

.companies--biotech {
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color)
}

@media screen and (min-width: 1240px) {
    .companies .container {
        max-width: 1060px
    }
}

.companies__box-1 {
    top: -25px;
    left: calc(50% - 35px);
    z-index: 9
}

.check-hero {
    position: relative;
    padding: var(--section-padding) 0
}

.check-hero h1 {
    max-width: 500px;
    margin: 0
}

.check-hero h2 {
    margin-top: 45px
}

.check-hero .button {
    display: block;
    width: 100%
}

.check-hero .button--purple {
    margin: 32px 0 10px
}

.check-hero__header {
    grid-area: header
}

.check-hero__list {
    grid-area: list
}

.check-hero__list-item {
    position: relative;
    padding-left: 48px;
    margin-top: 38px;
    color: var(--black);
    font-weight: bold
}

.check-hero__list-item::before {
    width: 28px;
    height: 28px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("/images/check.svg");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle
}

@media screen and (max-width: 1079px) {
    .check-hero__list-item::before {
        width: 20px;
        height: 20px
    }
}

@media screen and (max-width: 579px) {
    .check-hero__list-item {
        padding-left: 34px
    }
}

.check-hero__nested-list-item {
    font-weight: normal
}

.check-hero__grid {
    position: relative;
    align-items: center
}

@media screen and (min-width: 1240px) {
    .check-hero__grid::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        width: 1px;
        height: 100%;
        background-color: var(--border-color);
        transform: translateX(-50%)
    }
}

.check-hero__download {
    grid-area: form;
    padding: 60px 40px 40px;
    background-color: var(--background-blue)
}

.check-hero__download span {
    font-weight: bold
}

@media screen and (min-width: 1680px) {
    .check-hero__download {
        width: 520px
    }
}

@media screen and (min-width: 880px) {
    .check-hero__download {
        margin: 0 auto
    }
}

@media screen and (max-width: 879px) {
    .check-hero__download {
        margin: 60px 0 30px
    }
}

.check-hero__download-list {
    padding: 0;
    margin-top: 22px;
    list-style: none;
    counter-reset: included-counter
}

.check-hero__download-list li {
    margin-bottom: 5px;
    counter-increment: included-counter
}

.check-hero__download-list li::before {
    content: counter(included-counter) ". ";
    color: var(--light-blue);
    font-weight: bold
}

.check-hero__download-button {
    cursor: pointer
}

.check-hero__triangle-1 {
    top: -14px;
    left: calc(50% - 100px);
    transform: translateX(-50%) rotate(10deg)
}

.check-hero__circle-1 {
    top: -35px;
    left: calc(50% - 50px)
}

.check-hero__circle-2 {
    top: -14px;
    left: calc(50% + 75px)
}

.check-hero__circle-3 {
    top: -36px;
    left: 50%;
    box-shadow: 0 9px 18px 0 rgba(0, 0, 0, 0.1)
}

.check-hero__square-1 {
    top: -45px;
    left: calc(50% - 5px);
    transform: rotate(-10deg)
}

.check-hero__square-2 {
    top: -7px;
    left: calc(50% + 100px);
    transform: rotate(45deg)
}

.check-hero__slack-logo {
    max-width: 24px;
    top: -12px;
    left: 50%;
    transform: translateX(-50%)
}

@media screen and (max-width: 1679px) {
    .check-hero {
        padding: var(--section-padding) 0
    }
}

@media screen and (max-width: 1239px) {
    .check-hero {
        padding: var(--section-padding) 0
    }
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--section-padding) 0;
    background-color: black;
    z-index: 0;
    color: antiqueWhite;
}

.hero h1 {
    margin: 15px 0;
    color: antiqueWhite;
}

@media screen and (max-width: 879px) {
    .hero h1 {
        max-width: 500px
    }
}

.hero .purple-link {
    align-self: center
}

.hero__subheading {
    font-size: 1.125em
}

.hero__item {
    padding-left: var(--container-gutter)
}

@media screen and (max-width: 1239px) {
    .hero__item {
        padding: 0 var(--container-gutter)
    }
}

.hero__grid {
    width: 100%
}

.hero__header {
    grid-area: content;
    order: 1
}

.hero__buttons {
    grid-area: buttons;
    max-width: 96%
}

@media screen and (min-width: 580px) {
    .hero__buttons {
        margin-top: 24px
    }
}

.hero__blurbs {
    position: relative;
    grid-area: slider;
    order: 3;
    width: 100%;
    height: 250px
}

@media screen and (max-width: 1239px) {
    .hero__blurbs {
        order: 4;
        width: var(--container);
        margin: 50px auto auto
    }
}

@media screen and (max-width: 579px) {
    .hero__blurbs {
        height: 400px;
        margin: 25px auto auto
    }
}

.hero__blurb {
    position: absolute;
    top: 0;
    left: var(--container-gutter);
    max-width: 45ch;
    width: 100%;
    transition: opacity 300ms ease-in-out
}

.hero__blurb+div {
    opacity: 0;
    pointer-events: none
}

.hero__blurb:focus {
    box-shadow: none;
    outline: 0;
    border: 0
}

@media screen and (max-width: 1239px) {
    .hero__blurb {
        right: 0;
        left: 0;
        max-width: 80ch;
        margin: auto
    }
}

.hero__tab {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    border: none;
    background: none;
    font-size: .875rem;
    padding: 5px 0;
    font-family: inherit;
    font-weight: 600;
    transition: opacity 300ms ease-in-out;
    cursor: pointer
}

.hero__tab--hub span {
    opacity: 0
}

.hero__tab--hub[aria-selected="true"] span {
    opacity: 1
}

@media (hover: hover) {
    .hero__tab:hover {
        opacity: 1
    }
}

.hero__tab:focus {
    box-shadow: none;
    outline: 0;
    border: 0
}

.hero__tab::-moz-focus-inner {
    border: 0
}

.hero__tab:not(:last-of-type) {
    margin-right: 28px
}

@media screen and (max-width: 1079px) {
    .hero__tab:not(:last-of-type) {
        margin-right: 14px
    }
}

.hero__tab[aria-selected="true"] {
    color: var(--light-blue);
    border-bottom: 2px solid var(--light-blue);
    opacity: 1
}

@media (hover: hover) {
    .hero__tab:hover {
        color: var(--light-blue)
    }
}

@media screen and (max-width: 1439px) {
    .hero__break {
        display: none
    }
}

.hero__illustration {
    grid-area: graphic;
    order: 4;
    align-self: center;
    width: 825px
}

.hero__illustration::after {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    padding-bottom: 66.9%
}

.hero__illustration svg {
    position: absolute
}

.hero__illustration .data-data-data {
    position: absoute;
    visibility: hidden;
    width: .84567%;
    background: var(--light-blue);
    will-change: transform;
    top: 100px;
    left: 100px;
    border-radius: 100%
}

.hero__illustration .data-data-data::before {
    content: "";
    position: relative;
    width: 100%;
    display: block;
    padding-bottom: 100%
}

.hero__illustration #local-desk {
    top: 59%;
    left: 2%;
    width: 32.664%
}

.hero__illustration #hub-desk {
    top: 32%;
    left: 55.5%;
    width: 32.875%
}

.hero__illustration #hero-enterprise {
    width: 17.23%;
    top: 0;
    left: 56.5%
}

.hero__illustration #hero-bg-svg {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: visible
}

@media screen and (max-width: 1679px) {
    .hero__illustration {
        width: 618px
    }
}

@media screen and (max-width: 1239px) {
    .hero__illustration {
        order: 3;
        width: 100%;
        padding: 0 var(--container-gutter);
        margin: 40px auto 0
    }
}

@media screen and (max-width: 1679px) {
    .hero {
        padding: 165px 0 65px;
    }
}

@media screen and (max-width: 879px) {
    .hero {
        display: block
    }
}

@media screen and (max-width: 579px) {
    .hero {
        padding: 30px 0 0
    }
}

.links {
    margin-top: -50px
}

.links__logo-grid {
    padding-bottom: 30px
}

.links__logo-grid li {
    align-self: center
}

.about .blurb {
    margin-bottom: 34px
}

.about .button {
    display: block
}

.about__buttons {
    max-width: 470px;
    margin: auto
}

.about__intro {
    z-index: 1
}

.about__intro::before,
.about__intro::after {
    position: absolute;
    bottom: 0;
    width: calc(50% - 148px);
    height: 4px;
    background-color: var(--purple);
    content: ""
}

.about__intro::before {
    left: 0
}

.about__intro::after {
    right: 0
}

.about__intro-container {
    z-index: 1;
    padding-bottom: 444px
}

.about .card .button {
    display: inline-block
}

.about__box-1 {
    bottom: 215px;
    left: calc(50% - 422px);
    transform: rotate(-140deg) scaleX(-1)
}

.about__box-2 {
    top: calc(50% + -75px);
    left: calc(50% - 50px);
    transform: rotate(-45deg) translate(-50%, -50%)
}

.about__box-3,
.about__box-4 {
    transform: rotate(-45deg)
}

.about__box-3 {
    right: 29%;
    left: calc(50% + 310px);
    bottom: 219px
}

.about__box-4 {
    bottom: -150px;
    left: calc(50% - 315px)
}

.about__triangle-1,
.about__triangle-2 {
    transform: rotate(-20deg)
}

.about__triangle-4,
.about__triangle-5 {
    transform: rotate(20deg)
}

.about__triangle-1 {
    bottom: 365px;
    left: calc(50% - 475px)
}

.about__triangle-2 {
    bottom: 42px;
    left: calc(50% - 202px)
}

.about__triangle-3 {
    bottom: 275px;
    left: calc(50% + 15px);
    transform: translateX(-50%) rotate(20deg)
}

.about__triangle-4 {
    right: calc(50% - 290px);
    bottom: 32px
}

.about__triangle-5 {
    right: calc(50% - 450px);
    bottom: 220px
}

.about__circle-1 {
    bottom: 66px;
    left: calc(50% - 325px)
}

.about__circle-2 {
    bottom: 108px;
    left: calc(50% - 260px)
}

.about__circle-3 {
    bottom: 0;
    left: calc(50% - 45px)
}

.about__circle-4 {
    bottom: 180px;
    left: 50%
}

.about__circle-5 {
    bottom: 115px;
    left: calc(50% + 235px)
}

.about__circle-6 {
    bottom: 218px;
    left: calc(50% + 100px)
}

.about__circle-7 {
    bottom: 306px;
    left: calc(50% + 140px)
}

.about__square-1,
.about__square-3 {
    transform: rotate(60deg)
}

.about__square-2 {
    transform: rotate(-60deg)
}

.about__square-1 {
    bottom: 165px;
    left: calc(50% - 300px)
}

.about__square-2 {
    bottom: 162px;
    left: calc(50% - 134px)
}

.about__square-3 {
    bottom: 15px;
    right: calc(50% - 140px)
}

.about__square-4-wrapper {
    bottom: 60px;
    right: calc(50% - 220px);
    transform: rotate(30deg)
}

.about__cards {
    z-index: 1;
    padding-top: 78px
}

.about__elephant-head {
    bottom: 35px;
    left: 50%
}

.case-studies-home h2 {
    max-width: 80ch;
    margin-left: auto;
    margin-right: auto
}

.case-studies-home .blurb {
    margin-bottom: 156px
}

@media screen and (max-width: 1239px) {
    .case-studies-home .fade-in {
        text-align: center
    }
}

@media screen and (max-width: 1239px) {
    .case-studies-home .case-image {
        margin: auto
    }
}

.case-studies-home__case {
    text-align: left
}

.case-studies-home__case a {
    display: block
}

.case-studies-home__case .button {
    display: inline-block;
    margin-top: 10px
}

.case-studies-home__case-image-wrap {
    padding-bottom: 80px
}

@media screen and (min-width: 1240px) {
    .case-studies-home__case-image-wrap {
        margin-left: 30px
    }
}

.case-studies-home__triangle-1 {
    bottom: 0px;
    right: -30px;
    transform: rotate(-25deg)
}

.case-studies-home__triangle-2 {
    top: -90px;
    left: 30px;
    transform: rotate(-30deg)
}

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

    .case-studies-home__triangle-1,
    .case-studies-home__triangle-2 {
        width: 24px;
        height: 24px
    }
}

.case-studies-home__circle-1 {
    right: -30px;
    bottom: 110px
}

@media screen and (max-width: 1239px) {
    .case-studies-home__circle-1 {
        width: 96px;
        height: 96px
    }
}

.case-studies-home__circle-2 {
    top: -75px;
    right: 80px
}

@media screen and (max-width: 1239px) {
    .case-studies-home__circle-2 {
        width: 140px;
        height: 140px;
        top: -100px;
        right: -35px
    }
}

.case-studies-home__circle-3 {
    bottom: 58px;
    right: -34px
}

.case-studies-home__circle-4 {
    bottom: -100px;
    left: -70px
}

@media screen and (max-width: 1239px) {
    .case-studies-home__circle-4 {
        width: 120px;
        height: 120px;
        bottom: -80px;
        left: -50px
    }
}

.case-studies-home__box-1 {
    top: -140px;
    right: 100px;
    transform: rotate(-90deg)
}

@media screen and (max-width: 1239px) {
    .case-studies-home__box-1 {
        top: -90px;
        right: 70px
    }
}

.case-studies-home__box-2 {
    bottom: 45px;
    left: -110px;
    transform: rotate(-90deg)
}

@media screen and (max-width: 1239px) {
    .case-studies-home__box-2 {
        bottom: 25px;
        left: -90px
    }
}

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

    .case-studies-home__box-1,
    .case-studies-home__box-2 {
        width: 26px;
        height: 24px
    }
}

.case-studies-home__square-1 {
    top: -34px;
    left: 27px;
    transform: rotate(75deg)
}

@media screen and (max-width: 1239px) {
    .case-studies-home__square-1 {
        width: 115px;
        height: 115px;
        top: -60px;
        right: 45px
    }
}

.case-studies-home__tusks-1 {
    top: -100px;
    right: -5px;
    transform: rotate(-50deg)
}

.case-studies-home__tusks-2 {
    bottom: -45px;
    left: -90px;
    transform: scaleX(-1) rotate(60deg)
}

@media screen and (max-width: 1239px) {
    .case-studies-home__tusks-2 {
        bottom: -35px;
        left: -80px
    }
}

.testimonials {
    z-index: 1
}

@media screen and (min-width: 1680px) {
    .testimonials .container {
        max-width: 1300px
    }
}

.testimonials .blurb {
    margin-bottom: 96px
}

@media screen and (max-width: 1439px) {
    .testimonials .blurb {
        margin-bottom: 62px
    }
}

@media screen and (max-width: 1239px) {
    .testimonials .blurb {
        margin-bottom: 48px
    }
}

.testimonials__testimonial-info {
    grid-template-columns: repeat(2, auto);
    grid-gap: 10px;
    align-content: start
}

.testimonials__citation {
    font-style: normal
}

.testimonials__testimonial {
    padding: 40px;
    margin: 0 auto;
    background-color: var(--white);
    text-align: left;
    grid-template-rows: auto 1fr;
    grid-gap: 20px
}

.testimonials__testimonial p {
    margin: 0;
    font-size: .875rem;
    line-height: 1.714;
    order: 2
}

.testimonials__testimonial img {
    border-radius: 50%
}

.testimonials__testimonial footer {
    font-size: .6875rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    order: 1
}

.testimonials__testimonial footer span {
    display: block;
    color: var(--medium-gray)
}

.testimonials__circle {
    right: -16px;
    bottom: -16px
}

@media screen and (max-width: 879px) {
    .testimonials__circle {
        right: -8px;
        bottom: -8px
    }
}

.testimonials__triangle {
    top: -12px;
    left: -14px;
    transform: rotate(10deg)
}

@media screen and (max-width: 879px) {
    .testimonials__triangle {
        top: -6px;
        left: -7px
    }
}

.news h2 {
    margin-bottom: 60px;
    text-align: center
}

@media screen and (max-width: 1439px) {
    .news h2 {
        margin-bottom: 45px
    }
}

@media screen and (max-width: 1239px) {
    .news h2 {
        margin-bottom: 30px
    }
}

.resources ul {
    margin-bottom: 142px
}

@media screen and (max-width: 879px) {
    .resources ul {
        margin-bottom: 100px
    }
}

.resources .grid {
    position: relative;
    z-index: 1
}

.resources .blurb {
    margin-bottom: 90px
}

@media screen and (max-width: 1439px) {
    .resources .blurb {
        margin-bottom: 62px
    }
}

.resources__quick-links {
    display: inline-grid;
    grid-auto-flow: column;
    grid-gap: 60px;
    justify-items: center
}

@media screen and (max-width: 1679px) {
    .resources__quick-links {
        grid-gap: 30px
    }
}

@media screen and (max-width: 1439px) {
    .resources__quick-links {
        display: grid;
        grid-gap: 20px;
        grid-template-columns: repeat(3, 1fr);
        grid-auto-flow: unset
    }
}

@media screen and (max-width: 766px) {
    .resources__quick-links {
        grid-template-columns: repeat(2, 1fr)
    }
}

.resources__square-1 {
    top: -30px;
    left: 106px;
    transform: rotate(30deg)
}

@media screen and (max-width: 879px) {
    .resources__square-1 {
        top: -65px;
        left: -100px
    }
}

.resources__square-2 {
    top: -48px;
    left: 16%;
    transform: rotate(-30deg)
}

@media screen and (max-width: 879px) {
    .resources__square-2 {
        top: -25px;
        right: -25px;
        left: unset
    }
}

.resources__square-5 {
    bottom: 50px;
    right: -52px;
    transform: rotate(-5deg)
}

.resources__circle-1 {
    top: -60px;
    left: calc(50% - 40px)
}

.resources__circle-3 {
    top: -40px;
    right: 185px
}

@media screen and (max-width: 879px) {
    .resources__circle-3 {
        top: unset;
        right: unset;
        bottom: -90px;
        left: 50%;
        transform: translateX(-50%)
    }
}

.resources__circle-4 {
    top: -14px;
    right: 50px
}

@media screen and (max-width: 879px) {
    .resources__circle-4 {
        top: unset;
        bottom: -88px;
        left: calc(50% + 50px);
        transform: translateX(-50%)
    }
}

.resources__triangle-3 {
    top: -70px;
    right: 19%;
    transform: rotate(15deg)
}

@media screen and (max-width: 879px) {
    .resources__triangle-3 {
        top: calc(50% - 12px);
        transform: translateY(-50%) rotate(-15deg)
    }
}

.resources__box-1 {
    top: -65px;
    left: 18%;
    transform: rotate(-75deg)
}

.resources__box-2 {
    top: -44px;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%) rotate(-45deg)
}

@media screen and (max-width: 1679px) {
    .resources__box-2 {
        top: 72px
    }
}

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

    .resources__box-1,
    .resources__box-2 {
        display: none
    }
}

.resources__trunk {
    bottom: -9px;
    left: 50%;
    width: 175px
}

@media screen and (max-width: 1439px) {
    .resources__trunk {
        width: 132px
    }
}

@media screen and (max-width: 879px) {
    .resources__trunk {
        display: none
    }
}

.platform-hero {
    padding: 150px 0 228px
}

.platform-hero h1 {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto
}

@media screen and (max-width: 1239px) {
    .platform-hero h1 {
        max-width: 375px
    }
}

.platform-hero__box-1 {
    top: -90px;
    left: 0;
    right: 0;
    margin: auto
}

@media screen and (max-width: 1239px) {
    .platform-hero__box-1 {
        top: -92px
    }
}

@media screen and (max-width: 1079px) {
    .platform-hero__box-1 {
        top: -58px
    }
}

.platform-hero__square-1 {
    top: calc(50% + 75px);
    left: 50%;
    transform: translate(-50%, -50%) rotate(20deg)
}

@media screen and (max-width: 1439px) {
    .platform-hero__square-1 {
        width: 240px;
        height: 240px;
        top: calc(50% + 56px)
    }
}

@media screen and (max-width: 1239px) {
    .platform-hero__square-1 {
        width: 160px;
        height: 160px;
        top: calc(50% + 38px)
    }
}

@media screen and (max-width: 1079px) {
    .platform-hero__square-1 {
        display: none
    }
}

.platform-hero__square-2 {
    bottom: -20px;
    left: 21%;
    transform: rotate(60deg)
}

@media screen and (max-width: 1239px) {
    .platform-hero__square-2 {
        bottom: -15px
    }
}

@media screen and (max-width: 1079px) {
    .platform-hero__square-2 {
        width: 75px;
        height: 75px;
        bottom: -10px
    }
}

@media screen and (max-width: 879px) {
    .platform-hero__square-2 {
        width: 50px;
        height: 50px
    }
}

.platform-hero__circle-1 {
    top: -160px;
    left: calc(50% + 250px);
    transform: translateX(-50%)
}

@media screen and (max-width: 1439px) {
    .platform-hero__circle-1 {
        top: -120px;
        left: calc(50% + 188px)
    }
}

@media screen and (max-width: 1239px) {
    .platform-hero__circle-1 {
        top: -80px;
        left: calc(50% + 125px)
    }
}

@media screen and (max-width: 1079px) {
    .platform-hero__circle-1 {
        top: -40px
    }
}

.platform-hero__circle-2 {
    bottom: -188px;
    left: calc(50% + 96px);
    transform: translateX(-50%)
}

@media screen and (max-width: 1439px) {
    .platform-hero__circle-2 {
        bottom: -140px
    }
}

@media screen and (max-width: 1239px) {
    .platform-hero__circle-2 {
        bottom: -94px
    }
}

@media screen and (max-width: 1079px) {
    .platform-hero__circle-2 {
        bottom: -47px
    }
}

.platform-hero__circle-3 {
    bottom: -194px;
    left: calc(50% + 230px);
    z-index: 1;
    transform: translateX(-50%)
}

@media screen and (max-width: 1439px) {
    .platform-hero__circle-3 {
        width: 78px;
        height: 78px;
        bottom: -146px
    }
}

@media screen and (max-width: 1239px) {
    .platform-hero__circle-3 {
        width: 52px;
        height: 52px;
        bottom: -97px;
        left: calc(50% + 173px)
    }
}

@media screen and (max-width: 1079px) {
    .platform-hero__circle-3 {
        left: calc(50% + 58px)
    }
}

.platform-hero__triangle-1,
.platform-hero__triangle-2 {
    transform: rotate(15deg)
}

.platform-hero__square-2,
.platform-hero__triangle-2 {
    z-index: 1
}

.platform-hero__triangle-1 {
    bottom: -110px;
    left: 31%
}

@media screen and (max-width: 1439px) {
    .platform-hero__triangle-1 {
        bottom: -83px
    }
}

@media screen and (max-width: 1239px) {
    .platform-hero__triangle-1 {
        bottom: -55px
    }
}

.platform-hero__triangle-2 {
    bottom: 60px;
    left: 22%
}

@media screen and (max-width: 1439px) {
    .platform-hero__triangle-2 {
        bottom: 45px
    }
}

@media screen and (max-width: 1239px) {
    .platform-hero__triangle-2 {
        bottom: 30px
    }
}

.platform-hero__trunk {
    bottom: -10px;
    left: calc(50% + 150px);
    width: 170px
}

@media screen and (max-width: 1439px) {
    .platform-hero__trunk {
        left: calc(50% + 113px);
        width: 128px
    }
}

@media screen and (max-width: 1239px) {
    .platform-hero__trunk {
        left: calc(50% + 75px);
        width: 85px
    }
}

@media screen and (max-width: 1079px) {
    .platform-hero__trunk {
        display: none
    }
}

@media screen and (max-width: 1239px) {
    .platform-hero {
        padding: 150px 0
    }
}

@media screen and (max-width: 1079px) {
    .platform-hero {
        padding: 90px 0
    }
}

.platform-overview img {
    margin-top: 82px
}

@media screen and (min-width: 767px) {
    .platform-overview img {
        max-width: 100%
    }
}

@media screen and (max-width: 766px) {
    .platform-overview img {
        margin-top: 62px
    }
}

@media screen and (max-width: 1239px) {
    .platform-local__image {
        order: 2
    }
}

@media screen and (max-width: 1239px) {
    .platform-local__content {
        order: 1;
        text-align: center
    }
}

.platform-enterprise__benefit {
    padding: 58px 16px;
    color: var(--white);
    background-color: var(--red);
    font-size: .875rem;
    text-align: left
}

@media screen and (max-width: 1239px) {
    .platform-enterprise__benefit {
        padding: 44px 12px
    }
}

.platform-enterprise__grid {
    z-index: 1;
    max-width: 1180px;
    margin: 500px auto auto
}

@media screen and (max-width: 1239px) {
    .platform-enterprise__grid {
        margin: 388px auto auto
    }
}

.platform-enterprise__triangle-1,
.platform-enterprise__triangle-2,
.platform-enterprise__triangle-3 {
    z-index: 1;
    transform: rotate(45deg)
}

.platform-enterprise__triangle-1 {
    bottom: -12px;
    left: 20px
}

.platform-enterprise__triangle-2 {
    top: -9px;
    left: calc(50% + 120px)
}

.platform-enterprise__triangle-3 {
    bottom: -12px;
    right: 15px
}

.platform-enterprise__circle-1 {
    bottom: -37px;
    left: 150px
}

.platform-enterprise__circle-2 {
    top: -80px;
    right: 108px
}

.platform-enterprise__box-1 {
    top: -90px;
    right: 145px;
    transform: rotate(-30deg)
}

.platform-enterprise__graphic {
    width: 752px;
    height: auto;
    top: calc(50% + 25px);
    left: 50%;
    transform: translate(-50%, -50%)
}

@media screen and (max-width: 1239px) {
    .platform-hub__content {
        text-align: center
    }
}

@media screen and (min-width: 1440px) {
    .platform-hub__container {
        max-width: 1180px
    }
}

.platform-options {
    padding-top: 128px
}

.platform-options .button {
    display: block
}

.platform-options__rows {
    position: relative;
    margin-top: 120px
}

@media screen and (max-width: 1239px) {
    .platform-options__rows {
        margin-top: 100px
    }
}

@media screen and (max-width: 766px) {
    .platform-options__rows {
        display: none
    }
}

.platform-options__rows-mobile {
    margin-top: 48px;
    text-align: left
}

@media screen and (min-width: 767px) {
    .platform-options__rows-mobile {
        display: none
    }
}

.platform-options__options-mobile {
    margin-top: 20px
}

.platform-options__options-mobile--gray {
    background-color: var(--gray-column)
}

.platform-options__options-mobile--light-gray {
    background-color: var(--light-gray)
}

.platform-options__options-mobile li {
    padding: 10px 20px
}

.platform-options__options-mobile li:not(:last-of-type) {
    border-bottom: 1px solid var(--row-border-color)
}

.platform-options__row-backgrounds {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1
}

.platform-options__column {
    position: relative
}

.platform-options__column--gray {
    background-color: var(--gray-column)
}

.platform-options__column--dark-gray {
    background-color: var(--light-gray)
}

.platform-options__option-heading {
    font-weight: 700
}

@media screen and (min-width: 767px) {
    .platform-options__option-heading {
        position: absolute;
        top: -40px;
        left: 0
    }
}

.platform-options__row {
    padding: 10px 0;
    text-align: left
}

.platform-options__row:not(:last-of-type) {
    border-bottom: 1px solid var(--row-border-color)
}

.platform-options__check {
    text-align: center
}

.platform-options__check svg {
    width: 17px;
    height: 20px
}

@media screen and (min-width: 767px) and (max-width: 879px) {
    .platform-options__check {
        padding: 0 10px
    }
}

.platform-options__button {
    width: 90%;
    margin: auto;
    margin-top: 20px
}

@media screen and (min-width: 1440px) {
    .platform-options__button {
        width: 220px
    }
}

@media screen and (min-width: 767px) and (max-width: 879px) {
    .platform-options__button {
        width: auto;
        padding-left: 0;
        padding-right: 0;
        margin-top: 87px
    }
}

.platform-options__notice {
    display: block;
    margin-top: 40px;
    color: var(--purple)
}

@media screen and (max-width: 1439px) {
    .platform-options {
        padding-top: 120px
    }
}

@media screen and (max-width: 1239px) {
    .platform-options {
        padding-top: 90px
    }
}

.platform-office-hours {
    padding: 220px 0 70px
}

.platform-office-hours .container {
    z-index: 1;
    padding: 492px 20px 50px
}

@media screen and (max-width: 1439px) {
    .platform-office-hours .container {
        padding: 369px 20px 50px
    }
}

@media screen and (max-width: 1239px) {
    .platform-office-hours .container {
        padding: 300px 20px 50px
    }
}

@media screen and (max-width: 879px) {
    .platform-office-hours .container {
        padding: 250px 20px 50px
    }
}

@media screen and (max-width: 766px) {
    .platform-office-hours .container {
        padding: 225px 20px 50px
    }
}

.platform-office-hours__image {
    position: absolute;
    top: -50px;
    left: 50%
}

@media screen and (max-width: 579px) {
    .platform-office-hours__image {
        width: 90%
    }
}

.platform-office-hours__circle-1 {
    top: -40px;
    left: -40px
}

@media screen and (max-width: 1439px) {
    .platform-office-hours__circle-1 {
        top: -30px;
        left: -30px;
        width: 78px;
        height: 78px
    }
}

@media screen and (max-width: 1239px) {
    .platform-office-hours__circle-1 {
        top: -20px;
        left: -20px;
        width: 52px;
        height: 52px
    }
}

@media screen and (max-width: 1079px) {
    .platform-office-hours__circle-1 {
        top: 26px
    }
}

.platform-office-hours__circle-2 {
    bottom: -54px;
    left: -54px
}

@media screen and (max-width: 1439px) {
    .platform-office-hours__circle-2 {
        bottom: -41px;
        left: -41px;
        width: 147px;
        height: 147px
    }
}

@media screen and (max-width: 1239px) {
    .platform-office-hours__circle-2 {
        bottom: -27px;
        left: -27px;
        width: 98px;
        height: 98px
    }
}

.platform-office-hours__triangle-1,
.platform-office-hours__triangle-2 {
    transform: rotate(15deg)
}

.platform-office-hours__triangle-1 {
    bottom: -100px;
    left: -50px
}

@media screen and (max-width: 1439px) {
    .platform-office-hours__triangle-1 {
        bottom: -75px;
        left: -38px
    }
}

.platform-office-hours__triangle-2 {
    top: 34px;
    right: -100px
}

@media screen and (max-width: 1439px) {
    .platform-office-hours__triangle-2 {
        top: 26px;
        right: -75px
    }
}

.platform-office-hours__box-1 {
    bottom: -56px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1
}

@media screen and (max-width: 1439px) {
    .platform-office-hours__box-1 {
        bottom: -40px;
        width: 75px;
        height: 71px
    }
}

@media screen and (max-width: 1239px) {
    .platform-office-hours__box-1 {
        bottom: -24px;
        width: 50px;
        height: 47px
    }
}

.platform-office-hours__tusks-1 {
    left: -98px;
    transform: scaleX(-1)
}

.platform-office-hours__tusks-2 {
    right: -98px
}

.platform-office-hours__tusks-1,
.platform-office-hours__tusks-2 {
    bottom: 50px
}

@media screen and (max-width: 1439px) {
    .platform-office-hours {
        padding: 165px 0 53px
    }
}

@media screen and (max-width: 1239px) {
    .platform-office-hours {
        padding: 90px 0 0
    }
}

.resources-hero header {
    padding: 150px 0 303px
}

@media screen and (max-width: 766px) {
    .resources-hero header {
        padding: 137px 0 150px
    }
}

@media screen and (max-width: 579px) {
    .resources-hero header {
        padding: 75px 0
    }
}

.resources-hero__elephant {
    width: 265px;
    height: 445px;
    top: 50px;
    left: 50%
}

.resources-hero__elephant img {
    width: 100%;
    height: 100%
}

@media screen and (max-width: 766px) {
    .resources-hero__elephant {
        width: 177px;
        height: 297px
    }
}

@media screen and (max-width: 579px) {
    .resources-hero__elephant {
        width: 132px;
        height: 225px;
        top: 25px
    }
}

.resources-hero__triangle-1 {
    top: calc(50% + 50px);
    left: calc(50% - 290px);
    transform: rotate(15deg) translate(-50%, -50%)
}

@media screen and (max-width: 1439px) {
    .resources-hero__triangle-1 {
        top: calc(50% + 38px);
        left: calc(50% - 218px)
    }
}

@media screen and (max-width: 766px) {
    .resources-hero__triangle-1 {
        top: calc(50% + 25px);
        left: calc(50% - 145px)
    }
}

.resources-hero__triangle-2 {
    bottom: 175px;
    left: calc(50% + 200px);
    transform: rotate(-15deg) translateX(-50%)
}

@media screen and (max-width: 1439px) {
    .resources-hero__triangle-2 {
        bottom: 130px;
        left: calc(50% + 150px)
    }
}

@media screen and (max-width: 766px) {
    .resources-hero__triangle-2 {
        bottom: 88px;
        left: calc(50% + 100px)
    }
}

.resources-hero__circle-1 {
    bottom: 200px;
    left: calc(50% - 125px)
}

@media screen and (max-width: 1439px) {
    .resources-hero__circle-1 {
        bottom: 150px;
        left: calc(50% - 94px)
    }
}

@media screen and (max-width: 766px) {
    .resources-hero__circle-1 {
        bottom: 100px;
        left: calc(50% - 63px)
    }
}

.resources-hero__circle-2 {
    top: 50%;
    left: calc(50% + 225px)
}

@media screen and (max-width: 1439px) {
    .resources-hero__circle-2 {
        left: calc(50% + 169px)
    }
}

@media screen and (max-width: 766px) {
    .resources-hero__circle-2 {
        left: calc(50% + 113px)
    }
}

.resources-navigation {
    padding: 25px 0
}

.resources-navigation li:first-of-type {
    margin-bottom: 10px
}

@media screen and (min-width: 1240px) {
    .resources-navigation li:not(:last-of-type) {
        margin-right: 36px
    }
}

@media screen and (min-width: 767px) and (max-width: 1239px) {
    .resources-navigation li:not(:last-of-type) {
        margin-right: 18px
    }
}

@media screen and (max-width: 766px) {
    .resources-navigation li {
        display: block
    }
}

.resources-navigation a {
    color: var(--black)
}

@media (hover: hover) {
    .resources-navigation a:hover {
        color: var(--light-purple)
    }
}

.resources-navigation__title {
    font-weight: 600
}

.resources-documentation .button {
    display: inline-block
}

.resources-documentation__grid {
    margin-top: 40px
}

.resources-documentation__icon {
    margin-bottom: 25px
}

.resources-documentation__article {
    padding: 34px;
    color: var(--white);
    text-align: left
}

.resources-documentation__article h4 {
    margin: 0;
    line-height: 1.4
}

.resources-documentation__article span {
    font-weight: 700
}

@media (hover: hover) {
    .resources-documentation__article:hover {
        color: var(--red)
    }
}

.resources-documentation__button-wrap {
    margin-top: 60px;
    z-index: 1
}

.resources-examples .triangle {
    transform: rotate(15deg)
}

.resources-examples__grid {
    margin: 82px 0 76px
}

.resources-examples__grid a {
    color: inherit
}

@media (hover: hover) {
    .resources-examples__grid a:hover {
        color: var(--light-purple)
    }
}

.resources-examples__triangle-1 {
    bottom: -33px;
    left: 75px
}

@media screen and (max-width: 1239px) {
    .resources-examples__triangle-1 {
        left: 56px
    }
}

@media screen and (max-width: 1079px) {
    .resources-examples__triangle-1 {
        left: 38px
    }
}

.resources-examples__triangle-2 {
    top: -125px;
    left: calc(50% + 20px)
}

@media screen and (max-width: 1239px) {
    .resources-examples__triangle-2 {
        top: -94px
    }
}

.resources-examples__triangle-3 {
    top: -33px;
    right: 0
}

.resources-pre-footer {
    padding: 138px 0 264px;
    border-bottom: 1px solid var(--border-color)
}

.resources-pre-footer__community-links {
    max-width: 500px;
    padding: 22px;
    margin: auto;
    background-color: var(--white)
}

.resources-pre-footer li:not(:last-of-type) {
    margin-right: 5px
}

.resources-pre-footer__circle-1 {
    bottom: -124px;
    left: calc(50% - 135px)
}

@media screen and (max-width: 1439px) {
    .resources-pre-footer__circle-1 {
        bottom: -93px;
        left: calc(50% - 101px)
    }
}

@media screen and (max-width: 1239px) {
    .resources-pre-footer__circle-1 {
        bottom: -62px;
        left: calc(50% - 68px)
    }
}

.resources-pre-footer__square-1 {
    bottom: -152px;
    left: calc(50% - 100px);
    transform: rotate(35deg)
}

@media screen and (max-width: 1439px) {
    .resources-pre-footer__square-1 {
        bottom: -114px;
        left: calc(50% - 75px)
    }
}

@media screen and (max-width: 1239px) {
    .resources-pre-footer__square-1 {
        bottom: -76px;
        left: calc(50% - 50px)
    }
}

.resources-pre-footer__box-1 {
    right: calc(50% - 204px);
    bottom: -75px;
    transform: rotate(-30deg)
}

@media screen and (max-width: 1439px) {
    .resources-pre-footer__box-1 {
        right: calc(50% - 153px);
        bottom: -56px
    }
}

@media screen and (max-width: 1239px) {
    .resources-pre-footer__box-1 {
        right: calc(50% - 102px);
        bottom: -38px
    }
}

.resources-pre-footer__box-2 {
    top: 0;
    left: 0;
    right: 0;
    margin: auto
}

@media screen and (max-width: 579px) {
    .resources-pre-footer__box-2 {
        top: 20px
    }
}

.resources-pre-footer__triangle-1 {
    right: calc(50% - 140px);
    bottom: -154px;
    transform: rotate(10deg)
}

@media screen and (max-width: 1439px) {
    .resources-pre-footer__triangle-1 {
        right: calc(50% - 105px);
        bottom: -116px
    }
}

@media screen and (max-width: 1239px) {
    .resources-pre-footer__triangle-1 {
        right: calc(50% - 70px);
        bottom: -77px
    }
}

.resources-pre-footer__triangle-2 {
    top: 0;
    right: 0;
    transform: rotate(-30deg)
}

.resources-pre-footer__trunk {
    bottom: -9px;
    left: 50%;
    width: 103px;
    height: auto
}

@media screen and (max-width: 579px) {
    .resources-pre-footer__trunk {
        display: none
    }
}

@media screen and (max-width: 579px) {
    .resources-pre-footer {
        padding: 138px 0 150px
    }
}

.company-hero h1 {
    margin-top: 0
}

.company-hero__image {
    justify-self: end
}

@media screen and (max-width: 1079px) {
    .company-hero__image {
        justify-self: center
    }
}

.company-hero__circle-1 {
    bottom: -84px;
    left: -46px
}

@media screen and (max-width: 1439px) {
    .company-hero__circle-1 {
        bottom: -63px;
        left: -35px
    }
}

@media screen and (max-width: 1239px) {
    .company-hero__circle-1 {
        bottom: -42px
    }
}

.company-hero__circle-2 {
    right: 30px;
    bottom: -50px
}

@media screen and (max-width: 1439px) {
    .company-hero__circle-2 {
        right: 23px;
        bottom: 38px
    }
}

.company-hero__circle-3 {
    right: -60px;
    bottom: -67px
}

@media screen and (max-width: 1439px) {
    .company-hero__circle-3 {
        right: -45px;
        bottom: -50px
    }
}

@media screen and (max-width: 1239px) {
    .company-hero__circle-3 {
        bottom: -34px
    }
}

.company-hero__circle-4 {
    right: -25px;
    bottom: 145px
}

@media screen and (max-width: 1439px) {
    .company-hero__circle-4 {
        right: -19px;
        bottom: 109px
    }
}

.company-hero__triangle-1,
.company-hero__triangle-3 {
    transform: rotate(-18deg)
}

.company-hero__triangle-1 {
    bottom: -25px;
    left: 45px
}

@media screen and (max-width: 1439px) {
    .company-hero__triangle-1 {
        bottom: -19px;
        left: 34px
    }
}

.company-hero__triangle-2 {
    bottom: 0;
    left: calc(50% - 125px);
    transform: rotate(18deg)
}

@media screen and (max-width: 1439px) {
    .company-hero__triangle-2 {
        left: calc(50% - 94px)
    }
}

.company-hero__triangle-3 {
    bottom: -35px;
    left: calc(50% + 125px)
}

@media screen and (max-width: 1439px) {
    .company-hero__triangle-3 {
        left: calc(50% + 94px)
    }
}

.company-hero__triangle-4 {
    right: -100px;
    bottom: 110px;
    transform: rotate(18deg)
}

@media screen and (max-width: 1439px) {
    .company-hero__triangle-4 {
        right: -75px;
        bottom: 83px
    }
}

.company-hero__square-1 {
    right: -25px;
    bottom: 75px;
    transform: rotate(30deg)
}

@media screen and (max-width: 1679px) {
    .company-hero__square-1 {
        right: -75px;
        bottom: 25px
    }
}

.company-hero__box-1 {
    top: -10px;
    left: -25px
}

@media screen and (max-width: 1439px) {
    .company-hero__box-1 {
        top: -8px;
        left: -19px
    }
}

.company-about__content {
    padding: 50px;
    margin-top: 130px
}

@media screen and (max-width: 579px) {
    .company-about__content {
        padding: 25px;
        margin-top: 100px
    }
}

.company-about__content-wrap {
    max-width: 80ch;
    margin: auto
}

.company-careers {
    padding-bottom: var(--section-padding)
}

.company-careers__grid {
    margin-top: 68px
}

.company-careers__career {
    position: relative;
    transition: color 300ms ease-in-out
}

.company-careers__career a:not(.button) {
    color: inherit
}

@media (hover: hover) {
    .company-careers__career:hover {
        color: var(--light-purple)
    }
}

.company-careers__button {
    display: inline-block;
    margin-top: 20px
}

.company-careers__square-1 {
    top: -50px;
    left: -30px;
    transform: rotate(20deg)
}

@media screen and (max-width: 1439px) {
    .company-careers__square-1 {
        top: -38px;
        left: -22px
    }
}

@media screen and (max-width: 1239px) {
    .company-careers__square-1 {
        top: -25px;
        left: -15px
    }
}

.company-careers__triangle-4,
.company-careers__triangle-5 {
    transform: rotate(15deg)
}

.company-careers__circle-1,
.company-careers__circle-5 {
    right: -5px;
    bottom: -20px
}

.company-careers__circle-2 {
    top: -40px;
    right: -54px
}

.company-careers__circle-3 {
    top: -40px;
    left: -114px
}

.company-careers__circle-4 {
    top: -50px;
    left: -50px
}

.company-careers__triangle-1,
.company-careers__triangle-2,
.company-careers__triangle-3 {
    transform: rotate(15deg)
}

.company-careers__triangle-1 {
    bottom: -10px;
    left: 30px
}

@media screen and (max-width: 1439px) {
    .company-careers__triangle-1 {
        bottom: -8px;
        left: 23px
    }
}

.company-careers__triangle-2 {
    top: -120px;
    left: calc(50% + 40px)
}

.company-careers__triangle-3 {
    top: -60px;
    right: 0
}

@media screen and (max-width: 1239px) {
    .company-careers__triangle-3 {
        top: -30px
    }
}

.company-careers__triangle-4 {
    right: -25px;
    bottom: 0
}

.company-careers__triangle-5 {
    top: -15px;
    left: -15px
}

.company-careers__tusks-1 {
    top: -80px;
    right: -54px
}

.company-careers__tusks-2 {
    top: -50px;
    left: -100px;
    transform: scaleX(-1) rotate(20deg)
}

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

    .company-careers__tusks-1,
    .company-careers__tusks-2 {
        display: none
    }
}

.company-careers__box-1 {
    top: -96px;
    left: -80px;
    transform: rotate(-40deg)
}

.company-careers__box-2 {
    top: -60px;
    left: 0;
    transform: rotate(-60deg)
}

.use-cases-hero {
    padding: 150px 0 314px
}

.use-cases-hero h1 {
    max-width: 30ch;
    margin-left: auto;
    margin-right: auto
}

@media screen and (max-width: 1239px) {
    .use-cases-hero h1 {
        max-width: 405px
    }
}

.use-cases-hero__circle-1 {
    top: 94px;
    left: calc(50% - 240px)
}

@media screen and (max-width: 1439px) {
    .use-cases-hero__circle-1 {
        left: calc(50% - 180px)
    }
}

@media screen and (max-width: 1239px) {
    .use-cases-hero__circle-1 {
        left: calc(50% - 120px)
    }
}

.use-cases-hero__circle-2 {
    bottom: 146px;
    left: calc(50% + 50px)
}

.use-cases-hero__box-1 {
    top: 90px;
    left: 0;
    right: 0;
    margin: auto
}

@media screen and (max-width: 1439px) {
    .use-cases-hero__box-1 {
        top: 92px
    }
}

@media screen and (max-width: 1239px) {
    .use-cases-hero__box-1 {
        top: 30px
    }
}

.use-cases-hero__triangle-1 {
    top: 154px;
    left: calc(50% + 260px)
}

@media screen and (max-width: 1439px) {
    .use-cases-hero__triangle-1 {
        top: 116px;
        left: calc(50% + 195px)
    }
}

@media screen and (max-width: 1239px) {
    .use-cases-hero__triangle-1 {
        top: 77px;
        left: calc(50% + 130px)
    }
}

.use-cases-hero__triangle-2 {
    bottom: 265px;
    left: calc(50% + 40px)
}

@media screen and (max-width: 1439px) {
    .use-cases-hero__triangle-2 {
        bottom: 200px
    }
}

.use-cases-hero__triangle-1,
.use-cases-hero__triangle-2 {
    transform: translateX(-50%) rotate(18deg)
}

.use-cases-hero__square-1 {
    bottom: 70px;
    left: calc(50% - 50px);
    transform: translateX(-50%) rotate(-25deg)
}

.use-cases-hero__trunk {
    width: 150px;
    height: auto;
    bottom: -80px;
    left: 50%
}

.use-cases-hero__trunk svg {
    width: 100%;
    height: 100%
}

@media screen and (max-width: 1239px) {
    .use-cases-hero__trunk {
        bottom: -60px;
        width: 113px
    }
}

@media screen and (max-width: 579px) {
    .use-cases-hero__trunk {
        width: 75px;
        height: auto;
        bottom: -30px
    }
}

@media screen and (max-width: 1239px) {
    .use-cases-hero {
        padding: 90px 0 220px
    }
}

.active-list-item::after {
    padding: 0 5px;
    margin-left: 10px;
    color: var(--gray);
    border: 1px solid var(--border-color);
    border-radius: 100%;
    transition: color 300ms ease-in-out;
    content: "×"
}

.use-cases-grid li {
    color: var(--purple);
    font-size: .875rem;
    font-weight: 600;
    transition: color 300ms ease-in-out;
    cursor: pointer
}

.use-cases-grid li:active {
    color: var(--black)
}

.use-cases-grid li:not(:last-of-type) {
    margin-bottom: 8px
}

.use-cases-grid li.active-list-item {
    color: var(--light-purple)
}

@media (hover: hover) {
    .use-cases-grid li:hover {
        color: var(--light-purple)
    }

    .use-cases-grid li:hover::after {
        color: var(--light-purple)
    }
}

.use-cases-grid__card {
    height: 100%;
    background-color: var(--gray-column)
}

.use-cases-grid__card .button {
    display: inline-block
}

@media screen and (min-width: 1440px) {
    .use-cases-grid__card:nth-of-type(3n + 2) {
        background-color: var(--light-gray)
    }
}

@media screen and (min-width: 767px) and (max-width: 1439px) {
    .use-cases-grid__card:nth-of-type(2n + 2) {
        background-color: var(--light-gray)
    }
}

.use-cases-grid__card-content {
    padding: 0 20px
}

.use-cases-grid__subheading {
    padding: 34px 27px;
    margin-bottom: 30px;
    color: var(--white);
    font-weight: 800;
    border-radius: 5px
}

@media screen and (max-width: 1079px) {
    .use-cases-grid__side-nav {
        text-align: center
    }
}

.use-cases-grid__box {
    top: -20px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg)
}

.filtered .card {
    display: none
}

.filtered .card--selected {
    display: block
}

.case-study-slider {
    padding: var(--section-padding) 0 0
}

.case-study-slider__carousel {
    height: 626px
}

.case-study-slider__carousel-image {
    margin: auto auto 50px
}

.case-study-slider__shapes {
    opacity: 0;
    transition: opacity 300ms ease-in-out
}

.case-study-slider__carousel-cell {
    width: 100%;
    opacity: .3;
    transition: opacity 300ms ease-in-out
}

.case-study-slider__carousel-cell::before {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 77%;
    background-color: transparent;
    border-radius: 10px;
    transition: background-color 300ms ease-in-out;
    content: ""
}

.case-study-slider__carousel-cell.is-selected {
    opacity: 1
}

.case-study-slider__carousel-cell.is-selected .case-study-slider__shapes {
    opacity: 1
}

.case-study-slider__carousel-cell.is-selected::before {
    background-color: var(--white)
}

.case-study-slider__button {
    position: absolute;
    top: 50%;
    border: 0;
    transform: translateY(-50%);
    transition: background-color 300ms ease-in-out;
    box-shadow: 0 20px 19px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer
}

.case-study-slider__button svg {
    width: 14px;
    height: 25px
}

@media (hover: hover) {
    .case-study-slider__button:hover {
        background-color: var(--salmon)
    }
}

.case-study-slider__button:active {
    background-color: var(--purple)
}

.case-study-slider__button--prev {
    left: 0;
    padding: 18px 54px 18px 60px;
    border-radius: 0 5px 5px 0
}

@media screen and (max-width: 766px) {
    .case-study-slider__button--prev {
        padding: 18px 27px 18px 30px
    }
}

.case-study-slider__button--next {
    right: 0;
    padding: 18px 60px 18px 54px;
    border-radius: 5px 0 0 5px
}

.case-study-slider__button--next svg {
    transform: scaleX(-1)
}

@media screen and (max-width: 766px) {
    .case-study-slider__button--next {
        padding: 18px 30px 18px 27px
    }
}

@media screen and (max-width: 579px) {
    .case-study-slider__button {
        top: calc(50% - 50px);
        box-shadow: 0 0 19px 0 rgba(0, 0, 0, 0.1)
    }
}

.case-study-slider__triangle-1 {
    top: 155px;
    left: calc(50% - 200px);
    transform: translateX(-50%) rotate(15deg)
}

@media screen and (max-width: 1439px) {
    .case-study-slider__triangle-1 {
        top: 116px;
        left: calc(50% - 150px)
    }
}

@media screen and (max-width: 1239px) {
    .case-study-slider__triangle-1 {
        top: 78px;
        left: calc(50% - 100px)
    }
}

.case-study-slider__triangle-2 {
    top: 0;
    left: calc(50% - 100px);
    transform: translateX(-50%) rotate(60deg)
}

@media screen and (max-width: 1439px) {
    .case-study-slider__triangle-2 {
        left: calc(50% - 75px)
    }
}

.case-study-slider__circle-1 {
    top: 105px;
    left: calc(50% - 125px)
}

@media screen and (max-width: 1439px) {
    .case-study-slider__circle-1 {
        left: calc(50% - 94px)
    }
}

@media screen and (max-width: 1239px) {
    .case-study-slider__circle-1 {
        left: calc(50% - 63px)
    }
}

.case-study-slider__circle-2 {
    top: 90px;
    left: calc(50% + 125px)
}

@media screen and (max-width: 1439px) {
    .case-study-slider__circle-2 {
        top: 68px;
        left: calc(50% + 94px)
    }
}

.case-study-slider__circle-3 {
    top: 0;
    left: calc(50% + 100px)
}

@media screen and (max-width: 1439px) {
    .case-study-slider__circle-3 {
        left: calc(50% + 75px)
    }
}

.biotech-hero__data {
    top: -28px;
    right: -195px;
    width: 244px;
    transform: translateX(-50%) rotate(-185deg) scaleX(-1)
}

@media screen and (max-width: 579px) {
    .biotech-hero__data {
        top: -60px;
        right: unset;
        left: 50%;
        transform: translateX(-50%);
        width: 122px
    }
}

.biotech-hero__data-ball {
    top: 0;
    right: -130px;
    width: 120px;
    transform: translateX(-50%) rotate(20deg)
}

@media screen and (max-width: 579px) {
    .biotech-hero__data-ball {
        top: -25px;
        width: 60px
    }
}

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

    .biotech-hero__data,
    .biotech-hero__data-ball {
        right: unset;
        left: 50%
    }
}

.biotech-icon-blocks {
    margin-top: 88px
}

.biotech-icon-blocks img {
    max-height: 120px;
    margin: auto auto 30px
}

@media screen and (max-width: 1239px) {
    .biotech-icon-blocks {
        margin-top: 44px
    }
}

.biotech-paragraphs {
    padding-top: var(--section-padding)
}

.biotech-paragraphs h3:not(:first-of-type) {
    margin-top: 50px
}

.biotech-paragraphs .grid {
    margin-top: 40px
}

@media screen and (min-width: 1240px) {
    .biotech-paragraphs {
        max-width: 872px
    }
}

@media screen and (max-width: 766px) {
    .biotech-paragraphs {
        padding-bottom: var(--section-padding)
    }
}

.biotech-studies {
    padding-top: 164px
}

.biotech-studies__card {
    height: 100%;
    padding: 140px 40px 40px
}

.biotech-studies__card-image {
    top: -16px;
    left: 50%;
    transform: translateX(-50%)
}

.biotech-studies__card-image .case-image {
    width: 85px;
    height: 85px
}

.biotech-studies__card-image .case-image-corners {
    width: 124px;
    top: -30px;
    left: -47px
}

.biotech-studies__description {
    display: block;
    margin-bottom: 28px
}

.biotech-studies__data {
    top: -25px;
    left: 50%;
    max-width: unset;
    width: 200px;
    transform: translateX(-50%) rotate(10deg)
}

.biotech-studies__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.biotech-studies__dot--1 {
    top: 8px;
    left: calc(50% - 80px)
}

.biotech-studies__dot--2 {
    top: -35px;
    left: calc(50% + 50px)
}

.getting-started-hero {
    padding: 174px 0 420px;
    text-align: center
}

.getting-started-hero h1 {
    max-width: 440px;
    margin: 0 auto
}

@media screen and (max-width: 1079px) {
    .getting-started-hero h1 {
        max-width: 330px
    }
}

.getting-started-hero__box-1 {
    top: 500px;
    left: calc(50% - 410px);
    transform: translateX(-50%) rotate(-30deg)
}

@media screen and (max-width: 1679px) {
    .getting-started-hero__box-1 {
        top: 375px;
        left: calc(50% - 308px)
    }
}

@media screen and (max-width: 1439px) {
    .getting-started-hero__box-1 {
        top: 250px;
        left: calc(50% - 205px)
    }
}

@media screen and (max-width: 1239px) {
    .getting-started-hero__box-1 {
        left: calc(50% - 102px)
    }
}

.getting-started-hero__box-2 {
    top: 50px;
    left: calc(50% + 32px);
    transform: translateX(-50%) rotate(-48deg)
}

@media screen and (max-width: 1439px) {
    .getting-started-hero__box-2 {
        display: none
    }
}

.getting-started-hero__box-3 {
    bottom: 0;
    left: calc(50% + 300px)
}

@media screen and (max-width: 1439px) {
    .getting-started-hero__box-3 {
        left: calc(50% + 225px)
    }
}

@media screen and (max-width: 1239px) {
    .getting-started-hero__box-3 {
        left: calc(50% + 150px)
    }
}

@media screen and (max-width: 1079px) {
    .getting-started-hero__box-3 {
        left: calc(50% + 75px)
    }
}

.getting-started-hero__square-1 {
    top: 218px;
    left: calc(50% - 300px);
    transform: translateX(-50%) rotate(-20deg)
}

@media screen and (max-width: 1679px) {
    .getting-started-hero__square-1 {
        top: 164px
    }
}

@media screen and (max-width: 1439px) {
    .getting-started-hero__square-1 {
        top: 109px
    }
}

.getting-started-hero__square-2 {
    top: 565px;
    left: calc(50% - 20px);
    transform: translateX(-50%) rotate(20deg)
}

@media screen and (max-width: 1679px) {
    .getting-started-hero__square-2 {
        top: 408px
    }
}

@media screen and (max-width: 1439px) {
    .getting-started-hero__square-2 {
        top: 272px
    }
}

.getting-started-hero__circle-1 {
    top: 230px;
    left: calc(50% - 260px)
}

@media screen and (max-width: 1679px) {
    .getting-started-hero__circle-1 {
        top: 172px
    }
}

@media screen and (max-width: 1439px) {
    .getting-started-hero__circle-1 {
        display: none
    }
}

.getting-started-hero__circle-2 {
    top: 345px;
    left: calc(50% - 30px)
}

.getting-started-hero__circle-3 {
    top: 510px;
    left: calc(50% + 224px)
}

@media screen and (max-width: 1679px) {
    .getting-started-hero__circle-3 {
        top: 382px
    }
}

@media screen and (max-width: 1439px) {
    .getting-started-hero__circle-3 {
        top: 255px
    }
}

.getting-started-hero__circle-4 {
    top: 284px;
    left: calc(50% + 184px)
}

.getting-started-hero__triangle-1,
.getting-started-hero__triangle-3 {
    transform: translateX(-50%) rotate(-20deg)
}

.getting-started-hero__triangle-2,
.getting-started-hero__triangle-4 {
    transform: translateX(-50%) rotate(20deg)
}

.getting-started-hero__triangle-1 {
    top: 400px;
    left: calc(50% - 350px)
}

.getting-started-hero__triangle-2 {
    top: 570px;
    left: calc(50% - 220px)
}

.getting-started-hero__triangle-3 {
    top: 150px;
    left: calc(50% + 80px)
}

.getting-started-hero__triangle-4 {
    top: 204px;
    left: calc(50% + 262px)
}

@media screen and (max-width: 1239px) {
    .getting-started-hero__triangle-4 {
        left: calc(50% + 175px)
    }
}

.getting-started-hero__elephant {
    width: auto;
    height: 620px;
    left: calc(50% - 160px);
    bottom: -225px;
    transform: translateX(-50%) rotate(20deg)
}

@media screen and (max-width: 1379px) {
    .getting-started-hero {
        padding: 90px 0 420px
    }
}

.getting-started-install h2 {
    margin-bottom: 64px
}

.getting-started-install span,
.getting-started-install pre,
.getting-started-install code,
.getting-started-install ul {
    font-weight: normal
}

.getting-started-install ul {
    margin-top: 36px
}

.getting-started-install ul code {
    margin-top: 14px
}

.getting-started-install li {
    list-style-position: inside
}

.getting-started-install span {
    display: block
}

.getting-started-install span:not(:last-of-type) {
    margin-bottom: 12px
}

.getting-started-install pre {
    margin: 36px 0
}

@media screen and (min-width: 880px) {
    .getting-started-install .container {
        max-width: 818px
    }
}

.getting-started-install__list {
    padding: 0;
    margin: 0
}

.getting-started-install__step {
    font-weight: bold
}

.getting-started-install__step:not(:last-of-type) {
    margin-bottom: 73px
}

.getting-started-install__optional-step {
    list-style-type: disc
}

.getting-started-install__optional-step:not(:last-of-type) {
    margin-bottom: 34px
}

.getting-started-concepts img {
    display: block;
    height: 250px;
    margin: auto auto 42px
}

@media screen and (min-width: 1440px) {
    .getting-started-concepts__grid {
        margin: 86px 0 80px
    }
}

@media screen and (min-width: 1240px) and (max-width: 1439px) {
    .getting-started-concepts__grid {
        margin: 65px 0 60px
    }
}

@media screen and (min-width: 1080px) and (max-width: 1239px) {
    .getting-started-concepts__grid {
        margin: 43px 0 40px
    }
}

.getting-started-concepts__concept a {
    display: grid;
    height: 100%;
    color: inherit
}

.getting-started-concepts__button {
    align-self: end;
    justify-self: start
}

.getting-started-where {
    padding-bottom: 200px
}

.getting-started-where h3 {
    margin: 0
}

.getting-started-where__grid {
    margin-top: 237px
}

.getting-started-where__grid::before {
    width: 2px;
    height: 266px;
    position: absolute;
    top: -200px;
    left: 50%;
    background-color: var(--step-line);
    transform: translateX(-50%);
    content: ""
}

@media screen and (max-width: 1239px) {
    .getting-started-where__grid::before {
        top: -133px
    }
}

@media screen and (max-width: 1079px) {
    .getting-started-where__grid::before {
        display: none
    }
}

@media screen and (max-width: 1239px) {
    .getting-started-where__grid {
        margin-top: 158px
    }
}

.getting-started-where__lines {
    width: 974px;
    height: 222px;
    top: -166px;
    left: 50%;
    border-width: 2px 2px 0 2px;
    border-color: var(--step-line);
    border-style: solid
}

@media screen and (max-width: 1439px) {
    .getting-started-where__lines {
        width: 730px;
        height: 166px
    }
}

@media screen and (max-width: 1239px) {
    .getting-started-where__lines {
        width: 487px;
        height: 111px;
        top: -111px
    }
}

@media screen and (max-width: 1079px) {
    .getting-started-where__lines {
        display: none
    }
}

.getting-started-where__grid-item {
    padding: 134px 40px 45px
}

@media screen and (max-width: 1239px) {
    .getting-started-where__grid-item {
        padding: 90px 20px 45px
    }
}

.getting-started-where__image {
    top: -100px;
    left: 50%;
    z-index: 1;
    filter: drop-shadow(0 60px 8px var(--drop-shadow))
}

.getting-started-where__image--community,
.getting-started-where__image--hub {
    width: 312px;
    height: 195px
}

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

    .getting-started-where__image--community,
    .getting-started-where__image--hub {
        width: 234px;
        height: 146px
    }
}

.getting-started-where__image--enterprise {
    width: 165px;
    height: 220px
}

@media screen and (max-width: 1439px) {
    .getting-started-where__image--enterprise {
        width: 124px;
        height: 165px
    }
}

@media screen and (max-width: 1439px) {
    .getting-started-where__image {
        filter: drop-shadow(0 30px 8px var(--drop-shadow))
    }
}

@media screen and (max-width: 1079px) {
    .getting-started-where__image {
        top: -75px
    }
}

.getting-started-where__button {
    width: 100%;
    height: 44px;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%)
}

.getting-started-where__elephant {
    width: 944px;
    height: auto;
    bottom: -800px;
    left: calc(50% - 185px);
    z-index: unset;
    transform: translateX(-50%) rotate(12deg)
}

@media screen and (max-width: 1439px) {
    .getting-started-where__elephant {
        width: 708px;
        height: auto;
        bottom: -600px
    }
}

@media screen and (max-width: 1239px) {
    .getting-started-where__elephant {
        width: 472px;
        height: auto;
        bottom: -400px
    }
}

.getting-started-where__dot {
    top: 58px;
    left: -5px
}

.getting-started-rail {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%)
}

.getting-started-rail__button {
    width: 64px;
    height: 245px;
    writing-mode: sideways-lr;
    border-radius: 6px 0 0 6px
}

.getting-started-rail__box {
    top: -18px;
    left: -18px;
    transform: rotate(-48deg)
}

.getting-started-rail__trunk {
    top: 20px;
    left: -30px;
    height: 200px;
    transform: rotate(-20deg)
}

@media screen and (max-width: 1079px) {
    .getting-started-rail {
        display: none
    }
}

.getting-started-step {
    left: 54px;
    z-index: 2
}

.getting-started-step__circle {
    border-radius: 50%
}

.getting-started-step__circle {
    width: var(--step-circle-size);
    height: var(--step-circle-size)
}

.getting-started-step__circle--purple {
    border: 3px solid var(--purple)
}

.getting-started-step__circle--gray {
    border: 3px solid var(--light-gray)
}

.getting-started-step__dot--top {
    top: 120px;
    left: 50%
}

.getting-started-step__dot--right {
    top: 35px;
    right: 0
}

.getting-started-step__inner {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.getting-started-step__inner img {
    width: 15px;
    height: 10px
}

.getting-started-step__line {
    background-color: var(--step-line)
}

.getting-started-step__line--top {
    width: 2px;
    height: var(--step-top-offset);
    top: calc(var(--step-top-offset) * -1);
    left: 40px
}

.getting-started-step__line--right {
    width: 100%;
    height: 2px;
    top: 40px;
    right: calc(var(--step-circle-size) * -1);
    transform: translateY(-50%)
}

.getting-started-step__line--down {
    width: 2px;
    height: 100%;
    top: var(--step-circle-size);
    left: 50%
}

.getting-started-step--start {
    bottom: var(--step-top-offset)
}

.getting-started-step--number {
    top: var(--step-top-offset);
    color: var(--purple);
    font-size: .75rem;
    font-weight: bold
}

.getting-started-step--half-width {
    width: calc(20% - var(--step-circle-size))
}

.getting-started-step--full-height {
    height: 100%
}

@media screen and (max-width: 1239px) {
    .getting-started-step {
        display: none
    }
}

.data-lineage-hero ol {
    padding: 0;
    list-style: none;
    counter-reset: data
}

.data-lineage-hero ol span {
    font-weight: bold
}

.data-lineage-hero ol li {
    counter-increment: data
}

.data-lineage-hero ol li::before {
    content: counter(data) ". ";
    color: var(--light-blue);
    font-weight: bold
}

.data-lineage-hero .grid {
    max-width: var(--dl-container);
    margin: auto
}

.data-lineage-about__heading {
    max-width: 670px;
    margin: auto auto 90px
}

@media screen and (max-width: 1439px) {
    .data-lineage-about__heading {
        margin: auto auto 45px
    }
}

.data-lineage-about__two-col {
    max-width: var(--dl-container);
    margin: auto
}

.data-lineage-about__two-col--top {
    margin: 100px auto auto
}

@media screen and (max-width: 1239px) {
    .data-lineage-about__two-col--top {
        margin: 50px auto auto
    }
}

.data-lineage-about__item {
    padding: 40px 40px 35px
}

@media screen and (min-width: 1080px) {
    .data-lineage-about__item--featured {
        grid-row: span 2
    }
}

@media screen and (max-width: 1679px) {
    .data-lineage-about__item {
        height: 100%
    }
}

.data-lineage-about__shapes {
    margin: 100px 0
}

.data-lineage-about__line {
    width: 100%;
    height: 1px;
    top: 0;
    left: 50%;
    background: linear-gradient(0deg, transparent 0%, #e6cdce 100%)
}

.data-lineage-about__box-1 {
    top: -26px;
    left: 60px;
    transform: rotate(-45deg)
}

.data-lineage-about__triangle-1 {
    top: -100px;
    left: 42px;
    transform: rotate(20deg)
}

.data-lineage-about__circle-1 {
    top: 50%;
    left: 150px;
    transform: translateY(-50%)
}

.data-lineage-explanation {
    padding-bottom: var(--section-padding)
}

.data-lineage-explanation__info-graphic-wrapper svg {
    overflow: visible !important
}

.data-lineage-explanation__info-graphic-wrapper .box {
    position: absolute;
    width: 4.54545%
}

.data-lineage-explanation__info-graphic-wrapper .paperline,
.data-lineage-explanation__info-graphic-wrapper .box,
.data-lineage-explanation__info-graphic-wrapper .Oval-1,
.data-lineage-explanation__info-graphic-wrapper .Oval-2,
.data-lineage-explanation__info-graphic-wrapper #Left-Page,
.data-lineage-explanation__info-graphic-wrapper #head1,
.data-lineage-explanation__info-graphic-wrapper #head2,
.data-lineage-explanation__info-graphic-wrapper #head3,
.data-lineage-explanation__info-graphic-wrapper #head4,
.data-lineage-explanation__info-graphic-wrapper #head5,
.data-lineage-explanation__info-graphic-wrapper #head6,
.data-lineage-explanation__info-graphic-wrapper #head7,
.data-lineage-explanation__info-graphic-wrapper #head8,
.data-lineage-explanation__info-graphic-wrapper #head9,
.data-lineage-explanation__info-graphic-wrapper #head10,
.data-lineage-explanation__info-graphic-wrapper #shape-1,
.data-lineage-explanation__info-graphic-wrapper #shape-2,
.data-lineage-explanation__info-graphic-wrapper #shape-3,
.data-lineage-explanation__info-graphic-wrapper #shape-4,
.data-lineage-explanation__info-graphic-wrapper #shape-5 {
    visibility: hidden
}

.data-lineage-explanation__info-graphic-top {
    width: 100%;
    height: 100%;
    position: absolute;
    top: -4px;
    left: 0
}

.data-lineage-explanation__step-1 {
    color: var(--purple)
}

.data-lineage-explanation__step-2 {
    color: var(--red)
}

.data-lineage-explanation__step-3 {
    color: var(--light-blue)
}

.data-lineage-challenges {
    padding: var(--section-padding) 0 330px
}

@media screen and (min-width: 1240px) {
    .data-lineage-challenges h2 {
        max-width: 570px
    }
}

@media screen and (min-width: 1240px) {
    .data-lineage-challenges p {
        max-width: 52ch
    }
}

.data-lineage-challenges .grid p {
    margin-top: 0
}

@media screen and (max-width: 1239px) {
    .data-lineage-challenges h2 {
        text-align: center
    }
}

.data-lineage-challenges__statement span {
    display: block;
    max-width: 352px;
    margin: auto;
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.5
}

.data-lineage-challenges__square-1 {
    top: calc(50% - 65px);
    left: calc(50% - 15px);
    transform: translate(-50%, -50%) rotate(70deg)
}

@media screen and (max-width: 1239px) {
    .data-lineage-challenges__square-1 {
        width: 278px;
        height: 278px
    }
}

@media screen and (max-width: 1079px) {
    .data-lineage-challenges__square-1 {
        top: 50%;
        left: 50%
    }
}

.data-lineage-challenges__triangle-1 {
    bottom: -120px;
    left: 100px;
    transform: rotate(20deg)
}

.data-lineage-challenges__circle-1 {
    width: 20px;
    height: 20px;
    bottom: 20px;
    left: calc(50% + 100px);
    transform: translateX(-50%)
}

@media screen and (max-width: 1079px) {
    .data-lineage-challenges__circle-1 {
        bottom: -40px;
        left: 50%
    }
}

.data-lineage-challenges__box-1 {
    top: -120px;
    left: calc(50% - 75px);
    transform: translateX(-50%)
}

@media screen and (max-width: 1239px) {
    .data-lineage-challenges__box-1 {
        top: unset;
        bottom: 120px
    }
}

@media screen and (max-width: 1079px) {
    .data-lineage-challenges__box-1 {
        bottom: -120px
    }
}

.data-lineage-challenges__elephant {
    bottom: -42%;
    left: calc(50% + 230px)
}

@media screen and (max-width: 1239px) {
    .data-lineage-challenges__elephant {
        left: 50%
    }
}

@media screen and (max-width: 1079px) {
    .data-lineage-challenges__elephant {
        bottom: -32%;
        width: 440px
    }
}

.data-lineage-industries h2 {
    max-width: 24ch;
    margin: auto
}

.data-lineage-industries .h4 {
    color: var(--black)
}

.data-lineage-industries .grid {
    grid-gap: 40px 20px;
    max-width: 1100px;
    margin: 90px auto auto
}

@media screen and (max-width: 1439px) {
    .data-lineage-industries .grid {
        margin: 45px auto auto
    }
}

.data-lineage-pachyderm {
    padding: var(--section-padding) 0 476px
}

.data-lineage-pachyderm p {
    margin-bottom: 23px
}

.data-lineage-pachyderm p:last-of-type {
    margin-bottom: 46px
}

.data-lineage-pachyderm .square {
    bottom: -25px;
    transform: translateX(-50%) rotate(-10deg)
}

.data-lineage-pachyderm .button {
    z-index: 2
}

.data-lineage-pachyderm__circle-1 {
    width: 144px;
    height: 144px;
    bottom: 72px;
    left: calc(50% + 285px)
}

.data-lineage-pachyderm__circle-2 {
    bottom: -302px;
    left: 50%
}

.data-lineage-pachyderm__circle-3 {
    bottom: 75px;
    left: calc(50% - 280px)
}

.data-lineage-pachyderm__circle-4 {
    bottom: 382px;
    left: calc(50% + 150px)
}

.data-lineage-pachyderm__square-1 {
    left: calc(50% - 340px)
}

.data-lineage-pachyderm__square-2 {
    left: calc(50% + 400px)
}

.data-lineage-pachyderm__triangle-sided-1 {
    bottom: 52px;
    left: calc(50% + 180px)
}

.data-lineage-pachyderm__triangle-sided-2 {
    bottom: 325px;
    left: calc(50% - 285px)
}

.data-lineage-pachyderm__box-1 {
    width: 22px;
    height: 22px;
    bottom: 242px;
    left: calc(50% - 100px);
    transform: translateX(-50%) rotate(155deg)
}

.data-lineage-pachyderm__box-2 {
    bottom: 420px;
    left: 50%;
    transform: translateX(-50%) rotate(-50deg)
}

.data-lineage-pachyderm__elephant {
    bottom: -155px;
    left: calc(50% - 60px);
    max-width: 390px
}

.promo-hero h1 {
    margin-top: 0
}

.promo-hero h2 {
    margin-bottom: 0
}

.promo-hero h2>span {
    color: var(--red)
}

.promo-hero h2>span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 4px;
    background-color: var(--red);
    transform: translate(-50%, -50%) rotate(-15deg)
}

.promo-hero__block {
    display: block
}

.promo-hero__description-item p {
    margin-top: 2px
}

@media screen and (min-width: 767px) {
    .promo-hero__description-item p {
        margin-left: 32px
    }
}

.promo-hero__description-item::before {
    position: relative;
    top: -2px;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 20px;
    background-color: #1acaaa;
    border-radius: 50%;
    content: ""
}

@media screen and (max-width: 766px) {
    .promo-hero__description-item::before {
        display: none
    }
}

.promo-hero__use {
    padding: 54px 16px 16px 16px;
    background-color: #ecf5f7
}

@media screen and (min-width: 1440px) {
    .promo-hero__use {
        width: 490px;
        margin: auto
    }
}

.promo-hero__included {
    margin-top: 60px;
    background-color: var(--white)
}

.promo-hero__included span,
.promo-hero__included li {
    display: block;
    padding: 14px;
    font-size: .9375rem
}

@media screen and (max-width: 766px) {
    .promo-hero__included {
        margin-top: 30px
    }
}

.promo-hero__included-item:nth-of-type(odd) {
    background-color: #fafafa
}

.promo-hero__box-1 {
    top: -14px;
    left: 50%;
    transform: translateX(-50%) rotate(-80deg)
}

.promo-hero__box-2 {
    top: 50%;
    left: -25px;
    transform: translateY(-50%) rotate(-120deg)
}

.promo-hero__box-3 {
    bottom: -20px;
    right: -25px;
    transform: rotate(-45deg)
}

.promo-platform__list {
    grid-gap: 100px;
    margin-top: 58px
}

@media screen and (max-width: 1439px) {
    .promo-platform__list {
        grid-gap: 50px
    }
}

@media screen and (max-width: 1079px) {
    .promo-platform__list {
        grid-gap: 24px
    }
}

@media screen and (max-width: 766px) {
    .promo-platform__list {
        grid-template-columns: 1fr;
        margin-top: 30px
    }
}

.promo-platform__icon {
    width: 160px;
    height: 160px;
    position: relative;
    margin: auto auto 24px;
    border-radius: 50%
}

.promo-platform__icon-image {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 92px;
    transform: translate(-50%, -50%)
}

.promo-platform__math {
    top: 80px;
    right: -55px
}

@media screen and (max-width: 1439px) {
    .promo-platform__math {
        right: -30px
    }
}

@media screen and (max-width: 1079px) {
    .promo-platform__math {
        right: -16px
    }
}

@media screen and (max-width: 766px) {
    .promo-platform__math {
        display: none
    }
}

@media (max-width: 740px) {
    .description-grid {
        display: grid;
        grid-template-columns: repeat(1,1fr);
    }

    .description-grid__second {
        display: grid;
        grid-template-columns: repeat(1,1fr);
    }

    .description-icon-grid {
        display: none;
    }

    .description-image {
        width: 300px;
        /* margin-top: 1.5rem; */
    }
}

.promo-platform__help {
    padding: 86px 42px 306px;
    margin-top: 86px
}

.promo-platform__help p {
    max-width: 616px;
    margin-left: auto;
    margin-right: auto
}

@media screen and (max-width: 1439px) {
    .promo-platform__help {
        padding: 42px 42px 306px;
        margin-top: 42px
    }
}

.promo-platform__elephant {
    position: absolute;
    bottom: -40px;
    left: 50%;
    width: 466px;
    transform: translateX(-50%)
}

.promo-platform__buttons {
    margin-top: 44px
}

.promo-platform__buttons a {
    display: block
}

@media screen and (min-width: 767px) {
    .promo-platform__buttons li:not(:last-of-type) {
        margin-right: 12px
    }
}

@media screen and (max-width: 766px) {
    .promo-platform__buttons li:not(:last-of-type) {
        margin-bottom: 12px
    }
}

@media screen and (min-width: 767px) {
    .promo-platform__buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center
    }
}

.jobs-hero {
    padding: 172px 0 226px
}

.jobs-hero h1 {
    margin: 0
}

.jobs-hero .button {
    display: inline-block;
    margin-top: 38px
}

.jobs-hero__box-1 {
    top: 90px;
    left: 0;
    right: 0;
    margin: auto
}

@media screen and (max-width: 766px) {
    .jobs-hero__box-1 {
        top: 30px
    }
}

.jobs-hero__circle-1 {
    width: 40px;
    height: 40px;
    top: 50%;
    left: calc(50% + 180px);
    transform: translate(-50%, -50%)
}

.jobs-hero__circle-2 {
    width: 270px;
    height: 270px;
    bottom: -190px;
    left: calc(50% + 120px)
}

.jobs-hero__circle-3 {
    width: 60px;
    height: 60px;
    bottom: -35px;
    left: calc(50% + 240px)
}

.jobs-hero__square-1 {
    width: 60px;
    height: 60px;
    top: calc(50% + 80px);
    left: calc(50% - 110px);
    transform: translate(-50%, -50%) rotate(-75deg)
}

.jobs-hero__square-2 {
    width: 40px;
    height: 40px;
    bottom: 66px;
    left: calc(50% + 440px);
    transform: translateX(-50%) rotate(75deg)
}

@media screen and (max-width: 1079px) {
    .jobs-hero__square-2 {
        right: 76px;
        left: unset;
        transform: rotate(75deg)
    }
}

.jobs-hero__triangle-1 {
    width: 80px;
    height: 80px;
    bottom: 40px;
    left: calc(50% + 130px);
    transform: translateX(-50%) rotate(20deg)
}

.jobs-hero__triangle-2 {
    width: 60px;
    height: 60px;
    bottom: -30px;
    left: calc(50% - 420px);
    transform: translateX(-50%) rotate(75deg)
}

.jobs-hero__trunk {
    width: 90px;
    bottom: -30px;
    left: calc(50% + 55px);
    transform: translateX(-50%) rotate(-24deg)
}

.jobs-hero__tusk {
    bottom: -130px;
    left: calc(50% + 104px);
    transform: translateX(-50%) rotate(-12deg)
}

@media screen and (max-width: 766px) {
    .jobs-hero {
        overflow: hidden;
        padding: 90px 0 226px
    }
}

.jobs-why img,
.jobs-why span {
    display: block
}

@media screen and (max-width: 766px) {
    .jobs-why span {
        font-size: .875rem
    }
}

.jobs-why img {
    height: 40px;
    margin: auto auto 12px
}

@media screen and (max-width: 766px) {
    .jobs-why img {
        height: 30px
    }
}

.jobs-why__values-heading {
    margin-top: 78px
}

@media screen and (max-width: 1439px) {
    .jobs-why__values-heading {
        margin-top: 58px
    }
}

@media screen and (max-width: 1239px) {
    .jobs-why__values-heading {
        margin-top: 40px
    }
}

.jobs-why__values {
    grid-gap: 1px
}

@media screen and (min-width: 1080px) {
    .jobs-why__values {
        margin: 0 -34px
    }
}

@media screen and (max-width: 1079px) {
    .jobs-why__values {
        grid-template-columns: 1fr
    }
}

.jobs-why__value {
    padding: 0 34px
}

@media screen and (max-width: 1079px) {
    .jobs-why__value {
        padding: 34px 0 18px
    }
}

@media screen and (max-width: 766px) {
    .jobs-why__value {
        padding: 18px 0 9px
    }
}

.jobs-why__benefits-heading {
    margin-top: 90px
}

@media screen and (max-width: 1439px) {
    .jobs-why__benefits-heading {
        margin-top: 68px
    }
}

@media screen and (max-width: 1239px) {
    .jobs-why__benefits-heading {
        margin-top: 45px
    }
}

.jobs-why__benefits {
    grid-gap: 1px;
    background-color: #e1d6dc
}

@media screen and (max-width: 766px) {
    .jobs-why__benefits {
        grid-template-columns: repeat(2, 1fr)
    }
}

.jobs-why__benefit {
    padding: 35px 20px;
    background-color: var(--light-gray)
}

@media screen and (max-width: 1239px) {
    .jobs-why__benefit {
        padding: 20px
    }
}

.jobs-why__square-1 {
    top: 100px;
    left: calc(50% + 440px);
    transform: translateX(-50%) rotate(75deg)
}

@media screen and (max-width: 1079px) {
    .jobs-why__square-1 {
        right: 64px;
        left: unset;
        transform: rotate(75deg)
    }
}

@media screen and (max-width: 766px) {
    .jobs-why__square-1 {
        display: none
    }
}

.jobs-why__square-2 {
    bottom: -26px;
    right: 140px;
    transform: rotate(-20deg)
}

.jobs-why__circle-1 {
    bottom: -30px;
    left: calc(50% - 400px)
}

.jobs-why__circle-2 {
    bottom: 360px;
    left: 60px
}

@media screen and (max-width: 766px) {
    .jobs-why__circle-2 {
        display: none
    }
}

.jobs-team img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover
}

.jobs-team .grid {
    grid-gap: 20px
}

.jobs-team__grid {
    grid-template-columns: 1fr 1.2fr 1fr;
    margin: 102px auto 180px
}

@media screen and (max-width: 1439px) {
    .jobs-team__grid {
        margin: 76px auto 135px
    }
}

@media screen and (max-width: 1239px) {
    .jobs-team__grid {
        margin: 50px auto 90px
    }
}

@media screen and (max-width: 766px) {
    .jobs-team__grid {
        grid-template-columns: 1fr;
        margin: 50px auto 45px
    }
}

@media screen and (max-width: 766px) {
    .jobs-team__facts-grid {
        grid-template-columns: 1fr
    }
}

.jobs-team__main-image {
    position: relative
}

.jobs-team__main-image:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 57.14285714%
}

.jobs-team__main-image>.content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

@media screen and (max-width: 766px) {
    .jobs-team__drop-mobile {
        display: none
    }
}

.jobs-team__map {
    width: 100%;
    height: 400px
}

@media screen and (max-width: 766px) {
    .jobs-team__map {
        height: 200px
    }
}

.jobs-team__box-1 {
    top: -33px;
    right: 20px;
    transform: rotate(-45deg)
}

.jobs-team__box-2 {
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg)
}

.jobs-team__circle-1 {
    right: -45px;
    bottom: -34px
}

@media screen and (max-width: 1079px) {
    .jobs-team__circle-1 {
        display: none
    }
}

.jobs-team__triangle-1 {
    bottom: -38px;
    right: 5px;
    transform: rotate(90deg)
}

.jobs-team__facts {
    max-width: 420px
}

.jobs-team__list-item {
    padding-left: 24px;
    line-height: 1.2
}

.jobs-team__list-item:not(:last-of-type) {
    margin-bottom: 24px
}

.jobs-team__list-item::before {
    width: 10px;
    height: 10px;
    position: absolute;
    top: 3px;
    left: 0;
    background-image: url("/images/diamond.svg");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    content: ""
}

.jobs-positions h2 {
    margin-bottom: 30px
}

.jobs-positions p:last-of-type {
    margin-bottom: 100px
}

.second-row {
    margin-top: 5rem;
}

.truck-illustration {
    object-fit: contain;
    width: 200px;
    position: relative;
    top: 3rem;
}
@media screen and (max-width: 1439px) {
    .jobs-positions p:last-of-type {
        margin-bottom: 75px
    }
}

@media screen and (max-width: 1239px) {
    .jobs-positions p:last-of-type {
        margin-bottom: 50px
    }
}

.jobs-positions small {
    display: block
}

.jobs-positions ul::before {
    position: absolute;
    content: ""
}

.jobs-positions ul::after {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--white);
    border-radius: 10px;
    content: ""
}

.jobs-positions ul:first-of-type::before {
    width: 92px;
    height: 92px;
    top: -46px;
    right: 160px;
    border: 4px solid var(--red);
    border-radius: 50%
}

@media screen and (max-width: 766px) {
    .jobs-positions ul:first-of-type::before {
        display: none
    }
}

.jobs-positions ul:nth-of-type(3)::before {
    width: 112px;
    height: 112px;
    left: -58px;
    bottom: -32px;
    border: 4px solid var(--purple);
    border-radius: 50%
}

.jobs-positions ul:last-of-type::before {
    width: 80px;
    height: 80px;
    right: -40px;
    bottom: 20px;
    border-radius: 50%;
    background-color: var(--light-blue)
}

@media screen and (max-width: 766px) {
    .jobs-positions img {
        display: none
    }
}

@media screen and (min-width: 1080px) {
    .jobs-positions__container {
        max-width: 850px
    }
}

.jobs-positions__child-department {
    display: block;
    margin-bottom: 20px
}

.jobs-positions__list {
    padding: 22px 38px
}

.jobs-positions__list:not(:last-of-type) {
    margin-bottom: 58px
}

.jobs-positions__list-item:not(:last-of-type) {
    border-bottom: 1px solid var(--border-color)
}

.jobs-positions__link {
    padding: 28px 0
}

@media screen and (min-width: 767px) {
    .jobs-positions__link {
        display: flex;
        justify-content: space-between
    }
}

@media screen and (min-width: 767px) {
    .jobs-positions__location {
        grid-template-columns: 1fr 14px;
        grid-gap: 50px;
        align-items: center
    }
}

.jobs-positions__circle-1 {
    top: 300px;
    left: calc(50% + 260px)
}

.jobs-positions__circle-2 {
    top: 50%;
    left: calc(50% - 450px);
    transform: translate(-50%, -50%)
}

.jobs-positions__square-1 {
    width: 24px;
    height: 24px;
    top: 300px;
    left: -12px;
    transform: rotate(26deg)
}
.card p {
    margin-bottom: 30px;
}

.jobs-positions__box-1 {
    top: 50%;
    right: 130px;
    transform: translateY(-50%) rotate(-110deg)
}

.jobs-positions__triangle-1 {
    bottom: 375px;
    left: calc(50% - 710px);
    transform: translateX(-50%) rotate(90deg)
}

/*# sourceMappingURL=style.css.map */


/* second slider */
.testim {
    margin-top: 5rem;
    width: 100%;
    -webkit-transform: translatey(-50%);
    -moz-transform: translatey(-50%);
    -ms-transform: translatey(-50%);
    -o-transform: translatey(-50%);
    transform: translatey(-50%);
}

.testim .wrap {
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 0px 20px;
    margin-left: auto;
    margin-right: auto;
}

.testim .arrow {
display: block;
position: absolute;
color: var(--custom-blue);
cursor: pointer;
font-size: 2em;
top: 50%;
-webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
-webkit-transition: all .3s ease-in-out;    
-ms-transition: all .3s ease-in-out;    
-moz-transition: all .3s ease-in-out;    
-o-transition: all .3s ease-in-out;    
transition: all .3s ease-in-out;
padding: 5px;
z-index: 22222222;
}

.testim .arrow:before {
    cursor: pointer;
}

.testim .arrow:hover {
color: var(--light-blue);
}


.testim .arrow.left {
left: 10px;
}

.testim .arrow.right {
right: 10px;
}

.testim .dots {
text-align: center;
position: absolute;
width: 100%;
bottom: 40px;
left: 0;
display: block;
z-index: 3333;
height: 12px;
}

.testim .dots .dot {
list-style-type: none;
display: inline-block;
width: 12px;
height: 12px;
border-radius: 50%;
border: 1px solid #eee;
margin: 0 10px;
cursor: pointer;
-webkit-transition: all .5s ease-in-out;    
-ms-transition: all .5s ease-in-out;    
-moz-transition: all .5s ease-in-out;    
-o-transition: all .5s ease-in-out;    
transition: all .5s ease-in-out;
    position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
background: var(--custom-blue);
border-color: var(--custom-blue);
}

.testim .dots .dot.active {
-webkit-animation: testim-scale .5s ease-in-out forwards;   
-moz-animation: testim-scale .5s ease-in-out forwards;   
-ms-animation: testim-scale .5s ease-in-out forwards;   
-o-animation: testim-scale .5s ease-in-out forwards;   
animation: testim-scale .5s ease-in-out forwards;   
}

.testim .cont {
position: relative;
overflow: hidden;
}

.cont div {
    background-color: transparent;
}



.testim .cont > div {
text-align: center;
position: absolute;
top: 0;
left: 0;
padding: 0 0 70px 0;
opacity: 0;
}

.testim .cont > div.inactive {
opacity: 1;
}


.testim .cont > div.active {
position: relative;
opacity: 1;
}


.testim .cont div .img img {
display: block;
width: 150px;
height: 150px;
margin: auto;
border-radius: 50%;
}


.testim .cont div h2 {
color: var(--custom-blue);
font-size: 1em;
margin: 15px auto;
}

.testim .cont div p {
font-size: 1.15em;
color: black;
width: 80%;
margin: auto;
}

.testim .cont div.active .img img {
-webkit-animation: testim-show .5s ease-in-out forwards;            
-moz-animation: testim-show .5s ease-in-out forwards;            
-ms-animation: testim-show .5s ease-in-out forwards;            
-o-animation: testim-show .5s ease-in-out forwards;            
animation: testim-show .5s ease-in-out forwards;            
}

.testim .cont div.active h2 {
-webkit-animation: testim-content-in .4s ease-in-out forwards;    
-moz-animation: testim-content-in .4s ease-in-out forwards;    
-ms-animation: testim-content-in .4s ease-in-out forwards;    
-o-animation: testim-content-in .4s ease-in-out forwards;    
animation: testim-content-in .4s ease-in-out forwards;    
}

.testim .cont div.active p {
-webkit-animation: testim-content-in .5s ease-in-out forwards;    
-moz-animation: testim-content-in .5s ease-in-out forwards;    
-ms-animation: testim-content-in .5s ease-in-out forwards;    
-o-animation: testim-content-in .5s ease-in-out forwards;    
animation: testim-content-in .5s ease-in-out forwards;    
}

.testim .cont div.inactive .img img {
-webkit-animation: testim-hide .5s ease-in-out forwards;            
-moz-animation: testim-hide .5s ease-in-out forwards;            
-ms-animation: testim-hide .5s ease-in-out forwards;            
-o-animation: testim-hide .5s ease-in-out forwards;            
animation: testim-hide .5s ease-in-out forwards;            
}

.testim .cont div.inactive h2 {
-webkit-animation: testim-content-out .4s ease-in-out forwards;        
-moz-animation: testim-content-out .4s ease-in-out forwards;        
-ms-animation: testim-content-out .4s ease-in-out forwards;        
-o-animation: testim-content-out .4s ease-in-out forwards;        
animation: testim-content-out .4s ease-in-out forwards;        
}

.testim .cont div.inactive p {
-webkit-animation: testim-content-out .5s ease-in-out forwards;    
-moz-animation: testim-content-out .5s ease-in-out forwards;    
-ms-animation: testim-content-out .5s ease-in-out forwards;    
-o-animation: testim-content-out .5s ease-in-out forwards;    
animation: testim-content-out .5s ease-in-out forwards;    
}

@-webkit-keyframes testim-scale {
0% {
    -webkit-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
}

35% {
    -webkit-box-shadow: 0px 0px 10px 5px #eee;        
    box-shadow: 0px 0px 10px 5px #eee;        
}

70% {
    -webkit-box-shadow: 0px 0px 10px 5px var(--custom-blue);        
    box-shadow: 0px 0px 10px 5px var(--custom-blue);        
}

100% {
    -webkit-box-shadow: 0px 0px 0px 0px var(--custom-blue);        
    box-shadow: 0px 0px 0px 0px var(--custom-blue);        
}
}

@-moz-keyframes testim-scale {
0% {
    -moz-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
}

35% {
    -moz-box-shadow: 0px 0px 10px 5px #eee;        
    box-shadow: 0px 0px 10px 5px #eee;        
}

70% {
    -moz-box-shadow: 0px 0px 10px 5px var(--custom-blue);        
    box-shadow: 0px 0px 10px 5px var(--custom-blue);        
}

100% {
    -moz-box-shadow: 0px 0px 0px 0px var(--custom-blue);        
    box-shadow: 0px 0px 0px 0px var(--custom-blue);        
}
}

@-ms-keyframes testim-scale {
0% {
    -ms-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
}

35% {
    -ms-box-shadow: 0px 0px 10px 5px #eee;        
    box-shadow: 0px 0px 10px 5px #eee;        
}

70% {
    -ms-box-shadow: 0px 0px 10px 5px var(--custom-blue);        
    box-shadow: 0px 0px 10px 5px var(--custom-blue);        
}

100% {
    -ms-box-shadow: 0px 0px 0px 0px var(--custom-blue);        
    box-shadow: 0px 0px 0px 0px var(--custom-blue);        
}
}

@-o-keyframes testim-scale {
0% {
    -o-box-shadow: 0px 0px 0px 0px #eee;
    box-shadow: 0px 0px 0px 0px #eee;
}

35% {
    -o-box-shadow: 0px 0px 10px 5px #eee;        
    box-shadow: 0px 0px 10px 5px #eee;        
}

70% {
    -o-box-shadow: 0px 0px 10px 5px var(--custom-blue);        
    box-shadow: 0px 0px 10px 5px var(--custom-blue);        
}

100% {
    -o-box-shadow: 0px 0px 0px 0px var(--custom-blue);        
    box-shadow: 0px 0px 0px 0px var(--custom-blue);        
}
}

@keyframes testim-scale {
0% {
    box-shadow: 0px 0px 0px 0px #eee;
}

35% {
    box-shadow: 0px 0px 10px 5px #eee;        
}

70% {
    box-shadow: 0px 0px 10px 5px var(--custom-blue);        
}

100% {
    box-shadow: 0px 0px 0px 0px var(--custom-blue);        
}
}

@-webkit-keyframes testim-content-in {
from {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}

to {
    opacity: 1;
    -webkit-transform: translateY(0);        
    transform: translateY(0);        
}
}

@-moz-keyframes testim-content-in {
from {
    opacity: 0;
    -moz-transform: translateY(100%);
    transform: translateY(100%);
}

to {
    opacity: 1;
    -moz-transform: translateY(0);        
    transform: translateY(0);        
}
}

@-ms-keyframes testim-content-in {
from {
    opacity: 0;
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

to {
    opacity: 1;
    -ms-transform: translateY(0);        
    transform: translateY(0);        
}
}

@-o-keyframes testim-content-in {
from {
    opacity: 0;
    -o-transform: translateY(100%);
    transform: translateY(100%);
}

to {
    opacity: 1;
    -o-transform: translateY(0);        
    transform: translateY(0);        
}
}

@keyframes testim-content-in {
from {
    opacity: 0;
    transform: translateY(100%);
}

to {
    opacity: 1;
    transform: translateY(0);        
}
}

@-webkit-keyframes testim-content-out {
from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

to {
    opacity: 0;
    -webkit-transform: translateY(-100%);        
    transform: translateY(-100%);        
}
}

@-moz-keyframes testim-content-out {
from {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0);
}

to {
    opacity: 0;
    -moz-transform: translateY(-100%);        
    transform: translateY(-100%);        
}
}

@-ms-keyframes testim-content-out {
from {
    opacity: 1;
    -ms-transform: translateY(0);
    transform: translateY(0);
}

to {
    opacity: 0;
    -ms-transform: translateY(-100%);        
    transform: translateY(-100%);        
}
}

@-o-keyframes testim-content-out {
from {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
}

to {
    opacity: 0;
    transform: translateY(-100%);        
    transform: translateY(-100%);        
}
}

@keyframes testim-content-out {
from {
    opacity: 1;
    transform: translateY(0);
}

to {
    opacity: 0;
    transform: translateY(-100%);        
}
}

@-webkit-keyframes testim-show {
from {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

to {
    opacity: 1;
    -webkit-transform: scale(1);       
    transform: scale(1);       
}
}

@-moz-keyframes testim-show {
from {
    opacity: 0;
    -moz-transform: scale(0);
    transform: scale(0);
}

to {
    opacity: 1;
    -moz-transform: scale(1);       
    transform: scale(1);       
}
}

@-ms-keyframes testim-show {
from {
    opacity: 0;
    -ms-transform: scale(0);
    transform: scale(0);
}

to {
    opacity: 1;
    -ms-transform: scale(1);       
    transform: scale(1);       
}
}

@-o-keyframes testim-show {
from {
    opacity: 0;
    -o-transform: scale(0);
    transform: scale(0);
}

to {
    opacity: 1;
    -o-transform: scale(1);       
    transform: scale(1);       
}
}

@keyframes testim-show {
from {
    opacity: 0;
    transform: scale(0);
}

to {
    opacity: 1;
    transform: scale(1);       
}
}

@-webkit-keyframes testim-hide {
from {
    opacity: 1;
    -webkit-transform: scale(1);       
    transform: scale(1);       
}

to {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
}

@-moz-keyframes testim-hide {
from {
    opacity: 1;
    -moz-transform: scale(1);       
    transform: scale(1);       
}

to {
    opacity: 0;
    -moz-transform: scale(0);
    transform: scale(0);
}
}

@-ms-keyframes testim-hide {
from {
    opacity: 1;
    -ms-transform: scale(1);       
    transform: scale(1);       
}

to {
    opacity: 0;
    -ms-transform: scale(0);
    transform: scale(0);
}
}

@-o-keyframes testim-hide {
from {
    opacity: 1;
    -o-transform: scale(1);       
    transform: scale(1);       
}

to {
    opacity: 0;
    -o-transform: scale(0);
    transform: scale(0);
}
}

@keyframes testim-hide {
from {
    opacity: 1;
    transform: scale(1);       
}

to {
    opacity: 0;
    transform: scale(0);
}
}

@media all and (max-width: 300px) {
body {
    font-size: 14px;
}
}

@media all and (max-width: 500px) {
.testim .arrow {
    font-size: 1.5em;
}

.testim .cont div p {
    line-height: 25px;
}

}




/*===== Vertical Timeline =====*/
#conference-timeline {
    position: relative;
    max-width: 920px;
    width: 100%;
    margin: 0 auto;
  }
  #conference-timeline .timeline-start,
  #conference-timeline .timeline-end {
    display: table;
    font-size: 15px;
    font-weight: 600;
    border-radius: 3px;
    background: var(--custom-blue);
    padding: 5px 23px;
    /* color: white; */
    max-width: 25%;
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  #conference-timeline .conference-center-line {
    position: absolute;
    width: 3px;
    height: 100%;
    top: 0;
    left: 50%;
    margin-left: -2px;
    background: var(--custom-blue);
    z-index: -1;
  }

  #conference-timeline .timeline-end:hover {
      background-color: var(--light-blue);
  }

  .timeline-article {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin: 20px 0;
  }
  .timeline-article .content-left-container,
  .timeline-article .content-right-container {
    max-width: 44%;
    width: 100%;
  }
  .timeline-article .timeline-author {
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #242424;
    text-align: right;
  }
  .timeline-article .content-left,
  .timeline-article .content-right {
    position: relative;
    width: auto;
    border: 1px solid #ddd;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,.03);
    padding: 27px 25px;
  }
  .timeline-article p {
    margin: 0 0 0 0px;
    text-align: left;
    padding: 0;
    font-weight: 400;
    color: #242424;
    font-size: 14px;
    line-height: 24px;
    position: relative;
  }
  .timeline-article p span.article-number {
    position: absolute;
    font-weight: 300;
    font-size: 44px;
    top: 10px;
    left: -60px;
    color: var(--custom-blue);
  }
  .timeline-article .content-left-container {
    float: left;
  }
  .timeline-article .content-right-container {
    float: right;
  }
  .timeline-article .content-left:before,
  .timeline-article .content-right:before{
    position: absolute;
    top: 20px;
    font-size: 23px;
    font-family: "FontAwesome";
    color: #fff;
  }
  .timeline-article .content-left:before {
    content: "\f0da";
    right: -8px;
  }
  .timeline-article .content-right:before {
    content: "\f0d9";
    left: -8px;
  }
  .timeline-article .meta-date {
    position: absolute;
    top: 0;
    left: 50%;
    width: 40px;
    height: 40px;
    padding-top: 10px;
    margin-left: -20px;
    color: #fff;
    border-radius: 100%;
    background: var(--custom-blue);
  }
  .timeline-article .meta-date .date,
  .timeline-article .meta-date .month {
    display: block;
    text-align: center;
    font-weight: 900;
  }
  .timeline-article .meta-date .date {
    font-size: 30px;
    line-height: 40px;
  }
  .timeline-article .meta-date .month {
    font-size: 18px;
    line-height: 10px;
  }

  .timeline-article .meta-date i {
    font-size: 23px;
  }
  /*===== // Vertical Timeline =====*/
  
  /*===== Resonsive Vertical Timeline =====*/
  @media only screen and (max-width: 830px) {
    #conference-timeline .timeline-start,
    #conference-timeline .timeline-end {
      margin: 0;
    }
    #conference-timeline .conference-center-line {
      margin-left: 0;
      left: 50px;
    }
    .timeline-article .meta-date {
      margin-left: 0;
      left: 30px;
    }
    .timeline-article .content-left-container,
    .timeline-article .content-right-container {
      max-width: 100%;
      width: auto;
      float: none;
      margin-left: 110px;
      min-height: 53px;
    }
    .timeline-article .content-left-container {
      margin-bottom: 20px;
    }
    .timeline-article .content-left,
    .timeline-article .content-right {
      padding: 10px 25px;
      min-height: 65px;
    }
    .timeline-article .content-left:before {
      content: "\f0d9";
      right: auto;
      left: -8px;
    }
    .timeline-article .content-right:before {
      display: none;
    }
  }
  @media only screen and (max-width: 400px) {
    .timeline-article p {
      margin: 0;
    }
    .timeline-article p span.article-number {
      display: none;
    }
  }
  @media (max-width: 600px) {
    #conference-timeline .timeline-end {
        width: 50vw;
    }
  }
  /*===== // Resonsive Vertical Timeline =====*/

.custom-background-color {
    background: #f1f7f9;
}


/* .performance-gallery-screen {
    margin-left: auto;
    margin-right: auto;
    height: 599px;
    margin-top: 32px;
}
.performance-gallery-screen p { 
    margin-top: 215px;
    color: #ffffff;
    font-size: 18px;
    text-align: center;
} */

@media screen and (max-width:1024px) {
    .performance-gallery {
        width: 100%;
        height: 522px;
        background-size: 900px 522px;
        margin: auto;
        margin-left: auto;
        left: auto;
    }
    .performance-gallery-container {
        background-position: center 35px;
    }
    
    .performance-gallery-screen {
        height: 599px;
        /*width: 700px;*/
    }
    .screenshot1, .screenshot2, .screenshot3, .screenshot4, .screenshot5 {
        width: 700px;
        height: 410px;
        background-size: 700px 410px;
    }
}

@media screen and (max-width:736px) {
    .performance-gallery {
        height: 208px;
        background-size: 349px 208px;
    }
    .performance-gallery-container {
        background-position: center 44px;
        background-size: 1003px 316px;
        padding-bottom: 150px;
    }
    
    .performance-gallery-screen {
        height: 166px;
        margin-top: 15px;
    }
     .performance-gallery-screen p {
        margin-top: 130px;
         padding-left: 6.25%;
        padding-right: 6.25%;
    }
   .screenshot1, .screenshot2, .screenshot3, .screenshot4, .screenshot5 {
        width: 256px;
        height: 166px;
        background-size: 256px 166px;
    }
    .tabnav {
        max-width: 100%;
        margin-top: 30px;
        margin-left: 6.25%;
        margin-right: 6.25%;
        justify-content: left;
        overflow-x: scroll;
        overflow-y: hidden;
        padding-left:10px;
    }
    .tabnav div { padding-left: 40px;}
    .tabnav div h4 { border-bottom: 0}
    .tabnav div.active h4 { border-bottom: 0}
}

svg {
    width: 50px;
}

.animation path {
    fill: transparent;
    stroke-width: 10;
    stroke: #39bcd3;
    stroke-dasharray: 1950;
    stroke-dashoffset: 0;
    animation: load 3s linear forwards;
}

@keyframes load
{
    0% {
        stroke-dashoffset: 0;
    }

    40% {
        stroke-dashoffset: 1950;
    }

    80% {
        stroke-dashoffset: 3900;
        fill: transparent;
    }

    100% {
        stroke-dashoffset: 3900;
        fill: #39bcd3;
    }
}

.custom-row {
    display: grid;
    grid-template-rows: repeat(2,1fr);
}

.right-side div {
    text-align: right;
    padding-right: 1rem;
}

.left-side div {
    text-align: left;
    padding-left: 1rem;
}

.height-200 {
    height: 150px;
}

.height-250 {
    height: 200px;
}

.grid-three-column {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
}

.left-side {
    border-left: 6px solid #3ba9ef;
}

.right-side {
    border-right: 6px solid #3ba9ef;
}

.middle-illustration {
    position: relative;
}

.middle-illustration img {
    max-height: 100%;
    max-width: 100%;
    width: 500px;
    height: auto;
    /* position: absolute; */
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.custom-blue-background {
    background-color: #ECF5F7;
}

.circular-logo {
    object-fit: contain;
    width: 50px;
}

.custom-blue-color {
    color: var(--custom-blue);
}

.icon img{
    object-fit: contain;
    width: 20px;
    margin-top: .5rem;
} 

.illustration-grid div img {
    object-fit: contain;
    width: 300px;
}

.home-page-card  {
    position: relative;
}

.home-page-card .card-link {
    position: absolute;
    bottom: 0;
    right: 50%;
    margin-bottom: 20px;
    margin-top: 20px;
}

.custom-nav-link {
    background-color: var(--custom-blue);
    border-radius: 4px;
    color: white;
}

.custom-nav-link:hover {
    background-color: var(--light-blue);
    border-radius: 4px;
    color: white;
    cursor: pointer;
}

.timeline-end a:hover {
    color: white;
}

.pointer {
    cursor: pointer;
}

.under-construction-illustration img {
    width: 500px;
}

.custom-input {
    height: 40px;
    border: 2px solid var(--light-blue);
    margin-bottom: 1rem;
    border-radius: 3px;
    font-weight: 600;
    padding-left: 3px;
}

.larger-custom-input {
    height: 40px;
    border: 2px solid var(--light-blue);
    margin-bottom: 1rem;
    border-radius: 3px;
    font-weight: 600;
    width: 100%;
    padding-left: 3px;
}

.textarea {
    height: 100px;
    border: 1px solid var(--light-blue);
    margin-top: 1rem;
}

.padding-left {
    padding-left: 29%;
}

@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-10px);
	}
	100% {
		transform: translatey(0px);
	}
}

.floating-image {
    transform: translatey(0px);
	animation: float 2s ease-in-out infinite;
    margin-top: 1.5rem;
}

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

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

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

@media (max-width: 700px) {
    .left-align {
        text-align: center;
    }
    .right-align {
        text-align: center;
    }
}

.error {
    font-size: 13px;
    color: red;
}

@media (max-width: 500px) {
    .middle-illustration img {
        display: none;
    }
    .custom-input {
        width: 100%;
    }
    .padding-left {
        padding-left: 0%;
    }
    .padding-left-demo {
        padding-left: 0%;
    }
}

#modal-2-content {
    height: 380px;
}

.small-logo img{
    width: 70px;
}

.section-header {
    margin-bottom: 16rem;
}

.animation {
    position: relative;
    bottom: 11rem;
}

.nav-padding {
    padding-left: 30px;
}

.caption {
    color: var(--custom-blue);
    position: relative;
    top: 4rem;
    margin-top: 1rem;
}

.padding-bottom {
    padding-bottom: 100px;
}

#sticky {
    position: sticky;
    top: 0;
}


.absolute {
    position: absolute;
    top: 0;
}

.hide {
    display: none;
}

footer {
    border-top: 1px solid #ede9ee;
    margin-top: 1rem;
}

.request-modal__content {
    height: 80vh;
}

#success-message, #success-message-demo {
    color: #3a3a3a;
    font-size: 2rem;
    margin: 10rem 0;
}

#success-message i {
    color: #16c79a;
}

#success-message-demo i {
    color: #16c79a;
}

.loader {
    border: 3px solid #f3f3f3; /* Light grey */
    border-top: 3px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
    margin: auto;
    margin-bottom: 10px;
}

.loader-demo {
    border: 3px solid #f3f3f3; /* Light grey */
    border-top: 3px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
    margin: auto;
    margin-bottom: 10px;
}
  
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.padding-left-demo {
    padding-left: 27%;
}

.mobile-grid {
    display: none;
}



@media (max-width: 500px) {
    .padding-left-demo {
        padding-left: 0%;
    }
    #conference-timeline {
        margin-top: 4rem;
    }
    .landing-page-image {
        display: none;
    }
    .mobile-grid {
        display: grid;
        grid-template-rows: repeat(2,1fr);
        grid-gap: 1rem;
    }
    .description-grid {
        display: none;
    }
    #login-button {
        padding-top: 13%;
    }
    .size__mobile {
        font-size: 25px;
    }
    .description-image {
        margin: auto;
    }
    #desctiption__header {
        margin-bottom: 2rem;
    }
    .space-right {
        margin-right: 0;
    }
}

.slider-image-margin {
    margin-bottom: 2rem;
}

.dropdown {
  position: relative;
  display: inline-block;
  width: fit-content;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 50px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 5px;
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
    background: none;
    color: black;
    font-size: 12px;
}

.dropdown-content .active {
    color: var(--light-blue);
}

.description-icon svg {
    width: 40px;
}

.custom-width {
    width: 90%;
}

.custom-margin-bottom {
    margin-bottom: 3rem;
}

.logo-slider{
    text-align: center;
    display: flex !important;
    justify-content: center;
    height: 250px !important;
}

.logo-slider-img{
    margin: auto;
    padding: 30px;
    max-height: 250px;
    /* transition-duration: 200ms;
    filter: grayscale(100%);
    opacity: .33; */
}
/* .logo-slider > img:hover{
    filter: unset;
    opacity: 1;
} */

.logo-slider-img:focus {
    outline: unset;
}

.slick-track{
    display: flex;
    align-items: center;
}