: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;
}

.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);
}

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

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

.head h2 {
    padding-bottom: 10px;
    color: #0e2e67;
}

.head h2,
.head h2 span {
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
}

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

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

.head p {
    color: #333;
    font-weight: 500;
}

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

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;
}

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(#f2701d, #f99250), linear-gradient(#f99250, #f2701d);
}

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  */


/* FLOATING FORM CSS START HERE  */

.Form-box {
    width: 370px;
    background-color: #fff;
    border-radius: 0 0 8px 8px;
    padding: 0 20px;
    border-top: 5px solid #4385f4;
    margin: 0 auto;
    display: block;
    position: relative;
    padding-bottom: 20px
}

.Form-box h2 {
    margin: 0;
    font-size: 34px;
    text-transform: uppercase;
    text-align: center;
    padding: 25px 0 30px;
    font-weight: 800;
    color: #0e2e67
}

.Form-box h2 span {
    color: #f47a1e;
    font-weight: 800
}

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

.Form-box .form-group i {
    position: absolute;
    font-size: 18px;
    color: #f47a1e;
    left: 10px;
    height: 25px;
    width: 25px;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    line-height: 25px
}

.Form-box .form-control {
    height: 40px;
    padding-left: 40px;
    background-color: #f3f3f3;
    font-size: 14px;
    color: #a9a9a9;
    border: 1px solid #f6f4f4;
    box-shadow: none
}

.Form-box:before {
    content: "";
    position: absolute;
    background-color: #f2701d;
    height: 10px;
    width: 370px;
    top: -15px;
    left: 0;
    border-radius: 8px 8px 0 0
}

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

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

    .Form-box:before {
        width: 100%
    }

    .mini-contact-area:before {
        display: none
    }
}



.button-box a {
    font-size: 14px;
    color: #fff;
    background-color: #f47a1e;
    padding: 15px 25px;
    font-weight: 500;
    width: max-content;
    display: block;
    margin: 20px auto;
    text-decoration: none;
    border-radius: 4px
}


.form-group.textarea i {
    bottom: unset;
    top: 10px;
}

.form-group.textarea textarea {
    resize: none;
}

.mini-contact-area {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    margin-top: 20px;
}

.mini-contact-box {
    display: flex;
    align-items: center;
}

.c-cont-box h4 {
    font-size: 14px;
    margin: 0;
    color: #999;
    font-weight: 600;
}

.c-cont-box a {
    font-size: 16px;
    margin: 0;
    color: var(--dark-blue);
    font-weight: 800;
}

.c-cont-box a:hover {
    color: var(--orange);
}

.c-icon-box i {
    font-size: 24px;
    color: var(--orange);
    margin-right: 15px;
}


/* FLOATING FORM CSS END HERE  */


/* SECTION ONE CSS START HERE */

section.cover--section {
    position: relative;
    background-image: url('../img/global/coverBanner.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 30px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

section.cover--section h1,
section.cover--section h1 span {
    font-size: 40px;
    font-weight: 800;
}

section.cover--section h1 {
    color: var(--light-blue);
    padding-bottom: 20px;
}

section.cover--section h1 span {
    color: var(--dark-blue);
}

section.cover--section h4,
section.cover--section h4 span {
    color: var(--dark-blue);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 26px;
    font-size: 18px;
    letter-spacing: 1px;
}

section.cover--section h4 span {
    background: var(--orange);
    color: var(--white);
    padding: 0 5px;
}

.img-price {
    position: absolute;
    right: 0;
    top: 100px;
}

section.cover--section .col-left,
section.cover--section .col-right {
    position: relative;
}

.cover--btn {
    margin: 40px 0;
}

.cover--btn a {
    padding: 14px 40px;
    border-radius: 15px;
    display: inline-block;
    font-weight: 500;
    border: 3px solid var(--dark-blue);
}

.cover--btn i {
    font-size: 18px;
    padding-right: 5px;
}

.cover--btn a.btn--blue {
    background: var(--dark-blue);
    color: var(--white);
    box-shadow: 0 10px 20px rgb(0 22 94 / 40%);
}

.cover--btn a.btn-transparent {
    color: var(--dark-blue);
    font-weight: 600;
}

.cover--btn a:not(:last-child) {
    margin-right: 25px;
}

.cover--btn a.btn--blue:hover {
    background: transparent;
    color: var(--dark-blue);
    box-shadow: unset;
}

.cover--btn a.btn-transparent:hover {
    background: var(--dark-blue);
    color: var(--white);
    box-shadow: 0 10px 20px rgb(0 22 94 / 40%);
}

section.partners-area {
    padding-top: 0;
}

.cover--partners ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    grid-column-gap: 12px;
}

.Form-box.bannerForm {
    width: 100%;
    max-width: 80%;
    border-top: 0;
    border-radius: 12px;
    padding: 0 40px 20px;
    box-shadow: 0 0 10px 5px #ddd;
}

.Form-box.bannerForm:before {
    width: 50%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 0;
    border-radius: 10px;
    height: 5px;
}

.Form-box.bannerForm h2 {
    font-size: 24px;
    font-family: 'Poppins';
}

.Form-box.bannerForm .form-control {
    background: #f3f7fa;
    border-radius: 50px;
    height: 50px;
    border: 0;
}

.Form-box.bannerForm .textarea textarea {
    height: 110px !important;
    border-radius: 20px;
    padding-top: 10px;
}

.Form-box.bannerForm .button-box a {
    border-radius: 50px;
    font-size: 16px;
    padding: 14px 50px;
}

section.cover--section .paper-plan {
    position: absolute;
    right: -50px;
    top: 20px;
}


/* SECTION ONE CSS END HERE */


/* SECTION TWO CSS START HERE */

section.seo-strategies .head p {
    font-style: italic;
    font-size: 20px;
    color: #6e6e6e;
    font-weight: 600;
    text-transform: uppercase;
}

.seo-strategies-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-column-gap: 30px;
    grid-row-gap: 25px;
    justify-items: center;
}

