:root {
    --gray: #474747;
    --black: #000;
    --light-black: #202020;
    --white: #fff;
    --light-blue: #486fa4;
    --dark-blue: #0e2e67;
    --orange: #f16f1d;
    --sky-blue: #0c7cde;
}

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

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

p {
    font-family: 'Inter', 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;
    /* margin: 0 0 3rem;
    padding-bottom: 10px; */
}


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

.head h2,
.head h2 span {
    position: relative;
    font-size: 40px;
    font-weight: 800;
    padding: 0 0 1.5rem;
    margin: 0 auto 3rem;
}

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

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

.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: #121826;
    font-size: 16px;
    font-weight: 500;
}

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

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


a.main-cta {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid transparent;
    padding: 1rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 0.5rem;
    border-radius: 4px;
    text-shadow: 0px 2px 0px rgb(5 5 5 / 20%);
    text-transform: uppercase;
    -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;
}

a.main-cta.btn-blue {
    background: var(--sky-blue);
}

a.main-cta.btn-blue:hover {
    background: var(--orange);
}

a.main-cta.btn-orange {
    background: var(--orange);
    Box-shadow: 5px 5px 15px rgb(242 112 29 / 40%);
}

a.main-cta.btn-orange:hover {
    background: var(--dark-blue);
    box-shadow: 5px 5px 15px rgb(14 46 103 / 40%);
}

a.main-cta.btn-blue-border {
    background: transparent;
    border: 2px solid var(--dark-blue);
    color: var(--dark-blue);
}

a.main-cta.btn-blue-border:hover {
    background: var(--dark-blue);
    color: var(--white);
    box-shadow: 5px 5px 15px rgb(14 46 103 / 40%);
}

a.main-cta.btn-blue-border i {
    background: var(--dark-blue);
    color: var(--white);
    width: 25px;
    height: 25px;
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -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;
}

a.main-cta.btn-blue-border:hover i {
    background: var(--white);
    color: var(--dark-blue);
}

/* GLOBAL CSS END HERE  */



/* SECTION ONE CSS START HERE */

.homeBanner {
    position: relative;
    background-image: url('../img/global/coverBanner.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    overflow: hidden;
    padding: 4rem 0 5rem;
}

.homeBanner p.sub-heading {
    color: #526d9d;
    font-size: 18px;
    font-weight: 500;
}

.homeBanner h1 {
    font-size: 70px;
    font-weight: 800;
    color: #00165e;
    line-height: 60px;
    padding-bottom: 25px;
}

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

section.homeBanner hr {
    background: #bccadd;
    opacity: 1;
}

.homeBanner p.sub-text {
    color: var(--dark-blue);
    /* padding-right: 5%; */
}

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

.coverBtns a.btn--orange {
    background: var(--orange);
    color: var(--white);
    padding: 20px 26px;
    border-radius: 4px;
    text-transform: capitalize;
    Box-shadow: 5px 5px 15px rgb(242 112 29 / 40%);
}

.coverBtns a.btn--orange:hover {
    background: var(--dark-blue);
    box-shadow: unset;
}


.coverBtns a.btn--transparent {
    position: relative;
    color: var(--dark-blue);
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    padding: 0 0 0 60px;
    text-shadow: unset;
}

.coverBtns a.btn--transparent:before {
    position: absolute;
    content: '\f095';
    font-family: 'FontAwesome';
    left: 0px;
    width: 40px;
    height: 40px;
    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;
}

.coverBtns a.btn--transparent:hover {
    color: var(--orange);
}

.coverBtns a.btn--transparent:hover:before {
    background: var(--orange);
    color: var(--white);
}

@media screen and (min-width: 1200px) {
    .bannerImg {
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
    }
}

ul.partners {
    position: relative;
}


@media screen and (min-width: 1199px) {
    ul.partners {
        max-width: 19%;
        margin-left: auto !important;
        top: 45%;
        right: -2%;
    }
}

@media screen and (min-width: 1920px) {
    ul.partners {
        margin-left: auto !important;
        top: 45%;
        max-width: 16%;
        right: 10%;
    }
}

@media screen and (max-width: 1199px) {
    ul.partners {
        position: unset;
        max-width: initial;
        display: flex;
        align-items: center;
        justify-content: center;
        grid-column-gap: 1rem;
        margin: 2rem 0 0 !important;
    }

}


/* SECTION ONE CSS END HERE */

/* SECTION TWO CSS START HERE */

.leads-generated .row>.col-md-3 {
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-repeat: no-repeat;
    background-size: cover;
}

.leads-generated h2 {
    font-family: 'Antonio', sans-serif;
    font-size: 70px;
    font-weight: bold;
    line-height: 1;
    color: var(--white);
    padding: 0 0 1rem;
}

.leads-generated p {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    color: var(--white);
}

/* SECTION TWO CSS END HERE */

/* SECTION THREE CSS START HERE */

section.professional-google-ads {
    padding: 60px 0 0;
}

section.professional-google-ads h4 {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    margin: 35px 0 20px;
}

section.professional-google-ads ul.choose-list {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 14px;
    margin: 0 0 30px !important;
}

ul.choose-list li {
    border: 1px solid #e7e7e7;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: var(--dark-blue);
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 8px;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 10%);
}

