:root {
    --page-primary-bg: #FF5500;
    --page-secondary-bg: #c04000;
    --page-fade: #FDF8F4;
    --page-dark: #1A1A1A;
    --text-grey: #555555;
    --tick-icon: url(../images/keyword-images/tick-green.webp);
}

.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;
}

@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,
h6 {
    color: var(--page-dark) !important;
    font-family: 'Gilroy' !important;
}

h1 {
    font-size: clamp(2.125rem, -0.1211rem + 6.25vw, 3.75rem);
}

h2 {
    font-size: clamp(1.875rem, 0.1472rem + 4.8077vw, 3.125rem);
}

p {
    font-size: clamp(0.875rem, 0.2107rem + 1.3857vw, 1.25rem);
    font-family: 'Gilroy' !important;
}

/* Home Block */

/* Service Block */

.service--block {
    height: 100%;
    width: 100%;
    padding: 30px 30px;
    border-radius: 30px;
    transition: all 0.3s;
    background-color: var(--white-color);
    box-shadow: 0px 4px 24px 0px #00000017;
    text-align: left;
    overflow: hidden;
    position: relative;
}

.service--block::before {
    content: '';
    inset: 0;
    height: 0;
    width: 100%;
    opacity: 0;
    position: absolute;
    border-radius: 30px;
    transition: all 0.3s;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF3ED 100%);
}

.service--block:hover::before {
    height: 100%;
    opacity: 1;
}

.service--block:hover {
    background-color: #FFF;
    border-color: var(--page-primary-bg);
}

/* Table Block */

tbody tr td:first-child {
    background-color: #963412;
    font-weight: 600;
    font-size: 18px !important;
    color: var(--white-color) !important;
}

tbody tr td {
    background-color: var(--white-color);
    font-weight: 500;
    color: #1C1B21 !important;
}

/* Work Block */

/* Form Block */

/* CTA Wrapper */

/* Faq Block */

.new-faq .accordion-item {
    padding: 36px 0px !important;
}

/* CTA */


