:root {
    --page-primary-bg: #72C4FF;
    --page-secondary-bg: #18325680;
    --page-dark: #404f95;
    --page-theme-gradient: linear-gradient(62.05deg, #2600FC 0%, #FF00EA 100%);
    --border-color: #FFFFFF99;
}

/* 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;
}

::-webkit-scrollbar {
    width: .3em; 
}

::-webkit-scrollbar,
::-webkit-scrollbar-thumb {
    overflow:visible;
    border-radius: 0;
}

::-webkit-scrollbar-thumb {
    background-image: var(--page-theme-gradient); 
}

.page-primary {
    background: var(--page-primary-bg);
}

.page-secondary {
    background-color: var(--page-secondary-bg);
}

.page-dark {
    background-color: var(--page-dark);
}

.page-theme {
    background: var(--page-theme-gradient);
}

.button-primary {
    background-image: var(--primary-color-600);
    transition: ease-in 0.2s;
    background-size: 100%;
}

.button-primary:hover {
    color: var(--white-color) !important;
    background-color: #6150fe !important;
}

.circle-icon {
    border: none;
}

.button {
    border-radius: unset !important;
    font-family: 'Gilroy' !important;
    padding: 12px 16px !important;
}

.video-block {
    width: 100%;
    height: 100%;
}

.video-block video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

body {
    background-color: var(--page-secondary-bg);
    background: url(../images/astro-images/page-current.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.link-white,
.link-white:hover {
    color: var(--white-color);
    text-decoration: underline !important;
    font-size: calc(1rem + 0.208vw);
}

.link-title,
.link-title:hover {
    color: var(--white-color);
    text-decoration: underline !important;
}

/* Hero Section */

.hero-section {
    padding: 80px 0;
    color: var(--white-color);
    position: relative;
}

.banner-video {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.banner-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Counter */

.page-counter {
    background: url(../images/astro-images/counter-intro.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 110px 80px;
}

.counter-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 0;
}

.counter-text.percent::after {
    content: '%';
}

.counter-theme {
    color: var(--white-color);
    border-right: 1px solid #FFFFFFB2;
    padding: 0 28px;
    width: 33.33%;
}

.highlight__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    width: fit-content;
    color: var(--white-color) !important;
}

.highlight__link::after {
    content: '';
    background-image: url(../images/astro-images/highlight-underline.webp);
    height: 30px;
    width: 100%;
    position: absolute;
    top: 100%;
    right: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.highlight__link svg {
    transition: all 0.3s;
}

.highlight__link:hover svg {
    transition: all 0.3s;
    transform: translateX(10px);
}

/* Industry Development */

.development-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    height: 100%;
    backdrop-filter: blur(12px);
    background: #18325680;
    border: 1px solid var(--page-primary-bg);
    transition: all 0.3s;
    color: var(--white-color);
}

.development-wrapper::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/astro-images/card-overlay.webp);
    opacity: 0;
    transition: all 0.3s;
}

.development-wrapper:hover{
    border-color: var(--white-color);
    transition: all 0.3s;
}

.development-wrapper:hover::before{
    opacity: 1;
}

.swiper-slide {
    height: auto !important;
}

.develop-img {
    width: 100%;
    height: 250px;
}

.develop-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin: 40px 0 0;
}

.swiper-button-next,
.swiper-button-prev {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border: 1px solid var(--white-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static !important;
    color: var(--white-color);
    margin: unset !important;
    z-index: 1 !important;
    transition: ease-in 0.3s;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--primary-color-600);
    border-color: var(--primary-color-600);
    transition: ease-in 0.3s;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
}

/* Partner */

.process-intro {
    background: url(../images/astro-images/process-intro.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.partner-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    color: var(--text-theme);
    padding: 30px 0;
    transition: all 0.3s;
    border-top: 1px solid #FFFFFF33;
}

.partner-content {
    display: flex;
    gap: 30px;
    width: 100%;
    max-width: 50%;
}

.partner-block:hover .partner-content .h4 {
    color: #F5A623 !important;
}

.partner-content p {
    margin: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.partner-imghold {
    width: 100%;
    max-width: 140px;
    transition: all 0.3s;
}

.partner-block img {
    width: 100%;
    max-width: 100%;
    transition: all 0.3s;
}

/* Hover Block */

.partner-block:hover .partner-content p {
    margin: 20px 0 0;
    height: auto;
}

.partner-block:hover .partner-imghold {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(-6deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    max-width: 240px;
}

/* Service Grow Block */

.service-grid-block {
    display: flex;
    gap: 10px;
}

.grid-box {
    background-image: url(../images/astro-images/service-img-1.webp);
    background-position: center;
    background-size: cover;
    padding: 30px;
    color: var(--white-color);
    position: relative;
    transition: all .4s ease-in-out;
    display: flex;
    flex: 1;
    justify-content: space-between;
    flex-direction: column;
    height: 480px;
    cursor: pointer;
}

.grid-box::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/astro-images/card-overlay.webp);
    opacity: 0;
    transition: all 0.3s;
}

.grid-con {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.2s;
    height: 180px;
}

.grid-box.active {
    flex-grow: 2;
    background: var(--page-dark) !important;
}

.grid-box.active::before {
    opacity: 1;
}

.grid-box.active .grid-con{
    opacity: 1;
    transform: translateY(0px);
    height: auto;
}

.grid-box.active .grid-controls {
    opacity: 1;
}

.grid-box.box-2 {
    background-image: url(../images/astro-images/service-img-2.webp);
}

.grid-box.box-3 {
    background-image: url(../images/astro-images/service-img-3.webp);
}

.grid-box.box-4 {
    background-image: url(../images/astro-images/service-img-4.webp);
}

.grid-box.box-5 {
    background-image: url(../images/astro-images/service-img-5.webp);
}

.grid-box.box-6 {
    background-image: url(../images/astro-images/service-img-6.webp);
}

.grid-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    opacity: 0;
    transition: all 0.2s;
}

