:root {
    --page-primary-bg: #3A78FF;
    --page-secondary-bg: #0B1643;
    --page-fade: #FAFCFF;
    --text-theme: #1E1E1E;
    --text-grey: #58606A;
    --tick-icon: url(../images/technical-images/check-icon.webp);
    --tick-icon-2: url(../images/technical-images/check-icon-2.webp);
}

.page-primary {
    background: var(--page-primary-bg);
}

.page-secondary {
    background: var(--page-secondary-bg);
}

.page-fade {
    background-color: var(--page-fade);
}

.text-theme {
    color: var(--text-theme);
}

.text-grey {
    color: var(--text-grey);
}

.highlight {
    color: var(--page-primary-bg) !important;
}

.button-primary,
.button-primary:hover {
    color: var(--white-color);
    background-color: var(--page-primary-bg) !important;
    font-weight: 600 !important;
}

.button-secondary,
.button-secondary:hover {
    color: var(--white-color);
    background-color: #ffffff20 !important;
    border: 1px solid var(--white-color);
    font-weight: 600 !important;
    backdrop-filter: blur(8px);
}

.button svg {
    animation: pulso-effect 2s infinite;
    border-radius: 100px;
}

.sections-wrapper .text-white {
    color: var(--white-color) !important;
}

.z-1 {
    z-index: 1;
    position: relative;
}

.mb-70 {
    margin-bottom: 70px;
}

@keyframes pulso-effect {
    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);
    }
}

h1,h2,h3,h4,h5,h6 {
    color: var(--text-theme) !important;
}

.section-wrapper h1,
.section-wrapper .h1,
.section-wrapper h2,
.section-wrapper .h2,
.section-wrapper h3,
.section-wrapper .h3,
.section-wrapper h4,
.section-wrapper .h4,
.section-wrapper h5,
.section-wrapper .h5,
.section-wrapper h6,
.section-wrapper .h6,
.section-wrapper p {
    font-family: 'Gilroy' !important;
}

.section-wrapper .w-normal {
    font-weight: 400 !important;
}

/* Banner */

.hero-intro {
    background-image: url(../images/technical-images/banner-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 70px 0;
}

.input-block {
    display: flex;
    align-items: baseline;
    gap: 30px;
    width: 100%;
    max-width: 70%;
    margin: auto;
    background-color: #E6EEFF;
    padding: 20px;
    border-radius: 10px;
}

.input-wrap input {
    padding: 14px 20px;
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-theme) !important;
    background: var(--white-color);
    border: 1px solid var(--white-color);
}

.input-wrap input::placeholder {
    color: #828282;
}

.website-btn {
    width: 100%;
    border: none;
    display: flex;
    border-radius: 0;
    padding: 14px 20px;
    max-width: 280px;
    align-items: center;
    transition: all 0.3s;
    justify-content: center;
    color: var(--white-color);
    background-color: var(--page-primary-bg);
}

.website-btn:hover {
    background-color: var(--page-primary-bg);
}

.tick-list {
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    gap: 20px;
}

.tick-list li {
    font-size: 20px;
    padding: 0 0 0 34px;
    position: relative;
    color: var(--text-theme);
}

.tick-list li::before {
    content: '';
    background-image: var(--tick-icon);
    display: inline-block;
    position: absolute;
    inset: 2px auto 0 0;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Case Block */

.case--block {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background-color: var(--white-color);
    border: 1px solid #EEEEEE;
}

.case-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.case--content {
    padding: 20px 20px;
}

.case-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 20px;
    margin: 0 0 20px;
    border-bottom: 1px solid #DEDEDE;
}

/* Service Block */

.service--block {
    width: 100%;
    height: 100%;
    padding: 30px 30px;
    border-radius: 20px;
    transition: all 0.3s;
    border: 1px solid #B8B8B8;
    background-color: var(--white-color);
}

.service--block:hover {
    background-color: #1A62FF;
    border-color: #1A62FF;
}

.service--block:hover h4,
.service--block:hover p {
    color: var(--white-color) !important;
}

.service--block:hover img {
    filter: brightness(0) invert(1);
}

/* Model Block */

.model--wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.model--block {
    display: grid;
    grid-template-columns: auto 160px;
    align-items: center;
    gap: 30px;
    transition: all 0.3s;
}

.model--block.reverse--block{
    grid-template-columns: 160px auto;
}

.model-content {
    display: flex;
    padding: 40px 40px;
    border-radius: 20px;
    transition: all 0.3s;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #eee;
    background: transparent;
}

.model--block:hover .model-content{
    background-color: var(--page-primary-bg);
    border-color: var(--page-primary-bg);
}

.model--block:hover h4,
.model--block:hover p {
    color: var(--white-color) !important;
}

