* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'IBM Plex Sans', sans-serif;
    color: #221A3D;
    background: #FFFFFF;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Space Grotesk', sans-serif;
    margin: 0;
}

p {
    margin: 0;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    background: #3B0CB1;
    color: #fff;
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: background .18s, transform .18s, box-shadow .18s;
}

.btn-primary:hover {
    background: #2C0A8E;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -8px rgba(59, 12, 177, 0.45);
}

.gradient-text {
    background: linear-gradient(135deg, #3B0CB1 0%, #D3755F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #3B0CB1;
}

.btn-outline {
    background: transparent;
    color: #221A3D;
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    border: 1.5px solid #DCD4EF;
    display: inline-block;
    transition: border-color .18s, color .18s;
}

.btn-outline:hover {
    border-color: #3B0CB1;
    color: #3B0CB1;
}

.nav-link {
    color: #3A3454;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color .18s;
}

.nav-link:hover {
    color: #3B0CB1;
}

.foot-link {
    color: #C4BBDD;
    text-decoration: none;
    font-size: 14px;
    transition: color .18s;
}

.foot-link:hover {
    color: #fff;
}

.legal-link {
    color: #3B0CB1;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 500;
    transition: color .18s;
}

.legal-link:hover {
    color: #2C0A8E;
}

.cta-white:hover {
    background: #F3EEFC;
}

.cta-outline-white {
    transition: background .18s, border-color .18s;
}

.cta-outline-white:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

input[type="range"] {
    accent-color: #D3755F;
}

@media (max-width: 860px) {

    .desktop-nav,
    .desktop-cta {
        display: none !important;
    }

    .mobile-toggle {
        display: flex !important;
    }
}

@media (max-width: 600px) {
    .pricing-grid-cols {
        grid-template-columns: 1fr !important;
    }
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid #FAE4DD;
    background: #FDF2EF;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #B55D4A;
}

.features-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 56px;
    align-items: start;
}

.features-sticky {
    position: sticky;
    top: 100px;
}

.features-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.feature-card {
    background: #fff;
    border: 1px solid #E9E1F7;
    border-radius: 16px;
    padding: 22px;
    transition: border-color .18s, box-shadow .18s;
}

.feature-card:hover {
    border-color: #D3C4F5;
    box-shadow: 0 8px 20px -12px rgba(59, 12, 177, 0.25);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: #F3EEFC;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.feature-card.orange {
    border: 1px solid #D3755F;
    background: #d3755f1a;
}

.feature-card.orange:hover {
    border-color: #D3C4F5;
    box-shadow: 0 8px 20px -12px rgba(59, 12, 177, 0.25);
}

.feature-card.orange .feature-icon {
    background: #D3755F;
}



@media (max-width: 900px) {
    .features-layout {
        grid-template-columns: 1fr;
    }

    .features-sticky {
        position: static;
    }
}

@media (max-width: 560px) {
    .features-cards {
        grid-template-columns: 1fr;
    }
}

/* PLATFORM 3-CARD GRID ("Notre différence") */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.platform-card {
    background: #fff;
    border: 1px solid #E9E1F7;
    border-radius: 20px;
    padding: 30px 26px;
    box-shadow: 0 18px 40px -30px rgba(21, 10, 51, 0.25);
}

.platform-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.platform-tag {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 600;
    padding: 5px 13px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.platform-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #221A3D;
    margin: 0 0 10px;
    line-height: 1.3;
}

.platform-card p {
    font-size: 14.5px;
    color: #55506B;
    line-height: 1.6;
    margin: 0 0 18px;
}

.platform-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.platform-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 14px;
    color: #3A3454;
    font-weight: 500;
}

.platform-bullets li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}

.platform-bullets.violet li::before {
    background: #3B0CB1;
}

.platform-bullets.terracotta li::before {
    background: #D3755F;
}

.platform-bullets.dark li::before {
    background: #3A3454;
}

.tag-violet {
    background: #F3EEFC;
    color: #3B0CB1;
}

.tag-terracotta {
    background: #FDF2EF;
    color: #B55D4A;
}

.tag-dark {
    background: #F1EFF7;
    color: #3A3454;
}

@media (max-width:900px) {
    .platform-grid {
        grid-template-columns: 1fr;
    }
}

