:root {
    --page-secondary: #081925;
    --page-primary-bg: linear-gradient(180deg, #F8FCFF 0%, #FEF7FF 100%);
    --page-text-color: #081925;
    --text-fade: #708CA0;
    --border-color: #C8D8E3;
    --radius-20: 20px;
}

.page-secondary {
    background-color: var(--page-secondary);
}

.page-primary {
    background-color: var(--page-primary-bg);
}

.page-text-color {
    color: var(--page-text-color);
}

.text-fade {
    color: var(--text-fade);
}

.seprator {
    border-color: var(--border-color);
}

.border-0 {
    border: unset !important;
}



/* Hero Section */

.hero-section {
    padding: 40px 0;
    background-image: url(../images/tiktok-images/banner-shape.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

/* Counter */

.counter-box {
    padding: 90px 90px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-20);
}

.counter-block {
    background: linear-gradient(180deg, #F8FCFF 0%, #FEF7FF 100%);
    border: 2px solid var(--border-color);
    padding: 30px 30px;
    border-radius: var(--radius-20);
    width: 100%;
}

.count-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.count-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    padding: 2px;
    background: var(--page-secondary);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clone-icon {
    width: 170px;
    height: 170px;
    min-width: 170px;
    border: 0.74px solid var(--border-color);
    border-radius: var(--radius-20);
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F5F5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 16px 20px #00000020;
}

/* Clone Wrapper */

.clone-block {
    padding: 20px 20px;
}

.clone-icon {
    width: 170px;
    height: 170px;
    min-width: 170px;
    border: 0.74px solid var(--border-color);
    border-radius: var(--radius-20);
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F5F5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bordered-box {
    padding: 30px 30px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-20);
}

.bordered-top {
    padding: 90px 0 0;
    border-top: 1px solid var(--border-color);
}

.list-box {
    padding: 0 0 30px;
    border-bottom: 1px solid var(--page-secondary);
    margin: 0 0 40px;
}

/* Cta Wrapper */

.cta-wrap {
    position: relative;
    margin: 70px 0 0;
    padding: 100px 0 0;
}

.cta-wrap::before {
    content: '';
    background: linear-gradient(90deg, #081925 0%, #708CA0 49%, #081925 100%);
    width: 100%;
    height: 2px;
    position: absolute;
    inset: 0 0 auto 0;
}

.cta-intro .button-primary {
    color: var(--primary-color-600);
    font-size: 38px;
    text-align: center;
    background: transparent;
    border-bottom: 1px solid;
    padding: 0;
}

.cta-intro .button-primary:hover {
    color: var(--page-text-color) !important;
    background: transparent !important;
}

.cta-intro .button-primary path {
    fill: var(--primary-color-600);
}

.cta-intro .button-primary:hover path {
    fill: var(--page-text-color) !important;
}

.cta-intro .button-primary .circle-icon {
    height: 45px;
    width: 45px;
    border: 3px solid currentColor;
}

.tiktok-icon {
    position: absolute;
    inset: -80px auto 0 50px;
    margin: auto;
    animation: img-move 1.5s infinite alternate;
}

@keyframes img-move {
    0% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(-20px);
    }
}

.tiktok-icon.icon-2 {
    inset: auto 0 -60px auto;
    max-width: 130px;
}

.app-grid-block {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    gap: 80px 120px;
}

.app-icon {
    width: 100%;
    border-radius: var(--radius-20);
}

.app-icon img {
    width: 100%;
}


/* Invest Section */

.invest-intro,
.cta-intro {
    background-image: url(../images/tiktok-images/banner-shape.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.invest-icon-wrapper {
    padding: 10px 0;
}

.invest-icon {
    width: 100%;
    max-width: 70px;
    height: 70px;
    min-width: 70px;
    background: var(--text-dark-black);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    transition: all 0.3s;
}

.invest-content .invest-sep {
    border-top: 1px solid var(--border-color);
    display: block;
    padding: 15px 0;
    width: 100%;
    max-width: 80%;
}

/* Process Wrapper */

.process-row {
    padding: 30px 40px;
    background-color: #122532;
    border-radius: 10px;
    border-bottom: 1px solid #081925;
    color: var(--white-color);
}

.button-white.outline {
    border-radius: 10px;
    white-space: nowrap;
}


@media only screen and (max-width: 1599px)  {

}

@media only screen and (max-width: 1400px)  {

    .counter-box {
        padding: 60px 60px;
    }

    .clone-icon {
        width: 100px;
        height: 100px;
        min-width: 100px;
        padding: 15px;
    }

    .bordered-box {
        padding: 15px 15px;
    }

    .process-row {
        padding: 30px 20px;
    }

    .tiktok-icon {
        inset: -40px auto 0 50px;
        max-width: 220px;
    }

    .app-grid-block {
        gap: 60px 80px;
    }
}

@media only screen and (max-width: 992px) {

    .text-align-center {
        text-align: center;
    }

    .rating-logo-wrap {
        justify-content: center;
        margin: 40px 0;
    }

    .counter-box {
        padding: 30px 30px;
    }

    .clone-block {
        padding: 20px 0;
    }

    .list-box {
        text-align: left;
    }
}

@media only screen and (max-width: 767px) {

    .tiktok-icon {
        inset: 0 auto 0 50px;
        max-width: 100px;
    }

    .tiktok-icon {
        inset: 0 auto 0 50px;
        max-width: 100px;
    }

    .cta-intro .button-primary {
        padding: 0 0 8px;
        width: auto;
    }

    .app-grid-block {
        gap: 50px 20px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 475px) {

    .app-grid-block {
        gap: 50px 20px;
        grid-template-columns: repeat(1, 1fr);
    }
}