/* Common Style starts */
:root {
    --page-primary-bg: #2E53CC;
    --page-secondary-bg: linear-gradient(270deg, rgba(42, 145, 183, 0.06) 0%, rgba(42, 75, 183, 0.06) 100%);
    --page-fade: #010006;
    --text-theme: #0B0C0D;
    --text-grey: #58646A;
    --text-primary: #51683E;
}

.page-primary {
    background: var(--page-primary-bg);
}

.page-secondary {
    background: var(--page-secondary-bg);
}

.page-fade {
    background-color: var(--page-fade);
}

.text-grey {
    color: var(--text-grey) !important;
}

.text-primary {
    color: var(--text-primary) !important;
}

.sections-wrapper .w-normal {
    font-weight: 500 !important;
}

.sections-wrapper .w-semibold {
    font-weight: 600 !important;
}

html body {
    color: var(--text-theme) !important;
}

.object-cover {
    object-fit: cover;
}

.button-primary, .button-primary:hover {
    color: var(--white-color);
    background: var(--page-primary-bg) !important;
    font-weight: 600 !important;
}

.button-secondary, .button-secondary:hover {
    color: var(--text-theme) !important;
    background-color: var(--white-color) !important;
}

.button-secondary svg {
    animation: pulso-effect 2s infinite !important;
}

.button svg {
    animation: pulso 2s infinite;
    border-radius: 100px;
}

@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);
    }
}

@keyframes pulso-effect {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.8);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 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-image: url(../images/geo-images/banner-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.pointer-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.point-block {
    backdrop-filter: blur(50px);
    background: #FFFFFF14;
    padding: 60px 50px;
    border-radius: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white-color);
    gap: 20px;
}

.point-block:first-child,
.point-block:last-child {
    position: relative;
    z-index: 1;
}

.point-block:last-child::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(312.19deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 38.09%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.point-block:first-child::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(129.74deg, #FFFFFF 0.04%, rgba(255, 255, 255, 0) 38.94%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/* Strategy Block */

.strategy-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.strategy--block {
    display: flex;
    gap: 20px;
    padding: 30px 30px;
    width: 100%;
    border-right: 0.5px solid #b7d6fc30;
    border-bottom: 0.5px solid #b7d6fc30;
}

.strategy-wrapper .strategy--block:nth-child(3),
.strategy-wrapper .strategy--block:nth-child(6),
.strategy-wrapper .strategy--block:nth-child(9) {
    border-right: none;
}

.strategy-wrapper .strategy--block:nth-child(7),
.strategy-wrapper .strategy--block:nth-child(8),
.strategy-wrapper .strategy--block:nth-child(9) {
    border-bottom: none;
}

.strategy--icon {
    width: 160px;
    min-width: 160px;
    height: 160px;
    box-shadow: 0px 4px 50px 0px #00000014;
    border-radius: 50%;
}

.strategy--icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Model Block */

.model-intro {
    position: relative;
    background-color: var(--page-fade);
}

.model-intro::before {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    background-image: url(../images/geo-images/model-shape.webp);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.model--wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.model--block {
    display: grid;
    grid-template-columns: auto 450px;
    gap: 30px;
    color: var(--white-color);
    transition: all 0.3s;
}

.model--block.reverse--block{
    grid-template-columns: 450px auto;
}

.model-img {
    width: 100%;
    height: 100%;
}

.model-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.model-content {
    background: #FFFFFF1A;
    border-radius: 20px;
    padding: 40px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.3s;
}

.model-icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model--block:hover .model-content {
    background-color: var(--page-primary-bg);
    color: var(--white-color) !important;
}

/* Process Block */

.process-block {
    padding: 30px 30px;
    border: 2px solid #2E55D633;
    background-color: var(--white-color);
    border-radius: 30px;
    transition: all 0.3s;
    position: relative;
    width: 100%;
    height: 100%;
}

.process-count {
    -webkit-text-fill-color: transparent;
    font-size: 70px;
    font-weight: bold;
    line-height: 1;
    background: linear-gradient(180deg, #2e53cc90 0%, rgba(46, 83, 204, 0) 100%) text;
    position: absolute;
    right: 20px;
    top: 20px;
}

.process-block:hover .process-count {
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%) text;
}

.process-block:hover img {
    filter: brightness(0) invert(1);
}

.process-block:hover {
    background-color: var(--page-primary-bg);
}

.process-block:hover h4,.process-block:hover p {
    color: var(--white-color) !important;
}

/* Management Block */

.sticky-column {
    position: sticky !important;
    top: 180px;
}

.management-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.management-block {
    display: flex;
    gap: 30px;
    backdrop-filter: blur(100px);
    border: 1px solid #FFFFFF40;
    background-color: #FFFFFF1A;
    transition: all 0.3s;
    border-radius: 30px;
    padding: 30px 30px;
}

.management-icon {
    width: 70px;
    min-width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.management-block:hover {
    border-color: var(--page-primary-bg);
    background-color: var(--page-primary-bg);
}

/* Industry Block */

.industry-slider .swiper-slide {
    height: auto !important;
}

.industry-block {
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
    background-color: var(--white-color);
}

.industry-img {
    width: 100%;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
}

.industry-img img {
    width: 100%;
    height: 100%;
    border-radius: 30px 30px 0 0;
    object-fit: cover;
}

.industry-content {
    padding: 30px 30px;
}

.industry-block:hover {
    background-color: var(--page-primary-bg);
}

.industry-block:hover h4 {
    color: var(--white-color) !important;
}

.slider-btn {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin: 50px 0 0;
}

.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(--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 Wrapper */

.cta-block {
    background-image: url(../images/geo-images/cta-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px 60px;
    border-radius: 10px 50px 50px 10px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
}

.cta-block.cta--reverse {
    background-image: url(../images/geo-images/cta-intro-2.webp);
    border-radius: 50px 10px 10px 50px;
}

/* Faq Block */

.new-faq .accordion-item {
    padding: 32px 0px !important;
}

.sections-wrapper .new-faq .accordion-item h2.accordion-header button {
    font-size: 24px !important;
}

/* Responsive */

@media only screen and (max-width: 1599px) {

    .padding-left {
        --page-width: 1200px !important;
        padding-left: calc(50% -(var(--page-width) / 2) + 12px);
    }
    
    .padding-right {
        --page-width: 1200px !important;
        padding-right: calc(50% -(var(--page-width) / 2) + 12px);
    }

    .strategy--block {
        flex-direction: column;
        text-align: center;
        padding: 20px 20px;
    }

    .strategy--icon {
        margin-inline: auto;
    }
}

@media only screen and (max-width: 991px) {

    .strategy-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .strategy--block {
        border: 1px solid var(--page-primary-bg) !important;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .cta-block,
    .cta-block.cta--reverse {
        padding: 40px 20px;
        text-align: center;
        justify-content: center;
        align-items: center;
        border-radius: 20px;
        background-image: unset;
        background-color: var(--page-primary-bg);
    }

    .process-block,
    .point-block {
        padding: 20px 20px;
        border-radius: 20px;
    }

    .strategy--block {
        padding: 20px 20px;
    }

    .point-block:first-child::before,
    .point-block:last-child::before {
        border-radius: 20px;
    }

}

@media only screen and (max-width: 767px) {

    .new-faq .accordion-item {
        padding: 20px 0px !important;
    }

    .model--block {
        display: flex;
        flex-direction: column-reverse;
    }

    .model--block.reverse--block {
        flex-direction: column;
    }

    .model-img img {
        width: 100%;
    }

    .model-content{
        padding: 20px 20px;
    }

    .strategy-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}