.seo-strategies-row .seo-strategies-box {
    display: grid;
    grid-template-columns: 1fr 2fr;
    box-shadow: 0 5px 15px 5px #e6eeff;
    border-radius: 20px;
    padding: 24px 20px;
    border: 1px solid #d4ddee;
    background: var(--white);
    overflow: hidden;
    -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;
}

.seo-strategies-row .seo-strategies-icon {
    background: var(--white);
    width: 120px;
    height: 120px;
    box-shadow: 5px 5px 20px 5px #d4ddee;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    border-radius: 50%;
    padding: 0px 25px 25px 45px;
    margin: -45px 0px 0px -45px;
    border: 1px solid #d4ddee;
}

.seo-strategies-row .seo-strategies-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue);
    padding-bottom: 10px;
    margin-bottom: 10px;
    position: relative;
}

.seo-strategies-row .seo-strategies-content h4:before {
    position: absolute;
    content: '';
    background: var(--orange);
    width: 50px;
    height: 4px;
    bottom: 0;
    left: 0;
}

.seo-strategies-row .seo-strategies-content p {
    color: #333;
    font-size: 14px;
    line-height: 22px;
    min-height: 65px;
    -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;
}

.seo-strategies-row a.explore-more {
    position: relative;
    background: var(--dark-blue);
    font-size: 14px;
    padding: 8px 30px;
    overflow: hidden;
    z-index: 9;
    display: inline-block;
    color: var(--white);
    font-family: 'Poppins';
    font-weight: 500;
    margin-top: 10px;
}

.seo-strategies-row a.explore-more i {
    color: var(--orange);
    font-size: 12px;
    padding-left: 5px;
}

.seo-strategies-row .seo-strategies-box:hover {
    background: var(--dark-blue);
}

.seo-strategies-row .seo-strategies-box:hover h4,
.seo-strategies-row .seo-strategies-box:hover p {
    color: var(--white);
}

.seo-strategies-row .seo-strategies-box a.explore-more:before {
    position: absolute;
    content: '';
    background: var(--white);
    width: 0;
    height: 100%;
    left: -35%;
    top: 0;
    transition: all .5s ease-in-out;
    transform: skew(50deg);
    z-index: -1;
}

.seo-strategies-row .seo-strategies-box:hover a.explore-more:before {
    height: 100%;
    width: 150%;
}

.seo-strategies-row .seo-strategies-box:hover a.explore-more {
    color: var(--dark-blue);
}

.seo-strategies-row .seo-strategies-box:hover .seo-strategies-icon {
    box-shadow: 5px 5px 20px -10px #d4ddee;
}


/* SECTION TWO CSS END HERE */


/* SECTION THREE CSS START HERE */

.guaranteed-services {
    background: #f5f5f8;
}

.guaranteed-services .head p {
    font-size: 18px;
    color: #2380d7;
    font-weight: 600;
}

.guaranteed-services .head .angle {
    position: absolute;
    right: 0;
    bottom: 0;
}

.gs-content {
    display: none;
}

.gs-content.active {
    display: block;
}

.gs-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 15px;
}

.gs-nav .gs-link {
    font-size: 14px;
    font-weight: 600;
    font-family: "Poppins";
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    grid-gap: 10px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 5px 10px 15px 10px #e6eeff;
    padding: 10px 20px;
    cursor: pointer;
    -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;
}

.gs-nav .gs-link:hover,
.gs-link.active {
    background: var(--dark-blue);
    color: var(--white);
}

.gs-nav .gs-link img {
    -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;
}

.gs-nav .gs-link:hover img,
.gs-link.active img {
    filter: invert(91%) sepia(100%) saturate(34%) hue-rotate(257deg) brightness(108%) contrast(100%);
}

.gs-content {
    background-color: var(--white);
    box-shadow: 5px 10px 15px 10px #e6eeff;
    border-radius: 10px;
    padding: 40px 35px;
    position: relative;
    height: 100%;
    z-index: 9;
}

