:root {
    --page-primary-bg: #FF5500;
    --page-secondary-bg: #c04000;
    --page-fade: #FDF8F4;
    --page-dark: #1A1A1A;
    --text-grey: #555555;
    --gradient--bg: linear-gradient(90deg, #121212 0%, #FF5500 100%);
    --tick-icon: url(../images/bing-serp-checker-images/check.svg);
}

.page-primary {
    background-color: var(--page-primary-bg);
}

.gradient--bg {
    background: var(--gradient--bg);
}

.page-secondary {
    background-color: var(--page-secondary-bg);
}

.page-fade {
    background-color: var(--page-fade);
}

.page-light {
    background-color: #F9F9F9;
}

.page-dark {
    background-color: var(--page-dark);
}

.text-grey {
    color: var(--text-grey);
}

.button-primary {
    color: var(--white-color);
    background: var(--page-primary-bg) !important;
    font-weight: 600 !important;
}

.button-primary:hover {
    color: var(--white-color) !important;
    background: var(--page-dark) !important;
}

.button-secondary,
.button-secondary:hover {
    background-color: var(--page-primary-bg) !important;
    color: var(--white-color) !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;
}

.highlight-text {
    color: var(--page-primary-bg) !important;
}

.rounded-20 {
    border-radius: 20px;
}

.border-theme {
    border: 1px solid var(--page-primary-bg);
}

.text-white {
    opacity: 1;
}

.left-bg {
    background: #FF7631;
}
@keyframes pulso-effect {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
    }

    70% {
        -moz-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--page-dark) !important;
    font-family: 'Gilroy' !important;
}

h1,
.h1 {
    font-size: clamp(2.125rem, -0.1211rem + 6.25vw, 3.75rem);
}

h2,
.h2 {
    font-size: clamp(1.875rem, 0.1472rem + 4.8077vw, 3.125rem);
}

.font-lg,
h5,
.h5 {
    font-size: clamp(24px, 11.56px + 2.1635vw, 24px);
}

p {
    font-size: clamp(0.875rem, 0.2107rem + 1.3857vw, 1.25rem);
    font-family: 'Gilroy' !important;
}

/* Home Block */

nav.navbar {
    background-color: rgba(0, 0, 0, 0.75) !important;
    backdrop-filter: blur(10px);
}

.banner-intro {
    padding: 90px 150px;
    border-radius: 20px;
    margin: 120px 30px 0;
    background: linear-gradient(180deg, #000000 0%, #FF5500 100%);
}

/* Listing Wrapper */
.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;
}

/* Website Form */

.website--from {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 90%;
    margin: auto;
    background: #D74902;
    padding: 20px 20px;
    border-radius: 20px;
}

.input--field {
    width: 100%;
    max-width: 100%;
}

.input--field .filed {
    color: #fff;
    padding: 14px 15px;
    width: 100%;
    border-radius: 50px;
    background-color: transparent;
    border: 1px solid #fff;
}

.input--field select.filed {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url(../images/bing-serp-checker-images/select-icon.svg) no-repeat right 10px center;
}

.input--field select.filed option {
    color: #000;
}

.input--field .filed::placeholder {
    color: #eee;
}

.input--field .filed:focus {
    outline: none;
}

.website--from .button {
    padding: 16px 20px !important;
    text-align: center;
    justify-content: center;
    width: 100%;
    max-width: 30%;
}

/* Step Block */
.step--block {
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    border-right: 2px dashed #A7A7A7;
}

/* CTA Wrapper */

.cta--block {
    background: var(--gradient--bg);
    padding: 90px 90px;
    border-radius: 20px;
}

/* Faq Block */

.new-faq .accordion-item {
    padding: 36px 0px !important;
}

.section-wrapper .new-faq .accordion-item h2.accordion-header button {
    font-size: 26px !important;
}

/* CTA */

/* Service Block */

.service--block {
    height: 100%;
    width: 100%;
    border-radius: 20px;
    transition: all 0.3s;
    background-color: var(--white-color);
    overflow: hidden;
    position: relative;
}

.service--block::before {
    content: '';
    inset: 0;
    height: 0;
    width: 100%;
    opacity: 0;
    border-radius: 20px;
    position: absolute;
    transition: all 0.3s;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF3ED 100%);
}

.service--block:hover::before {
    height: 100%;
    opacity: 1;
}

.service--block .icon--box {
    width: 90px;
    height: 90px;
    min-width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: #FFECE3;
    border-radius: 50px;
}

.service--block:hover {
    background-color: #FFF;
    border-color: var(--page-primary-bg);
}

/* Work Block */

.sticky--cloumn {
    position: sticky;
    top: 180px;
}

.work--grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.work--icon {
    width: 90px;
    min-width: 90px;
    height: 90px;
}

.work--block {
    padding: 30px 20px;
    border-radius: 20px;
    transition: all 0.3s;
    background-color: #fff;
}

.work--block:hover {
    background-color: var(--page-primary-bg);
}

.work--block img {
    max-width: fit-content;
}

.work--block:hover img {
    filter: brightness(0) invert(1);
}

.work--block:hover h3,
.work--block:hover p {
    color: var(--white-color) !important;
}

/* 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 (min-width:1201px) {
    .inline--row>div {
        flex: 1;
    }

    .input--field {
        max-width: 70%;
    }
}

@media only screen and (max-width: 991px) {

    .banner-intro {
        padding: 40px 20px 0px;
        margin: 80px 10px 0;
    }

    .step--block {
        border: 1px dashed #A7A7A7;
    }

    .website--from {
        flex-direction: column;
        max-width: 100%;
    }

    .faq-section .accordion-button {
        gap: 20px;
    }

    .cta--block {
        padding: 50px 20px;
    }

    .counter--block {
        min-height: unset;
    }
}

@media only screen and (max-width: 767px) {

    .mb-50 {
        margin-bottom: 30px !important;
    }

    .section-wrapper .new-faq .accordion-item h2.accordion-header button {
        font-size: 19px !important;
        line-height: 30px;
    }

    .work--block {
        flex-direction: column;
        align-items: flex-start;
    }

    .input--field {
        max-width: 100%;
    }

    .website--from .button {
        max-width: fit-content;
    }

    .list--wrapper {
        text-align: left;
    }

    .work--block {
        max-width: 100%;
    }

    .work--block img {
        max-width: 60px;
    }
}

@media (max-width: 575px) {

    .sections-wrapper h2,
    .sections-wrapper .h2 {
        font-size: 1.875rem !important;
        line-height: 40px !important;
    }

}