/* HOW IT WORKS 3-STEP CARDS */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.step-card {
    background: #fff;
    border: 1px solid #E9E1F7;
    border-radius: 20px;
    padding: 28px 26px;
    position: relative;
}

.step-card:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 39px;
    left: -28px;
    width: 26px;
    height: 1px;
    background: #E4DBF5;
}

.step-badge {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 17.5px;
    font-weight: 700;
    color: #221A3D;
    margin: 0 0 10px;
}

.step-card p {
    font-size: 14.5px;
    color: #55506B;
    line-height: 1.6;
    margin: 0 0 16px;
}

.step-note {
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.5;
    padding-top: 14px;
    border-top: 1px solid #EFEAF9;
}

@media (max-width:900px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-card:not(:first-child)::before {
        top: -15px;
        left: 20px;
        transform: rotate(90deg);
    }
}

#feeCongrats {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    margin-top: 0;
    transition: grid-template-rows .5s cubic-bezier(0.4, 0, 0.2, 1), opacity .4s ease, margin-top .5s cubic-bezier(0.4, 0, 0.2, 1);
}

#feeCongrats.show {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 16px;
}

#feeCongrats > .fee-congrats-inner {
    overflow: hidden;
    background: rgba(46, 158, 110, 0.18);
    border: 1px solid rgba(46, 158, 110, 0.4);
    border-radius: 14px;
    text-align: center;
}

#feeCongrats > .fee-congrats-inner > div {
    padding: 16px;
}

.clients-strip {
    background: #fff;
    padding: 20px 0 24px;
}

.clients-strip-title {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #9C97AC;
    margin: 0 0 12px;
}

.clients-strip-mask {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.clients-strip-track {
    display: flex;
    width: max-content;
    animation: clientsScroll 30s linear infinite;
}

.clients-strip-track span {
    font-size: 15px;
    font-weight: 700;
    color: #4A4560;
    white-space: nowrap;
    padding: 0 22px;
    position: relative;
}

.clients-strip-track span::after {
    content: '•';
    position: absolute;
    right: -2px;
    color: #D6CFE8;
    font-weight: 400;
}

@keyframes clientsScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.btn-oauth {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1.5px solid #E4E1F0;
    border-radius: var(--radiusButton);
    font-weight: 600;
    font-size: 15px;
    color: #3B0CB1;
    text-decoration: none;
    transition: border-color .18s, box-shadow .18s;
    padding: 10px;
    cursor: pointer;
    height: 47px;
    max-height: 47px;
}

.btn-oauth:hover {
    border-color: #C7BBEA;
    box-shadow: 0 8px 18px -12px rgba(59, 12, 177, 0.35);
    text-decoration: none;
}


/* FLOATING HEADER */
#siteHeader {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 14px 16px;
    transition: padding .3s ease;
}

#siteHeader.is-scrolled {
    padding: 10px 16px;
}

.header-pill {
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-radius: var(--radiusButton);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid transparent;
    box-shadow: 0 16px 36px -28px rgba(21, 10, 51, 0.3);
    transition: background .35s ease, box-shadow .35s ease, border-color .35s ease, padding .3s ease, backdrop-filter .35s ease;
}

#siteHeader.is-scrolled .header-pill {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-color: #E9E1F7;
    box-shadow: 0 16px 36px -20px rgba(21, 10, 51, 0.3);
    padding: 11px 24px;
}

.mobile-menu-pill {
    max-width: 1240px;
    margin: 10px auto 0;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid #E9E1F7;
    box-shadow: 0 16px 36px -20px rgba(21, 10, 51, 0.3);
    padding: 8px 24px 20px;
}

/* HERO SLOGAN LOOP */
.hero-slogan-wrap {
    position: relative;
    margin: 0 0 22px;
}

.hero-slogan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
    font-size: clamp(32px, 4.4vw, 52px);
    line-height: 1.08;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.01em;
}

.hero-slogan.is-active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.stats-band {
    position: relative;
    width: 100%;
    background: #150A33;
    overflow: hidden;
    padding: clamp(34px, 6vw, 27px) 24px calc(clamp(44px, 6vw, 64px) + 30px);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

/* CONE / FUNNEL TRANSITION — from the "Open banking" white section into "Le vrai changement" */
.cone-transition-section {
    position: relative;
    overflow: hidden;
}

.cone-funnel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: clamp(70px, 9vw, 140px);
    display: block;
    z-index: 0;
    pointer-events: none;
}

