:root {
    --page-primary-bg: #9FFF87;
    --page-secondary-bg: #164BAD;
    --page-fade: #F5F7FA;
    --text-theme: #031A27;
    --text-grey: #56595C;
}

.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 {
    color: var(--text-theme);
    background-color: var(--page-primary-bg) !important;
    font-weight: 600 !important;
    white-space: nowrap;
}

.button-primary:hover {
    color: var(--text-theme) !important;
    background-color: var(--page-primary-bg) !important;
}

.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;
}

@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);
    }
}

h1,h2,h3,h4,h5,h6 {
    color: #072637 !important;
}

.section-wrapper h1,
.section-wrapper .h1 {
    font-family: 'Gilroy' !important;
}

.section-wrapper h2,
.section-wrapper .h2 {
    font-family: 'Gilroy' !important;
}

.section-wrapper h3,
.section-wrapper .h3 {
    font-family: 'Gilroy' !important;
}

.section-wrapper h4,
.section-wrapper .h4 {
    font-family: 'Gilroy' !important;
}

.section-wrapper h5,
.section-wrapper .h5 {
    font-family: 'Gilroy' !important;
}

.section-wrapper h6,
.section-wrapper .h6 {
    font-family: 'Gilroy' !important;
}

p {
    font-family: 'Gilroy' !important;
}

.section-wrapper .w-normal {
    font-weight: 400 !important;
}

/* Counter Block */

.counter {
    background-color: var(--page-secondary-bg);
}

.border-sep {
    border-bottom: 1px solid #79BA69;
}

.border-sep-d {
    border-bottom: 1px solid #CFCFD8
}

.counter-wrapper {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
}

.counter-block {
    width: 100%;
    height: 100%;
}

.counter-block h2 {
    font-size: clamp(2.5rem, 6vw, 6.2rem);
    color: var(--white-color) !important;
}

/* Service Block */

.strategy-slider {
    padding: 20px 0 !important;
}

.service--block {
    width: 100%;
    height: 100%;
    padding: 30px 30px;
    border-radius: 20px;
    transition: all 0.3s;
    background-color: var(--white-color);
    box-shadow: 0px 10px 30px 0px #164BAD14;
}

.service--block:hover {
    background-color: var(--page-primary-bg);
    box-shadow: 0px 10px 40px 0px #21760B33;
}

.service--block:hover img {
    filter: brightness(0);
}

.service--block:hover h4,
.service--block:hover p {
    color: var(--text-theme) !important;
}

/* Table Block */

.inner-pricing-section table tr th {
    border-bottom: 1px solid #d5d5d580;
    border-right: 1px solid #d5d5d580;
    text-align: center;
    height: 120px;
    padding: 10px;
    font-size: 18px;
    color: var(--white-color);
}

.inner-pricing-section table tr th span {
    width: 100%;
    display: inline-block;
    font-weight: 300;
}

tbody tr td:first-child {
    background-color: #F5FFFE;
    font-weight: 600;
    font-size: 18px !important;
    color: #1C1B21 !important;
}

.flex-featured {
    display: flex;
    align-items: center;
    gap: 8px;
}

tbody tr td {
    background-color: var(--white-color);
    font-weight: 500;
    color: #1C1B21 !important;
}

.inner-pricing-section table tr th:nth-child(1) {
    background-color: #9FB4DA;
}

.inner-pricing-section table tr th:nth-child(2) {
    background-color: #7284A6;
}

.inner-pricing-section table tr th:nth-child(3) {
    background-color: #4B5E80;
}

.inner-pricing-section table tr th:last-child {
    background-color: #26344D;
}

.inner-pricing-section table tr td {
    font-size: 17px;
    padding: 20px 20px;
    border-bottom: 1px solid #d5d5d5;
    border-right: 1px solid #d5d5d5;
}

/* Strategy Slider */

.strategy-slider .swiper-slide {
    height: auto !important;
    user-select: text !important;
    -webkit-user-select: text !important;
    -ms-user-select: text !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-secondary-bg);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static !important;
    color: var(--page-secondary-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-secondary-bg);
    border-color: var(--page-secondary-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 */

.cta-intro {
    background-image: url(../images/ent-images/cta-intro-2.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.cta-intro.intro-2 {
    background-image: url(../images/ent-images/cta-intro.webp);
}

/* 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) {

    .counter-wrapper {
        grid-template-columns: repeat(2, 1fr);
        align-items: unset;
        gap: 30px;
    }

    .faq-section .accordion-button {
        gap: 20px;
    }

    .counter-block {
        text-align: center;
    }
}

@media only screen and (max-width: 767px) {
    
    .mb-50 {
        margin-bottom: 30px !important;
    }

    .section-wrapper .new-faq .accordion-item h2.accordion-header button {
        font-size: 19px !important;
        line-height: 30px;
    }

    .inner-pricing-section {
        overflow: auto;
    }
    .service--block {
        padding: 20px 20px;
    }
}