.ws-icon {
    background: var(--orange);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.gs-content img {
    position: relative;
    filter: invert(91%) sepia(100%) saturate(34%) hue-rotate(257deg) brightness(108%) contrast(100%);
}

.gs-content h4,
.gs-content h4>a {
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    color: var(--dark-blue);
    font-weight: 700;
    padding-bottom: 14px;
    margin-bottom: 20px;
    position: relative;
}

.gs-content h4>a {
    display: inline-block;
    padding: 0;
    margin: 0;
}

.gs-content h4:before {
    position: absolute;
    content: "";
    background: var(--orange);
    width: 15%;
    height: 4px;
    bottom: 0;
    left: 0;
}

.gs-content p {
    font-size: 14px;
    line-height: 22px;
    color: #333;
    margin: 0;
}

.gs-content p a {
    color: var(--orange);
}

.gs-content:after {
    position: absolute;
    content: "";
    right: -100px;
    bottom: -70px;
    background-image: url(../img/guaranteed-seo-services/gray-dots.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 155px;
    height: 125px;
    transform: rotate(90deg);
}


/* SECTION THREE CSS END HERE */


/* SECTION FOUR CSS START HERE */

section.section--3cta {
    padding-bottom: 0;
    background-color: #f5f5f8;
}

.section--3cta .head h3 {
    font-size: 40px;
    color: var(--dark-blue);
    text-transform: uppercase;
    font-weight: 900;
}

.section--3cta .head h2,
.section--3cta .head h2 span {
    font-size: 60px;
    line-height: 60px;
}

section.section--3cta img.left-arrow,
section.section--3cta img.right-arrow {
    position: absolute;
    top: -40px;
}

section.section--3cta img.left-arrow {
    left: -30px;
}

section.section--3cta img.right-arrow {
    right: -30px;
}

section.section--3cta img.wave {
    width: 100%;
    margin-top: -50px;
}


/* SECTION FOUR CSS END HERE */


/* SECTION TESTIMONIAL CSS START HERE  */

div#testimonials--slider {
    max-width: 80%;
    margin: 0 auto;
}

.client--testimonials .head h2,
.client--testimonials .head p {
    color: var(--white);
}

div#testimonials--slider .owl-stage {
    padding-bottom: 70px;
}

.testimonials--wrapper .item {
    background: #010f3e;
    border-radius: 30px;
    padding: 0 60px;
    overflow: hidden;
}

.testimonials--wrapper .item .client--logo {
    position: relative;
    padding: 50px 0;
}

.testimonials--wrapper .item .client--logo:before {
    position: absolute;
    content: '';
    background: var(--orange);
    width: 50%;
    height: 200%;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -50%;
}

.testimonials--wrapper .item .client--logo img {
    position: relative;
    border-radius: 10px;
}

.testiminial--content {
    padding: 30px 0;
}

.testimonials--wrapper .testiminial--content h3 {
    color: var(--white);
    font-size: 18px;
    padding-bottom: 30px;
    font-weight: bold;
}

.testimonials--wrapper .testiminial--content p {
    color: var(--white);
    line-height: 24px;
    opacity: 0.7;
    font-size: 14px;
}

.testimonials--wrapper .testiminial--content h4 {
    color: var(--white);
    font-style: italic;
    font-weight: bold;
    font-size: 16px;
    padding-top: 30px;
}

.testimonials--wrapper .testiminial--content h4 span {
    opacity: 0.4;
    font-size: 16px;
}

a.client--url {
    color: #89a5ff;
    text-decoration: underline !important;
}

a.client--url:hover {
    color: var(--orange);
}

div#testimonials--slider .owl-stage-outer {
    margin-bottom: 50px;
}

.testimonials--wrapper .owl-nav {
    position: absolute;
    top: 35%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonials--wrapper .owl-nav .owl-prev {
    left: -10%;
    position: relative;
}

.testimonials--wrapper .owl-nav .owl-next {
    position: relative;
    right: -10%;
}

.testimonials--wrapper .owl-nav span {
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    opacity: 0.5;
}

.testimonials--wrapper .owl-nav button:hover {
    background: transparent !important;
}

.testimonials--wrapper .owl-nav button:hover span {
    opacity: 1;
}


/* SECTION TESTIMONIAL CSS END HERE  */


/* SECTION SEARCHBERG REVIEWS START END HERE  */

.SBreviews--wrapper h4 {
    background: #00165e;
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    border-radius: 0 0 25px 25px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.SBreviews--wrapper {
    max-width: 65%;
    margin: 0 auto;
}

.SBreviews--wrapper .row {
    align-items: center;
}


/* SECTION SEARCHBERG REVIEWS CSS END HERE  */


/* SECTION SEARCHBERG CASE STUDY CSS START HERE  */

section.section--cs.case-study {
    background: #f3f7ff;
    padding: 60px 10px;
    margin-top: 50px;
}

section.section--cs.case-study .cs-nav {
    padding: 0 20px;
    overflow-y: scroll;
    max-height: 420px;
    text-align: center;
}

section.section--cs.case-study .cs-link {
    cursor: pointer;
    padding: 10px;
    opacity: 0.5;
}

section.section--cs.case-study .cs-link.active {
    opacity: 1;
}

section.section--cs.case-study .cs-link img {
    width: auto;
    max-width: 100%
}

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

section.section--cs.case-study .cs-nav::-webkit-scrollbar {
    width: 10px;
    background-color: #f5f5f5;
}

section.section--cs.case-study .cs-nav::-webkit-scrollbar-thumb {
    background-color: #0e2e67;
    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);
}

section.section--cs.case-study .cs-content {
    padding: 0 30px;
    display: none
}

section.section--cs.case-study .cs-content.active {
    display: block
}

section.section--cs.case-study .cs-content h3 {
    color: #0e2e67;
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 30px;
}

section.section--cs.case-study .cs-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 500;
}

