﻿:root {
    scroll-behavior: smooth
}

body {
    font-family: "Open Sans", sans-serif;
    color: #444;
    overflow-x: hidden
}

section {
    padding: 60px 0;
    overflow: hidden
}

.section-header {
    text-align: center;
    padding-bottom: 40px
}

.section-header h2 {
    text-transform: uppercase;
    color: #000 !important;
    font-family: Poppins, Sans-serif;
    font-size: 35px !important;
    font-weight: 400 !important;
    font-style: normal;
    line-height: 1em
}

.section-header p {
    margin: 10px 0 0 0;
    padding: 0;
    font-size: 38px;
    line-height: 42px;
    font-weight: 700;
    color: #000
}

@media (max-width:768px) {
    .section-header p {
        font-size: 28px;
        line-height: 32px
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1300px !important
    }
}

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #fbbc04;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all .4s
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0
}

.back-to-top:hover {
    background: #fbbc04;
    color: #fff
}

.back-to-top.active {
    visibility: visible;
    opacity: 1
}

.header {
    transition: all .5s;
    z-index: 997;
    padding: 20px 0
}

.header.header-scrolled {
    background: #000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(1, 41, 112, .1)
}

.header .logo {
    line-height: 0
}

.header .logo img {
    max-height: 120px !important;
    margin-right: 6px;
    width: 70% !important
}

.header .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #012970;
    font-family: Nunito, sans-serif;
    margin-top: 3px
}

.header.header-scrolled a.nav-link.scrollto {
    color: #fff
}

.navbar {
    padding: 0
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center
}

.navbar li {
    position: relative
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: Nunito, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    transition: .3s
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px
}

.navbar .active,
.navbar .active:focus,
.navbar a:hover,
.navbar li:hover>a {
    color: #fbbc04
}

.navbar .getstarted {
    background: #d00202;
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff
}

.navbar .getstarted-seo-ppc {
    margin-left: 30px;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    font-family: Inter;
    margin-right: 12px
}

.navbar .getstarted-seo-ppc img {
    margin-right: 12px
}

.navbar .icon-seo-ppc {
    background-color: #fbbc04;
    font-size: 25px;
    color: #fff;
    padding: 6px;
    border-radius: 6px
}

.navbar .getstarted-seo-ppc:hover {
    color: #000
}

.navbar .getstarted .fa {
    color: #ffc107;
    font-size: 20px;
    margin-right: 4px
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0 0 30px rgba(127, 137, 161, .25);
    transition: .3s;
    border-radius: 4px
}

.navbar .dropdown ul li {
    min-width: 200px
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600
}

.navbar .dropdown ul a i {
    font-size: 12px
}

.navbar .dropdown ul .active:hover,
.navbar .dropdown ul a:hover,
.navbar .dropdown ul li:hover>a {
    color: #4154f1
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible
}

@media (max-width:1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%
    }
}

.mobile-nav-toggle {
    color: #012970;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: .5s
}

.mobile-nav-toggle.bi-x {
    color: #fff
}

@media (max-width:991px) {
    .mobile-nav-toggle {
        display: block
    }

    .navbar ul {
        display: none
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(1, 22, 61, .9);
    transition: .3s
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: .3s
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #012970
}

.navbar-mobile .active,
.navbar-mobile a:hover,
.navbar-mobile li:hover>a {
    color: #4154f1
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0 0 30px rgba(127, 137, 161, .25)
}

.navbar-mobile .dropdown ul li {
    min-width: 200px
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px
}

.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #4154f1
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block
}

.on-page-hero {
    background-image: url(../images/social-media-lp-ppc/hero-bg.png);
    background-repeat: no-repeat;
    background-position: 1% 50%;
    background-size: cover;
    width: 100%;
    height: 110vh
}

.on-page-hero .text-area {
    padding: 50px 0 20px 0
}

.on-page-hero .text-area h1 {
    font-family: Inter;
    margin-bottom: 4px;
    font-size: 30px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 35px;
    background: -webkit-linear-gradient(left, #3978ac 10%, #00a14b 40%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.on-page-hero .text-area p {
    font-size: 16px;
    color: #5e5e5e;
    margin-bottom: 32px;
    font-family: Inter;
    font-weight: 600;
    padding-right: 90px !important;
    line-height: 25px;
    letter-spacing: -1px
}

.on-page-hero .text-area .btn-live-chat {
    background: 0 0;
    text-decoration: none;
    color: #0f9665;
    font-size: 16px;
    font-family: Inter;
    font-weight: 600;
    margin-right: 16px;
    border-radius: 0;
    margin-bottom: 18px;
    border: 2px solid #0f9665;
    box-shadow: none
}

.on-page-hero .text-area .btn-get-quote {
    background-color: #0f9665;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-family: Inter;
    font-weight: 600;
    border-radius: 0;
    border: 2px solid #0f9665;
    margin-bottom: 18px;
    box-shadow: none
}

.on-page-hero .on-page-hero-form {
    background-color: #fff !important;
    padding: 20px 25px;
    width: 80%;
    margin: 0 auto;
    margin-left: 95px;
    margin-top: 40px;
    border-radius: 0;
    box-shadow: 2px 2px 30px #888
}

.on-page-hero .on-page-hero-form label {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    padding: 0 0;
    letter-spacing: -1px
}

.on-page-hero .on-page-hero-form ::placeholder {
    color: #888;
    font-size: 13px;
    letter-spacing: -1px
}

.on-page-hero .on-page-hero-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #888;
    border-radius: 0;
    color: #000;
    padding: 2px 0;
    box-shadow: none
}

.on-page-hero .on-page-hero-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0
}