.pga-btn {
    position: relative;
    display: flex;
    display: -webkit-box;
    flex-wrap: wrap;
    grid-gap: 1rem;
}

.pga-btn>p {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}



.pga-btn a {
    text-transform: inherit;
    font-size: 14px;
    padding: 1rem 2rem
}


@media screen and (min-width: 1199px) {
    img.professional-ads {
        position: absolute;
        bottom: 0;
        top: 0;
        margin: 150px auto;
    }
}

img.wave {
    width: 100%;
}

/* SECTION THREE CSS END HERE */


/* SECTION TEN CSS START HERE  */

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

section.s10 .head h2 {
    color: var(--white);
    font-size: 26px;
    max-width: 60%;
}


section.s10 .head:before {
    display: none;
}

section.s10 img.lazy.left-arrow,
section.s10 img.lazy.right-arrow {
    position: absolute;
    top: -30px;
}

section.s10 img.lazy.left-arrow {
    left: 150px;
}

section.s10 img.lazy.right-arrow {
    right: 150px;
}

section.s10 p.cal-now {
    font-size: 30px;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 6px;
    font-weight: 500;
    margin: 0;
}

section.s10 a.toll-number {
    font-size: 100px;
    color: var(--orange);
    font-weight: 700;
    line-height: 1;
    display: flex;
    justify-content: center;
    margin: 10px 0 20px;
    background: linear-gradient(to right, var(--white), var(--orange), var(--white));
    background-size: 200% 200%;
    animation: rainbow 2s ease-in-out infinite;
    background-clip: text;
    -webkit-background-clip: text;
    transition: color .4s ease-in-out;
}

section.s10 a.toll-number:hover {
    color: rgba(0, 0, 0, 0);
}

@keyframes rainbow {
    0% {
        background-position: left
    }

    50% {
        background-position: right
    }

    100% {
        background-position: left
    }
}

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

section.s10 p.glad-tp-help {
    font-size: 30px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
}


/* SECTION TEN CSS END HERE  */


/* SECTION FOUR CSS START HERE */


.package-tabContent {
    display: none;
}

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


.package-tabContent {
    display: none;
}

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

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


.package-wrapper {
    position: relative;
    background: var(--dark-blue);
    display: flex;
    flex-wrap: wrap;
    border-radius: 20px;
    overflow: hidden;
}

.package-wrapper>div:nth-child(1) {
    flex: 1 1 30%;
}

.package-wrapper>div:nth-child(2) {
    flex: 1 1 17.5%;
}

.package-wrapper>div:nth-child(3) {
    flex: 1 1 17.5%;
}

.package-wrapper>div:nth-child(4) {
    flex: 1 1 17.5%;
}

.package-wrapper>div:nth-child(5) {
    flex: 1 1 17.5%;
}

.package-wrapper .package-Box:not(:last-child) {
    border-right: 1px solid rgb(255 255 255 / 50%);
}

.package-Box .pkg-name {
    position: relative;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 0 0;
}

.package-Box .pkg-name small {
    color: var(--white);
    font-size: 12px;
    min-height: 36px;
}

.package-Box span.recommended {
    background: #ffea00;
    position: absolute;
    top: 0;
    padding: 2px 10px;
    border-radius: 0 0 10px 10px;
    font-size: 14px;
    font-weight: 600;
}

.package-Box .pkg-name h2 {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
}


.package-Box .pkg-list ul li:nth-child(odd) {
    background: rgb(255 255 255 / 10%);
}

.package-Box .pkg-list ul li {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    padding: .5rem 2rem;
    text-align: center;
    color: var(--white);
    min-height: 40px;
}

.package-main.package-Box .pkg-list ul li {
    padding: .5rem 0 .5rem 2rem;
}

