/* =========================================================
   CREASY
   GLOBAL ROOT
========================================================= */

:root {
    --bg: #020817;
    --bg-soft: #061127;
    --card: #07162f;
    --card2: #081a38;

    /* CREASY TEAL */
    --teal: #3ba29a;
    --teal-dark: #2c7873;
    --teal-light: #52cfc5;

    --text: #ffffff;
    --muted: #91a0ba;

    --border: rgba(59, 162, 154, .35);
}


/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family:
        "Inter",
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);

    background:
        radial-gradient(
            circle at 50% -20%,
            rgba(59, 162, 154, .18),
            transparent 35%
        ),

        radial-gradient(
            circle at 10% 60%,
            rgba(44, 120, 115, .10),
            transparent 30%
        ),

        var(--bg);

    min-height: 100vh;

    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   NAVBAR
========================================================= */

.creasy-navbar {
    min-height: 88px;

    border-bottom:
        1px solid
        rgba(255,255,255,.08);

    background:
        rgba(2,8,23,.75);

    backdrop-filter:
        blur(20px);

    -webkit-backdrop-filter:
        blur(20px);

    position: relative;

    z-index: 1000;
}


/* =========================================================
   NAVBAR INNER
========================================================= */

.creasy-navbar .container-fluid {
    display: flex;
    align-items: center;

    min-height: 88px;
}


/* =========================================================
   LOGO
========================================================= */

.creasy-navbar .navbar-brand {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    margin: 0;
    padding: 0;
}

.creasy-logo {
    display: flex;
    align-items: center;
}

.creasy-logo img {
    display: block;

    width: 145px;
    height: auto;

    max-height: 48px;

    object-fit: contain;
}


/* =========================================================
   NAVIGATION
========================================================= */

.creasy-navbar .navbar-collapse {
    align-items: center;
}

.creasy-navbar .navbar-nav {
    margin-left: auto !important;
    margin-right: auto !important;

    display: flex;
    align-items: center;
}

.creasy-nav-link {
    color: #dbe4f4 !important;

    font-size: 14px;
    font-weight: 500;

    padding:
        10px 8px !important;

    margin:
        0 7px;

    white-space: nowrap;

    transition:
        color .3s ease,
        transform .3s ease;
}

.creasy-nav-link:hover {
    color: var(--teal-light) !important;

    transform:
        translateY(-1px);
}


/* =========================================================
   RIGHT NAVIGATION
========================================================= */

.nav-right {
    display: flex;
    align-items: center;

    gap: 24px;

    margin-left: 30px;

    flex-shrink: 0;
}


/* =========================================================
   SIGN IN
========================================================= */

.sign-in {
    color: #ffffff;

    font-size: 14px;
    font-weight: 500;

    white-space: nowrap;

    transition:
        color .3s ease;
}

.sign-in:hover {
    color: var(--teal-light);
}


/* =========================================================
   GET STARTED BUTTON
========================================================= */

.btn-creasy {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(82,207,197,.7);

    background:
        linear-gradient(
            135deg,
            var(--teal),
            var(--teal-dark)
        );

    color: #ffffff;

    padding:
        12px 24px;

    border-radius: 11px;

    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;

    box-shadow:
        0 0 20px
        rgba(59,162,154,.25),

        inset 0 1px
        rgba(255,255,255,.2);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.btn-creasy:hover {
    color: #ffffff;

    transform:
        translateY(-2px);

    box-shadow:
        0 0 30px
        rgba(82,207,197,.45);
}


/* =========================================================
   MOBILE TOGGLER
========================================================= */

.navbar-toggler {
    border:
        1px solid
        rgba(255,255,255,.15);

    padding:
        8px 11px;
}

.navbar-toggler:focus {
    box-shadow: none;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    padding:
        24px 0 0;

    overflow: hidden;
}


/* =========================================================
   FLIP CONTAINER
========================================================= */

.flip-container {
    width: 100%;
    height: 435px;

    perspective: 1400px;
}


/* =========================================================
   FLIP CARD
========================================================= */

.flip-card {
    width: 100%;
    height: 100%;

    position: relative;

    transform-style:
        preserve-3d;

    -webkit-transform-style:
        preserve-3d;

    transition:
        transform
        .9s
        cubic-bezier(
            .2,
            .7,
            .2,
            1
        );
}


/* =========================================================
   FLIP ACTIVE
========================================================= */

.flip-card.is-flipping {
    transform:
        rotateY(180deg);
}


/* =========================================================
   FLIP FACE
========================================================= */

.flip-face {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius: 22px;

    border:
        1px solid
        var(--border);

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(59,162,154,.14),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            #071a2b,
            #020a1c
        );

    box-shadow:
        inset 0 1px
        rgba(255,255,255,.04),

        0 15px 50px
        rgba(0,0,0,.25);

    backface-visibility:
        hidden;

    -webkit-backface-visibility:
        hidden;
}