.on-page-hero .on-page-hero-form .btn {
    box-shadow: none;
    background-image: linear-gradient(to right, #069647, #05532b);
    width: 100%;
    outline: 0;
    border: none;
    font-size: 17px;
    font-weight: 600;
    font-family: Inter;
    letter-spacing: -1px;
    border-radius: 0;
    padding: 12px 40px
}

.on-page-hero .on-page-hero-form .btn.active {
    background-image: linear-gradient(to right, #069647, #05532b);
    width: 100%;
    outline: 0;
    border: none;
    font-size: 17px;
    font-weight: 600;
    font-family: Inter;
    letter-spacing: -1px;
    border-radius: 0;
    outline: 0;
    border: none
}

.on-page-hero .heading h3 {
    color: #000;
    font-size: 30px;
    font-family: Inter;
    font-weight: 900;
    letter-spacing: -2px
}

.on-page-hero .heading h3 span {
    font-family: Inter;
    font-size: 32px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 42px;
    color: #099b5a
}

.on-page-numbers {
    margin-top: 50px
}

.on-page-numbers .counter-box {
    border-left: 1px solid #888
}

.on-page-numbers .firstchild {
    border-left: none !important;
    margin-left: 13px
}

.on-page-numbers .counter-box .numbers-img img {
    margin-right: 4px;
    margin-bottom: 4px;
    object-fit: contain;
    max-width: 50px
}

.on-page-numbers .firstchild .numbers-img img {
    margin-bottom: 14px !important
}

.on-page-numbers .secondchild .numbers-img img {
    height: 44px;
    margin-bottom: 14px
}

.on-page-numbers .counter-box .numbers-img h3 {
    font-family: Inter;
    font-size: 38px;
    font-weight: 700;
    color: #000;
    padding-top: 0;
    margin-left: 1px
}

.on-page-numbers .col-lg-4 {
    padding: 0 !important
}

.on-page-numbers .counter-box p {
    text-transform: uppercase;
    font-family: Inter;
    font-weight: 700;
    font-size: 12px;
    line-height: 10px;
    margin-top: 7px;
    color: #000 !important;
    letter-spacing: -1px
}

.on-page-seo-clients .text-area {
    margin-bottom: 20px
}

.on-page-seo-clients .text-area h3 {
    font-family: Inter;
    margin-bottom: -10px;
    font-size: 50px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 50px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 18px
}

.on-page-seo-clients .text-area p {
    font-family: Inter;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -1px;
    color: #515151
}

.on-page-seo-clients .map-img img {
    max-width: 1100px;
    position: relative;
    margin-bottom: 0
}

.on-page-seo-clients .one {
    position: absolute;
    top: 100px;
    left: 250px;
    color: #5cc004;
    font-size: 25px;
    color: #fff
}

.on-page-seo-clients .two {
    position: absolute;
    bottom: 280px;
    left: 400px;
    color: #5cc004;
    font-size: 25px;
    color: #fff
}

.on-page-seo-clients .three {
    position: absolute;
    top: 200px;
    left: 500px;
    color: #5cc004;
    font-size: 25px;
    color: #fff
}

.on-page-seo-clients .four {
    position: absolute;
    top: 220px;
    left: 250px;
    color: #5cc004;
    font-size: 25px;
    color: #fff
}

.on-page-seo-clients .five {
    position: absolute;
    bottom: 200px;
    right: 670px;
    color: #5cc004;
    font-size: 25px;
    color: #fff
}

.on-page-seo-clients .six {
    position: absolute;
    bottom: 200px;
    left: 800px;
    color: #5cc004;
    font-size: 25px;
    color: #fff
}

.on-page-seo-clients .seven {
    position: absolute;
    bottom: 500px;
    right: 820px;
    color: #5cc004;
    font-size: 25px;
    color: #fff
}

.on-page-seo-clients .eight {
    position: absolute;
    bottom: 500px;
    left: 1070px;
    color: #5cc004;
    font-size: 25px;
    color: #fff
}

.on-page-seo-clients .nine {
    position: absolute;
    bottom: 480px;
    left: 520px;
    color: #5cc004;
    font-size: 25px;
    color: #fff
}

.on-page-seo-clients .ten {
    position: absolute;
    bottom: 320px;
    left: 620px;
    color: #5cc004;
    font-size: 25px;
    color: #fff
}

.on-page-seo-clients .eleven {
    position: absolute;
    bottom: 310px;
    left: 320px;
    color: #5cc004;
    font-size: 25px;
    color: #fff
}

.on-page-seo-clients .twelve {
    position: absolute;
    bottom: 380px;
    left: 125px;
    color: #5cc004;
    font-size: 25px;
    color: #fff
}

.on-page-seo-clients .thirteen {
    position: absolute;
    bottom: 300px;
    left: 920px;
    color: #5cc004;
    font-size: 25px;
    color: #fff
}

.on-page-seo-clients .fourteen {
    position: absolute;
    bottom: 450px;
    left: 720px;
    color: #5cc004;
    font-size: 25px;
    color: #fff
}

.on-page-seo-clients .fifteen {
    position: absolute;
    bottom: 610px;
    left: 1140px;
    color: #5cc004;
    font-size: 25px;
    color: #fff
}

.on-page-seo-pricing {
    margin-top: -60px
}

.on-page-seo-pricing .heading h2 {
    font-family: Inter;
    margin-bottom: 20px;
    font-size: 50px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 55px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.on-page-seo-pricing .heading p {
    font-family: Inter;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 12px;
    letter-spacing: -1px;
    color: #000
}

.on-page-seo-pricing .col-md-4 {
    margin: 0;
    padding: 0
}

.on-page-seo-pricing #myTabContent {
    position: relative;
    right: 0
}

.on-page-seo-pricing #myTabContent .table-1,
.social-ppc-pricing #myTabContent .table-2,
.social-ppc-pricing #myTabContent .table-3 {
    border: 1px solid #ccc;
    width: 370px;
    margin: 0 auto
}

.on-page-seo-pricing ul#myTab {
    width: 520px;
    margin: 0 auto !important;
    box-shadow: 2px 2px 20px rgb(0 0 0 / 70%);
    padding: 10px 27px;
    position: relative;
    bottom: -18px;
    z-index: 60;
    background-color: #fff;
    border-radius: 16px
}

.on-page-seo-pricing .nav-tabs .nav-link {
    background-color: #fff;
    border: none;
    outline: 0;
    font-size: 18px;
    font-weight: 900;
    color: #000;
    font-family: Inter
}

.on-page-seo-pricing .nav-tabs a span {
    color: #a80b0b;
    font-size: 16px;
    font-weight: 700
}

.on-page-seo-pricing .nav-tabs a.active span {
    color: #fff
}

.on-page-seo-pricing .nav-tabs .nav-link.active {
    background-color: #a80b0b !important;
    color: #fff !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    padding: 11px 20px
}

.on-page-tabs .tab-pane .cont_1 {
    background: #3b7ca7;
    padding: 50px 30px 30px 30px
}

.on-page-tabs .tab-pane .cont_1 h4,
.tab-pane .cont_2 h4,
.tab-pane .cont_3 h4 {
    text-align: left;
    font-family: Inter;
    font-weight: 300;
    font-size: 24px;
    color: #fff
}

.on-page-tabs .tab-pane .cont_1 h3,
.tab-pane .cont_2 h3,
.tab-pane .cont_3 h3 {
    font-size: 50px;
    font-weight: 700;
    font-family: Inter;
    margin-bottom: 4px;
    color: #fff
}

.on-page-tabs .tab-pane .cont_1 h3 span,
.tab-pane .cont_2 h3 span,
.tab-pane .cont_3 h3 span {
    font-size: 20px;
    font-weight: 500;
    font-family: Inter
}

.on-page-tabs .tab-pane .cont_1 p,
.tab-pane .cont_2 p,
.tab-pane .cont_3 p {
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
    font-family: Inter;
    color: #fff
}

.on-page-tabs .tab-pane .cont_2 {
    background: #31a65a;
    padding: 50px 30px 30px 30px
}

.on-page-tabs .tab-pane .cont_2 h4 {
    text-align: left
}

.on-page-tabs .tab-pane .cont_3 {
    background: #ccb732;
    padding: 50px 30px 30px 30px
}

.on-page-tabs .tab-pane .cont_3 h4 {
    text-align: left
}

.on-page-tabs .ser1 {
    padding: 10px 30px;
    overflow-y: scroll;
    height: 270px
}

.on-page-tabs .ser1 .heading1 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #3b7ca7;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 190px
}

.on-page-tabs .ser1 .heading2 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #3b7ca7;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 90px
}

.on-page-tabs .ser1 .heading3 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #3b7ca7;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 135px
}

.on-page-tabs .ser1 p {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    margin: 0
}

.on-page-tabs .ser1 h5 {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400
}

.on-page-tabs .ser1 p .fa {
    margin-right: 6px;
    color: #29ae3c
}