/* Industry Intro */

.industry-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: start;
}

.industry-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    padding: 20px 20px;
}
/* Tab Block */

.business-tab-link-block {
    padding: 0;
    margin: 0;
    border-radius: 20px;
    gap: 30px;
}

.icon--box {
    width: 60px;
    height: 60px;
    min-width: 60px;
}

.business-tab-link-block .nav-link p {
    height: 0px;
    opacity: 0;
    transition: all 0.3s;
}

.business-tab-link-block .nav-link {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 20px;
    padding: 20px;
    border: 1px solid #DEDEDE;
    transition: all 0.3s !important;
    border-radius: 20px;
}

.business-tab-link-block .nav-link.active,
.business-tab-link-block .show>.nav-link {
    background-color: var(--page-primary-bg) !important;
    border-color: var(--page-primary-bg) !important;
    align-items: flex-start;
}

.business-tab-link-block .nav-link.active h5, .business-tab-link-block .show>.nav-link h5,
.business-tab-link-block .nav-link.active p, .business-tab-link-block .show>.nav-link p {
    color: var(--white-color) !important;
}

.business-tab-link-block .nav-link.active img, .business-tab-link-block .show>.nav-link img {
    filter: brightness(0) invert()
}

.business-tab-link-block .nav-link.active p,
.business-tab-link-block .show>.nav-link p {
    opacity: 1;
    height: auto !important;
    padding: 20px 0 0;
}

/* Solution Block */

.solution--block {
    padding: 60px 40px;
    background: url(../images/technical-images/solution-intro.webp), var(--page-primary-bg);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 30px;
    width: 100%;
}

.tick-list.list--grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.solution--block .tick-list li::before {
    inset: 5px auto 0 0;
    background-image: var(--tick-icon-2);
}

.solution--block .tick-list li {
    color: var(--white-color);
}

/* Invest Block */

.invest--block {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--page-secondary-bg);
    padding: 15px 15px;
    border-radius: 10px;
    width: 100%;
}

/* CTA */

.cta--wrapper{
    background: url(../images/technical-images/cta-intro.webp), var(--page-primary-bg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 90px;
    border-radius: 20px;
}

.cta--block {
    background-color: var(--page-fade);
    padding: 50px 50px;
    border-radius: 20px;
}

/* Faq Block */

.new-faq .accordion-item {
    padding: 36px 0px !important;
}

.section-wrapper .new-faq .accordion-item h2.accordion-header button {
    font-size: 26px !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);
    }

}

@media only screen and (max-width: 991px) {

    .spacer-xl,
    .hero-intro {
        padding: 70px 0;
    }

    .hero-intro h1 {
        font-size: 2.2rem !important;
        line-height: 50px !important;
    }

    .tick-list {
        width: fit-content;
        margin-inline: auto;
    }

    .tick-list li::before {
        width: 20px;
        height: 20px;
    }

    .tick-list li {
        font-size: 16px !important;
        padding: 0 0 0 30px;
        font-weight: 500 !important;
    }

    .counter-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter-block {
        flex-direction: column;
    }

    .solution--block {
        padding: 40px 30px;
        text-align: center;
    }

    .solution--block .tick-list {
        flex-wrap: unset;
        flex-direction: column;
    }

    .faq-section .accordion-button {
        gap: 20px;
    }

}

@media only screen and (max-width: 767px) {

    .input-block {
        gap: 20px;
        flex-direction: column;
        max-width: 100%;
    }

    .input-block .website-btn {
        width: 100%;
        max-width: 100%;
    }

    .industry-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 20px;
    }

    .mb-50 {
        margin-bottom: 30px !important;
    }

    .section-wrapper .new-faq .accordion-item h2.accordion-header button {
        font-size: 19px !important;
        line-height: 30px;
    }

    .model--block {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        padding: 20px 20px;
        border-radius: 20px;
        transition: all 0.3s;
        justify-content: center;
        border: 1px solid #eee;
        background: transparent;
    }

    .model--block.reverse--block {
        flex-direction: column;
    }

    .model-img img {
        width: 100%;
        max-width: 100px;
    }

    .model-content,
    .model--block:hover .model-content {
        all: unset;
    }

    .model--block:hover {
        background-color: var(--page-primary-bg);
    }

    .model--block:hover img {
        filter: brightness(0) invert(1);
    }

    .business-tab-link-block .nav-link.active,
    .business-tab-link-block .show>.nav-link {
        flex-direction: column;
    }

    .content--box {
        width: 100%;
        height: 100%;
        padding: 20px 20px;
        border: 1px solid var(--page-secondary-bg);
    }

    .service--block {
        padding: 20px 20px;
    }

    .cta--wrapper {
        padding: 50px 20px;
    }

}   