html {
    margin: 0 !important;
}

    .hero-intro {
        position: relative;
        background-image: url(../images/website-audit-images/Rectangle34625672.webp);
        overflow: hidden;
    }

    .button {
        border-radius: 50px;
    }

    .gradient-hover {
        --radius: 20px;
        position: relative;
        border-radius: var(--radius);
    }

    .gradient-hover::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: var(--radius);
        padding: .0625rem;
        /* border: .0625rem solid; */
        background: linear-gradient(90deg, rgba(255, 85, 0, 0.05) 0%, rgba(255, 85, 0, 0.8) 35%, rgba(255, 85, 0, 0.8) 65%, rgba(255, 85, 0, 0.05) 100%);
        mask:
            linear-gradient(#000 0 0) content-box,
            linear-gradient(#000 0 0);
        mask-composite: exclude;
        z-index: -1;
        opacity: 0;
        transition: all .3s ease;
    }

    .gradient-hover:hover::before {
        opacity: 1;
    }

    .gradient-hover:hover {
        box-shadow: 0px 18px 40px 0px rgba(94, 36, 7, 0.1);
    }

    .service--block {
        border: unset;
        background-color: rgba(252, 249, 247, 1);
    }

    .service--block:hover {
        background-color: transparent;
    }

    section.cta-wrap {
        background: linear-gradient(90deg, #121212 0%, #FF5500 100%);
        padding-block: 90px;
        position: relative;
    }
	
	/* -- New Style --*/
section.hero-intro.freebacklinks-intro {
    background-size: cover;
    background-position: center bottom;
} 
section.hero-intro.freebacklinks-intro a.button {
    background-color: #fff !important;
    color: var(--primary-color) !important;
}
section.hero-intro.freebacklinks-intro a.button svg circle[stroke="white"] {
    stroke: var(--primary-color);
}
section.hero-intro.freebacklinks-intro a.button svg circle[fill="white"] {
    fill: var(--primary-color);
}
.text-center {
	text-align:center;
}
.search-field input[type="text"] {
    width: 100%;
    background-color: rgba(41, 41, 41, 0.06);
    border: hidden;
    border-radius: 50px 0 0 50px;
    height: 85px;
    padding: 0 30px;
}
.search-field input[type="button"] {
    width: 126px;
    flex-shrink: 0;
    border: hidden;
    border-radius: 0 50px 50px 0;
    background-color: var(--primary-color);
    color: #fff;
    text-transform: capitalize;
    font-weight: 700;
}
.search-field {
    display: flex;
    margin-top: 60px;
}
.backlinks-ranking {
    max-width: 1000px;
    margin: 100px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 100px;
	align-items:center;
}
.single-block-r img {
    margin-bottom: 30px;
}
.single-block-r h2 {
    margin-bottom: 30px;
}
.single-block-r h6 {
    margin-bottom: 30px;
}
h6{
	font-size:24px;
	color:#50565D;
}
section.free-back-slider {
    background-color: rgba(200, 70, 5, 0.04);
}
section.free-back-slider .service--block {
    background-color: #fff;
}
section.free-back-slider  .icon-circle {
    padding: 0;
    margin-bottom: 15px;
}
 .service--block:hover {
    background-color: var(--primary-color) !important;
}
.service--block:hover h3, .service--block:hover p {
    color: #fff !important;
}
.single-block-r a.button {
    margin: 0;
}
.powerful-backlink .service--block {
    display: flex;
    column-gap: 20px;
    background-color: rgba(200, 70, 5, 0.04);
}
.powerful-backlink .icon-circle {
    padding: 0;
}
.powerful-back-right {
    display: flex;
    flex-flow: column;
    row-gap: 25px;
}
section.powerful-backlink .row {
    align-items: flex-start;
}
section.powerful-backlink .col-md-5 {
    position: sticky;
    top: 100px;
}
section.cta-wrap.cta-google.free-backlink-cta {
    background: url(https://rankyfy.com/wp-content/uploads/2025/10/Frame-2147227158-1.webp);
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.service--block .icon-circle {
    padding: 0;
    margin-bottom: 15px;
}
.four-icon-banner {
    position: absolute;
    left: 0; 
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.four-icon-banner img {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.four-icon-banner img.image-top-left {
    left: 0;
    top: 30px;
}
img.image-top-right {
    right: 0;
    top: 0;
}
img.image-bottom-left {
    left: 5%;
    bottom: 0;
}
img.image-bottom-right {
    right: 5%;
    bottom: 30px;
}
.freebacklinks-intro p {
    max-width: 800px;
    margin: 0 auto 30px;
}
.table-keywords table {
    width: 100%;
}

.table-keywords table tr th {
    background-color: #FF9159;
    font-size: 18px;
    text-align: center;
    color: #fff;
    padding: 15px 20px;
}

.table-keywords table tr th:nth-child(2n) {
    background-color: #FFAA80;
}
.table-keywords tr th:first-child {
    border-top-left-radius: 15px;
}
.table-keywords tr th:last-child {
    border-top-right-radius: 15px;
}
.table-keywords table tr td {
    padding: 20px;
    background-color: #fff;
}
.table-keywords table tr td {
    box-shadow: inset -1px -1px 0 #E0E0E0;
}
.table-keywords table tr td:first-child {
    box-shadow: inset -1px -1px 0 #E0E0E0, inset 1px -1px 0 #E0E0E0;
    font-weight: 600;
    color: #292929;
}
.table-keywords tbody tr:last-child td:first-child {
    border-bottom-left-radius: 15px;
}
.table-keywords tbody tr:last-child td:last-child {
    border-bottom-right-radius: 15px;
}
section.gradient-orange-whtie {
    background: #FF5500;
    background: linear-gradient(182deg, rgba(255, 85, 0, 1) 0%, rgba(132, 44, 0, 0.05) 100%);
}
.grid-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    text-align: center;
}
.number-heading.text-white {
    font-size: 50px;
    font-weight: 600;
}
section.orange-black-gradient {
    background: #6A2604;
    background: linear-gradient(182deg, rgba(106, 38, 4, 1) 0%, rgba(255, 85, 0, 1) 100%);
}
.glass-group {
    max-width: 530px;
    margin: 0 auto;
    position: relative;
}
.glass-group > input[type="text"] {
    width: 100%;
    height: 60px;
    border: hidden;
    border-radius: 50px;
    padding: 0 100px 0 20px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(10px);
}
.glass-group input[type="submit"] {
    position: absolute;
    right: 4px;
    top: 4px;
    height: calc(100% - 8px);
    border-radius: 50px;
    width: 122px;
    border: hidden;
    background: #fff;
    font-weight: 600;
}
.hero-intro {
    padding-top: 150px;
    padding-bottom: 80px !important;
}
.charts-box {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08 );
    padding: 20px;
    border-radius: 15px;
    width: 100%;
    height: 100%;
}
ul.dots-list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-flow: column;
    row-gap: 20px;
}
ul.dots-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
    font-weight: 500;
    position: relative;
    padding: 0 0 0 25px;
}
ul.dots-list li em {
    position: absolute;
    left: 0;
    top: 50%;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    transform: translateY(-50%);
}

@media (max-width:1199px) {
.four-icon-banner img {
    border-radius: 15px;
    max-width: 100px;
}
.backlinks-ranking {
    column-gap: 50px;
}
}
    @media (max-width: 991px) {
        section.cta-wrap {
            padding-block: 50px;
        }
		.four-icon-banner {
    display: none;
}
section.cta-wrap.cta-google.free-backlink-cta {
    min-height: 10px;
}
section.cta-wrap.cta-google.free-backlink-cta::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.table-keywords {
    overflow-x: auto;
}
    }
	
	@media (max-width:767px) {
	.backlinks-ranking {
    grid-template-columns: 1fr;
    row-gap: 30px;
}
section.powerful-backlink .col-md-5 {
    position: static;
    margin-bottom: 30px;
}
.new-faq .accordion-item h2.accordion-header button, .sections-wrapper .new-faq .accordion-item h2.accordion-header button {
    font-size: 18px !important;
    line-height: 1.4;
}
.new-faq .accordion-item {
    padding: 15px 0px !important;
}
.powerful-backlink .service--block {
    flex-flow: column;
}
.search-field input[type="text"] {
    height: 55px;
    padding: 0 20px;
}
.search-field input[type="button"] {
    width: 86px;
}
.backlinks-ranking {
    margin: 40px auto 0;
}
.search-field {
    margin-top: 30px;
}
.spacer-xl {
    padding: 40px 0;
}
section.hero-intro.freebacklinks-intro { 

} 
.grid-box {
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
}
.number-heading.text-white {
    font-size: 40px;
}
	}


/* Responsive */

@media only screen and (max-width: 991px) {

    thead, tbody, th, td, tr {
      display: block;
    }

    tbody tr td {
        background-color: var(--page-fade);
    }

    .faq-section .accordion-button {
        gap: 20px;
    }
}

@media only screen and (max-width: 767px) {

    .mb-50 {
        margin-bottom: 30px !important;
    }
	.spacer-xl {
    padding: 90px 0 50px !important;
}
}

@media (max-width: 575px) {

    .sections-wrapper h2 {
        font-size: 1.875rem !important;
        line-height: 40px !important;
    }
}