/*!
 * Poppins Font Metric Properties
 */
:root {
    --font: 'Poppins', sans-serif;
    --font-light: 300;
    --font-regular: 400;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 900;
    --section-spacing: 24;
    --headline-spacing: 24;
    --line-height: 1.6;
    --text-color: #373737;
    --link-color: #01a0c6;
    --link-hover-color: #01738f;
    --dark-bg: #04041f;
    --gray-bg: #f4f4f4;
    --paragraph-spacing: 20;
}
body {
    --font-size: 15;
    font-family: var(--font);
    font-weight: var(--font-light);
    position: relative;
    overflow-x: hidden;
    background: #ffffff;
    color: var(--text-color);
    line-height: var(--line-height);
    font-size: calc(var(--font-size)*1px);
}
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-bold);
    /* font metrics */
    --fm-descender: .627;
    --fm-ascender: 1.135;
    --fm-linegap: .100;
    --fm-capitalHeight: .705;
    --distanceBottom: var(--fm-descender);
    --distanceTop: calc(var(--fm-ascender) - var(--fm-capitalHeight));
    font-size: calc(var(--font-size) * 1px);
    --computedFontSize: calc(var(--font-size) * var(--fm-capitalHeight));
    --valign: calc((var(--distanceBottom) - var(--distanceTop)) * var(--computedFontSize));
    --line-height: 1.3;
    line-height: var(--line-height);
    --text-box: var(--font-size) * var(--line-height);
    --space: calc((var(--text-box) - var(--computedFontSize)) / 2);
    margin-top: calc(var(--space) * -1px);
    margin-bottom: calc((var(--headline-spacing) - var(--space)) * 1px);
    color: var(--dark-bg);
}
h1 {
    --font-size: 48;
}
h2 {
    --font-size: 40;
}
h3 {
    --font-size: 36;
}
h4 {
    --font-size: 32;
}
h5 {
    --font-size: 24;
}
h6 {
    --font-size: 18;
}
p {
    /* font metrics */
    --fm-descender: .627;
    --fm-ascender: 1.135;
    --fm-linegap: .100;
    --fm-capitalHeight: .700;
    --distanceBottom: var(--fm-descender);
    --distanceTop: calc(var(--fm-ascender) - var(--fm-capitalHeight));
    --font-size: 15;
    font-size: calc(var(--font-size) * 1px);
    --computedFontSize: calc(var(--font-size) * var(--fm-capitalHeight));
    --valign: calc((var(--distanceBottom) - var(--distanceTop)) * var(--computedFontSize));
    line-height: var(--line-height);
    --text-box: var(--font-size) * var(--line-height);
    --space: calc((var(--text-box) - var(--computedFontSize)) / 2);
    margin-top: calc(var(--space) * -1px);
    margin-bottom: calc((var(--paragraph-spacing) - var(--space)) * 1px);
}
p:last-of-type {
    margin-bottom: calc((0 - var(--space)) * 1px);
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sep {
    margin-top: calc(var(--paragraph-spacing) * .5px);
    margin-bottom: calc(var(--paragraph-spacing) * .5px);
    height: 1px;
    width: 100%;
}
.sep-big {
    margin-top: calc(var(--paragraph-spacing) * .8px);
    margin-bottom: calc(var(--paragraph-spacing) * .8px);
    height: 1px;
    width: 100%;
}
a {
    color: var(--link-color);
}
a:hover {
    color: var(--link-hover-color);
    text-decoration: none;
}
strong {
    font-weight: var(--font-semibold);
}
.gray-bg {
    background: var(--gray-bg);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.dark-bg {
    background: var(--dark-bg);
    color: #ffffff;
}
.dark-bg h3, .dark-bg h4 {
    color: #fff;
}
.vidWrapper {
    position: relative;
}
.vidWrapper>img {
    width: 100%;
    height: auto;
}
.vidWrapper.active>img {
    opacity: 0;
}
.vidWrapper .embed-responsive:last-of-type {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}
.embed-responsive-1by1::before {
    padding-top: 100%;
}
.embed-responsive-4by5::before {
    padding-top: 125%;
}
.wrapper {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}
.border {
    margin-left: auto;
    margin-right: auto;
    height: 8px;
    width: 100px;
    border-radius: 6px;
    background: #01a0c6;
    border: none !important;
    margin-bottom: calc(var(--headline-spacing) * 1px)
}
.reversed {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
        transform: scaleX(-1);
}
.notice {
    background: #dc3232;
    font-size: 14px;
    color: #fff;
    padding: 16px 0;
    font-weight: 600;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.notice img {
    position: relative;
    top: -2px;
}
.notice a {
    background: #fff;
    color: #04041f;
    padding: 13px 20px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1;
    display: inline-block;
    text-transform: uppercase;
}
.notice a:hover {
    background: #f1a5a5;
}
/*!
 * Site Header
 */
.site-header {
    position: relative;
    color: #fff;
    padding-top: 52px;
    background: var(--dark-bg);
}
.site-header::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/standard/header-bg.png') center center;
    background-size: cover;
    opacity: 0.15;
    top: 0;
    left: 0;
}
.site-logo {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}
.site-nav .site-logo a {
    line-height: 1;
    padding: 0;
    margin-left: 42px;
}
.site-logo img {
    max-height: 26px;
    position: relative;
    top: -1px;
}
.site-nav h3, .site-nav a {
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0.3px;
    margin-bottom: 0;
    font-weight: 600;
    margin-top: 0;
}
.site-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    width: 100%;
    z-index: 22;
    top: 70px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 0;
    left: 15px;
    z-index: 1050;
}
.site-nav.onscroll, .site-nav.opened {
    background: #04041f;
}
.site-nav.onscroll {
    top: 0;
}
.site-nav>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.site-nav ul.left__menu {
    gap: 0 40px;
    display: none;
    width: 100%;
    position: fixed;
    top: 66px;
    z-index: 1050;
}
.site-nav ul.right__menu {
    padding-right: 15px;
}
.site-nav li a.signup {
    color: #fff;
    border: 1px solid #01a0c6;
    background: #01a0c6;
    border-radius: 2px;
    padding: 7px 15px;
    font-size: 13px;
}
li.has-submenu>a::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    -webkit-transform: scaleY(1) rotate(45deg);
    -ms-transform: scaleY(1) rotate(45deg);
    transform: scaleY(1) rotate(45deg);
    top: 17px;
    right: 20px;
    -webkit-transition: border-color .15s linear;
    -o-transition: border-color .15s linear;
    transition: border-color .15s linear;
}
li.has-submenu.opened>a::before {
    -webkit-transform: scaleY(-1) rotate(45deg);
    -ms-transform: scaleY(-1) rotate(45deg);
    transform: scaleY(-1) rotate(45deg);
    top: 21px;
}
li.has-submenu.active::before {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 18px;
}
ul.mega-submenu {
    background: #1e1e41;
    display: none;
}
ul.mega-submenu li {
    border-bottom: 1px dashed #353562;
    padding-left: 10px;
}
.site-nav a {
    display: block;
    padding: 10px 12px;
    position: relative;
}
.mega__submenu {
    display: none;
}
.has-submenu.opened .mega__submenu {
    display: block;
    margin: 0 15px;
}
.navTrigger {
    cursor: pointer;
    width: 18px;
    position: absolute;
    left: 15px;
    top: 24px;
    z-index: 44;
    padding: 0;
    border-radius: 4px;
}
.navTrigger i, span.close i {
    background-color: #ffffff;
    border-radius: 3px;
    display: block;
    width: 100%;
    height: 2px;
    margin: 3px 0;
}
.navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}
.navTrigger i:nth-child(2) {
    margin: 2px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}
