:root {
    --primary-bg: #B8FB3C;
    --page-fade: #F7FFE9;
    --page-light: #F3F3F3;
    --page-dark: #050A10;
    --tick-icon: url(../images/white-images/check-icon.webp);
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.padding-left {
    --page-width: 1600px;
    padding-left: calc(50% - (var(--page-width) / 2) + 12px);
}

.button_theme-secondary {
    justify-content: center !important;
}

.button {
    transition: all 0.3s;
}

.button-secondary {
    display: flex !important;
    align-items: center;
    gap: 20px;
    width: fit-content !important;
}

.button-secondary {
  color: #FFF;
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
}

.button-secondary.button-icon::after {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.page-fade {
    background-color: var(--page-fade);
}

.primary-bg {
    background-color: var(--primary-bg);
}

.page-light {
    background-color: var(--page-light);
}

.page-grey {
    background-color: #FBFBFB;
}

.page-dark {
    background-color: var(--page-dark);
}

.highlight-text {
    color: var(--primary-bg) !important;
}

/* Hero Banner */

.page-hero {
    padding: 50px 0 !important;
}

.page-hero ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    padding: 0;
    margin: 0;
    width: 100%;
}

.page-hero ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 500;
}

.shape-bg {
    position: absolute;
    bottom: 0;
    z-index: -1;
}

/* Grow Block */

.grow-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.grow-img img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.grow--block {
    width: 100%;
    height: 100%;
    padding: 30px 30px;
    border-radius: 20px;
    transition: all 0.3s;
    background-color: var(--white-color);
    border: 1px solid #DEDEDE;
}

.grow--block:hover {
    transform: translateY(-5px);
    border-color: var(--primary-bg);
}

/* Listing Block */

.listing--wrapper {
    border-top: 1px solid;
    border-image-source: linear-gradient(90deg, #B9B9B9 0%, #B8FB3C 51.92%, #535353 100%);
    border-image-slice: 1;
    padding: 20px 0 0;
}

.listing--wrapper ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0;
    margin: 0;
    width: 100%;
}

.listing--wrapper ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 500;
}

/* Business Block */

.business--block {
    width: 100%;
    height: 100%;
    padding: 30px 30px;
    border-radius: 20px;
    transition: all 0.3s;
    background-color: var(--white-color);
    border: 1px solid #DEDEDE;
}

.business--block:hover {
    transform: translateY(-5px);
    border-color: var(--primary-bg);
}

.benefit--block {
    width: 100%;
    height: 100%;
    padding: 30px 30px;
    border-radius: 20px;
    transition: all 0.3s;
    background-color: var(--white-color);
    border: 1px solid #DEDEDE;
}

/* Process Block */

.process--block {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 30px 30px;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    background-color: var(--page-fade);
    transition: all 0.3s;
}

/* CTA Block */

.cta--block {
    padding: 90px 60px;
    border-radius: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--primary-color);
    background-image: url(../images/surgeon-images/cta-intro.webp);
}

.cta--wrapper {
    background-color: var(--primary-bg);
    padding: 50px 50px;
    border-radius: 20px;
}

.cta--wrapper.cta--bg {
    background: url(../images/surgeon-images/cta-intro-2.webp), var(--primary-color);
    background-repeat: no-repeat;
    background-size: cover;
}

/* Timeline */

.timeline {
    position: relative;
    margin: 0 auto;
    padding: 40px 0;
}

.package-details .tick-list {
    grid-template-columns: repeat(1, 1fr);
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: #00000020;
    transform: translateX(-50%);
}

.timeline-step {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.timeline-step::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid #00000050;
    border-radius: 20px;
    top: 28px;
    right: -10px;
    transition: all 0.3s;
    background-color: var(--white-color);
}

.timeline-step.right::before {
    left: -10px;
}

.timeline-step.in-view::before {
    border-color: var(--primary-bg);
    background-color: var(--primary-bg);
}

.timeline-step.left {
    left: 0;
    text-align: left;
}

.timeline-step.right {
    left: 50%;
    text-align: right;
}

.timeline-content {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 10px;
}

.card {
    background: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eee;
    max-width: 100%;
    text-align: left;
}

.step-number {
    font-size: clamp(2rem, 3vw, 3.8rem);
    color: var(--primary-bg);
    font-weight: 600;
}

.timeline-step.left .timeline-content, .timeline-step.left .card {
    text-align: end;
}

.icon {
    position: absolute;
    width: 100%;
    max-width: 100px;
    top: 10px;
}

.left .icon {
    right: -160px;
}

.right .icon {
    left: -160px;
}

/* Faq */

.accordion__heading {
    font-weight: 500 !important;
}

@media only screen  and (max-width: 991px) {

    .cta--block .button_theme-secondary {
        width: fit-content !important;
        margin-inline: auto !important;
        display: flex;
    }

    .text-align-center {
        text-align: center;
    }

    .business--block {
        padding: 20px 20px;
    }

    .shape-bg {
        display: none;
    }

    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
        gap: 20px;
        margin: 0 0 20px;
    }

    .image-grid img {
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }

    .cta--block,
    .cta--dark,
    .cta--wrapper,
    .cta--wrapper.cta--bg {
        padding: 40px 20px;
    }

    .step--block {
        background-color: var(--page-light);
        padding: 20px 20px;
        border-radius: 20px;
    }

}

@media only screen  and (max-width: 767px) {

    .listing--wrapper ul {
        grid-template-columns: repeat(1, 1fr);
        width: fit-content;
        margin: auto;
    }

    .grow--block {
        padding: 20px 20px;
    }

    .timeline-step.left .timeline-content, .timeline-step.left .card {
        text-align: left;
    }

    .timeline-step {
        width: 100%;
        padding: 20px 20px;
        inset: 0 !important;
    }

    .timeline-step::before {
        left: -10px !important;
    }

    .timeline::before {
        left: 0;
    }

    .icon {
        position: static;
    }

    .card {
        padding: 20px;
    }

}

@media only screen  and (max-width: 500px) {

    .grow-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .grow-img {
        display: none;
    }

}