/* =========================================================
   BACK FACE
========================================================= */

.flip-back {
    transform:
        rotateY(180deg);

    background:
        radial-gradient(
            circle at 20% 80%,
            rgba(59,162,154,.18),
            transparent 40%
        ),

        linear-gradient(
            135deg,
            #081f2d,
            #020817
        );
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;

    z-index: 5;

    width: 45%;

    padding:
        72px 0 0 32px;
}


/* =========================================================
   HERO ICON
========================================================= */

.hero-icon {
    font-size: 35px;

    color: var(--teal-light);

    margin-bottom: 25px;

    text-shadow:
        0 0 15px
        var(--teal);
}


/* =========================================================
   HERO TITLE
========================================================= */

.hero-content h2 {
    font-size: 31px;

    font-weight: 700;

    margin:
        0 0 15px;

    letter-spacing:
        -1px;
}

.hero-content h2::after {
    content: ".";

    color:
        var(--teal-light);
}


/* =========================================================
   HERO PARAGRAPH
========================================================= */

.hero-content p {
    color:
        #d8e0ef;

    font-size: 16px;

    line-height:
        1.65;

    max-width:
        330px;

    margin:
        0;
}


/* =========================================================
   HERO BADGE
========================================================= */

.hero-badge {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-bottom:
        18px;

    padding:
        7px 12px;

    border-radius:
        50px;

    background:
        rgba(59,162,154,.10);

    border:
        1px solid
        rgba(82,207,197,.25);

    color:
        var(--teal-light);

    font-size:
        11px;

    font-weight:
        600;

    letter-spacing:
        .4px;
}


/* =========================================================
   FLIP STATUS
========================================================= */

.flip-status {
    position: absolute;

    left: 32px;
    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 7px;

    color:
        #647b9e;

    font-size:
        10px;

    text-transform:
        uppercase;

    letter-spacing:
        1px;
}

.flip-status-dot {
    width: 6px;
    height: 6px;

    border-radius:
        50%;

    background:
        var(--teal-light);

    box-shadow:
        0 0 10px
        var(--teal);
}


/* =========================================================
   PEEL EFFECT
========================================================= */

.peel {
    position: absolute;

    top: 0;
    right: 18%;

    width: 115px;
    height: 100%;

    background:
        linear-gradient(
            100deg,
            rgba(8,25,67,.9),
            rgba(44,120,115,.85),
            rgba(82,207,197,.95)
        );

    clip-path:
        polygon(
            0 12%,
            100% 0,
            65% 100%,
            0 100%
        );

    border-right:
        1px solid
        rgba(82,207,197,.8);

    box-shadow:
        10px 0 30px
        rgba(59,162,154,.35);

    z-index:
        3;
}

.peel::after {
    content: "";

    position: absolute;

    right: 8px;
    top: 0;

    width: 2px;
    height: 100%;

    background:
        var(--teal-light);

    box-shadow:
        0 0 10px
        var(--teal-light),

        0 0 25px
        var(--teal);
}


/* =========================================================
   SCREEN MOCKUP
========================================================= */

.screen {
    position: absolute;

    right: 4%;
    top: 62px;

    width: 47%;
    height: 315px;

    border-radius:
        10px;

    background:
        rgba(9,20,43,.88);

    border:
        1px solid
        rgba(140,170,220,.25);

    transform:
        rotate(-5deg);

    padding:
        14px;

    box-shadow:
        0 20px 45px
        rgba(0,0,0,.5),

        inset 0 1px
        rgba(255,255,255,.08);

    z-index:
        2;
}


