:root {
    --gray: #474747;
    --black: #000;
    --white: #fff;
    --light-blue: #486fa4;
    --dark-blue: #00165e;
    --orange: #f16f1d;
    --sky-blue: #009ce5;
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    margin: 0%;
}

p {
    font-family: 'Poppins', sans-serif;
    line-height: 26px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Raleway', sans-serif;
    margin: 0px;
}

ul {
    margin: 0px !important;
    padding-left: 0px !important;
}

li {
    list-style: none;
}

a,
a:hover,
button,
button:hover,
i,
h1,
h2,
h3,
h4,
h5,
h6,
li {
    text-decoration: none !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

i {
    transition: unset;
}

:focus {
    outline: 0px !important;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
}

body::-webkit-scrollbar {
    width: 10px;
    background-color: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--dark-blue);
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
}


/* BOOTSTRAP CSS START  */

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {

    .container,
    .container-sm {
        max-width: 540px
    }
}

@media (min-width:768px) {

    .container,
    .container-md,
    .container-sm {
        max-width: 720px
    }
}

@media (min-width:992px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 960px
    }
}

@media (min-width:1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1170px
    }
}

@media (min-width:1920px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px
    }
}


/* BOOTSTRAP CSS END  */


/* GLOBAL CSS START HERE  */

.section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.dark-blue {
    background-color: var(--dark-blue);
}

.sky-blue {
    background: var(--sky-blue);
}

.orange {
    background-color: var(--orange);
}

.clr-orange {
    color: var(--orange);
}

.clr-blue {
    color: var(--dark-blue);
}

.head {
    position: relative;
    padding-bottom: 10px;
    margin: 0 auto 50px;
}

.head::before {
    position: absolute;
    content: '';
    background-color: var(--orange);
    width: 80px;
    height: 7px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.head h2 {
    padding-bottom: 10px;
    color: var(--dark-blue);
}

.head h2,
.head h2 span {
    font-size: 30px;
    font-weight: 800;
}

.head h2 span {
    color: var(--orange);
}

.head h3 {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--orange);
}

.head h4 {
    font-size: 22px;
    color: #00a2fd;
    font-weight: 600;
    padding-bottom: 10px;
}

.head p {
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 18px;
    font-family: 'Raleway', sans-serif;
}

.head p a {
    text-decoration: underline !important;
    color: var(--orange);
}

a.main-cta {
    font-family: 'Poppins', sans-serif;
    Border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    justify-content: center;
    cursor: pointer;
    Border: 2px solid transparent;
    transition: all .3s;
    position: relative;
    transition: all .3s ease-in-out;
    z-index: 1;
    overflow: hidden;
}