.stats-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 48px;
    display: block;
    z-index: 0;
}

.stats-band.in-view {
    opacity: 1;
    transform: translateY(0);
}

.stats-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.stats-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #C9B8FA;
    font-weight: 600;
    font-size: 13px;
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 28px;
}

.stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.stat-item {
    text-align: center;
    padding: 0 10px;
    position: relative;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .6s ease, transform .6s ease;
}

.stats-band.in-view .stat-item {
    opacity: 1;
    transform: translateY(0);
}

.stats-band.in-view .stat-item:nth-child(1) {
    transition-delay: .05s;
}

.stats-band.in-view .stat-item:nth-child(2) {
    transition-delay: .15s;
}

.stats-band.in-view .stat-item:nth-child(3) {
    transition-delay: .25s;
}

.stats-band.in-view .stat-item:nth-child(4) {
    transition-delay: .35s;
}

.stat-item:not(:first-child)::before {
    content: '';
    position: absolute;
    left: -14px;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: rgba(255, 255, 255, 0.14);
}

.stat-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
}

.stat-prefix,
.stat-suffix {
    color: #E8967F;
}

.stat-label {
    margin-top: 8px;
    font-size: 13px;
    color: #B7ACD6;
}

@media (max-width: 760px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 32px;
    }

    .stat-item:nth-child(3)::before,
    .stat-item:nth-child(1)::before {
        display: none;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s cubic-bezier(0.2, 0.7, 0.3, 1), transform .8s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.diff-slider-wrap {
    position: relative;
}

.diff-peek {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: #fff;
    pointer-events: none;
}

.diff-peek-1 {
    transform: translate(10px, -10px) scale(0.97);
    opacity: 0.55;
    z-index: 0;
    box-shadow: 0 14px 30px -18px rgba(21, 10, 51, 0.3);
}

.diff-peek-2 {
    transform: translate(18px, -18px) scale(0.94);
    opacity: 0.3;
    z-index: -1;
    box-shadow: 0 10px 24px -18px rgba(21, 10, 51, 0.25);
}

.diff-slider {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 560/380;
    border-radius: 28px;
    overflow: hidden;
    background: #150A33;
    box-shadow: 0 24px 48px -22px rgba(21, 10, 51, 0.4);
}

.diff-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 420ms ease;
}




.lstCarrouselIcon .innCrcn .cntIconCr .hreficonsCr .iconsCr {
    background-color: transparent;
    filter: grayscale(1);
}

.lstCarrouselIcon:hover .innCrcn .cntIconCr .hreficonsCr .iconsCr {
    filter: unset;
}

.presimgaTopcke {
    background-image: url(/app/assets/img/index_top/allmetier.png);
    height: 98px;
    width: 700px;
    opacity: 0.12;
    position: absolute;
    margin-top: -337px;
    margin-left: -121px;
    transform: scale(1.2);
    filter: drop-shadow(85px 283px 0px var(--defaultColor));
}


.lstCarrouselIcon {
    --height_carrIcon: 100px;
}

input,
select,
textarea {
    padding: unset;
}


.languesting {
    padding: 10px;
    border: 1px var(--typeBorder) transparent;
}

.languesting:hover {
    border: 1px var(--typeBorder) var(--bgColor);
    border-radius: var(--radiusButton);
    cursor: pointer;
}

.languesting .rjspopup {
    background-color: #fff;
    padding: 0;
    margin-top: 12px;
}

.languesting .picklang {
    padding: 10px;
    display: block;
    border-bottom: 1px var(--typeBorder) var(--bgColor);
    color: #000;
}

.languesting .picklang:last-of-type {
    border-bottom: 0px var(--typeBorder) var(--bgColor);
}


.languesting .picklang:hover {
    background-color: var(--selected0);
    text-decoration: none;
}

.ephemere.slideinbottomephemere.cookieConsent {
    width: 350px;
    padding: 10px;
    border-radius: var(--radiusButton);
}

/* COMPETITIVE COMPARISON TABLE */
.compare-table-wrap {
    overflow-x: auto;
    border-radius: 20px;
    -webkit-overflow-scrolling: touch;
}

.compare-table {
    border-collapse: collapse;
    width: 100%;
    min-width: 900px;
    table-layout: fixed;
}