.on-page-tabs .ser1::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    border-radius: 50px;
    background-color: #ccc
}

.on-page-tabs .ser1::-webkit-scrollbar {
    width: 4px;
    border-radius: 50px;
    margin-right: 12px;
    background-color: #3b7ca7
}

.on-page-tabs .ser1::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #3b7ca7
}

.on-page-tabs .ser2::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    border-radius: 50px;
    background-color: #ccc
}

.on-page-tabs .ser2::-webkit-scrollbar {
    width: 4px;
    border-radius: 50px;
    margin-right: 12px;
    background-color: #31a65a
}

.on-page-tabs .ser2::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #31a65a
}

.on-page-tabs .ser3::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    border-radius: 50px;
    background-color: #ccc
}

.on-page-tabs .ser3::-webkit-scrollbar {
    width: 4px;
    border-radius: 50px;
    margin-right: 12px;
    background-color: #ccb732
}

.on-page-tabs .ser3::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #ccb732
}

.on-page-tabs .ser2 {
    padding: 10px 30px;
    overflow-y: scroll;
    height: 270px;
    background-color: #f0f4f6
}

.on-page-tabs .ser2 .heading1 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #31a65a;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 190px
}

.on-page-tabs .ser2 .heading2 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #31a65a;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 90px
}

.on-page-tabs .ser2 .heading3 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #31a65a;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 135px
}

.on-page-tabs .ser2 p {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    margin: 0
}

.on-page-tabs .ser2 h5 {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400
}

.on-page-tabs .ser2 p .fa {
    margin-right: 6px;
    color: #29ae3c
}

.on-page-tabs .ser3 {
    padding: 10px 30px;
    overflow-y: scroll;
    height: 270px
}

.on-page-tabs .ser3 .heading1 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #ccb732;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 190px
}

.on-page-tabs .ser3 .heading2 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #ccb732;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 90px
}

.on-page-tabs .ser3 .heading3 {
    font-size: 20px;
    color: #393c3e;
    text-decoration: none;
    font-weight: 800;
    font-family: Inter;
    border-bottom: 2px solid #ccb732;
    padding: 2px 0;
    margin-bottom: 6px;
    width: 135px
}

.on-page-tabs .ser3 p {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    margin: 0
}

.on-page-tabs .ser3 h5 {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400
}

.on-page-tabs .ser3 p .fa {
    margin-right: 6px;
    color: #29ae3c
}

.on-page-tabs .order-now {
    padding: 10px 30px
}