.slide-number {
    color: #FFFFFF4D;
}

/* Workflow Block */

.workflow-block {
    padding: 30px;
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.3s;
    color: var(--white-color);
}

.workflow-block:hover {
    background: #FFFFFF4D;
    backdrop-filter: blur(12px);
    border-color:  #3E5792;
    transform: translateY(-3px);
}

/* Astro Block */

.astro-intro {
    background: url(../images/astro-images/astro-intro.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.astro-block {
    background-color: transparent;
    padding: 30px 30px;
    border: 1px solid #BEE3FF;
    transition: all 0.3s;
    color: var(--white-color) !important;
}

.astro-block:hover {
    border-color: var(--page-primary-bg);
    transform: translateY(-5px);
}

/* Solution Block */

.solution-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    height: 100%;
    backdrop-filter: blur(12px);
    background: #18325680;
    border: 1px solid var(--page-primary-bg);
    transition: all 0.3s;
    color: var(--white-color);
}

.solution-wrapper:hover{
    border-color: var(--white-color);
    transition: all 0.3s;
    transform: translateY(-5px);
}

.solution-img {
    width: 100%;
    height: 250px;
}

.solution-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 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: 40px 0;
    font-size: 24px;
    gap: 15px;
}

.faq-blocks .accordion-button::after {
    filter: brightness(0) invert(1);
}

/* Cta Block */

.cta-block {
    background: url(../images/astro-images/counter-intro.webp);
    background-color: var(--page-dark);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 90px;
}

.cta-intro {
    background: url(../images/astro-images/counter-intro.webp);
    background-color: var(--page-dark);
    background-repeat: no-repeat;
    background-size: cover;
}


/* Responsive */

@media (max-width: 1599px) {

    .padding-left {
        --page-width: 1200px;
        padding-left: calc(50% - (var(--page-width) / 2) + 12px);
    }

    .grid-box {
        padding: 20px;
    }
}

@media only screen and (max-width: 1599px) {

}

@media only screen and (max-width: 1399px) {
    
}

@media only screen and (max-width: 991px) {

    .text-align-center {
        text-align: center;
    }

    .highlight__link {
        margin: 0 auto 30px;
    }

    .page-counter {
        padding: 50px 20px;
    }

    .service-grid-block {
        flex-direction: column;
        gap: 20px;
    }

    .grid-con {
        height: auto;
        opacity: 1;
        transform: translateY(0px);
    }

    .grid-box,
    .grid-box.active {
        background: var(--page-dark) !important;
    }

    .grid-controls {
        display: none;
    }

    .service-content span {
        width: 30px;
        height: 30px;
        background: #ffffff36;
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 15px;
    }

    .cta-block {
        padding: 40px 60px;
        text-align: center;
    }

    .counter-theme h3 {
        font-size: 18px !important;
    }
}

@media only screen and (max-width: 767px) {

    .cta-block {
        padding: 40px 20px;
    }

    .partner-block {
        flex-direction: column;
    }

    .partner-content {
        max-width: 100%;
    }

    .partner-imghold {
        display: none;
    }

    .partner-content p {
        height: auto;
    }

    .counter-grid {
        justify-content: space-between;
    }

    .counter-theme {
        padding: 0 15px;
        width: 49%;
        text-align: center;
    }

    .counter-grid .counter-theme:nth-child(2), .counter-grid .counter-theme:nth-child(4) {
        border: none;
    }

    .counter-grid .counter-theme:nth-child(3) {
        border-right: 1.5px solid #FFFFFFB2 !important;
    }

    .astro-block,
    .workflow-block {
        padding: 20px 20px;
    }
}