:root {
    --page-secondary-bg: #07191C;
    --text-dark-grey: #12171E;
    --page-text-color: #132735;
    --page-primary-bg: #F6FEFF;
    --page-theme-gradient: linear-gradient(287.34deg, #F6FEFF 0%, #FFF5EF 100%);
    --border-color: #B8D3D9;
}

.page-text-color {
    color: var(--page-text-color);
}

.text-dark-grey {
    color: var(--text-dark-grey);
}

.page-secondary-bg {
    background-color: var(--page-secondary-bg);
}

.page-primary-bg {
    background: var(--page-primary-bg);
}

.page-theme-gradient {
    background: var(--page-theme-gradient);
}

.button {
    border-radius: unset !important;
    font-family: 'Gilroy' !important;
    padding: 12px 16px !important;
}

.link-active,
.link-active:hover {
    text-decoration: underline !important;
    color: var(--primary-color-600) !important;
}

.circle-icon {
    border: unset;
}



.hero-section {
    padding: 100px 0;
    position: relative;
}

.br-0 {
    border-radius: 0px;
}

/* Banner Box */

.banner-icon {
    display: flex;
    align-items: center;
    gap: 20px;
}

.seprator {
    margin: 50px 0;
}

/* Food Grid */


.food-grid {
    background: var(--page-secondary-bg);
    padding: 50px 50px;
    display: flex;
    align-items: center;
    gap: 70px;
    color: #fff;
}

.f-list li {
    padding: 26px 0;
    border-top: 1px solid #12353B;
}

.app-download {
    display: flex;
    align-items: center;
    gap: 70px;
}

.app-download li svg {
    height: 66px;
}


/* Invest Wrap */

.invest-wrapper {
    background: var(--page-theme-gradient);
}

.invest-icon-wrapper {
    padding: 10px 120px 10px 0;
    width: 100%;
}

.invest-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.invest-img {
    width: 100%;
    max-width: 50px;
}

.invest-sep-border {
    border-top: 1px solid #BEDBE0;
    display: block;
    padding: 0;
    width: 100%;
    max-width: 80%;
    position: relative;
    margin: 30px 0;
}

.invest-sep-border:before {
    content: '';
    width: 70px;
    height: 6px;
    background: var(--primary-color-600);
    position: absolute;
    bottom: -3px;
    left: 0;
    transition: all .3s ease;
}

.theme-icon-wrapper {
    background-color: #fff;
    padding: 30px 30px 30px 30px;
    border: 1px solid #BEDBE0;
    transition: all 0.3s;
    gap: 40px;
}

.theme-icon-wrapper:hover {
    background-color: #F3EBE6;
    border: 1px solid #DDC6B7;
    transition: all 0.3s;
}



/* Cta Wrappers */

.cta-theme {
    background: var(--page-secondary-bg);
    padding: 20px 0 0;
    color: #fff;
}
.cta-theme.spacer-xl {
    padding: 100px 0;
}

.cta-theme.light {
    background-color: var(--page-primary-bg);
    color: var(--text-dark-grey);
}

.animate-path {
    transform-origin: 51% 76.5%;
    transition: all .5s;
}

.animate-speed {
    animation: arrow-animate 3s forwards;
}

@keyframes arrow-animate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(-130deg);
    }
}

/* Services Card */

.service-theme-card {
    padding: 30px;
    border: 1px solid #B8D3D9;
}

.service-theme-img {
    width: 150px;
    height: 150px;
    min-width: 150px;
    position: relative;
}

.image-box-wrap .invest-sep-border {
    margin: 26px 0;
}



/* Tabs Section */


.mockup-img-box {
    position: relative;
}

.accordion-box {
    border-top: 1px solid #B8D3D9 !important;
    padding: 32px 0;
}

.accordion-box:last-of-type {
    border-bottom: 1px solid #B8D3D9 !important;
}

.custom-accordion-wrapper .accordion-button {
    font-weight: 700 !important;
    font-size: 30px;
}

.accordion-img-wrapper img {
    max-width: 100%;
}

.accordion-img-wrapper {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.accor-btn span::before {
    content: '';
    background-image: url(../images/food-delivery-images/accordion-arrow.webp);
    transition: all 0.3s;
    display: inline-block;
    height: 30px;
    min-width: 30px;
    width: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.3s;
}

.accor-btn.collapsed span::before {
    filter: grayscale(1);
    opacity: 0.5;
}

.tab-theme {
    padding: 60px 120px;
    background: #EEF7F9;
}

.tab-wrapper {
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 80%;
    background: #fff;
    margin-bottom: 80px !important;
}

.tab-wrapper .nav-link {
    color: #5E7C83;
    font-weight: 500;
    font-size: 16px;
}

.tab-wrapper .nav-link.active {
    font-weight: 600;
}

.icon-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 30px;
}

.icon-list li {
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 12px 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Process Box */


.process-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--page-primary-bg);
    padding: 40px 130px 40px 40px;
    border: 1px solid #BCD7DC;
}

