/* Common Style starts */
:root {
    --page-primary-bg: linear-gradient(97.34deg, #F8F7FD 7.53%, #E1FFFB 28.82%, #CDF1FD 65.97%, #F8F7FD 94.36%);
    --page-secondary-bg: #060606;
    --theme-gradient: linear-gradient(90deg, #0844FF 0%, #286CFD 50.48%, #4793FC 100%);
    --page-theme: #30AD1C;
    --text-theme: #0B0C0D;
    --text-grey : #3F4751;
    --tick-icon: url(../images/gemini-images/check-icon.webp);
}

.page-primary {
    background: var(--page-primary-bg);
}

.page-secondary {
    background-color: var(--page-secondary-bg);
}

.page-fade {
    background-color: var(--page-fade);
}

.theme-gradient {
    background: var(--theme-gradient);
}

.page-theme {
    background-color: var(--page-theme);
}

.text-theme {
    color: var(--text-theme);
}

.text-grey {
    color: var(--text-grey) !important;
}

.highlight-text {
    color: var(--page-primary-bg) !important;
}

html body {
    color: var(--text-theme) !important;
}

.sections-wrapper h1,.sections-wrapper .h1,
.sections-wrapper h2,.sections-wrapper .h2,
.sections-wrapper h3,.sections-wrapper .h3,
.sections-wrapper h4,.sections-wrapper .h4,
.sections-wrapper h5,.sections-wrapper .h5,
.sections-wrapper h6,.sections-wrapper .h6 {
    color: var(--text-theme) !important;
}

.sections-wrapper .page-text {
    color: var(--page-primary-bg) !important;
}

.sections-wrapper .w-normal {
    font-weight: 400 !important;
}

.sections-wrapper .text-white {
    color: var(--white-color) !important;
}

.button-primary {
    color: var(--white-color);
    background: var(--theme-gradient) !important;
}

.button-primary:hover {
    color: var(--white-color) !important;
    background: var(--theme-gradient) !important;
}

.button svg {
    animation: pulso 2s infinite;
    border-radius: 100px;
}

.z-1 {
    position: relative;
    z-index: 1;
}

@keyframes pulso {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
    }

    70% {
        -moz-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Hero Section */

.hero-section {
    background-color: var(--text-theme);
    padding: 90px 0;
    background-image: url(../images/gemini-images/banner-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.check-list {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 20px;
    color: var(--white-color);
}

.check-list li {
    font-size: 20px;
    padding: 0 0 0 38px;
    position: relative;
}

.check-list li::before {
    content: '';
    background-image: var(--tick-icon);
    display: inline-block;
    position: absolute;
    inset: 1px auto 0 0;
    width: 26px;
    height: 26px;
    background-size: 26px;
    background-repeat: no-repeat;
}

/* Counter */

.counter {
    background-image: url(../images/gemini-images/counter-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--white-color);
}

.counter-wrapper {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}

.counter-block {
    border-right: 1px solid transparent;
    padding: 0 12px;
}

.counter-wrapper .counter-block:last-child {
    border: none;
}

/* Consult Block */

.dark-intro {
    background: linear-gradient(146.51deg, #0A244A 0%, #000000 80.09%);
}

.service--block {
    display: flex;
    align-items: flex-end;
    position: relative;
    height: 600px;
    width: 100%;
    overflow: hidden;
    transition: all 0.3s;
}

.service--img {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.service--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    color: var(--white-color) !important;
    padding: 20px;
    width: 100%;
    z-index: 1;
    position: relative;
}

.service-content h4 {
    transition: all 0.3s;
    transform: translateY(0);
}

.service-content p {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    width: 100%;
    height: 100px;
    margin: auto;
    position: absolute;
    padding: 0 20px;
    bottom: -7rem;
    left: 50%;
    transform: translateX(-50%);
}

.service--block:hover h4 {
    transform: translateY(-110px);
}

.service--block:hover p {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}

/* Business Block */

.business-intro {
    background-image: url(../images/gemini-images/business-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--white-color);
}

.business-block {
    position: relative;
    border-radius: 10px;
    background: transparent;
    padding: 30px;
    transition: all 0.3s;
}

.business-block::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 1;
    transition: all 0.3s;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(180deg, #000000 0%, rgba(102, 102, 102, 0) 100%);
    -webkit-mask: 
        linear-gradient(var(--white-color), var(--white-color)) content-box, 
        linear-gradient(var(--white-color), var(--white-color));
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
}

.business-block:hover {
    background-color: var(--white-color);
    box-shadow: 0px 4px 31px 0px #0000001A;
}

.business-block:hover::before {
    opacity: 0;
}

.business-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #0A2A5A 0%, #0B111B 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 10px;
}

/* Strategy Wrapper */

.strategy-wrapper {
    background: linear-gradient(180deg, #0D0F1A 0%, #0E1426 100%);
    padding: 50px 50px;
    border-radius: 20px;
}

.strategy-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-radius: 15px;
    border: 1px solid transparent;
    padding: 30px 30px;
    color: var(--white-color);
    transition: all 0.3s;
}

.strategy-icon {
    width: 100%;
    max-width: 150px;
    height: 180px;
    background: var(--page-secondary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    padding: 10px;
}

.strategy-block:hover {
    border-color: #8EFFFF;
}

/* Choose Slider */

.choose-slider .swiper-slide {
    height: auto !important;
}

.choose-block {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    transition: all 0.3s;
    color: var(--text-theme);
    border: 4px solid var(--white-color);
    background: #FFFFFF73;
    backdrop-filter: blur(12px);
}

.choose-block:hover {
    cursor: grab;
    border-color: var(--white-color);
}

.choose-slider .swiper-pagination {
    top: unset !important;
    bottom: 14px !important;
    max-width: 80%;
    background: #00000030;
    border-radius: 10px;
    height: 6px !important;
}

.choose-slider .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    border-radius: 10px;
    background: var(--page-secondary-bg) !important;
}

.slider-button {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 40px 0 0;
}

.slider-arrow {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
}

.slider-button .swiper-button-next,
.slider-button .swiper-button-prev {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border: unset;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static !important;
    background-color: var(--page-primary-bg);
    color: var(--black-color);
    margin: unset !important;
    z-index: 1 !important;
    transition: ease-in 0.3s;
    border: 1px solid var(--black-color);
}

.slider-button .swiper-button-next:hover,
.slider-button .swiper-button-prev:hover {
    background: var(--page-secondary-bg);
    color: var(--white-color);
    transition: ease-in 0.3s;
}

.slider-button .swiper-button-next:after,
.slider-button .swiper-button-prev:after {
    font-size: 20px;
}

/* CTA Wrapper */

.cta-wrapper {
    background: var(--page-primary-bg);
    padding: 40px 60px;
    border-radius: 30px;
}

.cta-intro {
    background-color: var(--text-theme);
    background-image: url(../images/gemini-images/cta-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
}
/* Faq Block */

.new-faq .accordion-item {
    padding: 28px 0px !important;
}

.sections-wrapper .new-faq .accordion-item h2.accordion-header button {
    font-size: 24px !important;
}

/* 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: 1399px) {

}

@media only screen and (max-width: 991px) {

    .counter-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .service--block {
        height: 450px;
    }

    .cta-wrapper {
        padding: 40px 20px;
    }

    .strategy-wrapper {
        padding: 20px 20px;
    }
}

@media only screen and (max-width: 767px) {

    .business-block {
        padding: 20px 20px;
    }

    .service--block {
        height: 350px;
    }

    .strategy-block {
        flex-direction: column;
        border: 1px solid #ffffff40;
    }
    
    .choose-slider .swiper-pagination {
        max-width: 60%;
    }

    .slider-arrow {
        gap: 12px;
    }

    .slider-button .swiper-button-next, .slider-button .swiper-button-prev {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .slider-button .swiper-button-next:after, .slider-button .swiper-button-prev:after {
        font-size: 14px;
    }
}