/* =========================================================
   BROWSER BAR
========================================================= */

.browser-bar {
    height:
        12px;

    background:
        #162746;

    border-radius:
        4px;

    margin-bottom:
        14px;
}


/* =========================================================
   FAKE LAYOUT
========================================================= */

.fake-layout {
    display: flex;

    gap:
        8px;

    height:
        250px;
}

.fake-sidebar {
    width:
        25%;

    background:
        #0c1b37;

    border-radius:
        5px;
}

.fake-main {
    flex:
        1;
}


/* =========================================================
   FAKE IMAGE
========================================================= */

.fake-image {
    height:
        145px;

    overflow:
        hidden;

    border-radius:
        6px;

    background:
        linear-gradient(
            135deg,
            #261309,
            #101827
        );

    margin-bottom:
        10px;
}

.fake-image img {
    width:
        100%;

    height:
        100%;

    object-fit:
        cover;
}


/* =========================================================
   FAKE LINE
========================================================= */

.fake-line {
    height:
        7px;

    width:
        75%;

    background:
        #20385f;

    border-radius:
        5px;

    margin-bottom:
        8px;
}


/* =========================================================
   FAKE BUTTON
========================================================= */

.fake-button {
    margin-top:
        14px;

    width:
        65px;

    height:
        23px;

    border-radius:
        4px;

    background:
        var(--teal);
}


/* =========================================================
   SOCIAL MOCKUP
========================================================= */

.social-screen {
    position: absolute;

    right: 5%;
    top: 45px;

    width: 40%;
    height: 335px;

    background:
        rgba(8,20,43,.9);

    border:
        1px solid
        rgba(100,140,210,.3);

    border-radius:
        10px;

    padding:
        14px;

    transform:
        rotate(-2deg);

    z-index:
        2;

    overflow:
        hidden;
}

.social-screen img {
    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    border-radius:
        5px;
}


/* =========================================================
   ANALYTICS
========================================================= */

.analytics {
    position: absolute;

    right: 5%;
    top: 50px;

    width: 43%;
    height: 330px;

    border-radius:
        10px;

    background:
        rgba(8,20,43,.95);

    border:
        1px solid
        rgba(100,140,210,.3);

    padding:
        18px;

    transform:
        rotate(-2deg);

    z-index:
        2;
}

.analytics h4 {
    font-size:
        12px;

    margin:
        0 0 25px;
}


/* =========================================================
   CHART
========================================================= */

.chart {
    height:
        100px;

    position:
        relative;

    border-bottom:
        1px solid
        #233a5e;

    border-left:
        1px solid
        #233a5e;

    margin-bottom:
        20px;
}

.chart svg {
    width:
        100%;

    height:
        100%;
}


/* =========================================================
   STATS
========================================================= */

.stats {
    display:
        grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:
        8px;
}

.stat {
    padding:
        10px;

    border-radius:
        5px;

    background:
        #0d1d38;
}

.stat small {
    display:
        block;

    color:
        #8193b0;

    font-size:
        8px;
}

.stat strong {
    font-size:
        13px;
}


/* =========================================================
   BACK CONTENT
========================================================= */

.back-content {
    position:
        absolute;

    inset:
        0;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        35px;

    text-align:
        center;

    z-index:
        5;
}

.back-inner {
    max-width:
        300px;
}

.back-icon {
    width:
        70px;

    height:
        70px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    margin:
        0 auto 20px;

    border-radius:
        18px;

    font-size:
        30px;

    color:
        white;

    background:
        linear-gradient(
            135deg,
            var(--teal),
            var(--teal-dark)
        );

    box-shadow:
        0 15px 35px
        rgba(59,162,154,.25);
}

.back-inner h3 {
    font-size:
        26px;

    margin:
        0 0 12px;
}

.back-inner p {
    color:
        #91a0ba;

    font-size:
        13px;

    line-height:
        1.7;

    margin:
        0;
}


/* =========================================================
   FLIP INDICATORS
========================================================= */

.flip-indicators {
    display:
        flex;

    justify-content:
        center;

    align-items:
        center;

    gap:
        7px;

    margin:
        20px 0 26px;
}

