@charset "UTF-8";
:root {
    --theme-primary:#01095B
}
.blob-wrapper {
    position:relative;
    padding:12px;
    margin:36px auto;
    z-index:0
}
@media only screen and (min-width:640px) {
    .blob-wrapper {
        padding:36px
    }
}
.blob-wrapper--narrow-sides {
    padding:12px 6px
}
@media only screen and (min-width:640px) {
    .blob-wrapper--narrow-sides {
        padding:36px 18px
    }
}
.blob-wrapper--thick-height {
    padding:24px 12px
}
@media only screen and (min-width:640px) {
    .blob-wrapper--thick-height {
        padding:48px 36px
    }
}
@media only screen and (min-width:960px) {
    .blob-wrapper--thick-height {
        padding:60px 36px
    }
}
.blob-wrapper--hide-background {
    padding:0
}
.blob-wrapper--hide-background .blob-wrapper__contents {
    max-width:none
}
.blob-wrapper--collapse-top {
    margin-top:0
}
.blob-wrapper--collapse-bottom {
    margin-bottom:0
}
.blob-wrapper--has-video {
    max-width:816px
}
.blob-wrapper__contents--card {
    background:#fff;
    border-radius:2px;
    padding:24px;
    max-width:480px;
    margin:0 auto;
    color:rgba(0,0,0,.9);
    -webkit-box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 5px 8px 0 rgba(0,0,0,.14),0 1px 14px 0 rgba(0,0,0,.12);
    box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 5px 8px 0 rgba(0,0,0,.14),0 1px 14px 0 rgba(0,0,0,.12)
}
.blob-wrapper__contents--card p {
    color:rgba(0,0,0,.9)
}
@media only screen and (min-width:640px) {
    .blob-wrapper__contents--card {
        padding:36px
    }
}
@media only screen and (min-width:960px) {
    .blob-wrapper__contents--card {
        padding:54px
    }
}
.blob-wrapper__contents--card-sm {
    padding:12px
}
@media only screen and (min-width:640px) {
    .blob-wrapper__contents--card-sm {
        padding:24px
    }
}
@media only screen and (min-width:960px) {
    .blob-wrapper__contents--card-sm {
        padding:24px
    }
}
.blob-wrapper__contents--video {
    margin:0 auto;
    -webkit-box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 5px 8px 0 rgba(0,0,0,.14),0 1px 14px 0 rgba(0,0,0,.12);
    box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 5px 8px 0 rgba(0,0,0,.14),0 1px 14px 0 rgba(0,0,0,.12);
    padding:0;
    max-width:none
}
.blob-wrapper__contents--video+.blob-wrapper__background {
    max-width:none
}
.blob-wrapper__background {
    position:absolute;
    top:0;
    left:50%;
    z-index:-1;
    width:100%;
    height:100%;
    -webkit-transform:translateX(-50%);
    transform:translateX(-50%)
}
.blob-wrapper__background .inline-svg,
.blob-wrapper__background svg {
    width:100%;
    height:100%
}
.blob-wrapper__background .inline-svg path,
.blob-wrapper__background .inline-svg polygon,
.blob-wrapper__background svg path,
.blob-wrapper__background svg polygon {
    fill:var(--theme-primary)
}
.blob-wrapper__background--fit-height .inline-svg {
    height:100%
}
.blob-wrapper__background--flip-x {
    -webkit-transform:translateX(-50%) scale(-1,1);
    transform:translateX(-50%) scale(-1,1)
}
.blob-wrapper__background--flip-y {
    -webkit-transform:translateX(-50%) scale(1,-1);
    transform:translateX(-50%) scale(1,-1)
}
.blob-wrapper__background--flip-xy {
    -webkit-transform:translateX(-50%) scale(-1,-1);
    transform:translateX(-50%) scale(-1,-1)
}
.integrations__card-container {
    position:relative;
    margin-bottom:24px
}
.integrations__card-container:after {
    content:"";
    display:block;
    padding-bottom:100%
}
.integrations__card {
    position:absolute;
    width:100%;
    height:100%;
    background:#fff;
    border:1px solid rgba(0,0,0,.12);
    border-radius:2px;
    text-decoration:none;
    -webkit-transition:-webkit-box-shadow .2s ease;
    transition:-webkit-box-shadow .2s ease;
    transition:box-shadow .2s ease;
    transition:box-shadow .2s ease,-webkit-box-shadow .2s ease;
    padding:12px;
    opacity:0;
    -webkit-transform:scale(.5);
    transform:scale(.5);
    -webkit-transition:all .2s ease;
    transition:all .2s ease
}
.integrations__card--hoverable {
    -webkit-box-shadow:0 1px 5px 0 rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.12);
    box-shadow:0 1px 5px 0 rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.12)
}
.integrations__card--hoverable:focus,
.integrations__card--hoverable:hover {
    color:rgba(0,0,0,.9);
    -webkit-box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 5px 8px 0 rgba(0,0,0,.14),0 1px 14px 0 rgba(0,0,0,.12);
    box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 5px 8px 0 rgba(0,0,0,.14),0 1px 14px 0 rgba(0,0,0,.12)
}
.integrations__card--hoverable:focus .integrations__card-name,
.integrations__card--hoverable:hover .integrations__card-name {
    opacity:1
}
.integrations__card--active {
    opacity:1;
    -webkit-transform:scale(1);
    transform:scale(1)
}
.integrations__card-contents {
    width:100%;
    height:100%;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    -webkit-box-orient:horizontal;
    -webkit-box-direction:normal;
    -ms-flex-flow:row wrap;
    flex-flow:row wrap;
    position:relative
}
.integrations__card-image {
    width:100%;
    height:100%;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center
}
.integrations__card-image picture {
    width:100%;
    height:100%;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center
}
.integrations__card-image img {
    max-width:100%;
    max-height:35%;
    -o-object-fit:contain;
    object-fit:contain;
    -o-object-position:center;
    object-position:center
}
.integrations__card-name {
    position:absolute;
    bottom:0;
    font-size:.833em;
    line-height:1;
    width:100%;
    text-align:center;
    -webkit-transition:.3s ease opacity;
    transition:.3s ease opacity
}
@media only screen and (min-width:960px) {
    .integrations__card-name {
        opacity:1
    }
}
.integrations__card-coming-soon {
    background:#ffda24;
    position:absolute;
    top:0;
    font-size:.694em;
    padding:2px 11px 1px;
    border-radius:500px;
    font-weight:600
}
.logo-bar {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    -webkit-box-orient:horizontal;
    -webkit-box-direction:normal;
    -ms-flex-flow:row wrap;
    flex-flow:row wrap
}
.logo-bar__logo {
    padding:6px;
    width:50%;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center
}
@media only screen and (min-width:640px) {
    .logo-bar__logo {
        width:33.3%
    }
}
@media only screen and (min-width:960px) {
    .logo-bar__logo {
        width:20%
    }
}
.logo-bar__logo-img {
    height:70px;
    width:180px;
    -o-object-fit:contain;
    object-fit:contain
}
.author-byline {
    color:rgba(0,0,0,.6);
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    -ms-flex-line-pack:center;
    align-content:center;
    width:100%;
    padding:12px 0
}
.author-byline__name {
    color:rgba(0,0,0,.9);
    margin:0;
    font-weight:600
}
.author-byline__title {
    margin:0;
    color:rgba(0,0,0,.9);
    font-size:.833em
}
.author-byline__biography {
    margin:0;
    font-size:.833em
}
.author-byline__headshot {
    -webkit-box-flex:1;
    -ms-flex:1 0 70px;
    flex:1 0 70px;
    margin-right:18px;
    max-width:70px
}
.author-byline__headshot-img {
    border-radius:50%
}
.testimonial {
    margin:0;
    padding:36px 24px
}
.testimonial__author-byline {
    margin-bottom:36px;
    display:block
}
.testimonial__author-byline:last-child {
    margin-bottom:0
}
.testimonial__headshot {
    margin-bottom:36px
}
.testimonial__headshot img {
    border-radius:50%;
    width:72px
}
.testimonial__intro {
    font-weight:600;
    color:rgba(0,0,0,.9);
    margin-top:0;
    margin-bottom:36px;
    font-size:.833em
}
.testimonial__contents .h1,
.testimonial__contents .h2,
.testimonial__contents .h3,
.testimonial__contents .h4,
.testimonial__contents .h5,
.testimonial__contents .h6,
.testimonial__contents h1,
.testimonial__contents h2,
.testimonial__contents h3,
.testimonial__contents h4,
.testimonial__contents h5,
.testimonial__contents h6 {
    line-height:1.406
}
.testimonial__footer {
    padding-left:50px;
    position:relative
}
.testimonial__footer--sr-only {
    position:absolute;
    width:1px;
    height:1px;
    margin:-1px;
    padding:0;
    overflow:hidden;
    clip:rect(0,0,0,0);
    border:0
}
.testimonial__author {
    font-style:normal;
    font-weight:600
}
.testimonial__author:before {
    content:"";
    width:42px;
    height:1px;
    background:rgba(0,0,0,.9);
    position:absolute;
    left:0;
    top:9px
}
.testimonial__author-byline:before {
    content:none
}
.testimonial__from {
    color:rgba(0,0,0,.6);
    font-weight:400
}
.testimonial__author-title {
    display:block
}
.testimonial__logo {
    margin-top:36px
}
.testimonial__logo img {
    -o-object-fit:contain;
    object-fit:contain;
    -o-object-position:center;
    object-position:center;
    height:60px;
    width:240px
}
.testimonial--centered .testimonial__logo img {
    margin-left:auto;
    margin-right:auto
}
.testimonial--centered {
    text-align:center
}
.testimonial--centered .testimonial__footer {
    padding-left:0
}
.testimonial--centered .author-byline {
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
    text-align:left;
    font-style:normal
}
.testimonial-card {
    margin-left:auto;
    margin-right:auto;
    position:relative;
    max-width:432px;
    height:100%;
    padding:24px
}
.testimonial-card--full-width {
    max-width:none;
    padding:0
}
.testimonial-card--full-width .testimonial-card__foreground {
    width:100%;
    max-width:none
}
.testimonial-card__foreground {
    background:#fff;
    border:1px solid rgba(0,0,0,.12);
    border-radius:2px;
    max-width:384px;
    height:100%
}
.testimonial-card__background {
    position:absolute;
    top:0;
    left:0;
    z-index:-1;
    width:100%;
    height:100%
}
.testimonial-card__background .inline-svg {
    height:100%
}
.testimonial-card__background svg {
    width:100%;
    height:100%;
    fill:#f224f2
}
.testimonial-card__background--navy svg {
    fill:#01095b
}
.testimonial-card__background--flip-horizontal {
    -webkit-transform:scale(-1,1);
    transform:scale(-1,1)
}
.testimonial-card__background--flip-vertical {
    -webkit-transform:scale(1,-1);
    transform:scale(1,-1)
}
.testimonial-card__contents {
    padding:24px;
    text-align:center;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
    -ms-flex-flow:column nowrap;
    flex-flow:column nowrap;
    height:100%
}
@media only screen and (min-width:640px) {
    .testimonial-card__contents {
        font-size:.833em
    }
}
@media only screen and (min-width:960px) {
    .testimonial-card__contents {
        font-size:1em
    }
}
.testimonial-card__headshot {
    background:#f2f2f2;
    width:50px;
    height:50px;
    border-radius:50%;
    border:1px solid rgba(0,0,0,.12);
    color:rgba(0,0,0,.6);
    font-family:"Styrene A",Tahoma,"Helvetica Neue",sans-serif;
    font-weight:400;
    font-size:1em;
    line-height:1;
    margin:0 auto 12px;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    overflow:hidden
}
.testimonial-card__headshot img {
    border:none
}
.testimonial-card__headline {
    margin:12px 0!important
}
.testimonial-card__body {
    margin-top:auto
}
.testimonial-card__byline {
    font-weight:600;
    font-size:.833em
}
.slick-slider {
    position:relative;
    display:block;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
    -webkit-touch-callout:none;
    -khtml-user-select:none;
    -ms-touch-action:pan-y;
    touch-action:pan-y;
    -webkit-tap-highlight-color:transparent
}
.slick-list {
    position:relative;
    display:block;
    overflow:hidden;
    margin:0;
    padding:0
}
.slick-list:focus {
    outline:0
}
.slick-list.dragging {
    cursor:pointer;
    cursor:hand
}
.slick-slider .slick-list,
.slick-slider .slick-track {
    -webkit-transform:translate3d(0,0,0);
    transform:translate3d(0,0,0)
}
.slick-track {
    position:relative;
    top:0;
    left:0;
    display:block;
    margin-left:auto;
    margin-right:auto
}
.slick-track:after,
.slick-track:before {
    display:table;
    content:''
}
.slick-track:after {
    clear:both
}
.slick-loading .slick-track {
    visibility:hidden
}
.slick-slide {
    display:none;
    float:left;
    height:100%;
    min-height:1px
}
[dir=rtl] .slick-slide {
    float:right
}
.slick-slide img {
    display:block
}
.slick-slide.slick-loading img {
    display:none
}
.slick-slide.dragging img {
    pointer-events:none
}
.slick-initialized .slick-slide {
    display:block
}
.slick-loading .slick-slide {
    visibility:hidden
}
.slick-vertical .slick-slide {
    display:block;
    height:auto;
    border:1px solid transparent
}
.slick-arrow.slick-hidden {
    display:none
}
.slick-loading .slick-list {
    background:#fff center center no-repeat
}
.slick-next,
.slick-prev {
    font-size:0;
    line-height:0;
    position:absolute;
    top:50%;
    display:block;
    width:20px;
    height:20px;
    padding:0;
    -webkit-transform:translate(0,-50%);
    transform:translate(0,-50%);
    cursor:pointer;
    color:transparent;
    border:none;
    outline:0;
    background:0 0
}
.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
    color:transparent;
    outline:0;
    background:0 0
}
.slick-next:focus:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-prev:hover:before {
    opacity:1
}
.slick-next.slick-disabled:before,
.slick-prev.slick-disabled:before {
    opacity:.25
}
.slick-next:before,
.slick-prev:before {
    font-family:"Material Design Icons";
    font-size:24px;
    line-height:1;
    opacity:.75;
    color:#fff;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale
}
.slick-prev {
    left:-25px
}
[dir=rtl] .slick-prev {
    right:-25px;
    left:auto
}
.slick-prev:before {
    content:"\F04D"
}
[dir=rtl] .slick-prev:before {
    content:"\F054"
}
.slick-next {
    right:-25px
}
[dir=rtl] .slick-next {
    right:auto;
    left:-25px
}
.slick-next:before {
    content:"\F054"
}
[dir=rtl] .slick-next:before {
    content:"\F04D"
}
.slick-dotted.slick-slider {
    margin-bottom:30px
}
.slick-dots {
    position:absolute;
    bottom:-25px;
    display:block;
    width:100%;
    padding:0;
    margin:0;
    list-style:none;
    text-align:center
}
.slick-dots li {
    position:relative;
    display:inline-block;
    width:20px;
    height:20px;
    margin:0 5px;
    padding:0;
    cursor:pointer
}
.slick-dots li button {
    font-size:0;
    line-height:0;
    display:block;
    width:20px;
    height:20px;
    padding:5px;
    cursor:pointer;
    color:transparent;
    border:0;
    outline:0;
    background:0 0
}
.slick-dots li button:focus,
.slick-dots li button:hover {
    outline:0
}
.slick-dots li button:focus:before,
.slick-dots li button:hover:before {
    opacity:1
}
.slick-dots li button:before {
    font-family:'Material Design Icons';
    font-size:12px;
    line-height:20px;
    position:absolute;
    top:0;
    left:0;
    width:20px;
    height:20px;
    content:'\F12F';
    text-align:center;
    opacity:.25;
    color:#000;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale
}
.slick-dots li.slick-active button:before {
    opacity:.75;
    color:#000
}
.homepage--challenger {
    display:none
}
.homepage--challenger .page-section--hero .page-section__container {
    background:0 0
}
.homepage--challenger .page-section--triplet .page-section--icon {
    margin-bottom:24px
}
.page-section--hero {
    padding-top:0
}
.page-section--hero .page-section__title-wrapper {
    font-size:85%
}
.page-section--revenue-ticker {
    --theme-primary:#01095B;
    color:#fff;
    overflow:hidden
}
.page-section--revenue-ticker .blob-wrapper__background {
    background-color:var(--theme-primary)
}
@media only screen and (min-width:640px) {
    .page-section--revenue-ticker .blob-wrapper__background {
        background-color:transparent
    }
}
.page-section--revenue-ticker .blob-wrapper__background:after,
.page-section--revenue-ticker .blob-wrapper__background:before {
    content:none;
    position:absolute;
    z-index:-1;
    width:300px;
    height:350px;
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center
}
.page-section--revenue-ticker .blob-wrapper__background:before {
    bottom:-20%;
    left:-8%;
    -webkit-transform:rotate(-15deg);
    transform:rotate(-15deg);
    background-image:url(/static/img/public/pages/index/data-driven-blob.jpg)
}
@media only screen and (min-width:960px) {
    .page-section--revenue-ticker .blob-wrapper__background:before {
        content:""
    }
}
.page-section--revenue-ticker .blob-wrapper__background:after {
    top:-20%;
    background-image:url(/static/img/public/pages/index/store-data-blob.jpg)
}
@media only screen and (min-width:640px) {
    .page-section--revenue-ticker .blob-wrapper__background:after {
        content:"";
        right:22%;
        height:370px
    }
}
@media only screen and (min-width:960px) {
    .page-section--revenue-ticker .blob-wrapper__background:after {
        right:-8%;
        height:350px
    }
}
.page-section--why-drip .offset-blob {
    position:relative
}
.page-section--why-drip .offset-blob:after {
    content:none;
    position:absolute;
    top:30%;
    left:-15%;
    z-index:-1;
    width:80%;
    height:100%;
    background-image:url(/static/img/public/pages/index/why-drip-blob.jpg);
    background-size:100%;
    background-repeat:no-repeat;
    background-position:center
}
@media only screen and (min-width:640px) {
    .page-section--why-drip .offset-blob:after {
        content:""
    }
}
.page-section--feature-module {
    --theme-primary:#F2F2F2
}
.page-section--feature-module .blob-wrapper__background {
    background-color:var(--theme-primary)
}
@media only screen and (min-width:960px) {
    .page-section--feature-module .blob-wrapper__background {
        background-color:transparent
    }
}
.page-section--feature-module .slick-slide:focus {
    outline:0
}
.features-module__header {
    font-size:1.728em;
    margin-bottom:12px
}
.features-module__dropdowns-container {
    max-height:400px;
    overflow:hidden
}
.features-module__dropdown {
    border-bottom:1px solid rgba(255,255,255,.9);
    padding:18px 0
}
.features-module__dropdown:focus {
    -webkit-box-shadow:0 0 0 3px rgba(242,36,242,.5);
    box-shadow:0 0 0 3px rgba(242,36,242,.5)
}
.features-module__dropdown--open .features-module__dropdown-contents {
    max-height:150px;
    overflow:auto;
    -webkit-animation:dropdown-hide-scroll .3s backwards;
    animation:dropdown-hide-scroll .3s backwards;
    display:block
}
@-webkit-keyframes dropdown-hide-scroll {
    from,
    to {
        overflow:hidden
    }
}
@keyframes dropdown-hide-scroll {
    from,
    to {
        overflow:hidden
    }
}
.features-module__dropdown-header {
    font-size:1.2em;
    font-weight:600;
    cursor:pointer;
    margin:0;
    -webkit-transition:color .2s ease;
    transition:color .2s ease;
    text-decoration:none
}
.features-module__dropdown-header:hover {
    color:#cd1ecd
}
.features-module__dropdown-contents {
    max-height:0;
    overflow:hidden;
    -webkit-transition:max-height .3s ease-in-out;
    transition:max-height .3s ease-in-out;
    display:none
}
@media screen and (prefers-reduced-motion:reduce) {
    .features-module__dropdown-contents {
        -webkit-transition:none;
        transition:none
    }
}
.features-module__dropdown-description {
    color:rgba(0,0,0,.6);
    margin:12px 0
}
.integrations__block {
    background-color:#24f28c;
    width:100%;
    overflow:hidden;
    position:relative
}
.integrations__block:after {
    content:"";
    display:block;
    padding-bottom:75%
}
.integrations__container {
    position:absolute;
    width:100%;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:horizontal;
    -webkit-box-direction:normal;
    -ms-flex-direction:row;
    flex-direction:row;
    -ms-flex-pack:distribute;
    justify-content:space-around;
    padding:0 12px;
    -webkit-animation:scrollIntegrations linear infinite;
    animation:scrollIntegrations linear infinite;
    -webkit-animation-duration:40s;
    animation-duration:40s
}
@media only screen and (min-width:960px) {
    .integrations__container {
        padding:0 50px
    }
}
@-webkit-keyframes scrollIntegrations {
    0% {
        -webkit-transform:translateY(0);
        transform:translateY(0)
    }
    to {
        -webkit-transform:translateY(-50%);
        transform:translateY(-50%)
    }
}
@keyframes scrollIntegrations {
    0% {
        -webkit-transform:translateY(0);
        transform:translateY(0)
    }
    to {
        -webkit-transform:translateY(-50%);
        transform:translateY(-50%)
    }
}
@media screen and (prefers-reduced-motion:reduce) {
    .integrations__container {
        -webkit-animation:none;
        animation:none;
        -webkit-transform:translateY(1%);
        transform:translateY(1%)
    }
}
.integrations__container:hover {
    -webkit-animation-play-state:paused;
    animation-play-state:paused
}
.integrations__column {
    -webkit-box-flex:33%;
    -ms-flex:33%;
    flex:33%
}
.integrations__card-container {
    -webkit-box-flex:0;
    -ms-flex:0 0 100%;
    flex:0 0 100%;
    padding:0 12px
}
.integrations__card {
    width:calc(100% - 24px)
}
.integrations__card-name {
    display:none;
    opacity:0
}
@media only screen and (min-width:960px) {
    .integrations__card-name {
        display:block
    }
}
.page-section--blob-01 {
    overflow:hidden
}
.page-section--blob-01 .img-wrapper {
    position:relative
}
.page-section--blob-01 .img-wrapper:after {
    content:none;
    position:absolute;
    top:-20%;
    left:65%;
    z-index:-1;
    width:55%;
    height:100%;
    background-image:url(/static/img/public/pages/index/page-section--blob-01.jpg);
    background-size:100%;
    background-repeat:no-repeat;
    background-position:center
}
@media only screen and (min-width:640px) {
    .page-section--blob-01 .img-wrapper:after {
        content:""
    }
}
.page-section--blob-02 {
    overflow:hidden
}
.page-section--blob-02 .img-wrapper {
    position:relative
}
.page-section--blob-02 .img-wrapper:after {
    content:none;
    position:absolute;
    top:30%;
    left:-15%;
    z-index:-1;
    width:45%;
    height:100%;
    background-image:url(/static/img/public/pages/index/page-section--blob-02.jpg);
    background-size:100%;
    background-repeat:no-repeat;
    background-position:center
}
@media only screen and (min-width:640px) {
    .page-section--blob-02 .img-wrapper:after {
        content:""
    }
}
.page-section--case-studies-module {
    --theme-primary:#F2F2F2
}
.page-section--case-studies-module .blob-wrapper__background {
    background-color:var(--theme-primary)
}
@media only screen and (min-width:960px) {
    .page-section--case-studies-module .blob-wrapper__background {
        background-color:transparent
    }
}
.page-section--case-studies-module .testimonial {
    padding-left:0;
    padding-right:0
}
.page-section--case-studies-module .slick-slide:focus {
    outline:0
}
.page-section--case-studies-module .slick-dots {
    position:relative;
    text-align:left;
    bottom:0
}
.page-section--case-studies-module .slick-dots li button {
    border-radius:50%
}
.page-section--case-studies-module .slick-dots li button:before {
    font-size:30px;
    opacity:1;
    content:"○";
    width:20px;
    line-height:11px;
    -webkit-transition:color .2s ease;
    transition:color .2s ease
}
.page-section--case-studies-module .slick-dots li button:hover:before {
    color:#cd1ecd
}
.page-section--case-studies-module .slick-dots li button:focus:before {
    color:#cd1ecd
}
.page-section--case-studies-module .slick-dots li.slick-active button:before {
    content:"●"
}
.case-study__link-slides-container {
    width:calc(100% - 108px)
}
.case-study__footer {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    -webkit-box-orient:horizontal;
    -webkit-box-direction:normal;
    -ms-flex-flow:row nowrap;
    flex-flow:row nowrap;
    width:100%
}
.case-study__footer-arrows {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    margin-right:12px
}
.case-study__footer-arrows .btn {
    margin:2px
}
.page-section--cta .page-section__paragraph {
    display:none
}