.cs-content a {
    color: #f47a1e
}

section.section--cs.case-study .cs-content a.get-consult {
    padding: 14px 40px;
    font-size: 16px;
    text-transform: uppercase;
    background: #f47a1e;
    color: #fff;
    display: inline-block;
    margin: 20px 0 10px 0;
    font-weight: 700;
    border-radius: 5px;
    transition: all .3s;
    text-decoration: none
}

section.section--cs.case-study .cs-content a.get-consult:hover {
    text-decoration: none;
    background: #fff;
    color: #f47a1e
}

section.section--cs.case-study .col-md-5 {
    border-right: 2px solid #a3afd3;
}

.cs-table-box {
    padding: 0 10px;
    display: none
}

.cs-table-box.active {
    display: block
}

table.case-study-table {
    background: #fff;
    color: #0e2e67;
    width: 100%;
    margin-bottom: 20px;
}

.cs-center {
    border-right: 1px solid #ccc;
}

table.case-study-table tr {
    border-bottom: 1px solid #e0e0e0 !important;
}

table.case-study-table th:first-child {
    font-size: 16px !important;
}

table.case-study-table th:first-child {
    border-right: 1px solid #0e2e67;
}

table.case-study-table tbody tr,
table.case-study-table tbody tr td,
table.case-study-table th {
    border-color: #e0e0e0 !important;
}

table.case-study-table th {
    font-weight: 700;
}

table.case-study-table td,
table.case-study-table td a,
table.case-study-table th {
    color: #0e2e67 !important;
    font-weight: 500;
}

table.case-study-table th {
    padding: 8px 20px;
}

table.case-study-table tbody td:first-child {
    border-right: 1px solid #0e2e67;
}

table.case-study-table tbody tr,
table.case-study-table tbody tr td,
table.case-study-table th {
    border-color: #e0e0e0 !important;
}

table.case-study-table tr td,
table.case-study-table tr td a {
    font-size: 13px !important;
}

table.case-study-table tbody td,
table.case-study-table tbody td a {
    font-weight: 600 !important;
}

table.case-study-table tbody td {
    padding: 8px 20px;
}

table.case-study-table td,
table.case-study-table td a,
table.case-study-table th {
    color: #0e2e67 !important;
}

table.case-study-table tbody td:nth-child(2) {
    color: #f47a1e !important;
}

table.case-study-table th {
    font-weight: 700;
}


/* SECTION SEARCHBERG CASE STUDY CSS END HERE  */


/* SECTION EIGHT - BLOGS CSS START HERE  */

section.blogs--section {
    background: #fafafa;
}

section.blogs--section .head p a {
    font-weight: 700;
    text-decoration: underline !important;
}

.blog-wrapper .blog--thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-wrapper .blog--content {
    background: var(--white);
    padding: 25px;
    box-shadow: 0 0 10px #ebebeb;
}

.blog-wrapper .blog--content h3 {
    font-size: 18px;
    color: #0e2e67;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 20px;
}

.blog-wrapper .blog--content p {
    font-size: 14px;
    color: #343434;
    font-weight: 500;
    line-height: 1.8;
}

.blog-wrapper .blog--content a {
    color: var(--orange);
    font-weight: 600;
    font-size: 14px;
}

.blog-wrapper .blog--content a:hover {
    color: var(--dark-blue);
}

.blog-wrapper .blog--content a:hover i {
    padding-left: 5px;
}

.blogs--section .read-blog {
    padding: 14px 40px;
    font-size: 16px;
    text-transform: uppercase;
    background: var(--orange);
    color: var(--white);
    display: inline-block;
    margin: 70px 0 0;
    font-weight: 700;
    border-radius: 5px;
}

.blogs--section .read-blog:hover {
    text-decoration: none;
    background: var(--dark-blue);
    color: var(--white);
}


/* SECTION EIGHT - BLOGS CSS END HERE  */


/* SECTION NINE CSS START HERE  */

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

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

section.section--nine ul {
    margin-bottom: 70px !important;
}

section.section--nine ul li {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    max-width: 80%;
}

section.section--nine .col-left ul li img {
    margin-right: 20px
}

section.section--nine a {
    padding: 14px 40px;
    border-radius: 15px;
    display: inline-block;
    font-weight: 600;
    color: var(--dark-blue);
    border: 3px solid var(--dark-blue);
    box-shadow: 0 10px 20px rgb(0 22 94 / 40%);
}

section.section--nine i {
    font-size: 18px;
    padding-right: 5px;
}

section.section--nine a:hover {
    background: var(--dark-blue);
    color: var(--white);
    box-shadow: 0 10px 20px rgb(0 22 94 / 40%);
}


/* SECTION NINE CSS END HERE  */


/* SECTION TEN CSS START HERE  */

