: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;
}

.cover {
    object-fit: cover;
}

/* Banner */


.page-hero .highlighted-text::before {
    background: var(--primary-bg);
}

.outsourcing-process {
    border: 1px solid transparent;
    border-radius: 10px;
    background: linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(180deg,
            #EFEFEF 0%,
            #BABABA 46%,
            #EEEEEE 100%) border-box;
}


/* 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;
}

/* Faq */

.accordion__heading {
    font-weight: 500 !important;
}

.row.steps-row {
    gap: 100px;
    position: relative;
    z-index: 1;
}

.row.steps-row>.steps-cols {
    width: 100%;
    max-width: 50%;
    padding: 0 50px;
    position: relative;
    z-index: 1;
}

.row.steps-row>.steps-cols::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--primary-bg);
    border: 4px solid #ffffff;
    border-radius: 100%;
    box-shadow: 0 0 0 1px var(--primary-bg);
    transition: 0.5s all ease;
}

.row.steps-row>.steps-cols.active::after {
    animation: pulseCircle 1.2s infinite;
    background: #77ab16;
}

.row.steps-row>.steps-cols:nth-child(odd)::after {
    right: unset;
    left: -15px;
}

.row.steps-row::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 1px;
    height: 100%;
    border-left: 2px dashed #ADADAD;
}

/* steps end */
@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 (min-width: 992px) {
    .left-space .outsourcing-process {
        left: 10%;
    }

    .right-space .outsourcing-process {
        right: 10%;
    }
}

@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) {

    .row.steps-row {
        gap: 30px;
        padding-left: 30px;
    }

    .row.steps-row>.steps-cols {
        max-width: 100%;
        padding: 0 15px;
    }

    .row.steps-row::before {
        right: unset;
        left: 20px;
        top: 10px;
    }

    .row.steps-row>.steps-cols::after {
        width: 20px;
        height: 20px;
        top: 10px;
        left: -20px;
    }

    .row.steps-row>.steps-cols:nth-child(odd)::after {
        right: unset;
        left: -20px;
    }

    .text-start,
    .text-end {
        text-align: center !important;
    }
}