:root {
    --page-primary-bg: #016E80;
    --page-secondary-bg: #DCFD7D;
    --page-fade: #F2FDFF;
    --text-theme: #1E1E1E;
    --text-grey: #58606A;
    --tick-icon: url(../images/leading-semantic-seo-images/list-icon.svg)
}

.page-primary {
    background: var(--page-primary-bg);
}

.page-secondary {
    background: var(--page-secondary-bg);
}

.page-fade {
    background-color: var(--page-fade);
}

.text-theme {
    color: var(--text-theme);
}

.text-grey {
    color: var(--text-grey);
}

.button-primary {
    color: var(--page-primary-bg);
    background: #fff !important;
    font-weight: 600 !important;
    border-radius: 100px !important;
    border: 1px solid #fff;
}

.button-primary:hover circle {
    stroke: #fff;
}

.button-primary:hover {
    color: #fff;
    background: var(--page-primary-bg) !important;
}

.highlight-text {
    color: var(--page-primary-bg) !important;
}

.button svg {
    animation: pulso-effect 2s infinite;
    border-radius: 100px;
}

.sections-wrapper .text-white {
    color: var(--white-color) !important;
}

.z-1 {
    z-index: 1;
    position: relative;
}

.link-white,
.link-white:hover {
    color: var(--white-color) !important;
    text-decoration: underline !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-theme) !important;
}

.section-wrapper h1,
.section-wrapper .h1,
.section-wrapper h2,
.section-wrapper .h2,
.section-wrapper h3,
.section-wrapper .h3,
.section-wrapper h4,
.section-wrapper .h4,
.section-wrapper h5,
.section-wrapper .h5,
.section-wrapper h6,
.section-wrapper .h6,
p {
    font-family: 'Gilroy' !important;
}

.section-wrapper .w-normal {
    font-weight: 400 !important;
}

.w-fit {
    width: fit-content !important;
    height: fit-content;
}

.rounded-10 {
    border-radius: 10px;
}

.cta-space {
    padding-block: 60px;
}

.check-list li {
    font-size: 18px;
    padding: 0px 0 0px 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;
    transition: 0.5 animation ease;
}

.check-list li:hover::before {
    animation: moveLeftRight 1s ease-in-out infinite;
}

.check-list.text-white li::before {
    filter: brightness(0) invert(1);
}

.rounded-20 {
    border-radius: 20px;
}

.animation-img {
    animation: moveUpDown 2s ease-in-out infinite;
}

.cus-shadow {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.transform-text {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 1px solid #ccc;
    padding: 10px 50px;
    transform: rotate(-90deg);
    width: fit-content;
    margin: auto;
    border-radius: 120px;
    text-transform: uppercase;
}

.counter-icon {
    width: 100px;
    height: fit-content;
}

.image-style {
    border: 1px solid transparent;
    border-radius: 10px;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(175deg, #016E80 0%, #EBEBEB 100%) border-box;
    width: 80px;
    flex: 0 0 80px;
    max-width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.hover-border {
    transition: 0.5s all ease;
    border: 1px solid #ccc;
}

.hover-border:hover {
    border-color: var(--page-primary-bg);
}

.swiper-wrapper {
    display: flex;
}

.theme-border {
    border: 2px solid var(--page-primary-bg);
}

/* common css end */

/* solutions */
.seo-solutions-swiper {
    position: relative;
    padding: 0;
}

.seo-solutions-swiper .swiper-slide {
    height: auto;
}

.swiper-nav-btn {
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    color: #333;
}

.swiper-nav-btn:hover {
    background: var(--page-primary-bg);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.swiper-nav-btn svg {
    width: 20px;
    height: 20px;
}

.swiper-nav-btn.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Faq Block */

.new-faq .accordion-item {
    padding: 36px 0px !important;
}

.section-wrapper .new-faq .accordion-item h2.accordion-header button {
    font-size: 26px !important;
}

.process-main .process-detail {
    flex: 1;
}

@keyframes pulso-effect {
    0% {
        box-shadow: 0 0 0 0px rgba(1, 110, 128, 0.4);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(1, 110, 128, 0.15);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(1, 110, 128, 0);
    }
}

@keyframes moveUpDown {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes moveLeftRight {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(0px);
    }
}

/* Responsive */
@media only screen and (max-width: 1599px) {

    .padding-left {
        --page-width: 1200px !important;
        padding-left: calc(50% -(var(--page-width) / 2) + 12px);
    }

    .padding-right {
        --page-width: 1200px !important;
        padding-right: calc(50% -(var(--page-width) / 2) + 12px);
    }
}

@media (max-width: 1200px) {
    .counter-icon {
        width: 60px;
    }
}

@media only screen and (max-width: 992px) {

    .spacer-xl {
        padding: 70px 0 !important;
    }

    .faq-section .accordion-button {
        gap: 20px;
    }

    ul.check-list {
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}

@media only screen and (max-width: 767px) {
    .mb-50 {
        margin-bottom: 30px !important;
    }

    .transform-text {
        transform: rotate(0deg);
    }

    .process-main {
        border-radius: 20px !important;
    }

    .process-shape,
    .process-shape {
        text-align: center !important;
        margin: 0 !important;
    }
}