:root {
    --page-primary-bg: #005AEA;
    --page-secondary-bg: #070F21;
    --page-fade: linear-gradient(180deg, rgba(7, 15, 33, 0.8) 0%, rgba(14, 26, 52, 0.8) 100%);
    --text-theme: #000000;
    --text-grey: #E8E8E8;
}

main section {
    font-family: 'Gilroy' !important;
}

/* Lenis */

html.lenis, html.lenis body {
    height: auto;
}
  
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
  
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
  
.lenis.lenis-stopped {
    overflow: hidden;
}
  
.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    background-color: #000 !important;
}

.banner-heading {
    font-size: clamp(2rem, 6vw, 3rem);
}

.page-primary {
    background-color: var(--page-primary-bg);
}

.page-secondary {
    background-color: var(--page-secondary-bg);
}

.page-fade {
    background: var(--page-fade);
}

.text-theme {
    color: var(--text-theme);
}

.text-grey {
    color: var(--text-grey) !important;
}

.link-title {
    color: var(--text-theme) !important;
}

.circle-icon,
.border-0 {
    border: none;
}

.button {
    border-radius: unset !important;
    font-family: 'Gilroy' !important;
    padding: 12px 16px !important;
}

.button-primary,
.button-primary:hover {
    background: var(--page-primary-bg) !important;
    color: var(--white-color) !important;
    font-weight: 600;
}

.button-secondary,
.button-secondary:hover {
    background-color: var(--white-color) !important;
    color: var(--page-primary-bg) !important;
    font-weight: 600;
    border-radius: 50px !important;
}

.z-1 {
    z-index: 1;
    position: relative;
}

.object-cover {
    object-fit: cover;
}

.link-white,
.link-white:hover {
    color: var(--white-color) !important;
    text-decoration: underline !important;
}

/* Hero Intro */

.hero-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--page-secondary-bg);
    background-image: url(../images/and-images/hero-intro.webp);
}

/* Case Block */

.case--wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.case--grid {
    grid-template-columns: 500px auto;
    display: grid;
    gap: 0;
    border-radius: 40px;
    overflow: hidden;
    position: sticky;
}