.process-icon {
    width: 100%;
    max-width: 180px;
    min-width: 180px;
    height: 180px;
    background: linear-gradient(180deg, rgba(255, 245, 239, 0) 0%, #D8EEF1 100%);
    border-radius: 50%;
    padding: 40px;
}


.sticky-top {
    position: sticky;
    top: 180px;
    z-index: 1;
}


/* Slider */

.slider-sec {
    background-color: var(--page-secondary-bg);
    color: white;
}

.step-space {
    padding-left: calc(50% - 790px);
}

.step-count {
    font-size: 48px;
    font-weight: 700;
}

.slider-btn {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 30px;
    justify-content: end;
}

.swiper-button-next, .swiper-button-prev {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static !important;
    color: #fff;
    z-index: 2;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}


/* Accordion Step */

.step-accor .accor-btn span::before {
    content: unset;
}

.step-accor .custom-accordion-wrapper {
    border-left: 1px solid #E6E6E6;
}

.step-accor .accordion-box {
    display: flex;
    gap: 50px;
    border: unset !important;
    padding: 0;
    margin: 0 0 50px;
}


.accor-head {
    margin: 6px 0 0;
}

.accor-count {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    font-size: 18px;
    font-weight: 800;
    background-color: #E6E6E6;
    color: #808080;
    position: relative;
    padding: 10px 2px 10px 10px;
    white-space: nowrap;
}

.accor-count::before {
    content: '';
    position: absolute;
    border: 22px solid transparent;
    border-left-color: #E6E6E6;
    left: 100%;
}
.accordion-item.accordion-box.active .accor-count::before {
    border-left-color: #ffdadb;
}

.accordion-item.accordion-box.active .accor-count {
    color: #DE2B33;
    background: #ffdadb;
}

.tab-conbox {
    padding: 40px 30px;
    background: var(--page-secondary-bg);
    color: #fff;
    display: none;
    flex-direction: column;
    align-items: center;
}

.tab-conimg {
    margin: 0 0 -4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-conbrief {
    background: #182D30;
    padding: 30px 20px;
}

.scrollEffect svg {
    width: 100%;
}


/* Cards Block */

.process__wrapper {
    padding: 20px 20px;
    border: 1px solid #FFF5F5;
    box-shadow: 0px 0px 5px 0px #0000000D;
    transition: all 0.3s;
}

.process__wrapper .link-block {
    color: var(--text-dark-grey);
}

.process__wrapper .link-block:hover, .process__wrapper:hover .link-block {
    color: var(--primary-color-600);
    text-decoration: underline !important;
}

.process__wrapper:hover {
    transform: translateY(-5px);
}



/* Responsive */


@media only screen and (max-width: 1599px) {
    
    .invest-icon-wrapper {
        padding: 0 10px;
    }

    .tab-theme {
        padding: 50px 50px;
    }

    .process-icon-wrapper {
        gap: 30px;
        padding: 30px;
    }

    .process-icon {
        max-width: 140px;
        min-width: 140px;
        height: 140px;
    }

    .step-space {
        padding-left: 170px;
    }
}

@media only screen and (max-width: 1200px) {

    .step-space {
        padding-left: 10px;
    }

    .tab-theme {
        padding: 40px 20px;
    }

    .tab-wrapper {
        max-width: 100%;
    }
}

@media only screen and (max-width: 992px) {
    
    .tab-wrapper {
        flex-direction: column;
    }

    .tab-wrapper .nav-link {
        padding: 14px 16px;
    }

    .tab-content {
        padding: 0;
    }

    .icon-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sticky-top {
        position: static;
    }

    .accor-count {
        height: 34px;
        font-size: 14px;
        padding: 5px 2px 5px 5px;
    }

    .accor-count::before {
        border: 17px solid transparent;
    }

    .step-accor .accordion-box {
        gap: 30px;
    }

    .accor-head {
        margin: 0;
    }

    .service-theme-card {
        padding: 20px;
    }

    .theme-icon-wrapper {
        padding: 20px 20px;
    }
    
}

@media only screen and (max-width: 767px) {

    .hero-section {
        padding: 70px 0 0;
    }

    .food-grid {
        padding: 20px 20px;
        gap: 50px;
        flex-direction: column;
    }

    .count-title .count-icon {
        height: 35px !important;
        width: 35px !important;
        min-width: 35px !important;
    }

    .page-counter {
        padding-bottom: 10px !important;
    }

    .count-title p {
        font-size: 16px !important;
    }

    .f-grid-img, .f-details {
        width: 100%;
    }

    .f-list li {
        padding: 15px 0;
    }

    .process-icon-wrapper {
        gap: 30px;
        padding: 30px;
        flex-direction: column;
        align-items: baseline;
    }

    .swiper-button-next, .swiper-button-prev {
        width: 42px;
        height: 42px;
        min-width: 42px;
        padding: 30px;
    }

    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 20px;
    }

    .slider-btn {
        margin: 20px 0 0;
    }

    .banner-icon {
        flex-direction: column;
    }

    .custom-accordion-wrapper .accordion-button {
        font-size: 20px !important;
    }

    .tab-wrapper {
        flex-direction: column;
        padding: 15px;
        border-radius: 20px;
        margin: 0 0 40px !important;
    }

}
@media only screen and (max-width: 600px) {
    
    .count-grid {
        gap: 28px !important;
    }

    .invest-head {
        align-items: baseline;
        flex-direction: column-reverse;
    }

    .icon-list li {
        padding: 12px 10px;
    }
}

@media only screen and (max-width: 400px) {

}