.compare-table tr:hover th,
.compare-table tr:hover td {
    color: #000 !important;
    background: #d3755f1a !important;
}

.compare-table tr:hover .compare-note {
    color: #000 !important;
}

.compare-table th,
.compare-table td {
    padding: 12px 8px;
    text-align: center;
    font-size: 13px;
    border: none;
    vertical-align: top;
}

.compare-table thead th {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #221A3D;
    background: #FAF8FF;
    font-size: 12.5px;
    line-height: 1.3;
    padding-top: 14px;
    padding-bottom: 14px;
}

.compare-group-head {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #8D869E;
    font-weight: 700;
}

.compare-feature-col {
    text-align: left !important;
    position: sticky;
    left: 0;
    background: #FAF8FF;
    z-index: 2;
    padding-left: 4px !important;
}

.compare-kreneo-col {
    position: sticky;
    left: 220px;
    background: #F0E7FE;
    z-index: 2;
    color: #3B0CB1 !important;
}

.compare-kreneo-col-data {
    position: sticky;
    left: 220px;
}

.compare-row-label {
    text-align: left !important;
    font-weight: 600;
    color: #221A3D;
    font-size: 13.5px;
    line-height: 1.3;
    position: sticky;
    left: 0;
    z-index: 2;
    padding-left: 4px !important;
}

.compare-cell-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-height: 40px;
}

.compare-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

.compare-icon-yes {
    background: #2E9E6E;
}

.compare-icon-no {
    background: #C7C0DA;
}

.compare-note {
    display: block;
    font-size: 10.5px;
    color: #9C97AC;
    line-height: 1.25;
    /* white-space: nowrap; */
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.compare-note-na {
    font-style: italic;
    color: #C7C0DA;
    font-size: 11px;
}

/* Zebra striping instead of grid lines */
.compare-table tbody tr:nth-child(odd) td {
    background: #ffffff;
}

.compare-table tbody tr:nth-child(even) td {
    background: #FAF8FC;
}

.compare-table tbody tr:nth-child(odd) .compare-feature-col {
    background: #ffffff;
}

.compare-table tbody tr:nth-child(even) .compare-feature-col {
    background: #FAF8FC;
}

.compare-table tbody tr:nth-child(odd) .compare-kreneo-col {
    background: #F5EEFE;
}

.compare-table tbody tr:nth-child(even) .compare-kreneo-col {
    background: #EFE3FC;
}

@media (max-width: 760px) {
    .compare-table-wrap {
        border-radius: 14px;
    }
}

/* Row-level override: allow 2-line notes, keep icon aligned to the top */
.compare-row-top .compare-cell-inner {
    justify-content: flex-start;
    min-height: 52px;
    padding-top: 2px;
}

.compare-row-top .compare-note {
    /* white-space: normal;
    overflow: visible;
    text-overflow: clip; */
}



.lomovimag {}

.lomovimag .grpmv {
    position: relative;
    width: 293px;
}



.lomovimag .grpmv .mobilsstyle {
    display: flex;
    align-items: center;
    --trnaspodd: scale(0.7);
    --sameShadow: 7px 5px 0px 0px #bfb0e5;
    --widthDescript: 500px;
    --widthDescriptLoadingTime: 0;
    border-radius: var(--radius2);
    position: absolute;
    top: 0;
    left: 0;
    /* transition: left linear 0.2s; */
}

.lomovimag .grpmv .mobilsstyle .descript {
    display: none;
}


.lomovimag .grpmv .mobilsstyle:first-child {
    /* position: relative;
    left: 0; */
}

.lomovimag .grpmv .mobilsstyle .imgbopc {
    height: 540px;
    width: 293px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: var(--radius2);
    /* transform: var(--trnaspodd); */
    box-shadow: var(--sameShadow);
    border: 1px solid var(--defaultColor);
    background-color: #fff;
}

.lomovimag .grpmv .mobilsstyle.showed .imgbopc {
    /* filter: blur(0px); */
}



.lomovimag .grpmv .imgtiitl {}



.fade-out-bck {
    -webkit-animation: fade-out-bck 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: fade-out-bck 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes fade-out-bck {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateZ(-80px);
        transform: translateZ(-80px);
        opacity: 0;
    }
}

@keyframes fade-out-bck {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateZ(-80px);
        transform: translateZ(-80px);
        opacity: 0;
    }
}