/* Common Style starts */
:root {
    --page-primary-bg: #00083C;
    --page-secondary-bg: #1778BE;
    --page-theme: #30AD1C;
    --page-blue-fade: #EFF8FF;
    --page-current: linear-gradient(180deg, #63A2C1 0%, #F3B6C6 100%, #F3B6C6 100%);
    --text-theme: #1A1A1A;
    --tick-icon: url(../images/casino-images/check-icon.webp);
}

/* 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;
}

.page-primary-bg {
    background-color: var(--page-primary-bg);
}

.page-secondary-bg {
    background-color: var(--page-secondary-bg);
}

.page-theme {
    background-color: var(--page-theme);
}

.page-blue-fade {
    background-color: var(--page-blue-fade);
}

.page-current {
    background: var(--page-current);
}

.text-theme {
    color: var(--text-theme);
}

.sections-wrapper .text-white {
    color: var(--white-color) !important;
}

.button-primary {
    color: var(--white-color);
    background-color: var(--page-theme) !important;
}

.button-primary:hover {
    color: var(--white-color) !important;
    background-color: #132735 !important;
}

.button-primary.button-primary-light {
    background: transparent !important;
    color: var(--white-color);
    border: 1px solid var(--white-color);
}

.button-primary.button-primary-light:hover {
    color: var(--white-color) !important;
    background-color: var(--page-secondary-bg) !important;
    border-color: var(--page-secondary-bg) !important;
}

.button-secondary {
    background-color: var(--page-secondary-bg) !important;
    color: var(--white-color) !important;
}

.button-secondary:hover {
    background-color: var(--page-theme) !important;
    color: var(--white-color) !important;
}

.button svg {
    animation: pulso 2s infinite;
    border-radius: 100px;
}

body {
    background-image: url(../images/web3-images/page-current.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

/* Hero Section */

.hero-section {
    padding: 80px 0 0;
}

.hero-section::before {
    content: '';
    background-color: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    opacity: 0.6;
    z-index: 1;
}

.banner__video {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.banner__video video {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.tick-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tick-list li {
    font-size: 18px;
}

/* Service Block */

.service-block {
    width: 100%;
}

.service-block .service-img {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-block .service-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.service-block .service-img .service-overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 8, 60, .83);
    color: var(--white-color);
    padding: 24px;
    transition: all .3s ease;
}

.service-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border: 1px solid #FFFFFF;
    color: var(--white-color);
    padding: 20px 24px;
    height: 96px;
}

.service-title img {
    width: 100%;
    max-width: 45px;
    transition: all 0.3s;
}

.service-block:hover a.service-title {
    text-decoration: underline !important;
    color: var(--white-color);
}

.service-block:hover .service-title img {
    rotate: -30deg;
}

.service-block:hover .service-img .service-overlay {
    top: 0%;
}

/* Sticky Animate Section */

.image {
    opacity: 0;
    transition: all 0.5s ease;
}

.image.active {
    opacity: 1;
}
  
.locker {
    position: relative;
    display: flex;
}

.locker__image {
    position: relative;
}

.locker__container {
    position: sticky;
    position: -webkit-sticky;
    top: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 520px;
}

.locker__image img {
    width: 100%;
    position: absolute;
    transition: all 1s ease;
    inset: 0;
    height: 100%;
    object-fit: contain;
    object-position: left;
}

.locker__section {
    height: 100vh;
    padding-top: calc(100% - 80%);
    color: var(--white-color);
}

/* Choose Block */

.choose-block {
    background-image: url(../images/web3-images/choose-block.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.development-wrapper {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 20px;
    transition: all 0.3s;
    position: relative;
    height: 600px;
    cursor: none;
    color: var(--white-color);
}

.development-intro .swiper-slide {
    display: flex;
    height: auto;
}

.swiper-slide {
    height: auto !important;
}

.develop-img {
    width: 100%;
    position: absolute;
    inset: 0;
}

.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-pagination-dots {
    justify-content: center;
}

.slider-btn .swiper-pagination,
.slider-btn .swiper-pagination-dots {
    display: flex;
    align-items: center;
    position: static;
    width: auto;
}

.slider-btn .swiper-pagination-bullet {
    background: var(--white-color) !important;
}

.slider-btn .swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: #F5A623 !important;
    width: 28px !important;
    border-radius: 4px;
}

.cursor {
    position: fixed;
    left: var(--cursor-x);
    top: var(--cursor-y);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 600;
    background: #F5A623;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
}

.cursor img {
    width: 100%;
    max-width: 54px;
}

body.show-custom-cursor .cursor {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Bordered Block */

.bordered-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    color: var(--white-color);
    border: 1px solid #f4eeee90;
    padding: 20px 20px;
    transition: all 0.3s;
}

.bordered-block:hover {
    border-color: var(--white-color);
    transform: translateY(-5px);
    transition: all 0.3s;
}

.image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Awards Block */

.awards-intro {
    background-image: url(../images/web3-images/award-intro.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.award-grid {
    grid-template-columns: repeat(5, 1fr);
    justify-content: space-between;
    display: grid;
    gap: 20px 40px;
}

.award-logo {
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    height: 130px;
    transition: all 0.3s;
}

.award-logo img {
    object-fit: contain;
}

.award-logo:hover {
    transform: scale(1.1);
}

/* Cta Block */

.cta-block {
    padding: 40px 40px;
    background: var(--page-current);
}

.cta-intro {
    background-image: url(../images/web3-images/cta-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

/* Faq */

.new-faq .accordion-item {
    border-bottom: 1px solid #fff !important;
    padding: 28px 0px !important;
    background: transparent;
    color: var(--white-color);
}

.sections-wrapper .new-faq .accordion-item h2.accordion-header button {
    color: var(--white-color) !important;
    font-size: 24px !important;
    font-weight: 600 !important;
}

.new-faq .accordion-button::after {
    filter: invert(1);
}
@media (max-width: 1599px) {

    .padding-left {
        --page-width: 1200px !important;
        padding-left: calc(50% -(var(--page-width) / 2) + 12px);
    }

    .service-title {
        padding: 14px 24px;
        height: 88px;
    }
}

@media screen and (max-width: 1399px) {
    
}

@media screen and (max-width: 991px) {

    .spacer-xl {
        padding: 70px 0 !important;
    }

    .image {
        opacity: 1;
        width: 100%;
        margin: 0 0 20px;
    }

    .locker__section {
        height: auto;
        padding: 0;
        text-align: center;
    }

    .locker__content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
}

@media screen and (max-width: 767px) {

    .award-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 20px;
    }

    .service-title {
        padding: 14px 18px;
        height: 70px;
    }

    .cta-block {
        padding: 30px 20px;
    }

    .service-title img {
        max-width: 38px;
    }

    .development-wrapper {
        padding: 24px;
        height: 480px;
    }
}