:root {
    --page-primary-bg: #1CB5BD;
    --page-secondary-bg: #28C9D2;
    --bg-gradient: linear-gradient(180deg, #28C9D2 0%, #00484C 100%);
    --page-fade: #EAF7F9;
    --page-light: #FAFAFA;
    --text-theme: #1C1B21;
    --text-grey: #2F2F2F;
}

.page-primary {
    background: var(--page-primary-bg);
}

.page-secondary {
    background: var(--page-secondary-bg);
}

.bg-gradient {
    background: var(--bg-gradient);
}

.page-fade {
    background-color: var(--page-fade);
}

.page-light {
    background-color: var(--page-light);
}

.text-theme {
    color: var(--text-theme);
}

.text-grey {
    color: var(--text-grey);
}

.highlight {
    color: var(--page-secondary-bg) !important;
}

.button-primary,
.button-primary:hover {
    color: var(--white-color);
    background-color: var(--page-secondary-bg) !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
}

.button-secondary,
.button-secondary:hover {
    color: var(--white-color) !important;
    border: 1px solid var(--white-color) !important;
    background-color: transparent !important;
    border-radius: 50px !important;
    white-space: nowrap !important;
    font-weight: 600 !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(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);
}

.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;
}

/* Home Block */

.banner-shape {
    position: absolute;
    right: 0;
    margin: auto;
    width: fit-content;
}

/* Tab Wrapper */

.tab-sec {
    background-color: var(--page-theme-bg);
}

.tab-wrapper {
    border: none;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    padding: 0;
    gap: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    background-color: #F9F9F9;
    border-radius: 10px;
}

.tab-wrapper .nav-link {
    color: var(--text-theme);
    font-size: 20px;
    border-radius: 0;
    font-weight: 500;
    white-space: nowrap;
    border: none;
    background-color: transparent;
    width: 100%;
    padding: 14px 14px;
    border-radius: 10px;
    transition: all 0.3s;
    position: relative;
}

.tab-wrapper .nav-link::before {
    content: "";
    display: none;
    width: 13.6px;
    height: 13.6px;
    background: url(../images/health-images/tab-icon.webp) no-repeat center;
    background-size: contain;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.tab-wrapper .nav-link.active::before {
    display: block;
}

.tab-wrapper .nav-link.active {
    background-color: var(--page-primary-bg);
    color: var(--white-color) !important;
    border: none !important;
}

#storePanel .tab-pane {
    border-radius: 10px;
    padding: 40px 40px;
    background-color: var(--page-fade);
}

.tab-wrapper::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

.tab-wrapper::-webkit-scrollbar {
	width: 7px;
    height: 7px;
	background-color: #F5F5F5;
    cursor: pointer;
}

.tab-wrapper::-webkit-scrollbar-thumb {
	background-color: var(--page-primary-bg);
    cursor: pointer;
}

/* Service Block */

.service--block {
    width: 100%;
    height: 100%;
    padding: 30px 30px;
    border-radius: 20px;
    transition: all 0.3s;
    background-color: var(--white-color);
    border: 1px solid #1CB5BD33;
}

.service--icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background-color: var(--page-secondary-bg);
    transition: all 0.3s;
}

.service--block:hover {
    background-color: var(--page-primary-bg);
    border-color: var(--page-primary-bg);
}

.service--block:hover h4,
.service--block:hover p {
    color: var(--white-color) !important;
}

/* Counter Block */

.counter-block {
    width: 100%;
    height: 100%;
    background-color: var(--white-color);
    border-radius: 20px;
    padding: 30px 30px;
}

.counter-block h2 {
    color: var(--page-primary-bg);
}

.seprator {
    border-bottom: 1px solid #D0D0D0;
    margin: 20px 0;
}

/* Solution Block */

.solution-block {
    padding: 10px 10px;
    border: 1px solid #D9D9D9;
    border-radius: 20px;
    transition: all 0.3s;
}

.solution-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-content {
    padding: 20px 20px;
}

.solution-block:hover {
    border-color: var(--page-primary-bg);
}

/* Link Block */

.link-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px 20px;
    border-radius: 10px;
    background: var(--page-fade);
    position: relative;
    color: #0B0C0D !important;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
}

.link-box svg {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 22px;
    transform: rotate(40deg);
    transform-origin: center;
    transition: transform .2s;
}

.link-box:hover {
    background: var(--page-secondary-bg) !important;
    color: var(--white-color) !important;
}

.link-box:hover svg {
    transform: rotate(0deg);
}

.link-box:hover svg path {
    fill: var(--white-color);
    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);
}

.inner-pricing-section table tr th span {
    width: 100%;
    display: inline-block;
    font-weight: 300;
}

tbody tr td:first-child {
    background-color: #009fa9;
    font-weight: 600;
    font-size: 18px !important;
    color: var(--white-color) !important;
}

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: #09b1bb;
}

.inner-pricing-section table tr th:nth-child(2) {
    background-color: #4fc0c7;
}

.inner-pricing-section table tr th:nth-child(3) {
    background-color: #39D9E2;
}

.inner-pricing-section table tr th:last-child {
    background-color: #2AC3CC;
}

.flex-featured {
    display: flex;
    align-items: center;
    gap: 8px;
}

.inner-pricing-section img {
    width: 100%;
    max-width: 24px;
}

.inner-pricing-section table tr td {
    font-size: 17px;
    padding: 20px 20px;
    border-bottom: 1px solid #d5d5d5;
    border-right: 1px solid #d5d5d5;
}

/* CTA */

.cta-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: var(--bg-gradient);
    padding: 50px 40px;
    border-radius: 20px;
    width: 100%;
    height: 100%;
}

.cta--block {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
}

.cta--block p {
    padding: 0 0 10px !important;
    border-bottom: 1px solid var(--white-color);
}

/* Cta Grid */

.cta--holder {
    background-color: #0FA7AF;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.cta--grid {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 50px 30px;
    background-color: var(--page-primary-bg);
}

.cta-img {
    width: 250px;
    height: 250px;
    min-width: 250px;
}

.cta--list {
    padding: 50px 30px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.cta--list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    color: var(--white-color);
}

.cta--list .swiper-pagination {
    bottom: 40px !important;
}

.cta--list .swiper-pagination-bullet {
    background-color: transparent;
    border: 1px solid #fff !important;
    opacity: 1 !important;
}

.cta--list .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #48DDE5;
    border-color: #48DDE5 !important;
}

.cta--list li img {
    position: relative;
    top: 5px;
}

/* 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) {

    .banner-shape {
        display: none;
    }

    .faq-section .accordion-button {
        gap: 20px;
    }

    .tab-wrapper {
        padding: 15px;
        gap: 10px 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .tab-wrapper .nav-item {
        width: fit-content !important;
    }

    .tab-wrapper .nav-link {
        font-size: 15px;
        padding: 8px 8px;
    }

    #storePanel .tab-pane {
        padding: 20px 20px;
    }

    .cta-wrapper {
        padding: 50px 20px;
    }

    .cta--grid {
        flex-direction: column;
        text-align: center;
    }

}

@media only screen and (max-width: 767px) {

    .button-secondary {
        white-space: wrap !important;
    }
    
    .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,
    .counter-block {
        padding: 20px 20px;
    }

    .cta--block {
        flex-direction: column;
        text-align: center;
    }

    .cta--holder {
        grid-template-columns: repeat(1, 1fr);
    }

    .cta--list .swiper-pagination {
        bottom: 10px !important;
    }

    .cta--list,
    .cta--grid {
        padding: 40px 20px;
    }
}