section.section.section--nine.ranking--google:before {
    position: absolute;
    content: '';
    border: 35px solid var(--orange);
    width: 350px;
    height: 350px;
    right: -140px;
    bottom: -50px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
}

.ranking--google:after {
    position: absolute;
    content: '';
    width: 600px;
    height: 600px;
    background: var(--orange);
    border-radius: 50%;
    left: -100px;
    top: -100px;
    z-index: -1;
}

.ranking--google .col--right.head {
    margin: 0;
}

.ranking--google .col--right.head:before {
    display: none;
}

.ranking--google .col--right.head h2 {
    padding-bottom: 40px;
}

.ranking--google .col--right.head p {
    line-height: 30px;
}

section.ranking--google .col--left {
    margin-right: 30px;
}

.rankingscreen .scrollstyle {
    overflow: hidden;
    overflow-y: scroll
}

.rankingscreen {
    position: relative;
    background: url(../img/guaranteed-seo-services/tv.webp);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: 100% 100%;
    width: 100%;
    height: 484px;
    padding-right: 22px;
    padding-top: 43px;
    padding-left: 29px;
    margin: 0 auto;
    margin-right: 0;
    max-width: 100%
}

.headfix {
    padding: 8px 0;
    background: var(--orange);
}

tr.headfix th {
    color: #0f0d0e;
    font-weight: 700;
    color: var(--white);
    padding-left: 18px;
}

.rankingscreen .table_scroll img {
    width: auto;
    border: 2px solid #ccc;
}

.rankingscreen .table_scroll {
    overflow-y: scroll;
    height: 252px
}

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

.rankingscreen .table_scroll::-webkit-scrollbar {
    width: 10px;
    background-color: #f5f5f5;
}

.rankingscreen .table_scroll::-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);
}

.ranking-date {
    position: absolute;
    bottom: 85px;
    right: 40px;
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 600;
}

.gr-cta {
    margin-top: 40px;
}

.gr-cta>a.main-cta {
    display: inline-flex;
    padding: 15px 70px;
    text-align: left;
    float: left;
}


/* SECTION TEN CSS START HERE  */


/* SECTION ELEVEN CSS START HERE  */

section.our--clients {
    background: #f3f7ff;
}

.our--clients .client-grid-wrap {
    display: flex;
    flex-wrap: wrap;
    grid-row-gap: 50px;
}

.our--clients .client-grid-wrap a.client-box {
    flex: 1 1 100%;
    text-align: center;
}

.our--clients a {
    position: relative;
    overflow: hidden
}

.our--clients a img {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.our--clients a:hover img {
    transform: scale(1.2)
}

@media (min-width: 768px) {
    .our--clients .client-grid-wrap a.client-box {
        flex: 1 1 33.33%;
    }
}

@media (min-width: 992px) {
    .our--clients .client-grid-wrap a.client-box {
        flex: 1 1 25%;
    }
}


/* SECTION ELEVEN CSS END HERE  */


/* SECTION TWELVE CSS START HERE  */

.seciton--twelve {
    padding-top: 100px;
}

.seciton--twelve img.orange-dots {
    position: absolute;
    top: -40px;
    left: -50px
}

.seciton--twelve img.grady-dots {
    position: absolute;
    right: -50px;
    bottom: -40px
}

.seciton--twelve .sec-cta {
    margin-top: 80px
}

.seciton--twelve .sec-cta a.main-cta {
    display: inline-flex;
    padding: 14px 50px
}

.contactBox--wrapper {
    position: relative
}

.contact--box {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 20px 30px;
    margin-bottom: 60px;
    box-shadow: 5px 5px 10px -2px #ccc;
    z-index: 99
}

.contact--box h2 {
    color: var(--dark-blue);
    font-size: 60px;
    font-weight: 800;
    letter-spacing: 2px
}

.contact--box p {
    color: var(--dark-blue);
    line-height: 30px;
}

.triangle-with-shadow {
    width: 100px;
    height: 100px;
    position: relative;
    overflow: hidden;
    box-shadow: 5px 5px 10px -17px #ccc;
    position: absolute;
    top: 100%;
    left: calc(50% - 50px)
}

.triangle-with-shadow:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background: #fff;
    transform: rotate(45deg);
    bottom: 75px;
    right: 25px;
    box-shadow: 5px 5px 10px -2px #ccc
}


/* SECTION TWELVE CSS END HERE  */


/* SECTION THIRTEEN - MILESTONS CSS START HERE  */

.sb--milestones .head h2 {
    color: var(--white);
}

.ms-box {
    padding: 0 20px;
    text-align: center
}

.ms-box h3,
.ms-box h3 span {
    font-family: 'Poppins', sans-serif;
    font-size: 54px;
    color: var(--white);
    font-weight: 700;
    border-bottom: 1px solid var(--white);
    padding-bottom: 10px;
    margin: 10px 0
}

.ms-box p {
    color: var(--white);
    font-weight: 500;
    font-size: 16px
}

.ms-box h3 span {
    color: var(--orange);
    border: 0;
}


/* SECTION THIRTEEN - MILESTONS CSS END HERE  */


/* SECTION SEVENTEEN - DASHBOARD CSS START HERE  */