.on-page-tabs .btn-order {
    background-image: linear-gradient(to right, #0071bc, #034d78);
    border-radius: 0;
    border: none;
    outline: 0;
    padding: 0 32px
}

.btn-order:active,
.btn-order:focus,
.on-page-tabs .btn-order:hover {
    background-image: linear-gradient(to right, #0071bc, #034d78);
    color: #fff
}

.on-page-tabs .order-now .btn {
    margin-bottom: 12px;
    padding: 12px 40px;
    color: #fff;
    box-shadow: none
}

.on-page-tabs .order-now h5 {
    font-family: Inter;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px
}

.on-page-tabs .order-now p {
    font-family: Inter;
    font-size: 15px;
    font-weight: 600
}

.on-page-tabs .order-now p .fa {
    color: #d00202;
    font-size: 18px;
    margin-right: 4px
}

.on-page-tabs .order-now2 {
    padding: 10px 30px;
    background-color: #f0f4f6
}

.on-page-tabs .btn-order_2 {
    background-image: linear-gradient(to right, #069647, #05542b);
    border-radius: 0;
    border: none;
    outline: 0;
    padding: 0 32px
}

.on-page-tabs .btn-order_2:hover {
    background-image: linear-gradient(to right, #069647, #05542b);
    color: #fff
}

.on-page-tabs .order-now2 .btn {
    margin-bottom: 12px;
    padding: 12px 40px;
    color: #fff;
    box-shadow: none
}

.on-page-tabs .order-now2 h5 {
    font-family: Inter;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px
}

.on-page-tabs .order-now2 p {
    font-family: Inter;
    font-size: 15px;
    font-weight: 600
}

.on-page-tabs .order-now2 p .fa {
    color: #d00202;
    font-size: 18px;
    margin-right: 4px
}

.on-page-tabs .order-now3 {
    padding: 10px 30px
}

.on-page-tabs .btn-order_3 {
    background-image: linear-gradient(to right, #f3bc18, #cfa62b);
    border-radius: 0;
    border: none;
    outline: 0;
    padding: 0 32px
}

.on-page-tabs .btn-order_3:hover {
    background-image: linear-gradient(to right, #f3bc18, #cfa62b);
    color: #fff
}

.on-page-tabs .order-now3 .btn {
    margin-bottom: 12px;
    padding: 12px 40px;
    color: #fff;
    box-shadow: none
}

.on-page-tabs .order-now3 h5 {
    font-family: Inter;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px
}

.on-page-tabs .order-now3 p {
    font-family: Inter;
    font-size: 15px;
    font-weight: 600
}

.on-page-tabs .order-now3 p .fa {
    color: #d00202;
    font-size: 18px;
    margin-right: 4px
}

li.nav-item {
    margin: 0 12px
}

.why-do-on-page {
    padding: 60px 0 0 0
}

.why-do-on-page .col-md-6 {
    margin: 40px 0
}

.why-do-on-page .img-one img {
    max-width: 380px
}

.why-do-on-page .heading {
    margin-top: 20px
}

.why-do-on-page .heading h3 {
    font-family: Inter;
    margin-bottom: 16px;
    font-size: 42px;
    letter-spacing: -2px;
    font-weight: 900;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.why-do-on-page .heading p {
    font-size: 18px;
    font-family: 'Inter';
    font-weight: 400;
    line-height: 24px;
    color: #515151;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.why-do-on-page .heading a {
    font-size: 17px;
    font-family: Inter;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid #000
}

.why-do-on-page .input-group {
    width: 500px
}

.why-do-on-page .input-group input {
    border-radius: 0;
    margin-right: 25px;
    background-color: #fff;
    border: none;
    outline: 0;
    box-shadow: 2px 2px 20px #ccc;
    padding: 12px 40px
}

.why-do-on-page .input-group .btn {
    border-radius: 0;
    border: none;
    outline: 0;
    box-shadow: 2px 2px 20px #ccc;
    padding: 12px 10px;
    color: #fff;
    background-color: #d00202;
    width: 200px;
    font-size: 16px;
    font-weight: 500
}

.why-do-on-page .heading-two {
    margin-top: 50px
}

.why-do-on-page .heading-two h3 {
    font-family: Inter;
    margin-bottom: 16px;
    font-size: 50px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 55px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.why-do-on-page .heading-two p {
    font-size: 16px;
    font-family: Inter;
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 24px;
    color: #515151;
    letter-spacing: -1px;
    margin-bottom: 20px
}

.why-do-on-page .heading-two a {
    font-size: 17px;
    font-family: Inter;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid #000
}

.why-do-on-page .img-two img {
    max-width: 500px
}

.why-do-on-page .heading-three h3 {
    font-family: Inter;
    margin-bottom: 16px;
    font-size: 42px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 55px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.why-do-on-page .heading-three p {
    font-size: 16px;
    font-family: Inter;
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 24px;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: #515151
}

.why-do-on-page .heading-three a {
    font-size: 17px;
    font-family: Inter;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid #000
}

.why-do-on-page .img-three img {
    max-width: 600px
}

.why-do-on-page .heading-four h3 {
    font-family: Inter;
    margin-bottom: 16px;
    font-size: 46px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 55px;
    background: -webkit-linear-gradient(left, #3978ac 10%, #00a14b 50%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.why-do-on-page .heading-four h2 {
    font-family: Inter;
    margin-bottom: 2px;
    font-size: 24px;
    letter-spacing: -1px;
    font-weight: 700;
    line-height: 40px;
    color: #000
}

.why-do-on-page .heading-four p {
    font-size: 16px;
    font-family: Inter;
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 24px;
    color: #515151;
    letter-spacing: -1px;
    margin-bottom: 0
}

.why-do-on-page .img-four img {
    max-width: 450px
}

.why-choose-on-page-seo .head {
    margin-top: -20px
}

.why-choose-on-page-seo .head div.title,
.why-choose-on-page-seo .head h2 {
    font-family: Inter;
    margin-bottom: 12px;
    font-size: 48px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 55px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.why-choose-on-page-seo .head p {
    font-size: 20px;
    font-family: Inter;
    font-weight: 400;
    line-height: 24px;
    color: #525252;
    letter-spacing: -1px;
    margin-bottom: 20px
}

.why-choose-on-page-seo .content-area {
    padding: 50px 0 0 0
}

.why-choose-on-page-seo .content-area h3 {
    font-family: Inter;
    font-weight: 700;
    font-size: 22px;
    color: #000;
    margin-bottom: 4px;
    letter-spacing: -1px
}

.why-choose-on-page-seo .content-area p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    color: #525252;
    margin-bottom: 24px;
    letter-spacing: -1px
}

.why-choose-on-page-seo .img-wrapper {
    margin-top: 60px
}

.on-page-seo-social-media-ads {
    margin-top: -60px
}

.on-page-seo-social-media-ads .heading h3 {
    font-family: Inter;
    margin-bottom: 30px;
    font-size: 50px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 55px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.on-page-seo-social-media-ads .card {
    margin: 10px;
    display: inline-block;
    position: relative;
    width: 350px;
    height: 420px;
    opacity: .85
}

.back,
.on-page-seo-social-media-ads .front {
    width: 100%;
    height: 100%;
    position: absolute;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    border-radius: 0
}

.on-page-seo-social-media-ads .front-one {
    transform: rotateY(0);
    background-image: url(../images/Technical-sEO/tech-c1.png);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px
}

.on-page-seo-social-media-ads .back-one {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff
}

.on-page-seo-social-media-ads .card:hover .front-one {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg)
}

.on-page-seo-social-media-ads .card:hover .back-one {
    -webkit-transform: rotateY(0);
    transform: rotateY(0)
}

.on-page-seo-social-media-ads .front-two {
    transform: rotateY(0);
    background-image: url(../images/Technical-sEO/tech-c2.png);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px
}

.on-page-seo-social-media-ads .back-two {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff
}

.on-page-seo-social-media-ads .card:hover .front-two {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg)
}

.on-page-seo-social-media-ads .card:hover .back-two {
    -webkit-transform: rotateY(0);
    transform: rotateY(0)
}

.on-page-seo-social-media-ads .front-three {
    transform: rotateY(0);
    background-image: url(../images/Technical-sEO/tech-c2.png);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px
}

.on-page-seo-social-media-ads .back-three {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff
}

.on-page-seo-social-media-ads .card:hover .front-three {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg)
}

.on-page-seo-social-media-ads .card:hover .back-three {
    -webkit-transform: rotateY(0);
    transform: rotateY(0)
}

.on-page-seo-social-media-ads .front-four {
    transform: rotateY(0);
    background-image: url(../images/Technical-sEO/tech-c3.png);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px
}

.on-page-seo-social-media-ads .back-four {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff
}

.on-page-seo-social-media-ads .card:hover .front-four {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg)
}

.on-page-seo-social-media-ads .card:hover .back-four {
    -webkit-transform: rotateY(0);
    transform: rotateY(0)
}

.on-page-seo-social-media-ads .front-five {
    transform: rotateY(0);
    background-image: url(../images/Technical-sEO/tech-c4.png);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px
}

.on-page-seo-social-media-ads .back-five {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff
}

.on-page-seo-social-media-ads .card:hover .front-five {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg)
}

.on-page-seo-social-media-ads .card:hover .back-five {
    -webkit-transform: rotateY(0);
    transform: rotateY(0)
}

.on-page-seo-social-media-ads .front-six {
    transform: rotateY(0);
    background-image: url(../images/Technical-sEO/tech-c5.png);
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 30px
}

.on-page-seo-social-media-ads .back-six {
    background: #000;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 30px 25px !important;
    color: #fff
}

.on-page-seo-social-media-ads .card:hover .front-six {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg)
}

.on-page-seo-social-media-ads .card:hover .back-six {
    -webkit-transform: rotateY(0);
    transform: rotateY(0)
}

.on-page-seo-social-media-ads .front {
    padding: 70px 30px
}

.on-page-seo-social-media-ads .front h4 {
    font-family: Inter;
    text-align: left !important;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0
}

.on-page-seo-social-media-ads .front p {
    font-family: Inter;
    text-align: left !important;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 20px
}

.on-page-seo-social-media-ads .back {
    padding: 12px 30px
}

.on-page-seo-social-media-ads .back h4 {
    text-align: left;
    margin-bottom: 4px;
    font-weight: 700;
    font-family: Inter;
    font-size: 16px
}

.on-page-seo-social-media-ads .back p {
    text-align: left;
    margin-bottom: 8px;
    font-size: 14px
}

.on-page-seo-social-media-ads .back a {
    text-align: left;
    margin-bottom: 8px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    font-weight: 700
}

.on-page-seo-social-media-ads .back .btn-danger {
    background-color: transparent;
    border: 2px solid #fff;
    padding: 1px 16px;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    width: 100%
}

.on-page-batting-blades .bg-img {
    background-image: url(../images/image-4.png);
    background-repeat: no-repeat;
    background-size: 128%;
    background-position: center;
    width: 100%;
    height: 80vh
}

.on-page-batting-blades .heading {
    margin-top: 30px;
    margin-left: 100px
}

.on-page-batting-blades .slider-paragraph p {
    margin-left: 120px;
    padding: 0 200px 0 0
}

.on-page-batting-blades .swiper-button-prev {
    margin-top: -30px
}

.on-page-batting-blades .swiper-button-next {
    margin-top: -30px
}

.on-page-batting-blades .slider-paragraph h5 {
    margin-left: 120px;
    font-family: Inter;
    font-size: 30px;
    font-weight: 700;
    color: #000
}

.on-page-batting-blades .slider-paragraph h2 {
    margin-left: 120px;
    font-family: Inter;
    margin-bottom: 10px;
    font-size: 65px;
    letter-spacing: -1px;
    font-weight: 800;
    line-height: 75px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #01a04d 60%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.on-page-batting-blades .bg-numbers {
    background-image: url(../images/bg-numbers.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 24vh
}

.on-page-batting-blades .bg-numbers .num-blades {
    padding: 24px 0;
    text-align: center
}

.on-page-batting-blades .bg-numbers .num-blades h3 {
    color: #fff;
    font-family: Inter;
    font-weight: 900;
    font-size: 50px
}

.on-page-batting-blades .bg-numbers .num-blades p {
    color: #fff;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px
}

.on-page-seo-min-strategy {
    background-image: url(../images/min-bg.png);
    background-repeat: no-repeat;
    background-position: 6% 100%;
    background-size: contain;
    margin-top: -70px;
    height: 100vh
}

.on-page-seo-min-strategy .text-area {
    padding: 140px 0 20px 0
}

.on-page-seo-min-strategy .text-area h1 {
    font-size: 40px;
    font-family: Inter;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 42px;
    margin-bottom: 40px !important;
    color: #262626
}

.on-page-seo-min-strategy .text-area h1 span {
    font-family: Inter;
    margin-bottom: 6px;
    font-size: 38px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 40px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.on-page-seo-min-strategy .text-area .btn-live-chat {
    background: #d00202;
    text-decoration: none;
    color: #fff;
    padding: 12px 40px;
    font-size: 15px;
    font-family: Inter;
    margin-right: 16px;
    border-radius: 0;
    outline: 0;
    border: none;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: normal;
    margin-top: 15px;
    box-shadow: none
}

.on-page-seo-min-strategy .min-strategy-form {
    background-color: #fff !important;
    padding: 20px 25px;
    width: 85%;
    margin: 0 auto;
    margin-top: 75px;
    border-radius: 0;
    box-shadow: 2px 2px 30px #888
}

.on-page-seo-min-strategy .min-strategy-form label {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    padding: 0 0;
    letter-spacing: -1px
}

.on-page-seo-min-strategy .min-strategy-form ::placeholder {
    color: #888;
    font-size: 13px;
    letter-spacing: -1px
}

.on-page-seo-min-strategy .min-strategy-form input {
    background-color: transparent;
    font-size: 12px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #888;
    border-radius: 0;
    color: #000;
    padding: 1px 0
}

.on-page-seo-min-strategy .min-strategy-form input:focus {
    background-color: transparent;
    font-size: 14px;
    border: none;
    outline: 0;
    border-bottom: 1px solid #000;
    border-radius: 0
}

.on-page-seo-min-strategy .min-strategy-form .btn {
    background-image: linear-gradient(to right, #069647, #05522a);
    width: 100%;
    outline: 0;
    border: none;
    font-size: 17px;
    font-weight: 600;
    font-family: Inter;
    letter-spacing: -1px;
    border-radius: 0;
    padding: 12px 40px;
    box-shadow: none
}

.on-page-seo-min-strategy .heading h3 {
    color: #000 !important;
    font-size: 32px;
    font-family: Inter;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 0;
    background: unset;
    -webkit-text-fill-color: unset
}

.on-page-seo-min-strategy .text-side h3 {
    font-family: Inter;
    font-weight: 900;
    font-size: 28px;
    margin-bottom: 18px;
    background: -webkit-linear-gradient(left, #743bbc 10%, #0f9bcc 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.ecoomerce-seo-min-strategy .text-side .col-md-4,
.on-page-seo-min-strategy .text-side .col-md-3 {
    margin: 2px 0 7px 0
}

.on-page-seo-min-strategy .text-side .d-flex h5 {
    font-family: Inter;
    font-weight: 900;
    font-size: 15px;
    color: #000
}

.on-page-seo-min-strategy .text-side2 {
    margin: 18px 0
}

.on-page-seo-min-strategy .text-side2 p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    color: #2f2f2f;
    margin-bottom: 14px
}

.on-page-seo-min-strategy .text-side2 h5 {
    font-family: Inter;
    font-weight: 900;
    font-size: 20px;
    color: #000
}

.on-page-seo-min-strategy .text-side2 h5 span {
    font-family: Inter;
    font-weight: 900;
    font-size: 20px;
    color: #36a1d5
}

.on-page-seo-faq {
    padding: 60px 0
}

.on-page-seo-faq .section-title h2 {
    font-family: Inter;
    margin-bottom: 6px;
    font-size: 50px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 55px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px
}

.on-page-seo-faq .faq-list {
    padding: 0 70px
}

.on-page-seo-faq .faq-list ul {
    padding: 0;
    list-style: none
}

.on-page-seo-faq .faq-list li+li {
    margin-top: 15px
}

.on-page-seo-faq .faq-list li {
    padding: 20px 0;
    background-color: #2b2b2b;
    position: relative;
    padding: 12px 32px;
    border-radius: 10px;
    width: 800px;
    margin: 0 auto
}

.on-page-seo-faq .faq-list a {
    display: block;
    position: relative;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    padding: 0;
    outline: 0;
    cursor: pointer;
    color: #fff
}

.on-page-seo-faq .faq-list a:hover {
    display: block;
    position: relative;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    padding: 0;
    outline: 0;
    cursor: pointer;
    color: #fff
}

.on-page-seo-faq .faq-list .icon-show,
.social-ppc-faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
    color: #fff
}

.on-page-seo-faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
    font-size: 13px;
    color: #fff
}

.on-page-seo-faq .faq-list .icon-show {
    display: none
}

.on-page-seo-faq .faq-list a.collapsed {
    color: #fff
}

.on-page-seo-faq .faq-list a.collapsed .icon-show {
    display: inline-block;
    font-size: 16px;
    margin-top: 4px
}

.on-page-seo-faq .faq-list .fa-chevron-up:before {
    font-size: 16px;
    margin-top: 4px
}

.on-page-seo-faq .faq-list a.collapsed .icon-close {
    display: none
}

@media screen and (max-width:626px) {
    .on-page-hero {
        height: auto;
        background-image: unset
    }

    .on-page-hero .text-area {
        margin-top: 65px
    }

    .on-page-hero .text-area h1 {
        font-size: 25px;
        line-height: 32px
    }

    .on-page-hero .text-area br {
        display: none
    }

    .on-page-hero .text-area p {
        padding-right: 0 !important
    }

    .on-page-hero .on-page-hero-form {
        margin: 0 auto;
        width: 95%
    }

    .on-page-numbers {
        margin-top: 0
    }

    .on-page-numbers .counter-box p {
        margin-top: 0;
        letter-spacing: 0
    }

    .on-page-numbers .firstchild {
        margin-bottom: 20px
    }

    .on-page-numbers .firstchild .numbers-img {
        margin-left: 95px
    }

    .on-page-numbers .counter-box {
        border-left: none;
        margin-bottom: 20px
    }

    .on-page-seo-clients .text-area h3 {
        font-size: 32px;
        line-height: 36px
    }

    .on-page-seo-clients .map-img img {
        max-width: 360px
    }

    .on-page-seo-clients .btn-live-chat {
        width: 220px
    }

    .on-page-seo-pricing .heading h2 {
        font-size: 30px;
        line-height: 30px;
        margin-top: 50px
    }

    .on-page-seo-pricing .heading h2 br {
        display: none
    }

    .on-page-seo-pricing nav {
        display: block !important
    }

    .on-page-seo-pricing ul#myTab {
        width: 200px
    }

    .on-page-seo-pricing li.nav-item {
        margin: 0 auto
    }

    .on-page-seo-pricing .tab-pane .d-flex {
        display: block !important
    }

    .on-page-seo-pricing .tab-pane .d-flex .table-1 {
        margin-bottom: 120px
    }

    .on-page-seo-pricing #myTabContent .table-1,
    .social-ppc-pricing #myTabContent .table-2,
    .social-ppc-pricing #myTabContent .table-3 {
        width: 312px;
        margin-bottom: 24px
    }

    .seo-tabs .ser1 p,
    .seo-tabs .ser2 p,
    .seo-tabs .ser3 p {
        text-align: left !important
    }

    .seo-updated-ppc-choose .head h2 {
        font-size: 40px
    }

    .seo-updated-ppc-choose .heading h3 {
        font-size: 30px;
        line-height: 30px
    }

    .seo-updated-ppc-choose .btn-folks {
        margin-right: 15px
    }

    .seo-updated-ppc-choose .img-wrapper h2 {
        font-size: 22px;
        margin-top: 16px
    }

    .seo-updated-ppc-choose .img-wrapper img {
        max-width: 320px;
        height: auto
    }

    .seo-ppc-social-media-ads .heading h3 {
        font-size: 32px;
        line-height: 38px
    }

    .seo-ppc-social-media-ads .heading h3 br {
        display: none
    }

    .seo-ppc-min-strategy .text-area .btn-live-chat {
        padding: 2px 10px;
        font-size: 14px
    }

    .seo-ppc-social-media-ads .heading h3 {
        font-size: 28px
    }

    .on-page-seo-faq .section-title h2 {
        font-size: 34px;
        line-height: 40px
    }

    .on-page-seo-faq .faq-list {
        padding: 0 !important
    }

    .on-page-seo-clients .one {
        position: absolute;
        top: 100px;
        left: 250px;
        color: #5cc004;
        font-size: 25px;
        color: #fff
    }

    .on-page-seo-clients .two {
        position: absolute;
        bottom: 90px;
        left: 200px;
        color: #5cc004;
        font-size: 25px;
        color: #fff
    }

    .on-page-seo-clients .three {
        position: absolute;
        top: 100px;
        left: 50px;
        color: #5cc004;
        font-size: 25px;
        color: #fff
    }

    .on-page-seo-clients .four {
        position: absolute;
        top: 20px;
        left: 80px;
        color: #5cc004;
        font-size: 25px;
        color: #fff
    }

    .on-page-seo-clients .five {
        position: absolute;
        bottom: 110px;
        right: 190px;
        color: #5cc004;
        font-size: 25px;
        color: #fff
    }

    .on-page-seo-clients .six {
        position: absolute;
        bottom: 200px;
        left: 20px;
        color: #5cc004;
        font-size: 25px;
        color: #fff
    }

    .on-page-seo-clients .seven {
        position: absolute;
        bottom: 180px;
        right: 240px;
        color: #5cc004;
        font-size: 25px;
        color: #fff
    }

    .on-page-seo-clients .eight {
        position: absolute;
        bottom: 120px;
        left: 100px;
        color: #5cc004;
        font-size: 25px;
        color: #fff
    }

    .on-page-seo-clients .nine {
        position: absolute;
        bottom: 480px;
        left: 520px;
        color: #5cc004;
        font-size: 25px;
        color: #fff
    }

    .on-page-seo-clients .ten {
        position: absolute;
        bottom: 200px;
        left: 180px;
        color: #5cc004;
        font-size: 25px;
        color: #fff
    }

    .on-page-seo-clients .eleven {
        position: absolute;
        bottom: 146px;
        left: 200px;
        color: #5cc004;
        font-size: 25px;
        color: #fff
    }

    .on-page-seo-clients .twelve {
        position: absolute;
        bottom: 380px;
        left: 125px;
        color: #5cc004;
        font-size: 25px;
        color: #fff
    }

    .on-page-seo-clients .thirteen {
        position: absolute;
        bottom: 300px;
        left: 920px;
        color: #5cc004;
        font-size: 25px;
        color: #fff
    }

    .on-page-seo-clients .fourteen {
        position: absolute;
        bottom: 450px;
        left: 720px;
        color: #5cc004;
        font-size: 25px;
        color: #fff
    }

    .on-page-seo-clients .fifteen {
        position: absolute;
        bottom: 610px;
        left: 1140px;
        color: #5cc004;
        font-size: 25px;
        color: #fff
    }

    .why-do-on-page .img-wrapper img {
        max-width: 250px
    }

    .why-do-on-page .row-2 .img-two img {
        max-width: 300px;
        height: unset
    }

    .why-do-on-page .row-2,
    .why-do-technical .row-4 {
        flex-direction: column-reverse;
        margin-top: -100px
    }

    .why-choose-on-page-seo .img-wrapper {
        margin-top: 0
    }

    .why-do-on-page .row-4 {
        flex-direction: column-reverse
    }

    .why-do-on-page .heading-four h2 {
        line-height: 22px;
        font-size: 20px
    }

    .why-do-on-page .heading h3 {
        font-size: 32px;
        line-height: 34px
    }

    .why-do-on-page .heading h3 br {
        display: none
    }

    .why-do-on-page .heading p {
        padding-right: 0
    }

    .why-do-on-page .heading .input-group {
        width: 100%
    }

    .why-do-on-page .heading .input-group input {
        padding: 12px 10px;
        margin: 12px 0
    }

    .why-do-on-page .heading .input-group .btn {
        width: 100%
    }

    .why-choose-on-page-seo .head div.title,
    .why-choose-on-page-seo .head h2 {
        font-size: 30px;
        line-height: 34px
    }

    .why-choose-on-page-seo .head div.title br,
    .why-choose-on-page-seo .head h2 br {
        display: none
    }

    .on-page-seo-social-media-ads .heading h3 {
        font-size: 32px;
        line-height: 34px;
        margin-top: 50px
    }

    .on-page-batting-blades .slider-paragraph h5 {
        margin-left: 0
    }

    .on-page-batting-blades .slider-paragraph h2 {
        margin-left: 0
    }

    .on-page-seo-social-media-ads .heading h3 br {
        display: none
    }

    .on-page-seo-social-media-ads .card {
        max-width: 310px
    }

    .on-page-batting-blades .bg-numbers {
        height: auto
    }

    .on-page-batting-blades .slider-paragraph p {
        margin: 0;
        padding: 20px
    }

    .on-page-batting-blades .heading {
        margin: 0
    }

    .on-page-seo-min-strategy .text-area h1 {
        font-size: 32px;
        line-height: 36px;
        letter-spacing: -1px
    }

    .on-page-seo-min-strategy .text-area h1 br {
        display: none
    }

    .on-page-seo-min-strategy .text-area .btn-live-chat {
        font-size: 13px
    }

    .on-page-seo-min-strategy .heading h3 {
        font-size: 24px;
        letter-spacing: -1px
    }

    .on-page-seo-faq .faq-list li {
        width: 310px;
        padding: 10px 15px
    }

    .on-page-hero .text-area .btn-live-chat {
        margin-left: 10px
    }

    .on-page-seo-faq {
        margin-top: 80px
    }

    .footer-2 .footer-top .cities-flex {
        padding-left: 15px !important
    }
}

.footer-2 {
    background: #f0f0f0;
    padding: 50px 0 30px 0;
    font-size: 14px;
    margin-top: 50px
}

.footer-2 .footer-logo .img-wrapper img {
    max-width: 120px;
    margin-bottom: 25px
}

.footer-2 .text-area p {
    color: #636363;
    font-size: 13px;
    font-weight: 400;
    font-family: Inter;
    margin-bottom: 25px
}

.footer-2 .text-area .fa {
    color: #636363;
    font-size: 24px;
    font-weight: 400;
    margin-right: 18px
}

.footer .footer-top .footer-links {
    margin-bottom: 30px
}

.footer-2 .footer-top {
    margin-bottom: 75px
}

.footer-2 .footer-top .cities-flex {
    padding-left: 50px
}

.footer-2 .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-2 .footer-top .footer-links h4 {
    text-align: left;
    font-weight: 700;
    font-size: 20px;
    color: #000;
    font-family: Inter;
    margin-bottom: 20px
}

.footer-2 .footer-top .footer-links ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
    color: #fff
}

.footer-2 .footer-top .footer-links ul li a {
    color: #636363;
    font-family: Inter;
    font-weight: 400;
    line-height: 24px;
    font-size: 15px
}

.footer-2 .footer-top .footer-contact h4 {
    text-align: left;
    font-weight: 700;
    font-size: 20px;
    color: #000;
    font-family: Inter;
    margin-bottom: 20px
}

.footer-2 .footer-top .footer-contact p {
    line-height: 26px;
    color: #636363;
    font-family: Inter;
    font-weight: 500;
    font-size: 15px
}

.footer-2 .footer-top .footer-contact .fa {
    margin-right: 18px;
    margin-top: 6px;
    color: #000;
    font-size: 20px
}

.footer-2 .footer-top .footer-contact .fa-phone {
    margin-right: 18px
}

.footer-2 .footer-top .footer-contact .fa-envelope {
    margin-right: 18px
}

.footer-2 .footer-top .footer-contact {
    color: #b9b9b9;
    font-family: poppins
}

.footer-2 .footer-top .footer-contact .footer-imges img {
    margin-bottom: 24px;
    max-width: 250px
}

.footer-2 .footer-bottom .footer-quick-link a {
    margin: 0;
    color: #636363;
    font-family: Inter;
    font-weight: 500;
    font-size: 16px
}

.footer-2 .footer-bottom .footer-quick-link {
    margin-bottom: 18px
}

.footer-2 .footer-bottom .copyright {
    margin-bottom: 18px
}

.footer-2 .footer-bottom .copyright h6 {
    font-size: 16px;
    font-family: Inter;
    font-weight: 500;
    color: #636363
}

.footer-2 .footer-bottom .terms-of-services p {
    font-size: 15px;
    font-family: Inter;
    font-weight: 500;
    color: #636363
}

.Blink {
    animation: blinker .1s cubic-bezier(.5, 0, 1, 1) infinite alternate
}

@keyframes blinker {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

#sticky {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    opacity: 3;
    z-index: 100
}

#wrapper {
    height: 800px
}

.extra {
    height: 100px
}

h4 {
    text-align: center
}

ul.footer-quick-link li {
    display: inline !important;
    padding: 16px !important;
    text-decoration: none
}

.fixed-top {
    position: absolute !important;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030
}

.lte8 .wrapper-2 .tooltip {
    display: none
}

.lte8 .wrapper-2:hover .tooltip {
    display: block
}

.seo-updated-ppc-clients .wrapper-3 {
    font-size: 30px;
    position: relative;
    bottom: 650px;
    width: 6px;
    left: 300px;
    color: #fff
}

.seo-updated-ppc-clients .wrapper-3 .tooltip p {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #fff
}

.seo-updated-ppc-clients .wrapper-3 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #fff
}

.seo-updated-ppc-clients .wrapper-3 .tooltip {
    background: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/fc78738b-12f2-45ad-42bd-5ce208e5ef00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out
}

.seo-updated-ppc-clients .wrapper-3:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.lte8 .wrapper-3 .tooltip {
    display: none
}

.lte8 .wrapper-3:hover .tooltip {
    display: block
}

.wrapper-4 {
    font-size: 30px;
    position: relative;
    bottom: 620px;
    width: 6px;
    left: 190px;
    color: #fff
}

.wrapper-4 .tooltip p {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #fff
}

.wrapper-4 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 43%;
    max-width: 300px;
    color: #fff
}

.wrapper-4 .tooltip {
    background: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/fc78738b-12f2-45ad-42bd-5ce208e5ef00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out
}

.wrapper-4:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.lte8 .wrapper-4 .tooltip {
    display: none
}

.lte8 .wrapper-4:hover .tooltip {
    display: block
}

.wrapper-5 {
    font-size: 30px;
    position: relative;
    bottom: 600px;
    width: 6px;
    left: 300px;
    color: #fff
}

.wrapper-5 .tooltip p {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #fff
}

.wrapper-5 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #fff
}