.package-main.package-Box ul li {
    text-align: left;
}

.package-Box li.height-61 {
    height: 61px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-price.package-order {
    text-align: center;
    padding: 20px;
}

.package-price h5 {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: 50px;
    color: var(--white);
    padding-bottom: 10px;
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
}

.package-price h5>sup {
    position: absolute;
    top: 15px;
    left: -20px;
    color: #6bdda0;
    font-size: 30px;
}

.package-price h5 small {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
    color: rgb(255 255 255 / 30%);
}

.package-order a.order-now {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 28px;
    display: inline-block;
    border-radius: 6px;
    text-transform: uppercase;
    background: var(--white);
    color: var(--dark-blue);
}

.package-order a.order-now:hover {
    background: var(--sky-blue);
    color: var(--white);
}

span.initial-opt {
    background: #001733;
    color: var(--white);
    padding: 10px 20px;
    font-size: 14px;
    text-align: center;
    position: absolute;
    right: 3px;
    bottom: 175px;
    min-width: 600px;
}


/* NEW PACKAGE  */
.packagesRow p.pkg-heading {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
    color: var(--dark-blue);
}

.packagesRow p.pkg-heading span {
    color: var(--orange);
}

.packages-tabs-wrapper {
    text-align: center;
}

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

.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: 8px 8px 30px #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: 15px 15px 40px #0e2e678a !important;
}


img.wave {
    width: 100%;
    /* margin-top: -100px; */
}


/* NEW PACKAGE  */

.quarterlyPackage {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

p.quarterly3cx {
    margin: 0;
    font-size: 11px;
    color: #7f8ca2;
    font-weight: 500;
    line-height: 1;
}

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

.fa-times {
    color: #f14646;
}

.fa-check {
    color: #62db9b;
}


/* SECTION FOUR CSS END HERE */

/* SECTION FIVE CSS START HERE */


section.case-studies {
    background: #f6f9ff;
}

.caseStudy-item {
    margin: 10px 18px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 10px 0 12px rgb(10 35 78 / 10%);
}

.caseStudy-thumb>img {
    width: 100%;
    height: 100%;
}

.caseStudy-content {
    padding: 2rem 1.5rem;
    background: var(--white);
    min-height: 290px;
}

.caseStudy-content>h2 {
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-blue);
}

.caseStudy-content>hr {
    max-width: 25%;
    background: var(--orange);
    opacity: 1;
    height: 4px;
    margin: .7rem 0;
}

.caseStudy-content>p {
    color: var(--dark-blue);
}

#caseStudy-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translate(0px, -30px);
    z-index: 99;
    background: var(--dark-blue);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}

#caseStudy-slider .slick-arrow.slick-disabled,
#caseStudy-slider .slick-arrow.slick-disabled:hover {
    background: #c7cedc;
}

#caseStudy-slider .next-arrow.slick-arrow {
    right: -5%;
}

#caseStudy-slider .prev-arrow.slick-arrow {
    left: -5%;
}

#caseStudy-slider .slick-arrow:hover {
    background: var(--orange);
}

/* SECTION FIVE CSS END HERE */

/* SECTION SIX CSS START HERE */

section.google-ads-explained {
    background-image: url('../img/google-ads/game-banner.webp');
    background-size: cover;
}

.emSerivcesRow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-gap: 2rem;
}


.emSerivcesBox .back,
.emSerivcesBox .front {
    position: relative;
    width: 100%;
    height: 290px;
    border: 1px solid #8cb2d0;
    border-radius: 20px;
    backface-visibility: hidden;
    overflow: hidden;
    box-shadow: 16px 0 30px rgb(0 91 255 / 14%);
    transition: transform .8s ease
}

.emSerivcesBox .front {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 50px;
}