img.dashboard-before {
    position: absolute;
    top: 0;
    left: 0;
}

section.dashboard--section .head h2 {
    padding-bottom: 40px;
}

section.dashboard--section .head p.sub-text {
    color: #444;
    font-size: 16px;
    font-weight: bold;
}

section.dashboard--section .head {
    margin-bottom: 80px;
    padding: 0;
}

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

.dashboard--section .col--left {
    border-right: 1px solid #ccc;
    padding-right: 50px;
}

.dashboard-box {
    padding: 20px;
}

.dashboard-box .dashboard-icon {
    margin-bottom: 15px;
}

.dashboard-box h3 {
    font-size: 20px;
    color: var(--dark-blue);
    font-weight: 700;
    padding-bottom: 20px;
}

.dashboard-box p {
    color: #6a6a6a;
    font-size: 14px;
}

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

.more--traffic h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
    ;
    padding-bottom: 30px;
}

.more--traffic a.main-cta {
    max-width: 60%;
    margin: 0 auto;
}


/* SECTION SEVENTEEN - DASHBOARD CSS END HERE  */


/* SECTION FIVETEEN - SERVICES CSS START HERE  */

section.sb--seo .head h2 {
    color: #fff;
}

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

.sb-seo-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

.sb-seo-box .sb-seo-thumb {
    height: 350px;
}

.sb-seo-box .sb-seo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sb-seo-content {
    position: absolute;
    top: 250px;
    text-align: center;
    padding: 40px 20px 0;
    height: 100%;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.sb-seo-content p {
    opacity: 0;
}

.sb-seo-box .sb-seo-thumb h3,
.sb-seo-content h3 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 20px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.sb-seo-content p {
    color: #b8c7e1;
    font-size: 14px;
}

.sb-seo-box .sb-seo-thumb h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 20px;
}

.sb-seo-content a {
    text-decoration: underline !important;
    color: var(--white);
}

.sb-seo-content a:hover {
    color: var(--orange);
    ;
}

.sb-seo-box:hover .sb-seo-thumb h3 {
    opacity: 0;
}

.sb-seo-box:hover .sb-seo-content {
    opacity: 1;
    top: 0;
}

.sb-seo-box:hover .sb-seo-content p {
    opacity: 1;
}

.sb-seo-box:hover .sb-seo-content {
    background: rgb(0 22 94 / 80%);
}


/* SECTION FIVETEEN - SERVICES CSS END HERE  */


/* SECTION SIXTEEN - SERVICES CSS START HERE  */


/* SECTION SIXTEEN - SERVICES CSS END HERE  */


/* SECTION SEVENTEEN  - HIRE PROFESSIONAL CSS START HERE  */

section.hire-pro {
    margin: 50px 0 0;
}

.hire-pro .contact--box {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 0 15px 10px #e6eeff;
    z-index: unset;
}

.hire-pro .contact--box h2 {
    font-size: 40px;
}

.hire-pro .sec--cta--wrapper h4 {
    font-size: 26px;
    font-weight: 700;
    padding: 30px 0;
    position: relative;
    color: var(--dark-blue);
    text-align: center;
}

section.hire-pro img.orange-dots,
section.hire-pro img.gray-dots {
    position: absolute;
    z-index: -99;
}

section.hire-pro img.orange-dots {
    top: -35px;
    left: -35px;
}

section.hire-pro img.gray-dots {
    right: -35px;
    bottom: -35px;
}

@media (min-width:992px) {
    section.hire-pro .sec--cta--wrapper {
        max-width: 35%;
        margin: 0 auto;
    }
}


/* SECTION SEVENTEEN  - HIRE PROFESSIONAL CSS END HERE  */


/* SECTION EIGHTEEN CSS START HERE  */

section.section.section--eighteen {
    background: #f3f7ff;
    padding-bottom: 100px;
}

section.section.section--eighteen img.sa-shape {
    position: absolute;
    bottom: 0;
    right: 0;
}

section.section.section--eighteen .head h2,
section.section.section--eighteen .head h2 span {
    font-size: 30px;
}

section.section.section--eighteen .head:before {
    left: unset;
    width: 7px;
    height: 100%;
}

section.section.section--eighteen p.sub-heading {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--orange);
}

section.section.section--eighteen p {
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    line-height: 24px;
}

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

section.section.section--eighteen p a:hover {
    color: var(--dark-blue);
}

section.section.section--eighteen .sec--cta {
    max-width: 70%;
    margin-top: 70px;
}

section.section.section--eighteen .sec--cta a.main-cta.btn--orange {
    margin-top: -20px;
    max-width: 70%;
    padding: 10px 30px;
    border-color: var(--white);
    margin: -20px auto;
}

section.section.section--eighteen .sec--cta a.main-cta.btn--blue {
    padding: 25px 0 35px 0;
    font-size: 22px
}


/* SECTION EIGHTEEN CSS END HERE  */


/* SECTION NINETEEN - FAQS CSS START HERE  */

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::-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 NINETEEN - FAQS CSS END HERE  */


/* SECTION TWENTY - BOTTOM FORM CSS START HERE  */

.bottom-form {
    position: relative;
    background: #e0f0ff;
    padding: 30px 50px;
    border-radius: 15px;
    margin: 15px 0
}