.wrapper-5 .tooltip {
    background: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/fc78738b-12f2-45ad-42bd-5ce208e5ef00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out
}

.wrapper-5:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.lte8 .wrapper-5 .tooltip {
    display: none
}

.lte8 .wrapper-5:hover .tooltip {
    display: block
}

.wrapper-6 {
    font-size: 30px;
    position: relative;
    bottom: 500px;
    width: 6px;
    left: 450px;
    color: #fff
}

.wrapper-6 .tooltip p {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #fff
}

.wrapper-6 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #fff
}

.wrapper-6 .tooltip {
    background: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/fc78738b-12f2-45ad-42bd-5ce208e5ef00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out
}

.wrapper-6:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.lte8 .wrapper-6:hover .tooltip {
    display: none
}

.lte8 .wrapper-6:hover .tooltip {
    display: block
}

.wrapper-8 {
    font-size: 30px;
    position: relative;
    bottom: 550px;
    width: 6px;
    left: 560px;
    color: #fff
}

.wrapper-8 .tooltip p {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #fff
}

.wrapper-8 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #fff
}

.wrapper-8 .tooltip {
    background: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/fc78738b-12f2-45ad-42bd-5ce208e5ef00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out
}

.wrapper-8:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.lte8 .wrapper-8 .tooltip {
    display: none
}