.emSerivcesBox .back {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotateY(180deg);
    background: var(--white);
    padding: 30px;
    border-color: var(--orange);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.emSerivcesBox:hover .front {
    transform: rotateY(-180deg)
}

.emSerivcesBox:hover .back {
    transform: rotateY(0)
}

.emSerivcesBox {
    position: relative;
    min-height: 260px;
    flex: 1 1 100%;
}

.emSerivcesBox .front h2 {
    font-size: 20px;
    color: var(--dark-blue);
    font-weight: bold;
    letter-spacing: 1px;
    padding-top: 30px;
    line-height: 20px;
}

.serviceIcon {
    width: 25%;
}

.emSerivcesBox .back h2 {
    font-size: 16px;
    color: var(--dark-blue);
    font-weight: bold;
    letter-spacing: 1px;
    padding: 20px 0 10px;
}

.emSerivcesBox .back p {
    font-size: 14px;
    color: var(--dark-blue);
    line-height: 22px;
    margin: 0;
}

.emSerivcesBox .back a {
    border: 1px solid #f5dfb4;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--dark-blue);
    font-weight: 500;
    float: right;
    display: none;
}

.emSerivcesBox .back a i {
    font-size: 16px;
    font-weight: bold;
    padding-left: 5px;
}

.emSerivcesBox .back a:hover {
    background: var(--orange);
    color: var(--white);
}

@media (min-width: 768px) {
    .emSerivcesBox {
        flex: 1 1 44%;
    }
}

@media (min-width: 992px) {
    .emSerivcesBox {
        flex: 1 1;
        min-width: 30%;
    }
}

/* SECTION SIX CSS END HERE */

/* SECTION SEVEN CSS START HERE */

section.section.call-tall {
    padding: 100px 0;
}

section.call-tall h2 {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: bold;
    color: var(--dark-blue);
    padding-bottom: 0;
}

section.call-tall p {
    font-size: 20px;
    font-weight: 600;
}

section.call-tall h4 {
    color: var(--dark-blue);
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: 900;
    margin: 2rem 0 .4rem;
}


.premium-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 15px;
}


.premium-cta a.premiumCall {
    font-family: 'Inter', sans-serif;
    font-size: 68px;
    font-weight: bold;
    color: var(--dark-blue);
    line-height: 1;
}


.premium-cta a.premiumCall:hover {
    color: var(--orange);
}

.premium-cta a.premiumCall i {
    color: var(--orange);
    transform: rotate(20deg);
}

.angleShape1,
.angleShape2 {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

.angleShape1 {
    left: 0;
}

.angleShape2 {
    right: 0;
    transform: scaleX(-1);
}

/* SECTION SEVEN CSS END HERE */

/* SECTION EIGHT - FAQS CSS START HERE  */

section.designFAQS {
    background: #f8fbff;
}

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

section.designFAQS .head h2,
section.designFAQS .head h2 span {
    font-size: 52px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

section.designFAQS .head h2:before {
    display: none;
}

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

section.designFAQS .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: 550px;
    padding: 0 20px 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 EIGHT - FAQS CSS END HERE  */


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

div#discussLead {
    background: #3d62a3;
    padding: 20px;
    border-radius: 15px;
    position: relative;
}

div#discussLead span.dot {
    display: block;
    margin-left: 20px;
}

div#discussLead span.dot i {
    color: var(--white);
    opacity: 0.7;
}

div#discussLead span.dot i {
    margin-right: 10px;
}

.bottom-form.contact {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 40px 150px;
    margin-top: 10px;
    box-shadow: 0px 0px 8px #222;
}

.bottom-form.contact h2 {
    color: var(--dark-blue);
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.bottom-form.contact h2 span {
    color: var(--orange);
}

.bottom-form.contact h2:before {
    position: absolute;
    content: '';
    background: var(--orange);
    width: 100px;
    height: 5px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.bottom-form .form-group .form-control {
    position: relative;
    color: #3d62a3;
    border: 2px solid #9eb0d1;
    background: #fafcfe;
    border-radius: 7px;
    padding: 14px 40px;
    box-shadow: unset;
    outline: unset;

}

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

.bottom-form .form-group i {
    position: absolute;
    z-index: 9;
    top: 0;
    left: 20px;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    color: #acb9d3;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 25px;
}

.bottom-form .form-control::placeholder {
    color: #3d62a3;
    opacity: 0.5;
}

.bottom-form textarea {
    height: 150px;
    margin-bottom: 10px;
}

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

p.form-sub-text {
    color: #737373;
    font-size: 14px;
}

.btn-box {
    margin-top: 35px;
}

.btn-box a {
    display: inline-block;
    background: #16366e;
    color: var(--white);
    padding: 18px 96px;
    border-radius: 7px;
    font-size: 18px;
    font-weight: 500;
}

.btn-box a:hover {
    background: var(--orange);
}

.form-group .form-control:focus,
.form-group .form-control:visited {
    border-color: #3d62a3;
}

textarea#Details:focus::placeholder {
    color: #3d62a3;
    opacity: 1;
}

input::-webkit-input-placeholder {
    color: #3d62a3;
    opacity: 1;
}

input:focus::-webkit-input-placeholder {
    color: #3d62a3;
    opacity: 1;
}


/* Firefox < 19 */

div#discussLead input:-moz-placeholder {
    color: #3d62a3;
    opacity: 1;
}