.ny-contact hr {
    margin: 0;
    border: none;
    border-top: 10px solid var(--orange);
    position: absolute;
    width: 60%;
    top: 0;
    left: 20%;
    opacity: 1;
}

.bottom-form .secondary-text {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin: 0;
    color: var(--dark-blue);
}

.bottom-form h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1.2;
    text-align: center;
    margin-bottom: 25px;
    margin-top: 0
}

.bottom-form h2 span {
    color: var(--orange);
    font-weight: 800
}

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

.bottom-form .form-group i {
    position: absolute;
    font-size: 18px;
    color: var(--orange);
    left: 10px;
    height: 25px;
    width: 25px;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    line-height: 25px;
    font-weight: 500;
}

.bottom-form .form-control {
    height: 50px;
    padding-left: 40px;
    background-color: #fff;
    font-size: 14px;
    color: #9daac1;
    border: 1px solid #f6f4f4;
    box-shadow: none;
    border-radius: 25px;
    -webkit-appearance: revert;
    -moz-appearance: revert;
    appearance: revert;
}

.bottom-form .form-group.textarea i {
    margin-top: 10px;
}

.bottom-form .form-group.textarea textarea {
    height: 130px;
    resize: none;
}

.mini-contact-area {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    margin-top: 20px;
}

.mini-contact-box {
    display: flex;
    align-items: center;
}

.c-cont-box h4 {
    font-size: 14px;
    margin: 0;
    color: #999;
    font-weight: 600;
}

.c-cont-box a {
    font-size: 16px;
    margin: 0;
    color: var(--dark-blue);
    font-weight: 800;
}

.c-cont-box a:hover {
    color: var(--orange);
}

.c-icon-box i {
    font-size: 24px;
    color: var(--orange);
    margin-right: 15px;
}

.contact-box-q img {
    max-width: 100%;
}

.contact-box-q h3 {
    position: relative;
    background-color: var(--white);
    color: var(--dark-blue);
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    padding: 25px 40px;
    box-shadow: 0 0 10px -2px #ccc;
    border-radius: 25px;
    margin: 40px 0 0 0;
    margin-bottom: 50px;
}

.ny-contact form .btn-box {
    text-align: center;
    padding: 20px 0;
}

.ny-contact form .btn-primary {
    padding: 15px 40px;
    font-size: 18px;
    color: #fff;
    border-radius: 25px;
    background-color: #0e2e67;
    display: block;
    box-shadow: 5px 5px 15px #999;
    text-decoration: none;
    margin: auto;
    display: inline;
    margin: auto;
    letter-spacing: 0;
}

.call-custom-cta {
    text-align: center;
}

.call-custom-cta a {
    display: inline-block;
    border-radius: 50px;
    padding: 16px 50px;
    border: 0 !important;
    font-weight: 400;
}

.call-custom-cta a:first-child {
    margin-bottom: 20px;
}


/* SECTION TWENTY - BOTTOM FORM CSS END HERE  */


/* SECTION TWENTY ONE - PARTNERS AREA CSS START HERE  */

.partners-area ul.partners {
    display: flex;
    list-style: none;
    padding: 0 !important;
    justify-content: space-around;
    align-items: center;
}

.partners-area ul.partners li img {
    max-width: 100%;
    padding: 5px;
}


/* SECTION TWENTY ONE - PARTNERS AREA CSS END HERE  */



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

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

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

    .head p br {
        display: none;
    }

    section.cover--section h1,
    section.cover--section h1 span {
        font-size: 36px;
    }

    .cover--btn a {
        padding: 14px 24px;
    }

    .Form-box.bannerForm {
        padding: 0 20px 20px;
    }

    .section--3cta .head h3 {
        font-size: 30px;
    }

    .section--3cta .head h2,
    .section--3cta .head h2 span {
        font-size: 40px;
    }

    .contact--box h2 {
        font-size: 50px;
    }

    section.section.section--nineteen.faq-section {
        padding-bottom: 0;
    }
}

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

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

    .head h4 br {
        display: none;
    }

    section.cover--section h1 br {
        display: none;
    }

    .Form-box.bannerForm {
        margin-top: 20px;
    }


    .gs-content.active {
        margin-top: 30px;
    }

    .section--3cta .head h3 {
        font-size: 26px;
    }

    section.section--3cta img.left-arrow,
    section.section--3cta img.right-arrow {
        display: none;
    }

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

    div#testimonials--slider {
        max-width: 100%;
    }

    .SBreviews--wrapper {
        max-width: 100%;
    }

    section.section--cs.case-study .cs-nav {
        display: flex;
        overflow-y: hidden;
        margin-bottom: 30px;
    }

    section.section--cs.case-study .cs-nav .cs-link {
        min-width: 33.33%;
    }

    section.section--cs.case-study .cs-content h3 {
        font-size: 24px;
    }

    section.section--cs.case-study .cs-content {
        padding: 0;
    }

    .head h4 br {
        display: none;
    }

    .rankingscreen .table_scroll img {
        width: 100%;
    }

    .rankingscreen {
        margin-bottom: 30px;
    }

    .contact--box h2 {
        font-size: 36px;
    }

    .ms-box h3,
    .ms-box h3 span {
        font-size: 24px;
    }

    .ms-box p {
        font-size: 14px;
    }

    section.dashboard--section .head {
        margin-bottom: 40px;
    }

    section.dashboard--section .head h2 {
        font-size: 30px;
    }

    .dashboard--section .col--left {
        padding: 0;
        border: 0;
        margin-bottom: 30px;
    }

    .sb--seo .row {
        justify-content: center;
    }



    section.section.section--sixteen {
        text-align: center;
        padding-bottom: 0;
    }

    section.section.section--sixteen img {
        margin-bottom: 30px;
    }

    section.hire-pro {
        margin: 0;
    }

    .hire-pro .contact--box h2 {
        font-size: 30px;
    }

    .hire-pro .contact--box h2 br {
        display: none;
    }

    .sec--cta--wrapper {
        max-width: 50%;
        margin: 0 auto;
    }



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

    section.section.section--eighteen {
        text-align: center;
    }

    section.section.section--eighteen img {
        margin-bottom: 30px;
    }

    section.section.section--eighteen .sec--cta {
        margin: 50px auto 0;
    }

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

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

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

}