a.main-cta.btn--orange {
    Border: 2px solid #e76817;
    Box-shadow: 8px 8px 30px #f47a1e8a;
    background: linear-gradient(#f99250, #f2701d), linear-gradient(#f2701d, #f99250);
}

a.main-cta.btn--orange i {
    border-radius: 5px;
    margin: 0 10px;
    display: flex;
    justify-self: center;
    padding: 10px;
    align-items: center;
    Border: 2px solid #f2701d;
    background: linear-gradient(#f2701d, #f99250), linear-gradient(#f99250, #f2701d);
}

a.main-cta.btn--blue {
    Border: 2px solid #01122f;
    background: linear-gradient(#09275c, #0e2e67), linear-gradient(#0e2e67d6, #0e2e6763);
    box-shadow: 15px 15px 40px #0e2e678a !important;
}

a.main-cta.btn--blue i {
    border-radius: 5px;
    margin: 0 10px;
    display: flex;
    justify-self: center;
    padding: 10px;
    align-items: center;
    Border: 2px solid #09275c;
    background: linear-gradient(#09275c, #01122f), linear-gradient(#01122f, #01122f);
}

a.main-cta.btn--orange:hover {
    Border-color: #01122f;
    box-shadow: 15px 15px 40px #0e2e678a !important;
}

a.main-cta.btn--orange:before {
    position: absolute;
    content: '';
    width: 100%;
    top: 0;
    left: 0;
    transition: all .3s ease-in-out;
    height: 0;
    z-index: -1;
    background: linear-gradient(#09275c, #0e2e67), linear-gradient(#0e2e67d6, #0e2e6763);
}

a.main-cta.btn--orange:hover:before {
    height: 100%;
}

a.main-cta.btn--blue:hover {
    Border-color: #e76817;
    Box-shadow: 8px 8px 30px #f47a1e8a !important;
}

a.main-cta.btn--blue:before {
    position: absolute;
    content: '';
    width: 100%;
    top: 0;
    left: 0;
    transition: all .3s ease-in-out;
    height: 0;
    z-index: -1;
    background: linear-gradient(#f99250, #f2701d), linear-gradient(#f2701d, #f99250);
}

a.main-cta.btn--blue:hover:before {
    height: 100%;
}

a.main-cta.btn--blue:hover i {
    Border: 2px solid #e76817;
    Box-shadow: 8px 8px 30px #f47a1e8a;
    background: linear-gradient(#f99250, #f2701d), linear-gradient(#f2701d, #f99250);
}

a.main-cta.btn--orange:hover i {
    background: linear-gradient(#09275c, #01122f), linear-gradient(#01122f, #01122f);
    Border: 2px solid #01122f;
    box-shadow: 15px 15px 40px #0e2e678a !important;
}

a.main-cta.btn--white {
    Border: 2px solid transparent;
    color: var(--dark-blue);
    background: linear-gradient(#fff, #CCC), linear-gradient(#fff, #0e2e6763);
    box-shadow: 15px 15px 40px #0e2e678a !important
}

a.main-cta.btn--white i {
    border-radius: 5px;
    margin: 0 10px;
    display: flex;
    justify-self: center;
    padding: 10px;
    align-items: center;
    Border: 2px solid #fff;
    color: var(--dark-blue);
    font-weight: 700;
    box-shadow: 0 0 20px #0e2e678a !important;
    background: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff)
}

a.main-cta.btn--white:hover {
    Border-color: #e76817;
    box-shadow: 15px 15px 40px #0e2e678a !important;
    color: var(--white)
}

a.main-cta.btn--white:before {
    position: absolute;
    content: '';
    width: 100%;
    top: 0;
    left: 0;
    transition: all .3s ease-in-out;
    height: 0;
    z-index: -1;
    background: linear-gradient(#f2701d, #f99250), linear-gradient(#f99250, #f2701d)
}

a.main-cta.btn--white:hover:before {
    height: 100%
}

a.main-cta.btn--white:hover i {
    Border: 2px solid #e76817;
    color: var(--white);
    background: linear-gradient(#f99250, #f2701d), linear-gradient(#f2701d, #f99250)
}

.row.footer-icon-row {
    margin-bottom: 0 !important;
}


/* GLOBAL CSS END HERE  */


/* SECTION ONE CSS START HERE */

.homeBanner {
    position: relative;
    background-image: url('https://www.searchberg.com/img/global/coverBanner.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    padding: 40px 0;
}

.homeBanner .topRow p.sub-heading {
    color: #526d9d;
    letter-spacing: 2px;
    font-weight: bold;
    font-style: italic;
    margin: 0 0 10px;
}

.homeBanner .topRow h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 50px;
    margin: 0 0 1.4rem;
}

.homeBanner .topRow h1 span {
    color: var(--orange);
}

.homeBanner .topRow p.sub-text {
    color: var(--dark-blue);
    font-weight: 500;
    margin: 0 0 1.4rem;
}

.homeBanner .boos-sales.lower-costs {
    display: flex;
    position: relative;
    gap: 2rem;
    margin: 0 0 1.4rem;
}

.homeBanner .boos-sales.lower-costs span {
    font-family: 'Inter', sans-serif;
    color: #4ea4db;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    line-height: 1;
}

.homeBanner .topRow .col-left ul {
    display: grid;
    grid-template-columns: auto auto;
    grid-row-gap: .4rem;
}

.homeBanner .topRow .col-left ul li {
    font-weight: 500;
    color: var(--dark-blue);
}

.homeBanner .topRow .col-left ul li i {
    color: var(--orange);
}

.homeBanner .topRow .col-left hr {
    margin: 1.4rem 0;
}

.homeBanner .coverBtns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0 0;
}

.homeBanner .coverBtns a {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}


.homeBanner .coverBtns a.see-packages {
    background: var(--orange);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 8px;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    Box-shadow: 0 10px 20px #f47a1e8a;
}

.homeBanner .coverBtns a.see-packages:hover {
    background: transparent;
    color: var(--orange);
    border-color: var(--orange);
}

.homeBanner .coverBtns a.talk-phone {
    position: relative;
    color: var(--dark-blue);
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    grid-gap: 15px;
    text-decoration: underline !important;
    text-underline-offset: 2px;
    padding-left: 60px;
}

.homeBanner .coverBtns a.talk-phone:before {
    position: absolute;
    content: '\f095';
    font-family: 'FontAwesome';
    left: 0px;
    width: 50px;
    height: 50px;
    background: var(--dark-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.homeBanner .coverBtns a.talk-phone:hover {
    color: var(--orange);
}

.homeBanner .coverBtns a.talk-phone:hover:before {
    background: var(--orange);
}

@media screen and (min-width: 1199px) {
    .bannerImg {
        position: absolute;
        right: 0;
        top: 30px;
    }

}

@media only screen and (min-width: 1500px) {
    .bannerImg {
        right: 10%;
    }
}

.homeBanner .bottomRow {
    position: relative;
    text-align: center;
    margin: 1rem 0 0;
}

.homeBanner .bottomRow .statsRow {
    display: flex;
    align-items: center;
    justify-content: space-around;

}

.homeBanner .bottomRow .statsBox h2 {
    font-family: 'Inter', sans-serif;
    font-size: 45px;
    font-weight: revert;
    color: var(--dark-blue);
}

.homeBanner .bottomRow .statsBox p {
    font-weight: 500;
    color: var(--dark-blue);
}

.homeBanner .bottomRow ul.partners {
    display: flex;
    grid-gap: 20px;
    width: 90%;
    margin: 0 auto !important;
    justify-content: center;
    align-items: center;
}

ul.partners img {
    filter: grayscale(1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

ul.partners img:hover {
    filter: grayscale(0);
}


.homeBanner .col-right .Form-box h2 {
    text-align: center;
    font-weight: 800;
    font-size: 22px;
    color: var(--dark-blue);
    padding-bottom: 20px;
}


.homeBanner .col-right .Form-box h2 span {
    color: var(--orange);
}

.homeBanner .Form-box {
    background: var(--white);
    border-radius: 10px;
    position: relative;
    padding: 30px 20px;

    margin: 0 0 20px auto;
    box-shadow: 10px 0 15px rgb(14 46 103 / 20%);
}

@media screen and (min-width: 1199px) {
    .homeBanner .Form-box {
        max-width: 65%;
    }
}

.homeBanner .Form-box:before {
    position: absolute;
    content: '';
    background: var(--orange);
    width: 30%;
    height: 5px;
    left: 0;
    top: 0;
    right: 0;
    margin: 0 auto;
}

.homeBanner .Form-box .form-group {
    position: relative;
    margin-bottom: 15px
}

.homeBanner .Form-box .form-group i {
    position: absolute;
    font-size: 14px;
    color: #f47a1e;
    left: 15px;
    top: 18px;
}

.homeBanner .Form-box .form-control {
    padding: 10px 10px 10px 40px;
    background-color: #f3f7fa;
    font-size: 14px;
    color: #a9a9a9;
    border: 1px solid #f6f4f4;
    box-shadow: none;
    border-radius: 50px;
}

@media (max-width:767px) {
    .homeBanner .Form-box {
        width: 100%;
        padding: 20px;
        height: auto
    }

    .homeBanner .Form-box h2 {
        font-size: 24px;
        padding-top: 0;
        padding-bottom: 15px
    }
}

.homeBanner textarea#Details1 {
    border-radius: 20px;
    height: 80px;
    resize: none;
}

.homeBanner .Form-box .form-control::placeholder {
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: #9daac1;
}

.homeBanner .button-box a {
    background: var(--orange);
    color: var(--white);
    padding: 12px 50px;
    border-radius: 8px;
    display: inline-block;
    Box-shadow: 0px 0px 10px #f47a1e8a;
}

.homeBanner .button-box a i {
    font-size: 14px;
    padding-left: 5px;
}

.homeBanner .button-box {
    text-align: center;
    margin-top: 24px;
}

.homeBanner .button-box a:hover {
    background: var(--dark-blue);
    box-shadow: unset;
}

/* SECTION ONE CSS END HERE */


/* SECTION THREE CSS START HERE  */

section.section.section-twelve {
    background-image: url(/img/ppc-management/worldwide-background.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

section.section.section-twelve .row {
    align-items: center;
}

.worldwide-tabContent {
    display: none;
    text-align: center;
}

.worldwide-tabContent.active {
    display: block;
    animation-name: inUp;
    animation-timing-function: ease-in-out;
    animation-duration: .6s;
}

.worldwide-tab p {
    color: var(--white);
    font-size: 28px;
    font-weight: 800;
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 20px 0;
    cursor: pointer;
    border-bottom: 1px solid var(--orange);
}

.section-twelve .col-left .worldwide-tab:first-child p {
    border-top: 1px solid var(--orange);
}

.section-twelve .col-left .worldwide-tab.active p {
    text-align: right;
    color: var(--orange);
}

.worldwide-tabContent {
    max-width: 85%;
    margin: 0 auto;
}

p.trafficNumbers {
    font-family: 'Antonio', sans-serif;
    font-size: 140px;
    font-weight: bold;
    color: var(--white);
    display: inline-block;
    line-height: 1;
    margin: 15px 0 0;
}

p.trafficNumbers span {
    color: var(--orange);
}


/* SECTION THREE CSS END HERE  */


/* SECTION FOUR CSS START HERE  */

section.section.section--four {
    padding-bottom: 60px;
}

section.section.section--four .heading {
    position: relative;
    padding-bottom: 10px;
    margin: 0 auto 30px;
}

section.section.section--four .heading h2 {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
    color: var(--dark-blue);
    display: inline-block;
}

section.section.section--four .heading h2,
section.section.section--four .heading h2 span {
    font-size: 30px;
    font-weight: 800;
}

section.section.section--four .heading h2 span {
    color: var(--orange);
}

section.section.section--four .heading h2::before {
    position: absolute;
    content: '';
    background-color: var(--orange);
    width: 200px;
    height: 7px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

section.section.section--four .heading h4 {
    color: var(--light-blue);
    font-size: 26px;
    font-weight: bold;
    padding-bottom: 10px;
}

section.section.section--four .heading p.sub-text {
    color: var(--dark-blue);
    font-weight: 500;
}

section.section.section--four .heading p.sub-text span {
    font-weight: bold;
}

section.section.section--four .row {
    align-items: center;
    justify-content: center;
}

section.section.section--four .col-left {
    background-color: var(--white);
    box-shadow: 5px 10px 15px 10px #e6eeff;
    border-radius: 20px;
    padding: 50px 30px;
    z-index: 1;
    position: relative;
}

section.section.section--four .col-left h2 {
    color: var(--dark-blue);
    font-size: 18px;
    font-weight: 800;
    padding-bottom: 15px;
    position: relative;
    margin-bottom: 20px;
}

section.section.section--four .col-left h2 span {
    font-size: 22px;
    color: var(--orange);
    text-transform: uppercase;
    font-weight: 900;
}

section.section.section--four .col-left h2:before {
    position: absolute;
    content: '';
    background: var(--orange);
    width: 60px;
    height: 5px;
    left: 0;
    bottom: 0;
}

section.section.section--four .col-left p {
    font-size: 18px;
    font-weight: bold;
    color: var(--dark-blue);
    position: relative;
    padding-bottom: 15px;
}

section.section.section--four .col-left p:before {
    position: absolute;
    content: '';
    background: var(--orange);
    width: 100px;
    height: 7px;
    bottom: 0;
}

section.section.section--four .col-left ul {
    padding: 10px 0;
}

section.section.section--four .col-left ul li {
    font-family: 'Poppins';
    font-weight: 500;
    color: var(--dark-blue);
    line-height: 20px;
    display: flex;
    align-items: center;
}

section.section.section--four .col-left ul li:not(:last-child) {
    margin-bottom: 20px;
}

section.section.section--four .col-left ul li img {
    margin-right: 14px;
}

section.section.section--four .col-right img {
    z-index: 9;
    position: relative;
    max-width: 580px;
    margin-left: -90px;
}

.quality-row {
    position: relative;
    text-align: center;
    background: #eef4fd;
    padding: 100px 20px 50px 20px;
    border-radius: 20px;
    margin-top: -40px;
}

.quality-row .head {
    margin-bottom: 30px;
}

.quality-row .head h2 {
    text-transform: unset;
}

.quality-row p {
    font-size: 20px;
    font-weight: 500;
    color: var(--dark-blue);
    line-height: 32px;
}

.quality-row:after {
    position: absolute;
    content: '';
    border: 40px solid #eef4fd;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    right: -130px;
    bottom: -130px;
    z-index: -1;
}

.quality-row img.arrow {
    position: absolute;
    top: 0;
    left: -180px;
}

.quality-row img.gray-dots {
    position: absolute;
    bottom: -50px;
    left: -80px;
    z-index: -1;
}

.quality-row .section--cta {
    margin-top: 50px;
}

.quality-row .section--cta a.main-cta {
    height: 75px;
}


/* SECTION FOUR CSS END HERE  */


/* SECTION FIVE CSS START HERE  */

section.section--stats {
    padding-bottom: 0;
}

section.section--stats span {
    font-size: 70px;
    color: var(--white);
    font-family: 'Antonio', sans-serif;
}

section.section--stats .col-md-3 {
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section.section--stats p {
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}


/* SECTION FIVE CSS END HERE  */


/* SECTION SIX CSS START HERE  */

.channelSlider .slick-slide img {
    margin: 0 auto;
}


.channelSlider a {
    cursor: unset;
}

ul.channelSlider {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    grid-gap: 1rem;
    padding: 0 1rem !important;
}



/* SECTION SIX CSS END HERE  */


/* SECTION SEVEN CSS START HERE  */

section.section.section--seven {
    background: #fff9ed;
    padding-bottom: 0;
}

section.section.section--seven .row {
    padding: 100px 0;
}

section.section.section--seven h3 {
    font-size: 20px;
    color: var(--dark-blue);
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

section.section.section--seven h3:before {
    position: absolute;
    content: '';
    background: var(--orange);
    width: 50px;
    height: 5px;
    bottom: 0;
    left: 0;
}

section.section.section--seven p {
    color: var(--dark-blue);
    line-height: 24px;
}

section.section.section--seven a.read-case-study {
    display: inline-block;
    font-weight: 500;
    color: var(--dark-blue);
    border: 2px solid var(--dark-blue);
    border-radius: 5px;
    padding: 16px 60px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    z-index: 9;
}

section.section.section--seven a.read-case-study:before {
    position: absolute;
    content: '';
    background: var(--dark-blue);
    width: 0;
    height: 200%;
    transform: skew(50deg);
    left: 0;
    top: 0;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    z-index: -1;
}

section.section.section--seven a.read-case-study:hover:before {
    width: 200%;
}

section.section.section--seven a.read-case-study:hover {
    color: var(--white);
}

@media only screen and (min-width: 1361px) {
    img.discount-golf {
        position: absolute;
        left: 0;
        top: 150px;
    }

    img.strand {
        position: absolute;
        right: 0;
        bottom: 100px;
    }
}


/* SECTION SEVEN CSS END HERE  */


/* SECTION PACAKGES CSS START HERE */

section#packages {
    background: #f9fbff;
}

.package-tabContent {
    display: none;
}

.package-tabContent.active {
    display: block;
}

.package-tabContent .row {
    grid-row-gap: 3rem;
}

.packages-tab-head {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 1rem;
    justify-content: center;
    margin: 0 0 4rem;
}

.packages-tab-head .package-tab p {
    background: #e5e5e5;
    margin: 0;
    color: #3a3a3a;
    padding: 12px 50px;
    border-radius: 4px;
    cursor: pointer;
}

.packages-tab-head .package-tab.active p {
    background: var(--dark-blue);
    color: var(--white);
}

.packages .head h2 {
    font-size: 36px;
}

.packages-tabs-head {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dfdfdf;
    padding: 4px;
    border-radius: 50px;
}

.packages-tabs-head .pkg-tab p {
    margin: 0;
    font-size: 14px;
    color: #5685d9;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1;
    padding: 16px 52px;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: all 4s ease-in-out;
    -moz-transition: all 4s ease-in-out;
    -o-transition: all 4s ease-in-out;
    transition: all .4s ease-in-out;
}

.packages-tabs-head .pkg-tab.active p {
    background: #5685d9;
    color: var(--white);
}

.packageBox {
    position: relative;
}

.packageName {
    background: #326acf;
    display: inline-block;
    padding: 10px 20px 30px 20px;
    border-radius: 10px 0 0 0px;
    position: relative;
    display: none;
}

.packageName h2 {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--white);
}

.packageName:before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-bottom: 68px solid #1c52b1;
    border-right: 30px solid transparent;
    right: -30px;
    bottom: 0;
}

.packageBox span.best-seller {
    background: var(--orange);
    text-shadow: 1px 1px 0px #af4f13;
    color: var(--white);
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 0 0 6px 6px;
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    margin: 0 auto;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 500;
    width: max-content;
}

.packageTraffic {
    background: #072252;
    margin-top: -20px;
    position: relative;
    border-radius: 20px 20px 0 0;
    text-align: center;
    border: 1px solid #7182a0;
    border-bottom: 0;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.packageTraffic p {
    color: #6ca1ff;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
    letter-spacing: 2px;
}

.packageTraffic span {
    font-size: 30px;
    color: var(--white);
    font-weight: 600;
    line-height: 0.9;
    display: inline-block;
}

.packageTraffic small {
    display: block;
    color: var(--white);
    font-size: 11px;
    padding-top: 8px;
}

.packageContent .fa-times {
    color: red;
}

.packageContent .fa-check {
    color: #07962c;
}

.packageTraffic small ins {
    color: var(--orange);
}

.packageTraffic ins {
    text-decoration: none;
}

p.pkg-percent {
    background: var(--orange);
    display: inline-block;
    color: var(--white);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    padding: 8px 10px;
    border-radius: 5px;
    line-height: 1;
    margin-bottom: 0;
    letter-spacing: 0;
    text-align: center;
}

.pacakgeContentWrapper {
    border: 1px solid #f1f1f1;
    box-shadow: 0 0 10px #f1f1f1;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.packageContent p {
    background: #fff9ed;
    text-align: center;
    font-size: 13px;
    color: #464646;
    font-weight: 500;
    padding: 5px 0;
    margin: 0;
    line-height: 1.2;
}

.packageContentBottom p {
    font-size: 12px;
    font-family: 'Inter', sans-serif;
}

.packageContent table {
    width: 100%;
}

.packageContent table tr {
    font-weight: 500;
    color: #0e2e67;
}

@media screen and (min-width: 1199px) {
    .packageContent table tr {
        height: 40px;
    }
}

.packageContent table tr:nth-child(odd) {
    background: #ecf3ff;
}

.packageContent table tr td {
    padding: 10px;
    font-size: 14px;
}

.packageContent table tr td:last-child {
    padding: 10px 0;
}

.packageContent table tr td:last-child {
    text-align: center;
    border-left: 1px solid #ccd4e2;
}

.packageOrder a.order-now {
    position: relative;
    display: inline-block;
    Box-shadow: 6px 6px 15px #f47a1e8a;
    background: var(--orange);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
    z-index: 1;
}

.packageOrder.packagePrice {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 28px 10px;
    background: #f3f4f7;
    flex-direction: column;
    grid-row-gap: 6px;
}


.packagePrice h5>sup {
    color: var(--orange);
    font-weight: bold;
    right: -5px;
}

.packagePrice h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    color: var(--dark-blue);
    font-weight: 800;
}

.packagePriceWrapper h5 small,
.packageOrder.packagePrice h5 small {
    color: #7f8ca2;
    font-size: 12px;
    margin-left: -5px;
    font-weight: 500;
}

.packagePriceWrapper {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.packagePriceWrapper h5.monthlyPrice:first-child {
    opacity: 0.5;
    font-size: 16px;
}

h5.monthlyPrice {
    font-size: 20px;
    font-weight: 600;
}

.packageOrder a.order-now:hover {
    background: var(--dark-blue);
    box-shadow: 6px 6px 15px #0e2e678a !important;
}


.packageContact {
    background: #e5e6e9;
    padding: 15px 10px;
    text-align: center;
}

.packageContact ul li {
    display: inline-block;
    margin: 0 5px;
}

.packageContact ul li a {
    color: var(--dark-blue);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.packageContact ul li a:hover {
    color: var(--orange);
}

.packageContact ul li i {
    color: var(--orange);
    font-weight: bold;
}


/* SECTION PACKAGES CSS END HERE */


/* SECTION EIGHT CSS START HERE  */

section.section.section--eight {
    padding-top: 80px;
}

section.section.section--eight .row {
    grid-row-gap: 1rem;
}

@media screen and (min-width: 1199px) {
    section.section.section--eight .head {
        max-width: 60%;
    }
}

section.section.section--eight .head h2 {
    color: var(--white);
    font-size: 34px;
    padding: 0 0 2rem;
}

section.section.section--eight .head p {
    color: var(--white);
    font-weight: 400;
}

section.section.section--eight .head:before {
    display: none;
}

section.section.section--eight img.left-arrow,
section.section.section--eight img.right-arrow {
    position: absolute;
    top: -20px;
}

section.section.section--eight img.left-arrow {
    left: -90px;
}

section.section.section--eight img.right-arrow {
    right: -90px;
}



/* SECTION EIGHT CSS END HERE  */


/* SECTION NINE CSS START HERE  */

section.ppc-services .row-one p {
    line-height: 26px;
    color: var(--dark-blue);
}

section.ppc-services .row-one p strong {
    position: relative;
    font-size: 18px;
    margin-top: 30px !important;
    display: inline-block;
}

section.ppc-services .row-one p strong img.service-arrow-left,
section.ppc-services .row-one p strong img.service-arrow-right {
    position: absolute;
    top: -10px;
}

section.ppc-services .row-one p strong img.service-arrow-left {
    left: -30px;
}

section.ppc-services .row-one p strong img.service-arrow-right {
    right: -30px;
}


/* SECTION NINE CSS END HERE  */


/* SECTION TEN CSS START HERE  */

.ppc-servicesRow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-column-gap: 30px;
    grid-row-gap: 25px;
    margin-top: 50px;
}

.ppc-servicesRow .ppc-serviceBox {
    flex: 0 0 calc(33.33% - 20px);
    position: relative;
    overflow: hidden;
    background: #fff9ed;
    border: 1px solid #ffeac0;
    border-radius: 6px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    min-height: 75px;
    z-index: 9;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.ppc-servicesRow .ppc-serviceBox p {
    color: var(--dark-blue);
    font-weight: 500;
    margin: 0;
    line-height: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.ppc-servicesRow .ppc-serviceBox img {
    margin-right: 18px;
}

.ppc-servicesRow .ppc-serviceBox:before {
    position: absolute;
    content: '';
    background: var(--dark-blue);
    width: 0;
    height: 200%;
    transform: skew(50deg);
    left: 0;
    top: 0;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    z-index: -1;
}

.ppc-servicesRow .ppc-serviceBox:hover:before {
    width: 200%;
}

.ppc-servicesRow .ppc-serviceBox:hover p {
    color: var(--white);
}

.ppc-servicesRow .ppc-serviceBox:hover {
    border-color: var(--dark-blue);
}


/* SECTION TEN CSS END HERE  */


/* SECTION ELEVEN CSS START HERE  */

section.section.section--ten.make-different {
    background: #f9fbff;
}

section.section.section--ten.make-different .head:before {
    right: unset;
}

section.section.section--ten.make-different .head {
    margin-bottom: 30px;
}

section.section.section--ten.make-different p {
    color: var(--dark-blue);
    line-height: 20px;
}

section.section.section--ten.make-different h4 {
    color: var(--orange);
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 5px;
}

.chooseWrapper ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
}

.chooseWrapper ul li {
    position: relative;
    background: var(--white);
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 10px 0 #d4ddee;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    overflow: hidden;
    height: 65px;
    z-index: 9;
}

.chooseWrapper li p {
    font-weight: 600;
    margin: 0;
    padding-left: 5px;
    font-size: 14px;
}


/* .chooseWrapper-icon {
    margin-left: -30px;
} */

.chooseWrapper-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0 0 10px #ccc;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    margin: 0 10px 0px -30px;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

img.make-us-different {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

.chooseWrapper ul li:before {
    position: absolute;
    content: '';
    width: 7px;
    height: 100%;
    right: 0;
    top: 0;
}

.chooseWrapper ul li:nth-child(even):before {
    background: var(--dark-blue);
}

.chooseWrapper ul li:nth-child(odd):before {
    background: var(--orange);
}

section.make-different .col-left a.main-cta {
    max-width: 300px;
    height: 70px;
    margin-top: 50px;
}


/* SECTION ELEVEN CSS END HERE  */


/* SECTION TWELVE CSS START HERE  */

section.our--process .paper-plan {
    position: absolute;
    left: 0;
    top: 10%;
}

section.our--process {
    padding-bottom: 20px;
}

section.our--process .head h2 {
    color: var(--white);
}

section.our--process .head {
    margin-bottom: 100px;
}

.ourProcess--wrapper {
    position: relative;
}

.ourProcess--wrapper .row.enableScroll {
    justify-content: center;
    position: relative;
}

.ourProcess--box {
    position: relative;
    min-height: 270px;
    border: 1px solid #d4ddee;
    display: block;
    border-radius: 15px;
    padding: 30px 22px;
    background: var(--white);
    margin-bottom: 70px;
}

.ourProcess--box img {
    margin-top: -80px;
}

.ourProcess--box h4 {
    color: var(--dark-blue);
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 14px;
}

.ourProcess--box p {
    color: #333333;
    font-size: 16px;
    font-family: 'Poppins';
    line-height: 20px;
    margin: 0;
}

.ourProcess--wrapper .orange-dots {
    position: absolute;
    left: -50px;
    top: -50px;
}

.ourProcess--wrapper .gray-dots {
    position: absolute;
    bottom: 20px;
    right: -50px;
}


/* SECTION TWELVE CSS END HERE  */


/* SECTION THIRTEEN CSS START HERE  */

section.more--traffic {
    background: #fff9ed;
}

section.more--traffic .col-lg-6 {
    position: relative;
}

section.more--traffic .row {
    align-items: center;
}

section.more--traffic h4 {
    font-size: 48px;
    color: var(--dark-blue);
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1;
}

section.more--traffic h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-blue);
    text-transform: uppercase;
    line-height: 1;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
    display: inline-block;
}

section.more--traffic h2:before {
    position: absolute;
    content: '';
    background: var(--orange);
    width: 100%;
    height: 5px;
    bottom: 0;
}

section.more--traffic p {
    font-size: 24px;
    color: var(--dark-blue);
    font-weight: 500;
    margin: 0;
}

section.more--traffic:before {
    position: absolute;
    content: '';
    border: 10px solid #e5e5e5;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    top: -50px;
    left: -50px;
}

section.more--traffic .col-right a.main-cta {
    height: 76px;
}

section.more--traffic .col-right a.main-cta:first-child {
    margin-bottom: 30px;
}

section.more--traffic img.traffic-arrow {
    position: absolute;
    right: 50px;
    bottom: -50px;
}


span#hover-no {
    display: none;
    font-family: 'Poppins';
}

section.more--traffic .col-right a.main-cta:hover #hover-no {
    display: block;
}

section.more--traffic .col-right a.main-cta:hover #talk {
    display: none;
}


/* SECTION THIRTEEN CSS END HERE  */


/* SECTION THIRTEEN - FAQS CSS START HERE  */

section.faq-section {
    background: #f9fbff;
}

section.faq-section .head {
    margin-bottom: 20px;
}

section.faq-section .head h2,
section.faq-section .head h2 span {
    font-size: 52px;
}

section.faq-section .head:before {
    display: none;
}

.faq-section .info-details {
    background: #e5edfa;
    border-radius: 10px;
    line-height: 1.6;
    padding: 20px;
}

.faq-section .info-details h3 {
    font-weight: 600;
    font-size: 16px;
    color: var(--dark-blue);
    text-decoration: none;
    margin: 20px 0;
}

ul#accordian {
    overflow-y: auto;
    max-height: 450px;
    padding: 0 20px !important;
}

ul#accordian::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
}

ul#accordian::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
}

ul#accordian::-webkit-scrollbar-thumb {
    background-color: var(--orange);
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}

ul#accordian li p {
    display: none;
    color: #6a6a6a;
}

ul#accordian li {
    border-bottom: 1px solid #c6d2e6;
    padding: 25px 30px;
    cursor: pointer;
}

ul#accordian h4 {
    font-weight: 600;
    font-size: 16px;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul#accordian h4 i {
    color: var(--orange);
    font-size: 24px;
    transition: all .3s ease-in-out;
}

ul#accordian li.active {
    box-shadow: 0px 0px 15px 10px #e6eeff;
    border-radius: 30px;
    border: 0;
    margin-top: 20px;
}

ul#accordian li.active h4 {
    padding-bottom: 20px;
}

ul#accordian li p a {
    color: var(--orange);
}

ul#accordian li.active i::before {
    content: '\f068';
}


/* SECTION THIRTEEN - FAQS CSS END HERE  */


/* SECTION FOURTEEN CSS START HERE  */



.section-fourteen .head:before {
    right: unset;
}

.section-fourteen .row-one {
    margin-bottom: 3rem;
}

@media screen and (min-width: 1366px) and (max-width: 1600px) {
    .section-fourteen .row-one .div-img img {
        position: absolute;
        right: 0;
    }

    .section-fourteen .row-two .div-img img {
        position: absolute;
        left: 0;
    }
}

/* SECTION FOURTEEN CSS END HERE  */

/* KEYFAMES ANIMATION START  */

@keyframes inUp {
    0% {
        opacity: 0;
        transform: translateY(100px)
    }

    90% {
        transform: translateY(-10px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}


/* KEYFAMES ANIMATION END  */

@media only screen and (max-width: 1199px) {
    .bannerImg {
        display: none;
    }

    .homeBanner .topRow h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .homeBanner .coverBtns a.talk-phone {
        font-size: 18px;
    }

    p.trafficNumbers {
        font-size: 100px;
    }

    section.section--stats span {
        font-size: 50px;
    }

    section.section--stats .col-md-3 {
        min-height: 250px;
    }

    ul.channelSlider li {
        flex: 1 1 30%;
    }

    ul.channelSlider li a {
        display: block;
        text-align: center;
    }

    .packageTraffic span {
        font-size: 20px;
    }

    section.more--traffic p br {
        display: none;
    }

    section.section.section--four .col-right img {
        max-width: 100%;
        margin: 0;
    }

    .channelSlider .slick-list {
        padding-bottom: 20px;
    }

    section.section.section--seven .row {
        padding: 0;
        margin-bottom: 50px;
    }

    section.section.section--seven {
        padding-bottom: 60px;
    }

    section.section.section--eight img.lazy.left-arrow,
    section.section.section--eight img.lazy.right-arrow {
        display: none;
    }


    img.make-us-different {
        position: unset;
    }

    section.section.section--ten.make-different .row {
        align-items: center;
    }

    section.more--traffic img.traffic-arrow {
        right: 0;
    }

    .bottom-form {
        padding: 30px;
    }
}

@media only screen and (max-width: 991px) {

    .head h2 br,
    .head h2 span br,
    .head p br {
        display: none;
    }

    .homeBanner .col-right {
        margin: 3rem 0 0;
    }
     .homeBanner .bottomRow .statsBox h2 {
        font-size: 36px;
    }

    .homeBanner .bottomRow ul.partners {
        width: 100%;
    }

    .homeBanner .bottomRow .statsBox p {
        font-size: 14px;
    }


    section.section.section--seven .row--two {
        flex-direction: column-reverse;
    }

    .coverTextWrap {
        max-width: unset;
    }

    .cover--partners ul {
        justify-content: center;
    }

    .worldwide-tab p {
        font-size: 18px;
    }

    p.trafficNumbers {
        font-size: 100px;
    }

    section.section.section--four .heading p.sub-text br {
        display: none;
    }

    section.section.section--four .col-right {
        text-align: center;
    }

    .quality-row {
        padding: 50px 20px;
    }

    .quality-row p br {
        display: none;
    }

    section.section--stats p {
        font-size: 16px;
    }

    section.section--stats .col-md-3 {
        min-height: 250px;
    }

    .ppc-servicesRow .ppc-serviceBox {
        flex: 0 0 calc(50% - 20px);
    }

    section.section.section--ten.make-different p br {
        display: none;
    }

    section.more--traffic {
        text-align: center;
    }

    section.more--traffic .col-left {
        margin-bottom: 40px;
    }

    section.more--traffic img.traffic-arrow {
        display: none;
    }

    section.faq-section .head h2,
    section.faq-section .head h2 span {
        font-size: 36px;
        text-align: center;
    }

    .contact-box-q {
        text-align: center;
    }

    a.main-cta {
        padding: 15px 40px;
    }

    .call-custom-cta a:first-child {
        margin: 0;
    }

    section.section.section-fourteen.ny-contact {
        padding-top: 0;
    }

    section.section.section--seven {
        padding-bottom: 0;
    }

    section.section.section--eight img.lazy.left-arrow,
    section.section.section--eight img.lazy.right-arrow {
        display: none;
    }

    section.section.section--eight a.main-cta {
        font-size: 14px;
        letter-spacing: 0;
        padding: 8px 0;
    }

    section.ppc-services .row-one p br {
        display: none;
    }

    section.section.section--six {
        padding-bottom: 70px;
    }

    .channelSlider {
        padding-bottom: 10px;
    }

    section.section.section--eight a.toll-number {
        font-size: 80px;
    }

    .boos-sales.lower-costs span {
        font-size: 16px;
    }

    .coverTextWrap ul {
        grid-column-gap: 40px;
    }

    .coverTextWrap ul li {
        font-size: 14px;
    }

    .quality-row img.arrow {
        display: none;
    }

    section.section--stats span {
        font-size: 50px;
    }

    section.section.section--seven h3 br {
        display: none;
    }

    .faq-section .info-details {
        margin-bottom: 30px;
    }

    .quality-row img.gray-dots,
    .quality-row img.arrow {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .section {
        padding: 40px 0;
    }

    .head {
        margin-bottom: 30px;
    }

    .head h2,
    .head h2 span {
        font-size: 24px;
    }

    a.main-cta {
        font-size: 14px;
        letter-spacing: 0;
    }

    .enableScroll {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 40px;
        padding-top: 20px;
        justify-content: normal;
        align-items: normal;
    }

    .enableScroll>div {
        min-width: 100%;
    }

    .enableScroll::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
        background-color: #f5f5f5;
    }

    .enableScroll::-webkit-scrollbar {
        height: 7px;
        background-color: #f5f5f5;
    }

    .enableScroll::-webkit-scrollbar-thumb {
        background-color: var(--orange);
        background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
    }

    .homeBanner .topRow h1 {
        font-size: 22px;
        line-height: 30px;
        padding-bottom: 10px;
    }

    .homeBanner .coverBtns .divBtn a.talk-chat {
        position: unset;
    }

    .homeBanner .coverBtns {
        justify-content: center;
    }

    .homeBanner .col-right {
        margin: 2rem 0 0;
    }

    .homeBanner .bottomRow .statsRow {
        display: grid;
        grid-template-columns: auto auto;
    }

    .homeBanner .bottomRow .statsBox h2 {
        font-size: 24px;
    }

    .homeBanner .bottomRow .statsRow p {
        font-size: 13px;
    }

    .homeBanner .bottomRow ul.partners {
        flex-wrap: wrap;
        grid-gap: 10px;
        justify-content: space-between;
    }

    ul.partners li {
        flex: 0 0 calc(25% - 10px);
    }

.boos-sales.lower-costs img {
    display: block;
}

.homeBanner .boos-sales.lower-costs span {
    font-size: 1rem;
}

.homeBanner .boos-sales.lower-costs {
    flex-direction: revert;
    justify-content: space-evenly;
}

.homeBanner .topRow h1 {
    margin-bottom: 0;
}

.homeBanner .topRow .col-left ul {
    display: block;
}

.homeBanner .Form-box {
    margin-bottom: 0;
}

.packages .head h2 {
    font-size: 26px;
}
    .coverTextWrap .sub-heading {
        font-size: 14px;
    }

    .coverTextWrap h1 {
        font-size: 24px;
    }

    p.sub-text {
        font-size: 14px;
        line-height: 20px;
    }

    .coverTextWrap ul {
        display: block;
    }

    .boos-sales.lower-costs {
        flex-direction: column;
    }

    .boos-sales.lower-costs img {
        display: none;
    }

    .boos-sales.lower-costs span {
        font-size: 12px;
    }

    .boos-sales.lower-costs span:not(:last-child) {
        margin: 0;
    }

    .Form-box.bannerForm {
        max-width: unset;
        padding: 20px;
    }

    .Form-box.bannerForm h2 {
        font-size: 13px;
    }

    .text-cta ul li {
        flex-wrap: wrap;
        justify-content: center;
        grid-gap: 0;
    }

    .text-cta ul li:first-child:before {
        display: none;
    }

    .text-cta ul li i {
        padding-right: 10px;
    }

    .text-cta ul li:first-child {
        margin-bottom: 10px;
    }

    section.section.section--two.partners-area {
        padding-bottom: 70px;
    }

    section.section.section-twelve .col-left {
        margin-bottom: 30px;
    }

    p.trafficNumbers {
        font-size: 70px;
    }

    section.section.section--four .heading h2,
    section.section.section--four .heading h2 span {
        font-size: 24px;
    }

    section.section.section--four .heading h4 {
        font-size: 18px;
    }

    section.section.section--four .col-left {
        padding: 20px;
    }

    section.section.section--four .col-left h2 span {
        font-size: 18px;
    }

    section.section.section--four .col-left ul li {
        font-size: 14px;
    }

    section.section.section--four .col-left ul li {
        font-size: 14px;
    }

    .quality-row .section--cta a.main-cta {
        height: 60px;
        font-size: 14px;
        letter-spacing: 0;
    }

    .quality-row .section--cta a.main-cta:first-child {
        margin-bottom: 20px;
    }

    .quality-row:after {
        display: none;
    }

    .quality-row img.gray-dots {
        display: none;
    }

    .quality-row img.arrow {
        display: none;
    }

    .quality-row p {
        font-size: 16px;
    }

    section.section.section--four {
        padding-bottom: 0;
    }

    section.section.section--seven h3 br {
        display: none;
    }

    section.section.section--eight .head h2 {
        font-size: 24px;
    }

    section.section.section--eight {
        padding: 40px 0;
    }

    section.section.section--eight .col-md-4:not(:last-child) a.main-cta {
        margin-bottom: 25px !important;
    }

    .ppc-servicesRow {
        margin: 0;
    }

    .ppc-servicesRow .ppc-serviceBox {
        flex: 1 1 100%;
    }

    .chooseWrapper ul {
        display: block;
    }

    .chooseWrapper ul li:not(:last-child) {
        margin-bottom: 10px;
    }

    section.make-different .col-left a.main-cta {
        margin: 30px 0;
        height: 60px;
    }

    .ourProcess--wrapper .row.enableScroll {
        justify-content: normal;
    }

    section.more--traffic h2 {
        font-size: 24px;
    }

    section.more--traffic h2:before {
        width: 50%;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    section.more--traffic p {
        font-size: 16px;
    }

    section.more--traffic p br {
        display: none;
    }

    section.more--traffic h4 {
        font-size: 28px;
    }

    section.more--traffic .col-right a.main-cta {
        height: 60px;
        letter-spacing: 0;
        font-size: 14px;
    }

    section.our--process .head {
        margin: 0;
    }

    .ourProcess--box {
        margin-top: 70px;
        margin-bottom: 0;
    }

    section.faq-section .head h2,
    section.faq-section .head h2 span {
        font-size: 26px;
    }

    .bottom-form {
        padding: 20px 15px;
    }

    .mini-contact-box {
        flex-direction: column;
    }

    .contact-box-q h3 {
        font-size: 26px;
        padding: 25px 20px;
    }

    ul#accordian {
        max-height: initial;
        padding: 0 !important;
    }

    ul#accordian li {
        padding: 25px 0;
        box-shadow: unset;
    }

    ul#accordian li.active {
        box-shadow: unset;
        background: none;
        border-radius: 0;
    }

    ul#accordian h4 i {
        font-size: 18px;
    }

    .call-custom-cta a.main-cta {
        padding: 19px 30px;
        font-size: 14px;
    }

    section.section.section--eight p.cal-now {
        font-size: 18px;
        letter-spacing: 0;
    }

    section.section.section--eight a.toll-number {
        font-size: 36px;
        margin: 0;
    }

    section.section.section--eight p.glad-tp-help {
        font-size: 20px;
        letter-spacing: 0;
    }

    section.section.section--eight .head p {
        font-size: 16px;
    }
}
