:root {
    --primary-bg: #B8FB3C;
    --page-fade: #F5FFE2;
    --page-light: #FBFBFB;
    --page-dark: #0F141A;
}

.theme-text {
    color: var(--primary-bg) !important;
}

.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;
}

.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/paid-ads-for-plastic-images/list-check.svg') no-repeat center;
    z-index: -1;
    background-size: contain;
}

.check-list.dollar-list li::before {
    background: url('../images/paid-ads-for-plastic-images/dollar-icon.svg') no-repeat center;
    background-size: contain;
}

.swiper-slide {
    height: auto !important;
}

/* common css end */

.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 */
.process-main .process-img {
    width: fit-content;
    position: relative;
    z-index: 1;
    counter-increment: process-comp;
}

.process-main .process-img::before {
    content: '0' counter(process-comp);
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    position: absolute;
    color: #000;
    font-weight: bold;
    line-height: 100%;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    z-index: 2;
    font-size: 20px;
}

.process-swiper .swiper-pagination {
    position: relative;
    bottom: unset;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.process-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.process-swiper .swiper-pagination-bullet-active {
    background-color: var(--primary-bg);
    width: 28px;
    border-radius: 10px;
}

.seo-services-pagination {
    position: relative;
    bottom: unset;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.seo-services-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.seo-services-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-bg);
    width: 28px;
    border-radius: 10px;
}

/* approach */

.approach-text::before,
.approach-text::after {
    content: "";
    position: absolute;
    top: -30px;
}

.approach-text::before {
    left: 0;
    width: 100%;
    height: 30px;
    background: var(--primary-bg);
}

.approach-text::after {
    right: -30px;
    width: 0;
    height: 0;
    border-left: 30px solid var(--primary-bg);
    border-top: 30px solid transparent;
}

.approach-shape {
    position: absolute;
    margin: auto;
    width: fit-content !important;
    height: fit-content;
    top: 80px;
    right: 0;
    left: 0;
}

/* why choose */
.why-choose-nav {
    margin-top: 30px;
}

.swiper-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #000;
    border: 1px solid var(--primary-bg);
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.swiper-nav-btn:hover {
    background-color: var(--primary-bg);
    color: #000;
}

@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;
    }

    .why-choose>div {
        flex: 1;
    }

    .approach-shape {
        height: 100vh;
    }

    .cta-bg {
        background: #000 url('../images/seo-los-angeles-images/cta-bg-3.webp') no-repeat center right / contain !important;
    }

}

@media only screen and (max-width: 991px) {

    .text-align-center {
        text-align: center;
    }

    .button-mx {
        margin-inline: auto !important;
    }

    .mobile-center {
        margin-inline: auto !important;
    }
}

@media only screen and (max-width: 767px) {

    .approach-main .approach-text {
        width: fit-content;
    }
}