@media only screen and (max-width: 767px) {
    #floating_request_btn {
        display: none;
    }

    .section {
        padding: 40px 0;
    }

    .head {
        margin-bottom: 30px;
    }

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

    .enableScroll {
        display: flex;
        flex-wrap: nowrap;
        overflow: hidden;
        overflow-x: auto;
        padding-bottom: 20px;
        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);
    }

    section.cover--section h1,
    section.cover--section h1 span {
        font-size: 26px;
    }

    .img-price {
        position: unset;
        margin: 20px 0;
    }

    section.cover--section h4,
    section.cover--section h4 span {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
    }

    section.cover--section h4 br {
        display: none;
    }

    .cover--btn {
        display: flex;
        justify-content: space-between;
        margin: 0;
    }

    .cover--btn a {
        padding: 10px 12px;
        font-size: 14px;
    }

    .cover--btn a i {
        display: none;
    }

    .cover--btn a:not(:last-child) {
        margin: 0;
    }

    .cover--partners ul {
        justify-content: normal;
        padding-bottom: 10px;
        grid-gap: 10px;
    }

    .cover--partners ul li {
        min-width: 33%;
    }

    .Form-box.bannerForm {
        max-width: 100%;
        padding: 20px 15px 15px 15px;
        margin-top: 20px;
    }

    .Form-box.bannerForm h2,
    .Form-box.bannerForm h2 span {
        font-size: 18px;
    }

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

    .guaranteed-services .head .angle {
        display: none;
    }

    .ws-content {
        height: auto;
        padding: 20px;
    }

    .ws-content:after {
        display: none;
    }

    .gs-nav .gs-link {
        height: 62px;
    }


    section.section--nine ul li {
        max-width: 100%;
    }

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

    section.section--nine ul {
        margin-bottom: 30px !important;
    }

    .rankingscreen {
        margin-bottom: 30px;
        height: 300px;
        padding: 26px 10px 0;
    }

    tr.headfix th {
        font-size: 14px;
        padding: 0;
    }

    .rankingscreen .table_scroll {
        height: 150px;
    }

    .ranking-date {
        bottom: 50px;
        font-size: 12px;
        right: 20px;
    }

    section.section.section--nine.ranking--google:before {
        display: none;
    }

    .ranking--google:after {
        width: 400px;
        height: 400px;
    }

    .ranking--google .col--right.head {
        margin-top: 0;
    }

    .ranking--google .col--right.head h2 {
        padding-bottom: 10px;
    }

    section.ranking--google .col--left {
        margin: 0;
    }

    .gr-cta>a.main-cta {
        padding: 15px 30px;
        font-size: 14px;
        width: 100%;
    }

    .our--clients .client-grid-wrap {
        flex-wrap: nowrap;
    }

    .our--clients .client-grid-wrap>a {
        min-width: 100%;
    }

    .seciton--twelve img.orange-dots {
        display: none;
    }

    .seciton--twelve img.grady-dots {
        display: none;
    }

    .contact--box h2 {
        font-size: 26px;
    }

    .contact--box {
        padding: 20px;
    }

    .seciton--twelve .sec-cta a.main-cta {
        padding: 10px 20px;
        font-size: 14px;
    }

    .sb--milestones .row .col-sm-3 {
        max-width: 50%;
    }

    .ms-box {
        padding: 0;
    }

    section.hire-pro {
        margin: 0;
    }

    .hire-pro .contact--box h2 {
        font-size: 26px;
    }

    .sec--cta--wrapper {
        max-width: 100%;
    }

    .hire-pro .contact--box {
        padding: 20px;
    }

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

    .more--traffic a.main-cta {
        max-width: 100%;
        font-size: 14px;
    }

    .sb--seo .row {
        justify-content: normal;
    }

    a.main-cta {
        font-size: 14px;
        padding: 10px 20px;
    }

    section.section.section--eighteen .sec--cta {
        max-width: 100%;
    }

    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;
    }

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

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

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