.lte8 .wrapper-8:hover .tooltip {
    display: block
}

.wrapper-9 {
    font-size: 30px;
    position: relative;
    bottom: 1050px;
    width: 6px;
    left: 450px;
    color: #fff
}

.wrapper-9 .tooltip p {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #fff
}

.wrapper-9 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #fff
}

.wrapper-9 .tooltip {
    background: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/fc78738b-12f2-45ad-42bd-5ce208e5ef00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out
}

.wrapper-9:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.lte8 .wrapper-9 .tooltip {
    display: none
}

.lte8 .wrapper-9:hover .tooltip {
    display: block
}

.wrapper-10 {
    font-size: 30px;
    position: relative;
    bottom: 850px;
    width: 6px;
    left: 750px;
    color: #fff
}

.wrapper-10 .tooltip p {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #fff
}

.wrapper-10 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #fff
}

.wrapper-10 .tooltip {
    background: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/fc78738b-12f2-45ad-42bd-5ce208e5ef00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out
}

.wrapper-10:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.lte8 .wrapper-10 .tooltip {
    display: none
}

.lte8 .wrapper-10:hover .tooltip {
    display: block
}

.wrapper-11 {
    font-size: 30px;
    position: relative;
    bottom: 810px;
    width: 6px;
    left: 530px;
    color: #fff
}