.flip-indicator {
    width:
        8px;

    height:
        8px;

    border-radius:
        50%;

    background:
        #26395d;

    transition:
        .3s;
}

.flip-indicator.active {
    width:
        25px;

    border-radius:
        10px;

    background:
        linear-gradient(
            90deg,
            var(--teal-light),
            var(--teal)
        );

    box-shadow:
        0 0 12px
        rgba(82,207,197,.8);
}


/* =========================================================
   CTA SECTION
========================================================= */

.cta-card {
    min-height:
        298px;

    position:
        relative;

    overflow:
        hidden;

    border-radius:
        20px;

    border:
        1px solid
        rgba(59,162,154,.35);

    padding:
        40px 42px;

    background:
        radial-gradient(
            circle at 80% 60%,
            rgba(59,162,154,.14),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            #081936,
            #041025
        );
}


/* =========================================================
   CTA SOLVE
========================================================= */

.cta-card.solve {
    background:
        radial-gradient(
            circle at 85% 60%,
            rgba(82,207,197,.15),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            #071d32,
            #041423
        );
}


/* =========================================================
   CTA ICON
========================================================= */

.cta-icon {
    width:
        88px;

    height:
        88px;

    border-radius:
        19px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    font-size:
        38px;

    color:
        white;

    background:
        linear-gradient(
            135deg,
            var(--teal),
            var(--teal-dark)
        );

    box-shadow:
        0 12px 30px
        rgba(59,162,154,.25);
}

.solve .cta-icon {
    background:
        linear-gradient(
            135deg,
            var(--teal-light),
            var(--teal-dark)
        );
}


/* =========================================================
   CTA TEXT
========================================================= */

.cta-text {
    position:
        absolute;

    left:
        158px;

    top:
        45px;

    width:
        48%;
}

.label {
    color:
        var(--teal-light);

    font-size:
        14px;

    font-weight:
        700;

    letter-spacing:
        .5px;

    margin-bottom:
        18px;
}

.solve .label {
    color:
        var(--teal-light);
}

.cta-text h2 {
    font-size:
        29px;

    line-height:
        1.15;

    font-weight:
        700;

    margin:
        0 0 15px;
}

