:root {
    --primary-bg: #B8FB3C;
    --page-fade: #F5FFE2;
    --page-light: #FBFBFB;
    --page-dark: #0F141A;
    --tick-icon: url(../images/seofat-plagiarism-images/check.svg);
}

.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-dark {
    background-color: var(--page-dark);
}

.highlight-text {
    color: #97E506 !important;
}

.z-1 {
    position: relative;
    z-index: 1;
}

.img-blk {
    border-radius: 20px;
}

.check-list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.check-list li {
    font-size: 18px;
    padding: 0px 0 15px 30px;
    position: relative;
    z-index: 1;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background: var(--tick-icon) no-repeat center;
    z-index: -1;
    background-size: contain;
}

.check-list.text-white li::before {
    filter: brightness(0) invert(1);
}

.rounded-20 {
    border-radius: 20px;
}

.rounded-10 {
    border-radius: 10px;
}

.cover {
    object-fit: cover;
}

.swiper-slide {
    height: auto !important;
}

img[alt="check"] {
    width: fit-content;
    max-width: fit-content;
    height: fit-content;
}

/* Banner */
.page-hero .highlighted-text::before {
    background: var(--primary-bg);
}

/* Cta Block */

.cta--wrapper {
    padding: 90px 90px;
    border-radius: 30px;
    background: var(--primary-bg) url('../images/free-local-rank-images/cta.webp') no-repeat center / cover;
}

.seo-services-row .row:nth-child(even) {
    flex-direction: row-reverse;
}

.seo-services-row .row:nth-child(even) .col-lg-6.d-none.d-lg-block {
    text-align: end;
}

.seo-services-row .row:nth-child(odd) .col-lg-6.d-none.d-lg-block {
    text-align: start;
}

/* 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);
}

.service--slider .swiper-wrapper {
    gap: 0 30px;
    counter-reset: benefit-counter;
}

.benefit--block {
    width: 100%;
    height: 100%;
    padding: 20px;
    border-radius: 20px;
    transition: 0.5s all ease;
    background: #fff;
    border: 1px solid #ccc;
    position: relative;
    counter-increment: benefit-counter;
}

.swiper-slide:not(:last-child) .benefit--block::before {
    content: "";
    position: absolute;
    right: -50px;
    top: 0;
    bottom: 0;
    width: 40px;
    height: 30px;
    background: url('../images/seo-agency-london-images/right-arrow.svg') no-repeat center / contain;
    margin: auto;
    z-index: -1;
}

.benefit--block::after {
    content: counter(benefit-counter);
    position: absolute;
    right: 20px;
    top: -80px;
    bottom: 0;
    margin: auto;
    width: fit-content;
    height: fit-content;
    color: var(--primary-bg);
    opacity: 0.5;
    font-size: 10rem;
    font-weight: bold;
    transition: 0.5s all ease;
}

.benefit--block:hover {
    background: #97e506c9;
}

.benefit--block:hover::after {
    color: #fff;
}

/* Faq */
.accordion__heading {
    font-weight: 500 !important;
}

@keyframes pulseCircle {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1);
    }

}

@media (min-width: 1201px) {
    .inline-row>div {
        flex: 1;
    }

}

@media only screen and (max-width: 1599px) {

    h2,
    .h2 {
        font-size: clamp(32px, -17.76px + 4.9538vw, 68px);
    }
}

@media only screen and (max-width: 991px) {

    .text-align-center {
        text-align: center;
    }

    .button-mx {
        margin-inline: auto !important;
    }

    .cta--wrapper {
        padding: 50px 20px;
    }
}

@media only screen and (max-width: 767px) {

    .text-start,
    .text-end {
        text-align: center !important;
    }
}