div#discussLead input:focus:-moz-placeholder {
    color: #3d62a3;
    opacity: 1;
}


/* Firefox > 19 */

div#discussLead input::-moz-placeholder {
    color: #3d62a3;
    opacity: 1;
}

div#discussLead input:focus::-moz-placeholder {
    color: #3d62a3;
    opacity: 1;
}


/* Internet Explorer 10 */

div#discussLead input:-ms-input-placeholder {
    color: #3d62a3;
    opacity: 1;
}

div#discussLead input:focus:-ms-input-placeholder {
    color: #3d62a3;
    opacity: 1;
}

.mini-contact-area {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

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

.c-cont-box h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin: 0;
    color: #999;
    font-weight: 600;
}

.c-cont-box a {
    font-size: 20px;
    margin: 0;
    color: #16366e;
    font-weight: 800;
}

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

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

.mini-contact-box:first-child {
    margin-bottom: 10px;
}


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

/* MEDIA QUERY CSS START HERE  */

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

    .homeBanner h1 {
        font-size: 60px;
        padding: 0;
    }

    .homeBanner .coverBtns {
        grid-gap: 1rem;
    }

    .leads-generated .row>.col-md-3 {
        min-height: 200px;
        padding: 0;
    }

    .leads-generated p br {
        display: none;
    }

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

    #caseStudy-slider .next-arrow.slick-arrow {
        right: 0;
    }

    #caseStudy-slider .prev-arrow.slick-arrow {
        left: 0;
    }

    .emSerivcesBox .front {
        padding: 0 20px;
    }

    .bottom-form.contact {
        padding: 40px 50px;
    }
}


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



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

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

    section.homeBanner.s1 {
        padding: 3rem 0;
    }

    .bannerImg {
        margin: 2rem 0 0;
    }

    .leads-generated h2 {
        font-size: 50px;
    }

    .leads-generated p {
        font-size: 16px;
        margin: 0;
    }

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

    section.s10 .head h2 {
        max-width: 100%;
    }

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

    section.s10 a.toll-number {
        font-size: 60px;
    }

    ul.slick-dots li button:before {
        display: none;
    }

    ul.slick-dots li button {
        padding: 0;
    }

    ul.slick-dots li {
        width: 34px;
        height: 10px;
        background: #d6d6d6;
        border-radius: 50px;
    }

    ul.slick-dots li.slick-active {
        background: #333;
    }

    .angleShape1,
    .angleShape2 {
        display: none;
    }

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

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

}

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

    p {
        font-size: 14px;
    }

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

    .head h3 {
        font-size: 16px;
    }

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


    .homeBanner h1 {
        font-size: 24px;
        line-height: 1;
    }

    .homeBanner p.sub-heading {
        margin: 0 0 5px;
    }


    .coverBtns a.btn--orange {
        padding: 14px 20px;
    }

    .coverBtns a.btn--transparent {
        font-size: 14px;
        padding-left: 40px;
    }

    .coverBtns a.btn--transparent:before {
        width: 30px;
        height: 30px;
    }

    section.homeBanner.s1 {
        padding: 2rem 0;
    }

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



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

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

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

    section.s10 {
        padding: 40px 0;
    }

    section.s10 .head h2 {
        margin: 0 0 2rem;
    }

    .emSerivcesBox {
        min-height: auto;
    }

    .emSerivcesBox .back,
    .emSerivcesBox .front {
        height: auto;
        padding: 2rem;
    }


    section.section.call-tall {
        padding: 40px 0;
    }

    section.call-tall .row>h2 {
        font-size: 22px;
    }

    section.call-tall .row>p {
        font-size: 14px;
    }

    section.call-tall .row>h4 {
        max-width: initial;
        font-size: 20px;
    }

    .premium-cta a.premiumCall {
        font-size: 36px;
    }

    ul#accordian {
        overflow: unset;
        max-height: unset;
        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 {
        font-size: 14px;
    }

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

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

    section.ny-contact {
        padding: 0 0 3rem;
    }

    .bottom-form.contact h2 {
        font-size: 22px;
    }

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

    .form-grid {
        display: flex;
        flex-direction: column;
        grid-column-gap: 15px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .mini-contact-area {
        position: unset;
    }

    .btn-box a {
        padding: 16px 20px;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .c-cont-box a {
        font-size: 14px;
    }
}

/* MEDIA QUERY CSS END HERE  */