.case--detail {
    background: linear-gradient(136.89deg, #005AEA 5.04%, #001F63 97.22%);
    padding: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.case--shape {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.case--avail,
.case--appblk {
    display: flex;
    align-items: center;
    gap: 10px;
}

.case--block {
    background: linear-gradient(289.72deg, #B98B1A 1.23%, #8B6812 40.5%, #000000 97.32%);
    padding: 40px 40px 0;
}

.case--wrapper .case--grid:nth-child(2) .case--block {
    background: linear-gradient(289.72deg, #161616 1.23%, #4C4A4A 47.42%, #000000 97.32%);
}

.case--wrapper .case--grid:nth-child(3) .case--block {
    background: linear-gradient(289.72deg, #003EA8 1.23%, #001D4F 40.5%, #000000 97.32%);
}

.case--wrapper .case--grid:nth-child(1) {
    top: 140px;
}

.case--wrapper .case--grid:nth-child(2) {
    top: 180px;
}

.case--wrapper .case--grid:nth-child(3) {
    top: 220px;
}

/* offer Block */

.offer--block {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}

.offer-img img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.offer--detial {
    padding: 20px;
    z-index: 1;
    bottom: 0;
    width: 100%;
    height: 100px;
    position: absolute;
    transition: all 0.3s;
    background: #00000045;
    backdrop-filter: blur(14px);
}

.offer--detial p {
    height: 0;
    opacity: 0;
    transition: all 0.3s;
}

.offer--block:hover .offer--detial {
    height: 100%;
}

.offer--block:hover .offer--detial p {
    opacity: 1;
    height: auto;
}

/* Serice Block */

.service--block {
    width: 100%;
    height: 100%;
    padding: 30px 30px;
    border-radius: 20px;
    transition: all 0.4s;
    position: relative;
    border: 1px solid #BEBEBE;
    background-color: transparent;
}

.icon--box {
    width: 80px;
    height: 80px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service--block:hover {
    background-color: var(--page-secondary-bg);
    border-color: transparent;
}

/* Process Block */

.process--block {
    padding: 20px 20px;
    position: relative;
    border-left: 3px solid #D9D9D9;
}

.process--block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -3px;
    width: 4px;
    height: 100px;
    background-color: #7349DE;
}

.process--wrapper .col-lg-2:nth-child(2) .process--block::before {
    background-color: #498ADE;
}

.process--wrapper .col-lg-2:nth-child(3) .process--block::before {
    background-color: #49DEBB;
}

.process--wrapper .col-lg-2:nth-child(4) .process--block::before {
    background-color: #9BDE49;
}

.process--wrapper .col-lg-2:nth-child(5) .process--block::before {
    background-color: #DEA049;
}

.process--wrapper .col-lg-2:nth-child(6) .process--block::before {
    background-color: #DE7149;
}

.process--wrapper .col-lg-2:nth-child(2) .process--block,
.process--wrapper .col-lg-2:nth-child(4) .process--block,
.process--wrapper .col-lg-2:nth-child(6) .process--block {
    margin: 100px 0 0;
}

/* Slider Benefit */

.benefit-slider .swiper-slide {
    height: auto !important;
    user-select: text !important;
    -webkit-user-select: text !important;
    -ms-user-select: text !important;
}

.slider-btn {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
    margin: 50px 0 0;
    justify-content: center;
}

.slider-btn .swiper-button-next,
.slider-btn .swiper-button-prev {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border: 1px solid var(--page-primary-bg);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static !important;
    color: var(--white-color);
    background: var(--page-primary-bg);
    margin: unset !important;
    z-index: 1 !important;
    transition: ease-in 0.3s;
}

.slider-btn .swiper-button-next:hover,
.slider-btn .swiper-button-prev:hover {
    background: var(--page-primary-bg);
    border-color: var(--page-primary-bg);
    color: var(--white-color);
    transition: ease-in 0.3s;
}

.slider-btn .swiper-button-next:after,
.slider-btn .swiper-button-prev:after {
    font-size: 18px;
}

/* CTA Block */

.cta--block {
    background-image: url(../images/and-images/cta-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 90px 90px;
}

/* Industries */

.indus-slider .swiper-slide {
    height: auto !important;
    user-select: text !important;
    -webkit-user-select: text !important;
    -ms-user-select: text !important;
}

.indus-slide {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

.indus-content {
    position: absolute;
    height: 100%;
    color: #FFF;
    top: calc(100% - 77px);
    transition: all .3s ease;
}

.content-wrap {
    height: 100%;
    text-align: center;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(7, 15, 33, 0.8) 0%, rgba(14, 26, 52, 0.8) 100%);
}

.indus-content>h3 {
    text-align: center;
    padding: 20px;
    margin: 0;
    background: linear-gradient(180deg, rgba(7, 15, 33, 0.8) 0%, rgba(14, 26, 52, 0.8) 100%);
}

.swiper-slide.swiper-slide-active .indus-slide .indus-content {
    top: -70px;
}


.cta-grad {
    background: linear-gradient(136.89deg, #005AEA 5.04%, #001F63 97.22%);
    border-radius: 20px;
}

.launch-card {
    border-radius: 10px;
    transition: all 0.3s;
    cursor: pointer;
}

.launch-card.active {
    background: #0044b845;
    border-color: #0044b8 !important;
}

.launch-sec .content {
    background: linear-gradient(136.89deg, #005AEA 5.04%, #001F63 195.22%);
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    position: relative;
}

.launch-sec .content > div {
    width: 60%;
}

.launch-sec .content > img {
    position: absolute;
    width: 30%;
    right: 40px;
    bottom: 10px;
}

/* -------- STATE -------- */
.launch-sec .content {
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    display: none;
}

.launch-sec .content.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
    display: block;
}

/* -------- TEXT ANIMATIONS -------- */
.animate-text-in {
    animation: slideTextIn .45s ease forwards;
}
.animate-text-out {
    animation: slideTextOut .35s ease forwards;
}

/* -------- IMAGE ANIMATIONS -------- */
.animate-img-in {
    animation: slideImgIn .45s ease forwards;
}
.animate-img-out {
    animation: slideImgOut .35s ease forwards;
}

/* -------- KEYFRAMES -------- */
@keyframes slideTextIn {
    0% { transform: translateX(-50px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideTextOut {
    0% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(-50px); opacity: 0; }
}

@keyframes slideImgIn {
    0% { transform: translateX(60px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideImgOut {
    0% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(60px); opacity: 0; }
}

.cta-idea {
    background-color: #101E3C;
    border-radius: 20px;
}

.cta-idea {
    background-color: #101E3C;
    border-radius: 20px;
    position: relative;
}

.cta-idea img:nth-child(3),
.cta-idea img:nth-child(1) {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
    height: calc(100% - 60px);
}

.cta-idea img:nth-child(3) {
    right: 30px;
    left: unset;
}

/* Client Slider */

/* Client Slider */

.review__block {
    display: flex;
    gap: 20px;
}

.video__block {
    width: 100%;
    max-width: 380px;
    height: 380px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.video__block img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: bottom;
}

.video__content__block {
    width: 100%;
    padding: 40px 80px;
    background-color: #070F21;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review__block .video__btn {
    content: "";
    position: absolute;
    inset: 0;
    background: #00000060;
    transform: unset;
    width: 100%;
    height: 100%;
}

.review__block .video__btn img {
    width: 100px !important;
    height: 100px !important;
}

.slider__spacer .swiper-pagination {
    bottom: -40px;
    z-index: 1;
}

.slider__spacer .swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--primary-color-600);
}

.slider__spacer .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-color-600);
}

/* Faq */

main .accordion-flush .accordion-item .accordion-button.collapsed {
    padding: 32px 0;
    font-size: 22px;
    font-weight: 600;
}

.faq .accordion-button,
.faq .accordion-item {
    background: transparent !important;
    color: #fff !important;
}

.faq-blocks .accordion-item {
    border-top: 1px solid #ffffff70 !important;
}

.faq-blocks .accordion:last-child {
    border-bottom: 1px solid #ffffff70 !important;
}

.faq-blocks .accordion-button {
    padding: 30px 0 !important;
    font-size: 20px !important;
    gap: 15px;
}

.faq-blocks .accordion-button::after {
    filter: brightness(0) invert(1);
}

.faq-blocks .accordion-body {
    padding: 0 300px 30px 0 !important;
    color: inherit;
}

/* Responsive */

@media (max-width: 1599px) {

    .padding-left {
        --page-width: 1200px;
        padding-left: calc(50% - (var(--page-width) / 2) + 12px);
    }

    .banner-heading {
        font-size: clamp(2rem, 6vw, 2.7rem);
    }
}

@media only screen and (max-width: 991px) {

    .faq-blocks .accordion-body {
        padding: 0 0 30px 0 !important;
    }

    .text-align-center {
        text-align: center;
    }

    .button {
        width: auto !important;
    }

    .case--grid {
        grid-template-columns: 1fr;
    }

    .case--detail,
    .case--block,
    .service--block {
        padding: 20px 20px;
    }

    .process--wrapper .col-lg-2:nth-child(2) .process--block,
    .process--wrapper .col-lg-2:nth-child(4) .process--block,
    .process--wrapper .col-lg-2:nth-child(6) .process--block {
        margin: 0;
    }

    .cta--block {
        padding: 50px 20px;
    }

    .launch-sec .row > .col-lg-8 > .row {
        display: flex;
        flex-wrap: nowrap;
        overflow: auto;
        scrollbar-width: thin;
        padding: 0 0 20px !important;
    }

    .launch-sec .content > img {
        position: static;
        margin: 0 0 -300px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto -260px;
    }

    .launch-sec .content.active {
        display: flex;
        gap: 20px;
        flex-direction: column;
        overflow: hidden;
    }

}

@media only screen and (max-width: 767px) {

    .launch-card > img {
        height: 60px;
    }

    .launch-sec .content {
        display: none;
        flex-direction: column-reverse;
        padding: 20px;
    }

    .launch-sec .content > div {
        width: 100%;
    }

    .review__block {
        flex-direction: column;
    }

    .video__block {
        height: 340px;
        border-radius: 20px;
        margin-inline: auto;
    }

    .video__content__block {
        padding: 20px 20px;
    }
}