:root {
    --primary-bg: #B8FB3C;
    --page-fade: #F5FFE2;
    --page-light: #FBFBFB;
    --page-dark: #0F141A;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.rounded-10 {
    border-radius: 10px;
}

.rounded-20 {
    border-radius: 20px;
}

.cover {
    object-fit: cover;
}

.linear-bg {
    background: linear-gradient(90deg, #f7f8f2 0%, #e4f0c8 100%);
}

.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);
}

.highlight-text {
    color: var(--primary-bg) !important;
}

.img-blk {
    border-radius: 20px;
}

.animation-img {
    animation: moveUpDown 2s ease-in-out infinite;
}

.check-list li {
    padding: 0px 0 0px 35px;
    position: relative;
    z-index: 1;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background: url('../images/dental-ppc-agency-images/dark-check.svg') no-repeat center;
    z-index: -1;
    background-size: contain;
}

.check-list.about-list li::before {
    background: url('../images/dental-ppc-agency-images/list-check.svg') no-repeat center;
    background-size: contain;
}

/* Banner */

.page-hero {
    padding-block: 160px !important;
}

.page-hero .highlighted-text::before {
    background: var(--primary-bg);
}

/* Faq */

.accordion__heading {
    font-weight: 500 !important;
}

.real-results-icon {
    width: 60px;
    height: 60px;
    max-width: 60px;
    flex: 0 0 60px;
    background: var(--primary-bg);
    padding: 10px;
    object-fit: contain;
    border-radius: 100%;
}

.nav-pills .nav-link.active {
    background: var(--primary-bg) !important;
    border-color: #8ab832 !important;
}

.process-main {
    position: relative;
    z-index: 1;
    counter-increment: process-comp;
}

.process-main::before {
    content: counter(process-comp);
    right: 0;
    top: 0;
    width: fit-content;
    height: fit-content;
    font-size: 14rem;
    position: absolute;
    color: var(--primary-bg);
    font-weight: bold;
    z-index: -1;
    opacity: 0.2;
    line-height: 100%;
}

.process-main::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 0;
    width: 2px;
    height: 80%;
    background: var(--primary-bg);
    bottom: 0;
    margin: auto;
    opacity: 0.5;
}

@keyframes moveUpDown {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media only screen and (max-width: 1599px) {

    h2,
    .h2 {
        font-size: clamp(32px, -17.76px + 4.9538vw, 68px);
    }
}

@media only screen and (min-width: 1201px) {
    .inline-row>div {
        flex: 1;
    }
}

@media only screen and (max-width: 991px) {

    .text-align-center {
        text-align: center;
    }

    .button-mx {
        margin-inline: auto !important;
    }

    .w-50 {
        width: 100% !important;
    }

    .process-main {
        border: 1px solid var(--primary-bg);
        border-radius: 8px;
        padding: 20px;
    }

    .process-main::before {
        font-size: 4rem;
    }

    .process-main::after {
        display: none;
    }
}