.wrapper-11 .tooltip p {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #fff
}

.wrapper-11 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #fff
}

.wrapper-11 .tooltip {
    background: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/fc78738b-12f2-45ad-42bd-5ce208e5ef00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out
}

.wrapper-11:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.lte8 .wrapper-11 .tooltip {
    display: none
}

.lte8 .wrapper-11:hover .tooltip {
    display: block
}

.wrapper-12 {
    font-size: 30px;
    position: relative;
    bottom: 800px;
    width: 6px;
    left: 850px;
    color: #fff
}

.wrapper-12 .tooltip p {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #fff
}

.wrapper-12 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #fff
}

.wrapper-12 .tooltip {
    background: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/fc78738b-12f2-45ad-42bd-5ce208e5ef00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out
}

.wrapper-12:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.lte8 .wrapper-12 .tooltip {
    display: none
}

.lte8 .wrapper-12:hover .tooltip {
    display: block
}

.wrapper-13 {
    font-size: 30px;
    position: relative;
    bottom: 1100px;
    width: 6px;
    left: 150px;
    color: #fff
}

.wrapper-13 .tooltip p {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #fff
}

.wrapper-13 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #fff
}

.wrapper-13 .tooltip {
    background: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/fc78738b-12f2-45ad-42bd-5ce208e5ef00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out
}