.cta-text p {
    color:
        #94a6c4;

    font-size:
        14px;

    line-height:
        1.6;

    margin:
        0;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.cta-button {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        8px;

    margin-top:
        26px;

    padding:
        12px 20px;

    border-radius:
        8px;

    background:
        var(--teal);

    color:
        white;

    font-size:
        14px;

    font-weight:
        600;

    transition:
        .3s;
}

.cta-button:hover {
    color:
        #ffffff;

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(59,162,154,.3);
}

.solve .cta-button {
    background:
        var(--teal-dark);
}


/* =========================================================
   CTA ART
========================================================= */

.cta-art {
    position:
        absolute;

    right:
        35px;

    bottom:
        30px;

    width:
        175px;

    height:
        140px;
}

.art-box {
    position:
        absolute;

    width:
        90px;

    height:
        65px;

    border-radius:
        12px;

    background:
        linear-gradient(
            145deg,
            var(--teal-dark),
            #0d1d4b
        );

    border:
        1px solid
        var(--teal-light);

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    font-size:
        20px;

    color:
        white;

    transform:
        rotate(8deg);

    box-shadow:
        0 10px 30px
        rgba(59,162,154,.3);
}

.art-box:nth-child(1) {
    left:
        25px;

    top:
        15px;
}

.art-box:nth-child(2) {
    left:
        75px;

    top:
        50px;

    transform:
        rotate(-5deg);
}

.art-box:nth-child(3) {
    left:
        5px;

    top:
        75px;

    transform:
        rotate(12deg);
}


/* =========================================================
   FOOTER
========================================================= */

.social-footer {
    text-align:
        center;

    padding:
        28px 0 35px;
}

.social-footer p {
    color:
        #9aabc5;

    font-size:
        14px;

    margin:
        0 0 22px;
}

.social-links {
    display:
        flex;

    justify-content:
        center;

    align-items:
        center;

    gap:
        60px;

    flex-wrap:
        wrap;
}

.social-link {
    color:
        #7285a4;

    font-weight:
        600;

    font-size:
        17px;

    opacity:
        .85;

    transition:
        .3s;
}

.social-link:hover {
    color:
        var(--teal-light);

    opacity:
        1;

    transform:
        translateY(-2px);
}

.social-link i {
    margin-right:
        7px;
}


/* =========================================================
   TABLET
   1200px DOWN
========================================================= */

@media (max-width: 1199.98px) {

    .creasy-logo img {
        width:
            125px;
    }

    .creasy-nav-link {
        margin:
            0 3px;

        padding:
            10px 5px !important;
    }

    .nav-right {
        gap:
            16px;

        margin-left:
            15px;
    }

    .btn-creasy {
        padding:
            11px 18px;
    }
}


/* =========================================================
   TABLET / MOBILE
   991px DOWN
========================================================= */

@media (max-width: 991.98px) {

    /* -----------------------------------------------------
       NAVBAR
    ----------------------------------------------------- */

    .creasy-navbar {
        min-height:
            76px;
    }

    .creasy-navbar .container-fluid {
        min-height:
            76px;
    }

    .creasy-logo img {
        width:
            125px;

        max-height:
            42px;
    }

    .navbar-collapse {
        margin-top:
            15px;

        padding:
            15px;

        border:
            1px solid
            rgba(255,255,255,.08);

        border-radius:
            15px;

        background:
            rgba(5,15,35,.95);

        box-shadow:
            0 20px 40px
            rgba(0,0,0,.35);
    }

    .creasy-navbar .navbar-nav {
        margin:
            0 !important;

        align-items:
            flex-start;

        width:
            100%;
    }

    .creasy-nav-link {
        width:
            100%;

        margin:
            2px 0;

        padding:
            10px 8px !important;
    }

    .nav-right {
        width:
            100%;

        margin:
            15px 0 0;

        padding-top:
            15px;

        border-top:
            1px solid
            rgba(255,255,255,.08);

        justify-content:
            space-between;
    }


    /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

    .hero-section {
        padding:
            15px 0 0;

        overflow:
            hidden;
    }

    .hero-section .container-fluid {
        padding-left:
            15px !important;

        padding-right:
            15px !important;

        overflow:
            hidden;
    }


    /* -----------------------------------------------------
       MOBILE SLIDER ROW
    ----------------------------------------------------- */

    .hero-section .row {
        position:
            relative;

        display:
            block;

        width:
            100%;

        height:
            500px;

        margin:
            0;

        overflow:
            hidden;

        --bs-gutter-x:
            0;
    }


    .hero-section .row > [class*="col-"] {
        display:
            none;

        width:
            100%;

        height:
            500px;

        padding-left:
            0 !important;

        padding-right:
            0 !important;

        margin:
            0 !important;
    }


    .hero-section .row > .mobile-active {
        display:
            block;
    }


    /* -----------------------------------------------------
       FLIP CONTAINER
    ----------------------------------------------------- */

    .flip-container {
        width:
            100%;

        height:
            500px;

        perspective:
            1400px;
    }


    /* -----------------------------------------------------
       HERO CONTENT
    ----------------------------------------------------- */

    .hero-content {
        width:
            70%;

        padding:
            45px 0 0 25px;
    }

    .hero-icon {
        font-size:
            30px;

        margin-bottom:
            18px;
    }

    .hero-content h2 {
        font-size:
            28px;

        margin-bottom:
            12px;
    }

    .hero-content p {
        font-size:
            14px;

        line-height:
            1.6;

        max-width:
            230px;
    }


    /* -----------------------------------------------------
       SCREEN
    ----------------------------------------------------- */

    .screen {
        width:
            55%;

        right:
            2%;

        top:
            120px;

        height:
            300px;

        opacity:
            .8;
    }


    /* -----------------------------------------------------
       SOCIAL SCREEN
    ----------------------------------------------------- */

    .social-screen {
        width:
            55%;

        right:
            3%;

        top:
            105px;

        height:
            315px;

        opacity:
            .8;
    }


    /* -----------------------------------------------------
       ANALYTICS
    ----------------------------------------------------- */

    .analytics {
        width:
            58%;

        right:
            2%;

        top:
            105px;

        height:
            305px;

        opacity:
            .85;
    }


    /* -----------------------------------------------------
       PEEL
    ----------------------------------------------------- */

    .peel {
        right:
            8%;

        width:
            75px;

        opacity:
            .45;
    }


    /* -----------------------------------------------------
       BACK CONTENT
    ----------------------------------------------------- */

    .back-content {
        padding:
            30px;
    }

    .back-inner {
        max-width:
            280px;
    }

    .back-icon {
        width:
            65px;

        height:
            65px;

        font-size:
            28px;
    }

    .back-inner h3 {
        font-size:
            24px;
    }

    .back-inner p {
        font-size:
            13px;
    }


    /* -----------------------------------------------------
       INDICATORS
    ----------------------------------------------------- */

    .flip-indicators {
        margin:
            16px 0 25px;

        gap:
            8px;
    }


    /* -----------------------------------------------------
       CTA
    ----------------------------------------------------- */

    .cta-card {
        min-height:
            360px;
    }
}


/* =========================================================
   SMALL MOBILE
   575px DOWN
========================================================= */

@media (max-width: 575.98px) {

    /* -----------------------------------------------------
       NAVBAR
    ----------------------------------------------------- */

    .creasy-logo img {
        width:
            110px;

        max-height:
            40px;
    }

    .nav-right {
        gap:
            12px;
    }

    .btn-creasy {
        padding:
            10px 15px;

        font-size:
            13px;
    }


    /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

    .hero-section {
        padding:
            15px 0 0;
    }

    .hero-section .row {
        height:
            470px;
    }

    .hero-section .row > [class*="col-"] {
        height:
            470px;
    }


    /* -----------------------------------------------------
       FLIP
    ----------------------------------------------------- */

    .flip-container {
        height:
            470px;
    }

    .flip-face {
        border-radius:
            18px;
    }


    /* -----------------------------------------------------
       HERO CONTENT
    ----------------------------------------------------- */

    .hero-content {
        width:
            75%;

        padding:
            38px 0 0 23px;
    }

    .hero-icon {
        font-size:
            28px;

        margin-bottom:
            16px;
    }

    .hero-content h2 {
        font-size:
            27px;

        margin-bottom:
            12px;
    }

    .hero-content p {
        font-size:
            13px;

        max-width:
            210px;
    }


    /* -----------------------------------------------------
       SCREEN
    ----------------------------------------------------- */

    .screen {
        width:
            58%;

        right:
            -2%;

        top:
            120px;

        height:
            280px;

        opacity:
            .8;
    }


    /* -----------------------------------------------------
       SOCIAL SCREEN
    ----------------------------------------------------- */

    .social-screen {
        width:
            58%;

        right:
            -2%;

        top:
            100px;

        height:
            290px;

        opacity:
            .8;
    }


    /* -----------------------------------------------------
       ANALYTICS
    ----------------------------------------------------- */

    .analytics {
        width:
            60%;

        right:
            -2%;

        top:
            100px;

        height:
            285px;

        opacity:
            .85;
    }


    /* -----------------------------------------------------
       PEEL
    ----------------------------------------------------- */

    .peel {
        right:
            5%;

        width:
            65px;

        opacity:
            .35;
    }


    /* -----------------------------------------------------
       CTA
    ----------------------------------------------------- */

    .cta-card {
        min-height:
            390px;

        padding:
            30px;
    }

    .cta-icon {
        width:
            70px;

        height:
            70px;

        font-size:
            30px;
    }

    .cta-text {
        left:
            30px;

        top:
            125px;

        width:
            82%;
    }

    .cta-text h2 {
        font-size:
            25px;
    }

    .cta-text p {
        font-size:
            13px;
    }

    .cta-button {
        margin-top:
            20px;
    }


    /* -----------------------------------------------------
       CTA ART
    ----------------------------------------------------- */

    .cta-art {
        right:
            0;

        top:
            20px;

        opacity:
            .35;
    }


    /* -----------------------------------------------------
       FOOTER
    ----------------------------------------------------- */

    .social-links {
        gap:
            20px;
    }

    .social-link {
        font-size:
            14px;
    }
}


/* =========================================================
   VERY SMALL PHONE
   400px DOWN
========================================================= */

@media (max-width: 400px) {

    .creasy-logo img {
        width:
            100px;
    }

    .nav-right {
        gap:
            8px;
    }

    .sign-in {
        font-size:
            13px;
    }

    .btn-creasy {
        padding:
            9px 12px;

        font-size:
            12px;
    }

    .hero-content {
        width:
            78%;

        padding-left:
            20px;
    }

    .hero-content h2 {
        font-size:
            25px;
    }

    .hero-content p {
        font-size:
            12px;

        max-width:
            190px;
    }

    .screen {
        width:
            60%;

        right:
            -6%;
    }

    .social-screen {
        width:
            60%;

        right:
            -6%;
    }

    .analytics {
        width:
            62%;

        right:
            -6%;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior:
            auto;
    }

    *,
    *::before,
    *::after {
        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;
    }
}


/* =========================================================
   CREASY MOBILE SMOOTH SLIDER
========================================================= */

@media (max-width: 991.98px) {

    .hero-section .row {

        position: relative;

        overflow: hidden;

        height: 500px;

    }


    .hero-section .row > [class*="col-"] {

        position: absolute;

        top: 0;

        left: 0;

        width: 100%;

        height: 500px;

        margin: 0 !important;

        padding: 0 !important;

        display: block !important;

        transform:
            translate3d(110%, 0, 0);

        opacity: 0;

        visibility: hidden;

        transition:
            transform 1.2s cubic-bezier(
                .22,
                .61,
                .36,
                1
            ),
            opacity .8s ease,
            visibility 0s linear 1.2s;

        z-index: 1;

        pointer-events: none;

        will-change:
            transform,
            opacity;

    }


    /* =====================================================
       CARD AKTIF
    ===================================================== */

    .hero-section .row > .mobile-active {

        transform:
            translate3d(0, 0, 0);

        opacity: 1;

        visibility: visible;

        z-index: 5;

        pointer-events: auto;

        transition:
            transform 1.2s cubic-bezier(
                .22,
                .61,
                .36,
                1
            ),
            opacity .8s ease;

    }


    /* =====================================================
       CARD LAMA
       Bergerak keluar ke kiri
    ===================================================== */

    .hero-section .row > .mobile-slide-current {

        display: block !important;

        visibility: visible;

        opacity: 1;

        transform:
            translate3d(0, 0, 0);

        z-index: 4;

    }


    .hero-section .row > .mobile-slide-current.mobile-slide-out {

        transform:
            translate3d(-110%, 0, 0);

        opacity: .65;

        z-index: 3;

        transition:
            transform 1.2s cubic-bezier(
                .22,
                .61,
                .36,
                1
            ),
            opacity 1s ease;

    }


    /* =====================================================
       CARD BARU
       Mulai dari kanan
    ===================================================== */

    .hero-section .row > .mobile-slide-next {

        display: block !important;

        visibility: visible;

        opacity: 1;

        transform:
            translate3d(110%, 0, 0);

        z-index: 5;

    }


    /* =====================================================
       CARD BARU MASUK
    ===================================================== */

    .hero-section .row > .mobile-slide-in {

        display: block !important;

        visibility: visible;

        opacity: 1;

        transform:
            translate3d(0, 0, 0);

        z-index: 5;

        transition:
            transform 1.2s cubic-bezier(
                .22,
                .61,
                .36,
                1
            ),
            opacity 1s ease;

    }

}


/* =========================================================
   SMALL PHONE
========================================================= */

@media (max-width: 575.98px) {

    .hero-section .row {

        height: 470px;

    }


    .hero-section .row > [class*="col-"] {

        height: 470px;

    }


    .flip-container {

        height: 470px;

    }


    .hero-section .row > .mobile-slide-current.mobile-slide-out {

        transform:
            translate3d(-105%, 0, 0);

    }


    .hero-section .row > .mobile-slide-next {

        transform:
            translate3d(105%, 0, 0);

    }


    .hero-section .row > .mobile-slide-in {

        transform:
            translate3d(0, 0, 0);

    }

}