:root {
    --page-primary-bg: #E67537;
    --page-secondary-bg: #FFFBF9;
    --gradient: linear-gradient(122.1deg, #E67537 2.81%, #2F6AEE 97.92%);
    --page-fade: #F5F8FF;
    --text-theme: #1E1E1E;
    --text-grey: #58606A;
}

.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(--white-color);
    background-color: #2F6AEE !important;
    font-weight: 600 !important;
    white-space: nowrap;
}

.button-primary:hover {
    color: var(--white-color) !important;
    background-color: #2F6AEE !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;
}

.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: #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;
}

/* Hero Block */

.hero-intro {
    background-image: url(../images/neurology-images/banner-intro.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* Counter Block */

.counter--wrap {
    background-image: url(../images/neurology-images/counter-intro.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 80px;
    border-radius: 20px;
}

.counter-wrapper {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
}

.counter-block {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 20px 20px;
    text-align: center;
}

.counter-block:not(:last-child) {
    border-right: 1px solid;
    border-image: linear-gradient(180deg, rgb(255 255 255 / 45%) 0%, rgb(255 255 255 / 15%) 45%, rgb(255 255 255 / 21%) 100%) 1;
}

.counter-block h2 {
    font-size: clamp(2.5rem, 6vw, 3.2rem);
    color: var(--white-color) !important;
}

/* Service Block */

.service--block {
    width: 100%;
    height: 100%;
    padding: 30px 30px;
    border-radius: 20px;
    transition: all 0.3s;
    background-color: var(--white-color);
}

.service--icon {
    width: 70px;
    min-width: 70px;
    height: 70px;
    border-radius: 50%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
}

.service--block:hover {
    box-shadow: 0px 0px 14px 0px #FF6A5233;
    background-color: var(--page-secondary-bg);
}

/* Choose Block */

.choose--wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.choose--block {
    display: grid;
    grid-template-columns: auto 450px;
    gap: 30px;
    transition: all 0.3s;
    background-color: transparent;
    border: 1px solid #CDCDCD;
    border-radius: 20px;
    padding: 30px 30px;
}

.choose--block:hover {
    background-color: var(--page-secondary-bg);
    box-shadow: 0px 0px 0px 0px #DDD9FB33;
    border-color: var(--page-primary-bg);
}

.choose--block.reverse--block{
    grid-template-columns: 450px auto;
}

.choose-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s;
}

/* 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);
    width: 25%;
}

.inner-pricing-section table tr th span {
    width: 100%;
    display: inline-block;
    font-weight: 300;
}

tbody tr td:first-child {
    background-color: #FFE3D4;
    font-weight: 600;
    font-size: 18px !important;
    color: #1C1B21 !important;
}

.inner-pricing-section img {
    width: 100%;
    max-width: 24px;
}

.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: #FFB084;
}

.inner-pricing-section table tr th:nth-child(2) {
    background-color: #FF8B4C;
}

.inner-pricing-section table tr th:nth-child(3) {
    background-color: #F57229;
}

.inner-pricing-section table tr th:last-child {
    background-color: #DB5911;
}

.inner-pricing-section table tr td {
    font-size: 17px;
    padding: 20px 20px;
    border-bottom: 1px solid #d5d5d5;
    border-right: 1px solid #d5d5d5;
}

/* Strategy Block */

.strategy-wrapper .service--block {
    border: 1px solid #DBDBDB;
    border-radius: 10px;
}

.strategy-wrapper .service--block:hover {
    border-color: var(--page-primary-bg);
}

/* Expect Block */

.expect-list-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #FAFAFA;
}

.single-expect-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.content-box {
    padding: 20px 20px;
    text-align: center;
}

.single-expect-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA */

.cta-intro {
    background-image: url(../images/neurology-images/cta-intro.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 90px;
    overflow: hidden;
    background-color: var(--page-primary-bg);
}

.cta-intro.intro-2 {
    background-image: url(../images/neurology-images/cta-itro-3.webp);
    background-color: transparent;
    border-radius: 0;
}

.cta-block {
    background-image: url(../images/neurology-images/cta-intro-2.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 90px;
    border-radius: 20px;
    position: relative;
    background-color: var(--page-primary-bg);
}

.cta-block img {
    position: absolute;
    bottom: -10px;
    right: 10px;
    width: 100%;
    max-width: 200px;
}

/* 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) {

    .faq-section .accordion-button {
        gap: 20px;
    }

    .counter--wrap {
        padding: 50px 20px;
    }

    .counter-wrapper {
        grid-template-columns: repeat(2, 1fr);
        align-items: unset;
        gap: 30px 0;
    }

    .counter-wrapper .counter-block:nth-child(2) {
        border: none;
    }

    .cta-intro, .cta-block {
        padding: 50px 30px;
    }

    .cta-block img {
        opacity: 0.3;
    }

    .expect-list-section {
        grid-template-columns: 1fr;
    }

    .expect-list-section .single-expect-box {
        display: flex;
    }

    .expect-list-section .single-expect-box:nth-child(2), .expect-list-section .single-expect-box:nth-child(6), .single-expect-box.reverse--box {
        flex-direction: row-reverse;
    }

    .expect-list-section .single-expect-box .content-box,
    .expect-list-section .single-expect-box img {
        width: 50%;
    }
}

@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;
    }

    .choose--block {
        display: flex;
        flex-direction: column-reverse;
        padding: 20px 20px;
    }

    .choose--block.reverse--block {
        flex-direction: column;
    }

    .choose-img img {
        width: 100%;
    }

    .service--block {
        padding: 20px 20px;
    }
}