:root {
    --page-primary-bg: #516ABC;
    --page-secondary-bg: #0B1F5480;
    --page-dark: #010714;
    --page-theme-gradient: linear-gradient(62.05deg, #2600FC 0%, #FF00EA 100%);
    --theme-gradient: linear-gradient(103.44deg, #005588 5.67%, #1E4D68 24.04%, #3E1F89 78.31%);
    --tick-icon: url(../images/custom-images/check-icon.webp);
    --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);
}

.theme-gradient {
    background: var(--theme-gradient);
}

.button-primary {
    background-image: var(--page-theme-gradient);
    transition: ease-in 0.2s;
    background-size: 100%;
}

.button-primary:hover {
    transition: ease-in 0.2s;
    background-size: 200%;
    background-position: right !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/custom-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;
}

.hero-section::before {
    content: '';
    background-color: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    opacity: 0.8;
    z-index: 1;
}

.banner-video {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.banner-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tick-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tick-list li {
    font-size: 20px;
    padding: 0 0 0 28px;
    position: relative;
}

.tick-list li::before {
    content: '';
    background-image: var(--tick-icon);
    display: inline-block;
    position: absolute;
    inset: 8px auto 0 0;
    width: 20px;
    height: 20px;
    background-size: 20px;
    background-repeat: no-repeat;
}

/* Service Block */

.service-wrapper {
    border-width: 1px;
    border-style: solid;
    border-image: linear-gradient(to right, #50ffe299, #7d56da99) 1;
    padding: 20px 20px;
    color: var(--white-color);
    background-color: var(--page-secondary-bg);
    backdrop-filter: blur(12px);
    transition: all 0.3s;
}

.service-wrapper:hover {
    border-image: linear-gradient(to right, #7d56da99, #50ffe299) 1;
    transform: translateY(-5px);
}

.service-image img {
    width: 100%;
    object-fit: cover;
}

/* Process */

.process-intro .video-block {
    position: absolute;
    inset: 0;
}

.process-intro::before {
    content: '';
    background-color: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    opacity: 0.7;
    z-index: 1;
}

.process-block {
    position: relative;
    background: #FFFFFF33;
    border: 1px solid var(--border-color);
    padding: 30px 30px;
    color: var(--white-color);
    transition: all 0.3s;
}

.process-block:hover {
    transform: translateY(-4px);
    backdrop-filter: blur(12px);
    border-color: var(--white-color);
}

.process-block::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/custom-images/blur.webp);
    opacity: 0.4;
}

/* Industry Development */

.development-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    height: 100%;
    backdrop-filter: blur(12px);
    background: #FFFFFF26;
    border: 1px solid var(--border-color);
    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/custom-images/blur.webp);
    opacity: 0.2;
}

.development-wrapper:hover{
    border-color: var(--white-color);
    transition: all 0.3s;
}

.swiper-slide {
    height: auto !important;
}

.develop-img {
    width: 100%;
    height: 220px;
}

.develop-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: pixelated;
}

.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;
}


/* Workflow Block */

.workflow-block {
    padding: 30px;
    background: transparent;
    transition: all 0.3s;
    color: var(--white-color);
}

.workflow-block:hover {
    background: var(--page-primary-bg);
    transform: translateY(-3px);
}


/* Tech Block */

.tech-wrapper {
    background: #FFFFFF4D;
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    padding: 30px 30px;
    color: var(--white-color);
    transition: all 0.3s;
}

.tech-wrapper:hover {
    transform: translateY(-4px);
    border-color: var(--white-color);
}

/* Cta */

.cta-block {
    background: var(--theme-gradient);
}

.cta-wrapper {
    background: var(--theme-gradient);
    padding: 50px 90px;
}

/* 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);
}


/* Responsive */

@media (max-width: 1599px) {

    .padding-left {
        --page-width: 1200px;
        padding-left: calc(50% - (var(--page-width) / 2) + 12px);
    }
}

@media only screen and (max-width: 1599px) {

}

@media only screen and (max-width: 1399px) {
    
    .cta-wrapper {
        padding: 40px 50px;
    }
}

@media only screen and (max-width: 991px) {

    .cta-block,
    .cta-wrapper {
        padding: 40px 20px;
    }
    
    .process-block,
    .workflow-block,
    .tech-wrapper {
        padding: 20px 20px;
    }

    .text-align-center {
        text-align: center;
    }
}

@media only screen and (max-width: 767px) {

    .tick-list li {
        font-size: 17px;
    }

    .button {
        width: auto !important;
    }
}

