: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;
}

.rounded-20 {
    border-radius: 20px;
}

.highlight-text {
    color: var(--primary-bg) !important;
}

.check-list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.check-list li {
    font-size: 18px;
    padding: 0px 0 20px 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.inline--list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.check-list.inline--list li {
    background: #F6F6F6;
    width: 100%;
    padding: 20px 20px 20px 45px;
    display: flex;
    border-radius: 100px;
}

.check-list.inline--list li:before {
    top: 0;
    bottom: 0;
    margin: auto;
    left: 15px;
}

/* Banner */

.page-hero {
    padding-block: 90px !important;
    background-color: #0F141A;
}

.page-hero .highlighted-text::before {
    background: var(--primary-bg);
}

.ranking--checker {
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 60%;
    border-top: 1px solid #9E9E9E;
    background: #151A20;
    margin: auto;
}

.ranking--checker input,
.ranking--checker select {
    width: 100%;
    border: none;
    padding: 10px 12px;
    border-radius: 0;
    font-size: 17px;
    background: transparent;
    color: var(--white-color);
    font-weight: 400;
    border-radius: 8px;
    border: 1px solid #6D6D6D;
}

.setting-wrapper {
    width: fit-content;
    white-space: nowrap;
}

.setting-icon {
    width: 79px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #6D6D6D;
    border-radius: 8px;
}

.ranking--checker input:focus {
    outline: none;
}

.ranking--checker .ranking--btn {
    color: var(--page-dark);
    border-color: var(--secondary-color);
    background-color: var(--primary-color);
    width: 100%;
    max-width: 100%;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: all 0.3s;
}

.ranking--checker .ranking--btn svg {
    transition: all 0.3s;
}

.ranking--checker .ranking--btn:hover svg {
    transform: translateX(5px);
}

/* list block */
.list--block {
    gap: 20px;
    margin: 0;
    padding: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}


ul.list--block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

ul.list--block li {
    padding: 24px;
    background: #31343D;
    border-radius: 16px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

ul.list--block li .no-heading {
    background: #B8FB3C;
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    flex-shrink: 0;
}

.checker-block {
    padding: 24px;
    background: #31343D;
    border-radius: 16px;
    display: flex;
    gap: 30px;
    align-items: center;
}

/* Cta Block */

.cta--wrapper {
    background-color: var(--primary-bg);
    padding: 90px 90px;
}

/* Faq */

.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 */
.accordion__heading {
    font-weight: 500 !important;
}

.use-tool-text {
    font-size: 22px;
}

@keyframes pulseCircle {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(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) {

    .listing--wrapper ul {
        text-align: left;
    }

    .text-align-center {
        text-align: center;
    }

    .button-mx {
        margin-inline: auto !important;
    }

    .list--block {
        width: fit-content;
        margin: auto;
    }

    .cta--wrapper {
        padding: 50px 20px;
    }

    .list--block.grid--list {
        grid-template-columns: repeat(1, 1fr);
    }

    .ranking--checker {
        max-width: 100%;
    }

    .row .position-sticky {
        position: static !important;
    }

    ul.list--block li {
        flex-direction: column;
        text-align: center;
    }

    ul.list--block li .no-heading {
        width: 54px;
        height: 54px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media only screen and (max-width: 767px) {

    .ranking--checker .ranking--btn {
        max-width: fit-content;
        margin-inline: auto;
    }

    .checker-block {
        align-items: flex-start;
        flex-direction: column;
    }

    .setting-wrapper {
        margin: auto;
    }

    .check-list.inline--list {
        grid-template-columns: repeat(1, 1fr);
    }

    .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;
    }

}