.wrapper-13:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.lte8 .wrapper-13 .tooltip {
    display: none
}

.lte8 .wrapper-13:hover .tooltip {
    display: block
}

.wrapper-14 {
    font-size: 30px;
    position: relative;
    bottom: 800px;
    width: 6px;
    left: 850px;
    color: #fff
}

.wrapper-14 .tooltip p {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #fff
}

.wrapper-14 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #fff
}

.wrapper-14 .tooltip {
    background: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/fc78738b-12f2-45ad-42bd-5ce208e5ef00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out
}

.wrapper-14:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.lte8 .wrapper-14 .tooltip {
    display: none
}

.lte8 .wrapper-14:hover .tooltip {
    display: block
}

.wrapper-15 {
    font-size: 30px;
    position: relative;
    bottom: 900px;
    width: 6px;
    left: 650px;
    color: #fff
}

.wrapper-15 .tooltip p {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #fff
}

.wrapper-15 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #fff
}

.wrapper-15 .tooltip {
    background: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/fc78738b-12f2-45ad-42bd-5ce208e5ef00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out
}

.wrapper-15:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.lte8 .wrapper-15 .tooltip {
    display: none
}

.lte8 .wrapper-15:hover .tooltip {
    display: block
}

.wrapper-16 {
    font-size: 30px;
    position: relative;
    bottom: 800px;
    width: 6px;
    left: 850px;
    color: #fff
}

.wrapper-16 .tooltip p {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #fff
}

.wrapper-16 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 50%;
    max-width: 300px;
    color: #fff
}

.wrapper-16 .tooltip {
    background: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/fc78738b-12f2-45ad-42bd-5ce208e5ef00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out
}

.wrapper-16:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.lte8 .wrapper-16 .tooltip {
    display: none
}

.lte8 .wrapper-16:hover .tooltip {
    display: block
}

.map-img {
    height: 888px
}

.col-md-8.text-center.working {
    margin-left: 20%
}

.col-md-8.text-center.working {
    margin-left: 20%
}

.seo-updated-ppc-clients .wrapper-2 .tooltip.active {
    opacity: 1
}

.seo-updated-ppc-clients .wrapper-2 {
    font-size: 30px !important;
    position: relative !important;
    bottom: 620px !important;
    width: 6px !important;
    left: 512px !important;
    color: #fff
}

.seo-updated-ppc-clients .wrapper-2 .tooltip p {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 30%;
    right: 10%;
    max-width: 300px;
    color: #fff
}

.seo-updated-ppc-clients .wrapper-2 .tooltip span {
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    position: absolute;
    top: 65%;
    right: 55%;
    max-width: 300px;
    color: #fff
}

.seo-updated-ppc-clients .wrapper-2 .tooltip {
    background: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/fc78738b-12f2-45ad-42bd-5ce208e5ef00/public);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 75%;
    left: 0;
    height: 250px;
    width: 400px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out
}

.seo-updated-ppc-clients .wrapper-2:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.lte8 .wrapper-2 .tooltip {
    display: none
}

.lte8 .wrapper-2:hover .tooltip {
    display: block
}

.seo-updated-ppc-clients .text-area {
    margin-bottom: 20px
}

.seo-updated-ppc-clients .text-area h3 {
    font-family: Inter;
    margin-bottom: -10px;
    font-size: 50px;
    letter-spacing: -2px;
    font-weight: 900;
    line-height: 50px;
    background: -webkit-linear-gradient(left, #3978ac 30%, #00a14b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.seo-updated-ppc-clients .text-area p {
    font-family: Inter;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 12px;
    letter-spacing: -1px;
    color: #515151
}

.order-now2 a {
    color: #000;
    font-family: Inter;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    text-decoration: none
}

.order-now a {
    color: #000;
    font-family: Inter;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    text-decoration: none
}

.order-now3 a {
    color: #000;
    font-family: Inter;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    text-decoration: none
}

.order-now3 i.fa.fa-phone {
    color: red;
    color: #d00202;
    font-size: 20px;
    margin-right: 4px
}

.order-now i.fa.fa-phone {
    color: red;
    color: #d00202;
    font-size: 20px;
    margin-right: 4px
}

.order-now2 i.fa.fa-phone {
    color: red;
    color: #d00202;
    font-size: 20px;
    margin-right: 4px
}

button.btn.btn-order a {
    color: #ffdf
}

button.btn.btn-order_2 a {
    color: #ffdf
}

button.btn.btn-order_3 a {
    color: #ffdf
}

.leftside_sticky_image {
    background-image: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/cd3f79b0-4151-4a75-af26-3475d2fae200/public);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 90%;
    background-size: 550px
}

@media only screen and (max-width:500px) {
    .map-img {
        height: 250px !important
    }

    .ecoomerce-seo-min-strategy {
        background-image: url(../../../nJwaBs__P2JfMUeYJ4vmjQ/ab87d0c4-55af-447b-89f8-e357884e2300/public);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        margin-top: 0;
        height: unset
    }

    section#seo-updated-ppc-choose {
        padding-bottom: 0
    }

    .leftside_sticky_image {
        background: #fff
    }

    ul.footer-quick-link {
        text-align: center
    }

    .btn-grow {
        margin-right: 12px
    }

    #rightside-call,
    #rightside-chat {
        display: none !important
    }

    .ecoomerce-seo-min-strategy .text-area {
        padding: 70px 0 20px 0
    }

    .seo-updated-ppc-choose .heading h2 {
        line-height: 30px;
        font-size: 22px
    }

    .head p {
        margin-bottom: 30px !important
    }

    .row.rev-col {
        flex-direction: column-reverse;
    }

    section#why-do-nationwide {
        padding: 0px;
    }

    section#nationwide-seo-social-media-ads {
        padding: 0px;
    }

    #seo-updated-ppc-choose .col-md-6.d-flex {
        display: none !important;
    }
}