.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}
.site-nav.opened .navTrigger i:nth-child(1), .site-nav.opened span.close i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}
.site-nav.opened .navTrigger i:nth-child(2), .site-nav.opened span.close i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
    margin: 4px 0;
}
.site-nav.opened .navTrigger i:nth-child(3), .site-nav.opened span.close i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
    display: none;
}
/* Site Hero */
.site-hero {
    text-align: center;
    padding-top: calc(var(--headline-spacing) * 1px);
    padding-bottom: 0;
}
.site-title {
    --font-size: 24;
    --fm-capitalHeight: .709;
    color: #fff;
    padding: 0 40px;
}
.site-tagline {
    font-weight: var(--font-light);
    --font-size: 15;
    --line-height: 1.667;
    color: #fff;
}
.site-hero .igVid-wrapper {
    width: 75%;
    margin: 30px auto 35px;
    position: relative;
    padding: 0;
}
.site-header .igVid-wrapper .embed-responsive {
    border-radius: 4px;
    overflow: visible;
}
.site-header .igVid-wrapper .embed-responsive::after {
    content: '';
    position: absolute;
    top: -10px;
    bottom: -10px;
    left: -10px;
    right: -10px;
    border: 1px solid #32323a;
    border-radius: 4px;
}
button.btn-modal {
    position: absolute;
    border: none;
    background: none;
    color: #9a9ab9;
    text-align: center;
    display: inline-block;
    font-size: 14px;
    padding: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -55px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
button.btn-modal::before {
    content: '';
    position: relative;
    width: 16px;
    height: 16px;
    border: 1px solid #9a9ab9;
    border-radius: 50%;
    top: 2px;
    float: left;
    margin-right: 8px;
}
button.btn-modal::after {
    content: '';
    position: absolute;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #9a9ab9;
    left: 17px;
    top: 16px;
}
.modal-content .close {
    position: absolute;
    right: -24px;
    top: 4px;
}
.modal-content .close span {
    color: #fff;
    text-shadow: none;
    font-weight: 400;
}
.site-header a.cta {
    background: #8cfe9c;
    color: #067616;
    font-weight: 700;
    -webkit-box-shadow: 4px 24px 24px #001303;
    box-shadow: 4px 24px 24px #001303;
    width: calc(75% + 20px);
    margin-bottom: 15px;
}
.site-header a.cta:hover {
    background: #1fc16b;
    color: #fff;
}
.site-header a.cta+p.small {
    display: block;
    text-align: center;
}
a.cta {
    color: #fff;
    background: #1fc16b;
    padding: 22px 30px;
    border-radius: 4px;
    line-height: 1;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
    min-width: 260px;
    text-align: center;
    display: block;
    width: 100%;
    margin: 0 auto;
    max-width: 290px;
}
/*!
 * Section
 */
header, section, #features .feature {
    position: relative;
    padding: calc(var(--section-spacing) * 1px) 0;
}
.section-title {
    text-align: center;
}
.section-title h3 {
    --font-size: 21;
    font-weight: 900;
    letter-spacing: -0.5px;
    --line-height: 1.3;
}
.section-title h4 span.yellow-highlight {
    background: #ff0;
    padding: 0 8px;
    border-radius: 60px;
    font-weight: 600;
}
.section-title h4 {
    font-weight: 400;
    --font-size: 15;
    --line-height: 1.6;
}
.section-title span.yellow-highlight span {
    position: relative;
}
.os-scrollbar-handle {
    background: var(--dark-bg) !important;
}
.os-scrollbar-track.os-scrollbar-track-off {
    background: rgb(4 4 31 / 30%) !important;
}
/*! Showcase */
.showcase-wrapper {
    width: 100%;
    padding: 0;
}
.inner__wrapper {
    width: 240%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 15px;
    padding: 0 15px 25px;
}
#showcase2 .inner__wrapper {
    width: 320%;
    padding-bottom: 25px;
}
#showcase .igVid-wrapper, #showcase2 .igVid-wrapper {
    width: 33.333%;
}
#showcase .inner__wrapper span {
    font-weight: 600;
    font-size: 15px;
    margin-top: 10px;
    display: block;
}
ul.check li {
    position: relative;
    padding-left: 20px;
}
ul.check li::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 8px;
    border-left: 3px solid #1fc16b;
    border-bottom: 3px solid #1fc16b;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 6px;
    left: 0;
}
#showcase ul.check {
    margin: 0 15px 20px;
}
#showcase ul.check li {
    margin-bottom: 8px;
    text-align: left;
}
#showcase ul.check li:last-of-type {
    margin-bottom: 0;
}
.os-scrollbar-handle {
    background: #04041f !important;
}
.os-scrollbar-track.os-scrollbar-track-off {
    background: rgb(4 4 31 / 30%) !important;
}
.os-scrollbar.os-scrollbar-horizontal {
    left: 15px !important;
    right: 15px !important;
    bottom: 0px;
}
#showcase2 .os-scrollbar {
    bottom: 0;
}
/*! Before after */
.before-inner-wrapper {
    width: 260px;
    margin: 0 auto;
}
.after-inner-wrapper {
    position: relative;
    width: 260px;
    margin: 0 auto;
}
.after-inner-wrapper .igVid-wrapper {
    position: absolute;
    top: calc(30% + 3px);
    left: calc(6% + 2px);
    right: calc(7% + 1px);
}
.vs {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: #f5f5f5;
    border-radius: 50%;
    text-align: center;
    line-height: 80px;
    font-weight: 700;
    font-size: 24px;
    color: #04041f;
    display: none;
}
.before-after .label {
    display: inline-block;
    margin: 0 0 20px;
    padding: 14px 20px;
    border-radius: 4px;
    background: #19a9cb;
    color: #fff;
    line-height: 1;
    font-weight: 600;
    font-size: 16px;
}
.before-after .before-label {
    background: #fc7373;
}
/*! Features */
#features {
    padding: 0;
}
.feature {
    text-align: center
}
.feature h5 {
    --font-size: 17;
}
.step-icon {
    display: none;
}
.illustration__wrapper {
    margin-bottom: calc(var(--headline-spacing) * 1px)
}
.smallslider {
    float: left;
    width: 160px;
    cursor: pointer;
}
.smallslider img {
    width: 64px;
    float: left;
    margin-left: 10px;
}
.smallslider img {
    margin-bottom: 10px;
}
.smallslider .slick-slide {
    box-shadow: none;
    -webkit-box-shadow: none;
    padding: 0;
    margin: 0;
    border: none;
}
.smallslider .slick-current {
    border: 2px solid #00BCD4;
}
.mockup {
    position: relative;
    max-width: 297px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    float: none;
    padding-bottom: 70px;
}
.big-slider {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
}
.big-slider .slick-slide {
    border: none;
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin: 0;
    border-radius: 0;
    width: 50%;
}
.mockup .slick-list {
    max-height: 370px;
    width: 50%;
}
.mockup .slick-dots {
    display: block;
    width: 100%;
    margin-top: 10px;
    position: relative;
    left: auto;
    bottom: auto;
}
.slideshow {
    position: relative;
    z-index: 1;
}
.mockup .slider-track {
    -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
    -o-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
}
.mockup .item {
    height: 100%;
    position: relative;
    z-index: 1;
}
.mockup .slick-list img {
    width: 100%;
    -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
    -o-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
}
.mockup .slick-list .slick-active img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
}
.mockup ul.slick-dots li {
    width: 54px;
    height: 54px;
    display: inline-block;
    margin: 0;
    cursor: pointer;
    -webkit-transition: all .15s linear;
    -o-transition: all .15s linear;
    transition: all .15s linear;
    opacity: 0.6;
    padding: 0;
}
.mockup ul.slick-dots li img {
    max-width: -webkit-fill-available;
    border: none;
}
.mockup ul.slick-dots li.slick-active, .mockup ul.slick-dots li:hover {
    -webkit-box-shadow: 0 4px 10px #c8c8c8;
            box-shadow: 0 4px 10px #c8c8c8;
    opacity: 1;
}
.mockup .slideshow.deactivate .slick-list {
    opacity: 0;
}
.animations-video {
    margin: 0 auto;
    z-index: 2;
}
.animations-video+img {
    position: relative;
    margin-top: -60px;
    z-index: 2;
    width: 75%;
}
#steps {
    text-align: center;
}
span.step-number {
    display: inline-block;
    padding: 6px 10px;
    background: #ff0;
    line-height: 1;
    margin: 0 auto calc(var(--paragraph-spacing)*1px);
    font-weight: 600;
    font-size: 16px;
}
ul.no-list {
    background: #f6e5e5;
    padding: 14px 18px;
    border: 3px solid #ff0000;
    font-weight: 600;
}
ul.no-list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 10px;
}
ul.no-list li:last-of-type {
    margin-bottom: 0;
}
ul.no-list li::before, ul.no-list li::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 3px;
    background: #ff0000;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    left: -4px;
    top: 9px;
}
ul.no-list li::after {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg)
}
.video-demo {
    position: relative;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin: 0 auto;
}
.video-inner-wrapper {
    position: absolute;
    left: 14%;
    right: 13%;
    top: 4%;
    bottom: 10%;
    border-radius: 30px;
    overflow: hidden;
}
/*! Bottom CTA */
#cta a.cta {
    width: 90%;
}
/*! Brand strips */
#brands .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -ms-flex-line-pack: center;
        align-content: center;
}
#brands .section-title h6 {
    --font-size: 14;
    --headline-spacing: 20;
}
/*! Testimonials */
.testimonials {
    padding-bottom: 46px;
}
.testimonial {
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 0;
    text-align: center;
}
.testimonial-avatar {
    width: 64px;
    height: 64px;
    display: block;
    margin: 0 auto 10px;
}
.testimonial-content {
    padding: 0;
    text-align: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    margin: 0 auto 10px;
}
.testimonial-content p {
    margin-bottom: 0;
    padding-top: 2px;
}
.testimonial-footer {
    padding: 0 20px;
    margin-bottom: 0;
}
.testimonial-footer .stars {
    margin-top: 5px;
}
.testimonial-footer span {
    display: block;
}
.testimonial-footer span.author-name {
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 15px;
    line-height: 1;
}
.testimonial-footer span.author-uri {
    font-size: 14px;
}
ul.slick-dots {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 90%;
    -ms-flex-pack: center!important;
    -webkit-box-pack: center!important;
    justify-content: center!important;
    gap: 0 10px;
    position: absolute;
    left: 5%;
    bottom: -10px;
}
ul.slick-dots li {
    margin: 0;
    height: 26px;
    margin: 0;
    padding: 0;
    opacity: 1;
}
ul.slick-dots li button {
    position: relative;
    border: none;
    background: none;
    text-indent: -999999px;
    width: 26px;
    height: 26px;
    padding: 0;
}
ul.slick-dots li button::before {
    content: '';
    position: absolute;
    width: 26px;
    height: 4px;
    background: #d0d0d0;
    top: 50%;
    margin-top: -2px;
    left: 0;
    border-radius: 2px;
}
ul.slick-dots li.slick-active button::before, ul.slick-dots li button:hover::before {
    background: #01a0c6;
}
.testimonials .slick-prev, .testimonials .slick-next {
    border: none;
    text-indent: -9999px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    position: absolute;
    bottom: 0;
    left: calc(50% + 5px);
    background: #f4f4f4;
}
.testimonials .slick-prev {
    left: calc(50% - 35px);
}
.testimonials .slick-prev::before, .testimonials .slick-next::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-left: 2px solid #03021e;
    border-bottom: 2px solid #03021e;
    top: calc(50% - 1px);
    left: calc(50% + 4px);
}
.testimonials .slick-prev::before {
    -webkit-transform: rotate(45deg) translate(-50%, -50%);
    -ms-transform: rotate(45deg) translate(-50%, -50%);
    transform: rotate(45deg) translate(-50%, -50%);
    margin-left: -8px;
    margin-top: 3px;
}
.testimonials .slick-next::before {
    -webkit-transform: rotate(-135deg) translate(50%, 50%);
    -ms-transform: rotate(-135deg) translate(50%, 50%);
    transform: rotate(-135deg) translate(50%, 50%);
    margin-left: -12px;
    margin-top: 3px;
}
/*! Faq */
.faq {
    margin: 0 auto;
    padding-top: calc(var(--headline-spacing)*1px);
}
.faq h4:hover {
    text-decoration: underline;
}
.faq {
    border-bottom: 1px solid #f3f3f3;
}
.faq:first-of-type {
    border-top: 1px solid #f3f3f3;
}
.faq h4 {
    position: relative;
    cursor: pointer;
    padding: 0 40px 0 0;
    font-weight: 700;
    --font-size: 16;
}
.faq:last-of-type {
    margin-bottom: 0;
}
.faq strong {
    font-weight: 600;
}
.answer {
    display: none;
    padding-bottom: 14px;
    position: relative;
    padding-right: 0px;
}
.answer p {
    padding-top: 1px
}
.faq_toggle {
    right: 6px;
    height: 11px;
    position: absolute;
    width: 11px;
    top: 50%;
    margin-top: -6px;
}
.faq_toggle:before {
    background: #01a0c6;
    content: " ";
    height: 11px;
    position: absolute;
    right: 4px;
    top: 0;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: -webkit-transform .2s ease-in-out;
    -o-transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
    width: 3px;
}
.faq_toggle:after {
    background: #01a0c6;
    content: " ";
    height: 3px;
    position: absolute;
    right: 0;
    top: 4px;
    width: 11px;
}
.faq_toggle.opened:before {
    background: var(--color-primary);
    content: " ";
    height: 11px;
    position: absolute;
    right: 4px;
    top: 0;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: -webkit-transform .2s ease-in-out;
    -o-transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
    width: 3px;
}
.disclaimer p {
    line-height: 1.3;
}
/*! Site Footer */
.site-footer {
    padding: calc(var(--section-spacing)*1px) 0;
    font-size: 14px;
    background: rgb(4, 4, 31);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(52%, rgba(4, 4, 31, 1)), to(rgba(25, 5, 59, 1)));
    background: -o-linear-gradient(top, rgba(4, 4, 31, 1) 52%, rgba(25, 5, 59, 1) 100%);
    background: linear-gradient(180deg, rgba(4, 4, 31, 1) 52%, rgba(25, 5, 59, 1) 100%);
    color: #fff;
}
.site-footer p {
    font-size: 14px;
}
.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.widget {
    margin-bottom: calc(var(--headline-spacing) * .8px);
}
.widget ul li {
    margin: 0 0 5px;
}
.widget .social-widget li {
    margin-bottom: 0;
}
.social-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.widget h4 {
    color: #fff;
    --font-size: 15;
    --headline-spacing: 15;
}
.widget ul li:last-of-type {
    margin-bottom: 0;
}
.site-footer a {
    color: #fff;
}
.site-footer a:hover {
    color: #01a0c6;
}
.social-widget a {
    display: block;
}
.social-widget a svg {
    width: 20px;
    margin: 0 6px 0 0;
}
.social-widget a svg path {
    fill: #ffff;
}
.social-widget {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 5px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}
.site-footer .copyright ul {
    margin-bottom: 15px;
}
.site-footer .copyright ul li {
    display: inline-block;
    margin: 0 3px;
}
hr.footer-line {
    margin: 0 0 calc(var(--headline-spacing)*0.7px);
    border-top: 1px dashed #1b1b43;
}
.copyright {
    text-align: center;
}
#bottom-cta .button-wrapper {
    background: #fff;
    padding: 24px;
    border-radius: 6px;
    color: #04041f;
    border: 1px solid #e1e1e1;
    text-align: center;
}
.button-wrapper p {
    font-weight: var(--font-semibold);
    margin-bottom: 15px;
    --font-size: 15;
}
.button-wrapper span {
    font-size: 14px;
    font-weight: 400;
    margin-top: 15px;
    display: block;
}
#bottom-cta a.cta {
    margin-bottom: 10px;
}
.video-wrapper {
    position: relative;
}
.video-wrapper .embed-responsive {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.phone-wrapper {
    position: relative;
    margin: 0 auto;
}
.embed-responsive-custom::before {
    padding-top: 167.632911%;
}
.embed-responsive.embed-responsive-custom {
    position: absolute;
    left: 7.1%;
    right: 7.1%;
    width: auto;
    top: 14.7%;
}
.icon {
    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-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.icon span {
    width: 20px;
    height: 22px;
    line-height: 0;
    font-size: 0;
}
.section-title h3 img {
    width: 1em;
    height: 1em;
    line-height: 1;
}
.flow-step {
    position: relative;
    text-align: center;
}
.flow-step span.number {
    width: 80px;
    height: 80px;
    background: #03061a;
    display: block;
    border-radius: 50%;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    line-height: 80px;
    margin: 0 auto calc(var(--headline-spacing)*1px);
}
span.highlight {
    display: inline-block;
    margin: 14px 0 0;
    padding: 15px 15px;
    background: url('../images/standard/yellow-highlight.png') repeat-y;
    background-size: 100% 100%;
    font-weight: 700;
    font-size: 14px;
}
.dark-bg span.highlight {
    font-size: 14px;
    font-style: italic;
    font-weight: 600;
    color: var(--dark-bg);
}
.embed-responsive-custom::before {
    padding-top: 167.632911%;
}
.embed-responsive.embed-responsive-custom {
    position: absolute;
    left: 7.1%;
    right: 7.1%;
    width: auto;
    top: 14.7%;
}
.phone-wrapper {
    position: relative;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
}
h5 span {
    background: #f4cf02;
}
@media (max-width: 767px) {
    #brands>.container {
        padding: 0;
    }
}
@media (min-width: 768px) {
    .site-title {
        --font-size: 36;
        --line-height: 1.2;
        padding: 0;
    }
    .site-hero {
        text-align: left;
        padding-bottom: calc(var(--headline-spacing) * 0.5px);
        padding-top: calc(var(--headline-spacing) * 1.2px);
    }
    .site-hero .igVid-wrapper {
        position: absolute;
        top: 15px;
        right: -74%;
        width: 64%;
        margin: 0;
    }
    .site-header a.cta {
        margin-top: 20px;
        margin-left: 0;
        margin-bottom: 20px;
    }
    .site-header a.cta+p.small {
        width: 290px;
        text-align: center;
    }
    .section-title h3 {
        --font-size: 26;
    }
    .inner__wrapper {
        width: 100%;
        padding-bottom: 20px;
    }
    #showcase2 .inner__wrapper {
        width: 180%
    }
    #cta a.cta {
        width: 40%;
    }
    #brands .section-title h6 {
        --font-size: 20;
    }
    #brands .slick-track {
        gap: 0 30px;
    }
    .site-footer .copyright ul li {
        margin: 0 10px;
    }
    .illustration__wrapper {
        margin-bottom: 0;
    }
    .feature {
        text-align: left;
    }
    .animations-video {
        max-width: 230px;
        margin-left: 0;
    }
    .mockup {
        max-width: 220px;
        margin-right: 0;
        padding-bottom: 0;
    }
    .animations-video+img {
        width: 50%;
        margin-top: 0;
        position: absolute;
        bottom: 10%;
        right: auto;
    }
    .mockup .slick-dots {
        position: absolute;
        bottom: 20px;
        background: #fff;
        padding: 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 65%;
        -webkit-box-pack: start !important;
            -ms-flex-pack: start !important;
                justify-content: flex-start !important;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        gap: 0;
        left: -50%;
    }
    .mockup ul.slick-dots li {
        width: calc(50% - 10px);
        height: auto;
        margin: 5px;
    }
    ul.no-list {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        margin-left: auto;
        margin-right: auto;
    }
    .vs {
        display: block;
    }
    .flow-step {
        padding-left: 96px;
        text-align: left;
        margin-bottom: 0;
    }
    .step-title {
        position: relative;
    }
    .step-title h5 {
        line-height: 1.3
    }
    .flow-step span.number {
        width: 80px;
        height: 80px;
        background: #03061a;
        position: absolute;
        border-radius: 50%;
        color: #fff;
        font-size: 1.25rem;
        font-weight: 700;
        text-align: center;
        line-height: 80px;
        top: 50%;
        margin-top: -40px;
        left: -100px;
    }
}
@media (max-width: 991px) {
    .pointingArrow {
        display: none;
    }
    .pointingArrow+h4 {
        font-size: 17px;
        margin-bottom: 10px;
        margin-top: 0;
        line-height: 1.2;
    }
    .pointingWrapper {
        padding: 20px;
        background: #effcff;
        border: 2px dashed #01a0c6;
        counter-reset: section;
    }
    .pointingText::before {
        position: absolute;
        left: -34px;
        top: 0px;
        counter-increment: section;
        content: "#" counter(section) ". ";
        font-weight: 700;
        color: #04041f;
    }
    .pointingText {
        position: relative;
        margin-left: 24px;
        margin-bottom: 5px;
    }
    .pointingText:last-of-type {
        margin-bottom: 0;
    }
}
@media (min-width: 992px) {
    #brands .section-title h6 {
        --font-size: 24;
    }
    .site-hero .igVid-wrapper {
        right: -65%;
        width: 48%;
        top: 0;
    }
    #showcase .inner__wrapper {
        width: 100%;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .pointingText {
        display: block;
    }
    .pointingText {
        position: absolute;
        width: 260px;
    }
    .pointingArrow {
        width: 160px;
        height: 60px;
        position: absolute;
    }
    .vidoeShowcase-1 {
        top: 80px;
        right: 63px;
    }
    .vidoeShowcase-2 {
        top: 10px;
        left: 90px;
    }
    .vidoeShowcase-3 {
        bottom: 110px;
        left: 52px;
    }
    .vidoeShowcase-4 {
        bottom: -10px;
        right: -10px;
    }
    .vidoeShowcase-1 .pointingArrow {
        bottom: -60px;
        left: -80px;
    }
    .vidoeShowcase-2 .pointingArrow {
        bottom: -60px;
        right: -10px;
        -webkit-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
            transform: scaleX(-1);
    }
    .vidoeShowcase-3 .pointingArrow {
        bottom: -44px;
        right: -32px;
        -webkit-transform: scaleX(-1) rotate(5deg);
        -ms-transform: scaleX(-1) rotate(5deg);
            transform: scaleX(-1) rotate(5deg);
    }
    .vidoeShowcase-4 .pointingArrow {
        top: -10px;
        left: -85%;
        -webkit-transform: scale(-1) rotate(33deg);
        -ms-transform: scale(-1) rotate(33deg);
            transform: scale(-1) rotate(33deg);
    }
    .pointingText {
        position: absolute;
        width: 230px;
    }
    .st0 {
        fill: #19a9cb;
    }
    .pointingText>span {
        font-weight: 700;
        text-transform: uppercase;
        font-size: 15px;
        color: #04041f;
        text-align: left !important;
        display: block;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    #paidAds .vidoeShowcase-1, #couponVideo .vidoeShowcase-1 {
        top: 8px;
        right: auto;
        left: 110px;
    }
    #couponVideo .vidoeShowcase-1 {
        left: 30px;
        top: 20px;
    }
    #paidAds .vidoeShowcase-2, #couponVideo .vidoeShowcase-2 {
        top: 114px;
        left: auto;
        right: 90px;
    }
    #couponVideo .vidoeShowcase-2 {
        right: 0px;
        top: 30px;
    }
    #paidAds .vidoeShowcase-3 {
        bottom: 86px;
        left: 78px;
    }
    #couponVideo .vidoeShowcase-3 {
        bottom: 60px;
        left: 30px;
    }
    #paidAds .vidoeShowcase-1 .pointingArrow {
        right: -50px;
        left: auto;
        bottom: -30px;
        -webkit-transform: scaleX(-1) rotate(10deg);
        -ms-transform: scaleX(-1) rotate(10deg);
            transform: scaleX(-1) rotate(10deg);
    }
    #couponVideo .vidoeShowcase-1 .pointingArrow {
        right: -30px;
        left: auto;
        bottom: -60px;
        -webkit-transform: scaleX(-1) rotate(10deg);
        -ms-transform: scaleX(-1) rotate(10deg);
            transform: scaleX(-1) rotate(10deg);
    }
    #paidAds .vidoeShowcase-2 .pointingArrow, #couponVideo .vidoeShowcase-2 .pointingArrow {
        left: -30px;
        right: auto;
        -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    }
    #couponVideo .vidoeShowcase-2 .pointingArrow {
        left: -70px;
    }
    #couponVideo .vidoeShowcase-4 .pointingArrow {
        -webkit-transform: scaleY(-1) rotate(24deg);
        -ms-transform: scaleY(-1) rotate(24deg);
            transform: scaleY(-1) rotate(24deg);
        left: -91px;
        top: -50px;
    }
}
@media (max-width: 1199px) {
    li.has-submenu.active ul.submenu {
        display: block;
    }
    .site-nav li {
        width: 100%;
    }
    .site-nav.opened ul.left__menu {
        height: calc(100% - 66px);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding-bottom: 40px;
        background: #04041f;
    }
    ul.secondary__menu {
        list-style: none;
        padding: 5px 0;
        margin: 0 15px 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 0 20px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: calc(100% - 30px);
        border-top: 1px dashed #1b173a;
        border-bottom: 1px dashed #1b173a;
        margin-top: 15px;
    }
    ul.secondary__menu+p {
        text-align: center;
        margin-bottom: 20px;
        margin-top: 0;
    }
    .site-nav .menu__button {
        padding: 18px 20px;
        width: calc(100% - 30px);
        margin: 0 auto;
        background: #1fc16b;
        text-align: center;
        border-radius: 4px;
        color: #001a0c;
        letter-spacing: -0.5px;
        font-size: 17px;
    }
    .brands__slider {
        margin-left: -15px;
        margin-right: -15px;
        padding: 0 15px;
    }
    .brands__slider .item img {
        height: 20px;
    }
}
@media (min-width: 1200px) {
    :root {
        --section-spacing: 70;
        --headline-spacing: 40;
        --paragraph-spacing: 35;
        --line-height: 1.8;
    }
    body {
        --font-size: 18;
    }
    p {
        --font-size: 18;
    }
    .container {
        max-width: 1180px;
    }
    .site-header {
        padding-top: 0;
    }
    .site-logo img {
        top: -2px;
    }
    .site-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        background: none;
        padding: 0 15px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        position: relative;
        border: none;
        left: 0;
        right: 0;
        width: auto;
        top: auto;
    }
    .site-nav .site-logo a {
        margin: 0;
    }
    .site-nav ul.left__menu, .site-nav ul.right__menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        position: unset;
        top: 0;
        padding: 0;
        right: 0;
    }
    .site-nav ul.left__menu {
        padding-left: 20px;
    }
    .site-nav li a.signup {
        color: #ffff;
        border: 1px solid #1fc16b;
        border-radius: 4px;
        background: #1fc16b;
    }
    .site-nav a.signup:hover {
        background: #1cb764;
        color: #fff;
        border-color: #1cb764;
    }
    .site-nav ul a {
        padding: 4px 10px;
        font-size: 13px;
    }
    .site-nav ul a:hover, .site-nav li:hover>a, .site-nav li>a.active {
        color: #1fc16b;
    }
    .site-nav ul li a:not(.signup) {
        padding-top: 26px;
        padding-bottom: 26px;
    }
    .site-nav ul li.has-submenu a {
        padding-right: 30px;
    }
    li.has-submenu>a::before {
        top: 32px;
        right: 6px;
    }
    li.has-submenu:hover>a::before {
        border-color: #11c16b;
        -webkit-transform: scaleY(-1) rotate(45deg);
        -ms-transform: scaleY(-1) rotate(45deg);
        transform: scaleY(-1) rotate(45deg);
        top: 36px;
    }
    .site-logo {
        border: none;
        padding-bottom: 0;
        margin: 0;
    }
    .site-nav .mega__submenu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: absolute;
        width: calc(100% - 30px);
        left: 15px;
        top: 70px;
        z-index: 99999;
        background: #fff;
        -webkit-box-shadow: 0 6px 4px rgb(186 186 186 / 23%);
        box-shadow: 0 6px 4px rgb(186 186 186 / 23%);
        padding: 50px 40px;
        border-radius: 4px;
        padding-bottom: 70px;
        opacity: 0;
        -webkit-transition: all .15s linear;
        -o-transition: all .15s linear;
        transition: all .15s linear;
        visibility: hidden;
    }
    .site-nav li:hover .mega__submenu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        opacity: 1;
        visibility: visible;
        top: 70px;
    }
    .site-nav li .mega__submenu a {
        color: #000;
    }
    .site-nav .submenu__left {
        -ms-flex: 0 0 30%;
        -webkit-box-flex: 0;
        flex: 0 0 30%;
        max-width: 30%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .site-nav .submenu__left span {
        color: #000;
        text-transform: uppercase;
        display: block;
        margin-bottom: 10px;
        font-size: 14px;
    }
    .site-nav .submenu__left h4 {
        font-size: 32px;
        font-weight: 700;
        letter-spacing: -0.5px;
        line-height: 1.2;
        padding-right: 50px;
    }
    .site-nav .mega__submenu .submenu__left a {
        background: #1fc16b;
        color: #fff;
        padding: 7px 18px;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        border-radius: 4px;
        margin-top: auto;
    }
    .site-nav .mega__submenu .submenu__left a:hover {
        background: #1cb764
    }
    .site-nav .submenu__right {
        -ms-flex: 0 0 70%;
        -webkit-box-flex: 0;
        flex: 0 0 70%;
        max-width: 70%;
    }
    .site-nav .submenu__right ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: 0 -10px;
    }
    .site-nav .submenu__right li {
        -ms-flex: 0 0 25%;
        -webkit-box-flex: 0;
        flex: 0 0 25%;
        max-width: 0 0 25%;
        text-align: center;
        padding: 0 10px;
        position: relative;
    }
    .site-nav .submenu__right li .embed-responsive {
        border-radius: 4px;
    }
    .site-nav .submenu__right li a:not(:last-of-type) {
        background: #01a0c6;
        color: #fff;
        border-radius: 4px;
        margin-top: 15px;
        padding: 7px 14px;
        font-weight: 400;
    }
    .site-nav .submenu__right li a:last-of-type {
        font-weight: 600;
        text-decoration: underline;
        padding: 8px 0 0;
        position: absolute;
        left: 10px;
        right: 10px;
        letter-spacing: 0;
    }
    .site-nav .submenu__right li a:last-of-type:hover {
        color: #01a0c6
    }
    .site-title {
        --font-size: 60;
        --line-height: 1.1;
    }
    .site-title span {
        color: #ff0
    }
    .site-tagline {
        --font-size: 18;
        --line-height: 2;
    }
    .site-hero .igVid-wrapper {
        right: -68%;
        width: 58%;
        top: 5px;
    }
    #brands .section-title h6 {
        --font-size: 20;
        --headline-spacing: 30;
    }
    .section-title h3 {
        --font-size: 34;
        letter-spacing: -0.5px;
    }
    .section-title h4 {
        --font-size: 18;
        font-weight: var(--font-light);
        --line-height: 1.8;
        margin-top: calc(var(--headline-spacing) * -0.5px);
    }
    .brands__slider {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        gap: 0 34px;
    }
    .os-scrollbar {
        display: none !important;
    }
    .feature h5 {
        --font-size: 24;
        --headline-spacing: 26;
    }
    .testimonials {
        padding-bottom: 30px;
    }
    .testimonial {
        padding: 0 44px;
    }
    .faq h4 {
        --font-size: 24;
    }
    .faq_toggle {
        height: 16px;
        width: 16px;
        margin-top: -6px;
    }
    .faq_toggle:before {
        height: 16px;
        right: 6px;
        top: 0;
        width: 4px;
    }
    .faq_toggle:after {
        height: 4px;
        top: 6px;
        width: 16px;
    }
    .faq_toggle.opened:before {
        height: 16px;
        right: 6px;
        width: 4px;
    }
    .answer {
        padding-bottom: 30px;
    }
    .social-widget a svg {
        width: 24px;
    }
    .site-footer p {
        font-size: 14px;
        margin-top: 0;
    }
    .site-footer ul li {
        margin: 0 0 10px;
    }
    .site-footer .copyright ul {
        float: right;
        margin-bottom: 0;
        padding: 0;
    }
    .site-footer .copyright ul li {
        margin: 0 0 0 30px;
    }
    hr.footer-line {
        margin: 30px 0;
    }
    .copyright {
        text-align: left;
    }
    .widget {
        margin-bottom: 0;
        text-align: left;
    }
    .widget ul {
        margin-bottom: 0;
    }
    .widget h4 {
        margin-bottom: 20px;
    }
    hr.footer-line {
        margin: 30px 0;
        border-top-color: #0d0d32;
    }
    #bottom-cta .button-wrapper {
        padding: calc(var(--headline-spacing)*1px)
    }
    ul.no-list {
        padding: 30px 36px;
    }
    ul.no-list li::before, ul.no-list li::after {
        top: 14px;
    }
    .feat {
        position: relative;
        padding-left: 60px;
    }
    .step-icon {
        position: absolute;
        left: 0;
        top: -10px;
        text-align: center;
        display: block;
        font-size: 30px;
    }
    .animations-video {
        max-width: 310px;
    }
    .mockup {
        max-width: 296px;
    }
    .animations-video+img {
        right: 0%;
    }
    .mockup .slick-dots {
        width: 90%;
        left: -70%;
        bottom: 30px;
        padding: 15px;
    }
    .mockup ul.slick-dots li {
        width: calc(33.333% - 10px);
    }
    #showcase .inner__wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        gap: 30px 0;
        padding: 0;
        width: 100%;
    }
    #showcase .igVid-wrapper {
        -ms-flex: 0 0 33.333%;
        -webkit-box-flex: 0;
                flex: 0 0 33.333%;
        max-width: 33.333%;
        padding: 0 15px;
    }
    #showcase2 .inner__wrapper {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        gap: 30px 0;
        padding: 0;
    }
    #showcase2 .igVid-wrapper {
        padding: 0 15px;
    }
    .pointingArrow {
        width: 160px;
        height: 60px;
        position: absolute;
    }
    .vidoeShowcase-1 {
        top: 126px;
        right: 88px;
    }
    .vidoeShowcase-2 {
        top: 60px;
        left: 100px;
    }
    .vidoeShowcase-3 {
        bottom: 141px;
        left: 80px;
    }
    .vidoeShowcase-4 {
        bottom: 2px;
        right: 50px;
    }
    .vidoeShowcase-1 .pointingArrow {
        bottom: -60px;
        left: -80px;
    }
    .vidoeShowcase-2 .pointingArrow {
        bottom: -60px;
        right: -10px;
        -webkit-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
            transform: scaleX(-1);
    }
    .vidoeShowcase-3 .pointingArrow {
        bottom: -44px;
        right: -32px;
        -webkit-transform: scaleX(-1) rotate(5deg);
        -ms-transform: scaleX(-1) rotate(5deg);
            transform: scaleX(-1) rotate(5deg);
    }
    .vidoeShowcase-4 .pointingArrow {
        top: -10px;
        left: -85%;
        -webkit-transform: scale(-1) rotate(33deg);
        -ms-transform: scale(-1) rotate(33deg);
            transform: scale(-1) rotate(33deg);
    }
    .st0 {
        fill: #19a9cb;
    }
    #paidAds .vidoeShowcase-1, #couponVideo .vidoeShowcase-1 {
        top: 8px;
        right: auto;
        left: 110px;
    }
    #couponVideo .vidoeShowcase-1 {
        left: 30px;
        top: 20px;
    }
    #paidAds .vidoeShowcase-2, #couponVideo .vidoeShowcase-2 {
        top: 114px;
        left: auto;
        right: 90px;
    }
    #couponVideo .vidoeShowcase-2 {
        right: 0px;
        top: 30px;
    }
    #paidAds .vidoeShowcase-3 {
        bottom: 86px;
        left: 78px;
    }
    #couponVideo .vidoeShowcase-3 {
        bottom: 60px;
        left: 30px;
    }
    #paidAds .vidoeShowcase-1 .pointingArrow {
        right: -50px;
        left: auto;
        bottom: -30px;
        -webkit-transform: scaleX(-1) rotate(10deg);
        -ms-transform: scaleX(-1) rotate(10deg);
            transform: scaleX(-1) rotate(10deg);
    }
    #couponVideo .vidoeShowcase-1 .pointingArrow {
        right: -30px;
        left: auto;
        bottom: -60px;
        -webkit-transform: scaleX(-1) rotate(10deg);
        -ms-transform: scaleX(-1) rotate(10deg);
            transform: scaleX(-1) rotate(10deg);
    }
    #paidAds .vidoeShowcase-2 .pointingArrow, #couponVideo .vidoeShowcase-2 .pointingArrow {
        left: -30px;
        right: auto;
        -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    }
    #couponVideo .vidoeShowcase-2 .pointingArrow {
        left: -70px;
    }
    #couponVideo .vidoeShowcase-4 .pointingArrow {
        -webkit-transform: scaleY(-1) rotate(24deg);
        -ms-transform: scaleY(-1) rotate(24deg);
            transform: scaleY(-1) rotate(24deg);
        left: -91px;
        top: -50px;
    }
}
@media (min-width: 1364px) {
    .container-fluid, .container-xl-fluid {
        max-width: 1480px;
    }
}
/*!
 * Retina Background image
 */
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and ( -o-min-device-pixel-ratio: 2/1), only screen and ( min-device-pixel-ratio: 2), only screen and ( -webkit-min-device-pixel-ratio: 2), only screen and ( min-resolution: 192dpi), only screen and ( min-resolution: 2dppx) {
    .site-footer .social-link a {
        background-image: url('../images/retina/social-icons.png');
        background-size: 100px 24px;
    }
}
/*!
 * Animation
 */
