:root {
    --page-text-color: #fff;
    --page-secondary-bg: #0F48EB;
    --page-primary-bg: #000000;
    --text-light: #3F4751;
}

body {
    background: #000 !important;
}

.page-text-color {
    color: var(--page-text-color);
}

.page-secondary-bg {
    background-color: var(--page-secondary-bg);
}

.page-primary-bg {
    background: var(--page-primary-bg);
}

.dark-layout {
    background-color: var(--page-text-color);
}

.text-light {
    color: var(--text-light) !important;
}

.button-primary {
    background-color: var(--page-secondary-bg);
    font-family: 'Gilroy' !important;
    border-radius: 0 !important;
    border: 1px solid var(--page-secondary-bg) !important;
}

.button-primary.button-theme {
    background-color: var(--primary-color-600);
}

.button-primary.button-primary-white {
    background-color: var(--white-color);
    color: var(--page-text-color);
}

.button-primary.button-theme:hover {
    background-color: var(--white-color) !important;
    color: var(--page-text-color) !important;
}

.circle-icon,
.border-0 {
    border: none;
}

.rounded-20 {
    border-radius: 20px;
}

.bg-grey {
    background: #F5F5F7;
}

.theme-bg {
    background-color: var(--page-secondary-bg);
}

.highlight-txt {
    color: var(--page-secondary-bg);
}

.text-grey {
    color: #ccc;
}

.w-fit {
    width: fit-content;
}

.black-light {
    background: #1a1a1a;
}

/* common css end */
button.accordion-button {
    color: #fff;
    background: transparent !important;
}

.accordion-item {
    background: transparent !important;
}

.faq-blocks {
    border-top: 1px solid #fff !important;
}

.faq-blocks .accordion-item {
    border-bottom: 1px solid #fff !important;
}

.accordion-body {
    color: #fff !important;
}

.faq-blocks .accordion-button:not(.collapsed) {
    color: #a1a1a1 !important;
}

/*  */

.ai-builders,
.our-superapp {
    transition: 0.5s all ease;
    border: 1px solid #1b1b1b;
}

.our-superapp:hover,
.ai-builders:hover {
    border-color: var(--page-secondary-bg);
}

.process-box {
    border: 1px solid #595959;
    border-radius: 20px;
    transition: 0.5s all ease;
    background: #000;
    padding: 30px 20px;
}

.process-box:hover {
    background: var(--page-secondary-bg);
}

.tech-main {
    border-top: 1px solid #595959;
    border-right: 1px solid #595959;
}

.why-choose-icon {
    width: 120px;
    max-width: 120px;
    flex: 0 0 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/* Responsive */
@keyframes floatUpDown {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animatedimage {
    animation: floatUpDown 2s ease-in-out infinite;
}

@media (min-width: 1201px) {
    .process-box {
        border-radius: 500px;
        padding: 120px 20px;
    }

    .process-col {
        padding: 0 40px;
    }

    .process-col:not(:last-child) .process-box {
        position: relative;
        z-index: 1;
    }

    .process-col:not(:last-child) .process-box::before {
        content: "";
        position: absolute;
        right: -70px;
        top: 0;
        bottom: 0;
        margin: auto;
        height: 70px;
        width: 60px;
        background: url('../images/superapp-clone-images/right-arrow.svg') no-repeat center / contain;
    }
}

@media (min-width: 992px) {
    .sticky__top {
        position: sticky;
        top: 150px;
    }
}

@media only screen and (max-width: 991px) {
    .sticky-column {
        position: static;
    }

    .tech-main {
        border-radius: 8px;
        border: 1px solid #868686 !important;
    }

    .why-choose-icon {
        margin: auto;
    }
}