@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(45deg)
    }
}
@keyframes inM {
    50% {
        -webkit-transform: rotate(0);
                transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg)
    }
}
@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(45deg)
    }
}
@keyframes outM {
    50% {
        -webkit-transform: rotate(0);
                transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg)
    }
}
@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0) rotate(0)
    }
    50% {
        -webkit-transform: translateY(6px) rotate(0)
    }
    100% {
        -webkit-transform: translateY(6px) rotate(135deg)
    }
}
@keyframes inT {
    0% {
        -webkit-transform: translateY(0) rotate(0);
                transform: translateY(0) rotate(0)
    }
    50% {
        -webkit-transform: translateY(6px) rotate(0);
                transform: translateY(6px) rotate(0)
    }
    100% {
        -webkit-transform: translateY(6px) rotate(135deg);
                transform: translateY(6px) rotate(135deg)
    }
}
@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0) rotate(0)
    }
    50% {
        -webkit-transform: translateY(6px) rotate(0)
    }
    100% {
        -webkit-transform: translateY(6px) rotate(135deg)
    }
}
@keyframes outT {
    0% {
        -webkit-transform: translateY(0) rotate(0);
                transform: translateY(0) rotate(0)
    }
    50% {
        -webkit-transform: translateY(6px) rotate(0);
                transform: translateY(6px) rotate(0)
    }
    100% {
        -webkit-transform: translateY(6px) rotate(135deg);
                transform: translateY(6px) rotate(135deg)
    }
}
@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0) rotate(0)
    }
    50% {
        -webkit-transform: translateY(-6px) rotate(0)
    }
    100% {
        -webkit-transform: translateY(-6px) rotate(135deg)
    }
}
@keyframes inBtm {
    0% {
        -webkit-transform: translateY(0) rotate(0);
                transform: translateY(0) rotate(0)
    }
    50% {
        -webkit-transform: translateY(-6px) rotate(0);
                transform: translateY(-6px) rotate(0)
    }
    100% {
        -webkit-transform: translateY(-6px) rotate(135deg);
                transform: translateY(-6px) rotate(135deg)
    }
}
@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0) rotate(0)
    }
    50% {
        -webkit-transform: translateY(-6px) rotate(0)
    }
    100% {
        -webkit-transform: translateY(-6px) rotate(135deg)
    }
}
@keyframes outBtm {
    0% {
        -webkit-transform: translateY(0) rotate(0);
                transform: translateY(0) rotate(0)
    }
    50% {
        -webkit-transform: translateY(-6px) rotate(0);
                transform: translateY(-6px) rotate(0)
    }
    100% {
        -webkit-transform: translateY(-6px) rotate(135deg);
                transform: translateY(-6px) rotate(135deg)
    }
}